styles.css 195 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2328px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u71231_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u71231 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u71231 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u71231_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u71232_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u71232 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u71232 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u71232_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u71233_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u71233 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u71233 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u71233_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u71234 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u71235_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u71235 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u71235 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u71235_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u71236_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u71236 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u71236 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u71236_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u71237_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u71237 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u71237 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u71237_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u71238 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u71239_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u71239 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u71239 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u71239_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u71240_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u71240 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u71240 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u71240_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u71241 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u71242_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u71242 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u71242 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u71242_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u71243_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u71243 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u71243 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u71243_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u71244 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u71245_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u71245 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u71245 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u71245_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u71246_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u71246 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u71246 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u71246_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u71247 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u71248_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u71248 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u71248 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u71248_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u71249_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u71249 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u71249 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u71249_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u71250 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u71251_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u71251 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u71251 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u71251_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u71252_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u71252 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u71252 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u71252_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u71253 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u71254_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u71254 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u71254 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u71254_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u71255_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u71255 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u71255 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u71255_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u71256 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u71257_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u71257 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u71257 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u71257_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u71258_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u71258 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u71258 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u71258_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u71259 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u71260_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u71260 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u71260 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u71260_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u71261_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u71261 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u71261 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u71261_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u71262 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u71263_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u71263 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u71263 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u71263_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u71264_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u71264 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u71264 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u71264_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u71265_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u71265 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u71265 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u71265_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u71266_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u71266 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u71266 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u71266_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u71267_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u71267 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u71267 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u71267_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u71268_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u71268 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u71268 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u71268_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u71269 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u71270_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u71270 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u71270 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u71270_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u71271_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u71271 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u71271 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u71271_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u71272 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u71273_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u71273 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u71273 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u71273_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u71274_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u71274 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u71274 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u71274_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u71275 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u71276_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u71276_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u71276_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u71276 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u71276 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u71276_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u71276.disabled {
  1428. }
  1429. .u71276_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u71277_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u71277 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u71277 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u71277_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u71278_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u71278 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u71278 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u71278_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u71279_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u71279 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u71279 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u71279_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u71280_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  1544. height:1191px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1550. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1551. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1552. }
  1553. #u71280 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:329px;
  1557. top:50px;
  1558. width:1260px;
  1559. height:1191px;
  1560. display:flex;
  1561. }
  1562. #u71280 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u71280_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u71281 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:0px;
  1581. height:0px;
  1582. }
  1583. #u71282_div {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:199px;
  1589. height:40px;
  1590. background:inherit;
  1591. background-color:rgba(255, 255, 255, 0);
  1592. border:none;
  1593. border-radius:0px;
  1594. -moz-box-shadow:none;
  1595. -webkit-box-shadow:none;
  1596. box-shadow:none;
  1597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1598. font-weight:400;
  1599. font-style:normal;
  1600. font-size:18px;
  1601. line-height:40px;
  1602. }
  1603. #u71282 {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:690px;
  1607. top:62px;
  1608. width:199px;
  1609. height:40px;
  1610. display:flex;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:18px;
  1615. line-height:40px;
  1616. }
  1617. #u71282 .text {
  1618. position:absolute;
  1619. align-self:flex-start;
  1620. padding:0px 0px 0px 0px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u71282_text {
  1625. border-width:0px;
  1626. white-space:nowrap;
  1627. text-transform:none;
  1628. }
  1629. #u71283_img {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:30px;
  1635. height:30px;
  1636. }
  1637. #u71283 {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:650px;
  1641. top:67px;
  1642. width:30px;
  1643. height:30px;
  1644. display:flex;
  1645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1646. font-weight:400;
  1647. font-style:normal;
  1648. font-size:12px;
  1649. color:#FFFFFF;
  1650. }
  1651. #u71283 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:2px 2px 2px 2px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u71283_text {
  1659. border-width:0px;
  1660. word-wrap:break-word;
  1661. text-transform:none;
  1662. }
  1663. #u71284 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:0px;
  1669. height:0px;
  1670. }
  1671. #u71285_div {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:300px;
  1677. height:1191px;
  1678. background:inherit;
  1679. background-color:rgba(240, 242, 245, 1);
  1680. border:none;
  1681. border-radius:0px;
  1682. -moz-box-shadow:none;
  1683. -webkit-box-shadow:none;
  1684. box-shadow:none;
  1685. }
  1686. #u71285 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:329px;
  1690. top:50px;
  1691. width:300px;
  1692. height:1191px;
  1693. display:flex;
  1694. }
  1695. #u71285 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u71285_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u71286 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:0px;
  1714. height:0px;
  1715. }
  1716. #u71287_div {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:260px;
  1722. height:38px;
  1723. background:inherit;
  1724. background-color:rgba(255, 255, 255, 1);
  1725. box-sizing:border-box;
  1726. border-width:1px;
  1727. border-style:solid;
  1728. border-color:rgba(242, 242, 242, 1);
  1729. border-radius:4px;
  1730. -moz-box-shadow:none;
  1731. -webkit-box-shadow:none;
  1732. box-shadow:none;
  1733. font-family:'Microsoft YaHei', sans-serif;
  1734. font-weight:400;
  1735. font-style:normal;
  1736. font-size:14px;
  1737. color:#CCCCCC;
  1738. text-align:left;
  1739. }
  1740. #u71287 {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:349px;
  1744. top:120px;
  1745. width:260px;
  1746. height:38px;
  1747. display:flex;
  1748. font-family:'Microsoft YaHei', sans-serif;
  1749. font-weight:400;
  1750. font-style:normal;
  1751. font-size:14px;
  1752. color:#CCCCCC;
  1753. text-align:left;
  1754. }
  1755. #u71287 .text {
  1756. position:absolute;
  1757. align-self:center;
  1758. padding:2px 8px 2px 8px;
  1759. box-sizing:border-box;
  1760. width:100%;
  1761. }
  1762. #u71287_text {
  1763. border-width:0px;
  1764. word-wrap:break-word;
  1765. text-transform:none;
  1766. visibility:hidden;
  1767. }
  1768. #u71288_input {
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:201px;
  1773. height:31px;
  1774. padding:2px 2px 2px 2px;
  1775. font-family:'Microsoft YaHei', sans-serif;
  1776. font-weight:400;
  1777. font-style:normal;
  1778. font-size:14px;
  1779. letter-spacing:normal;
  1780. color:#000000;
  1781. vertical-align:none;
  1782. text-align:left;
  1783. text-transform:none;
  1784. background-color:transparent;
  1785. border-color:transparent;
  1786. }
  1787. #u71288_input.disabled {
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:201px;
  1792. height:31px;
  1793. padding:2px 2px 2px 2px;
  1794. font-family:'Microsoft YaHei', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:14px;
  1798. letter-spacing:normal;
  1799. color:#000000;
  1800. vertical-align:none;
  1801. text-align:left;
  1802. text-transform:none;
  1803. background-color:transparent;
  1804. border-color:transparent;
  1805. }
  1806. #u71288_div {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:201px;
  1812. height:31px;
  1813. background:inherit;
  1814. background-color:rgba(255, 255, 255, 1);
  1815. border:none;
  1816. border-radius:0px;
  1817. -moz-box-shadow:none;
  1818. -webkit-box-shadow:none;
  1819. box-shadow:none;
  1820. font-family:'Microsoft YaHei', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:14px;
  1824. }
  1825. #u71288 {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:357px;
  1829. top:121px;
  1830. width:201px;
  1831. height:31px;
  1832. display:flex;
  1833. font-family:'Microsoft YaHei', sans-serif;
  1834. font-weight:400;
  1835. font-style:normal;
  1836. font-size:14px;
  1837. }
  1838. #u71288 .text {
  1839. position:absolute;
  1840. align-self:center;
  1841. padding:2px 2px 2px 2px;
  1842. box-sizing:border-box;
  1843. width:100%;
  1844. }
  1845. #u71288_div.disabled {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:201px;
  1851. height:31px;
  1852. background:inherit;
  1853. background-color:rgba(240, 240, 240, 1);
  1854. border:none;
  1855. border-radius:0px;
  1856. -moz-box-shadow:none;
  1857. -webkit-box-shadow:none;
  1858. box-shadow:none;
  1859. font-family:'Microsoft YaHei', sans-serif;
  1860. font-weight:400;
  1861. font-style:normal;
  1862. font-size:14px;
  1863. }
  1864. #u71288.disabled {
  1865. }
  1866. #u71289_img {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:14px;
  1872. height:14px;
  1873. }
  1874. #u71289 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:567px;
  1878. top:132px;
  1879. width:14px;
  1880. height:14px;
  1881. display:flex;
  1882. }
  1883. #u71289 .text {
  1884. position:absolute;
  1885. align-self:center;
  1886. padding:2px 2px 2px 2px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u71289_text {
  1891. border-width:0px;
  1892. word-wrap:break-word;
  1893. text-transform:none;
  1894. visibility:hidden;
  1895. }
  1896. #u71290 {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:0px;
  1902. height:0px;
  1903. }
  1904. #u71291_div {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:260px;
  1910. height:48px;
  1911. background:inherit;
  1912. background-color:rgba(0, 153, 255, 0.0980392156862745);
  1913. border:none;
  1914. border-radius:4px;
  1915. -moz-box-shadow:none;
  1916. -webkit-box-shadow:none;
  1917. box-shadow:none;
  1918. font-family:'Microsoft YaHei', sans-serif;
  1919. font-weight:400;
  1920. font-style:normal;
  1921. font-size:14px;
  1922. color:#CCCCCC;
  1923. text-align:left;
  1924. }
  1925. #u71291 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:349px;
  1929. top:177px;
  1930. width:260px;
  1931. height:48px;
  1932. display:flex;
  1933. font-family:'Microsoft YaHei', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:14px;
  1937. color:#CCCCCC;
  1938. text-align:left;
  1939. }
  1940. #u71291 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 8px 2px 8px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u71291_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. visibility:hidden;
  1952. }
  1953. #u71292_div {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:12px;
  1959. height:15px;
  1960. background:inherit;
  1961. background-color:rgba(51, 51, 51, 1);
  1962. border:none;
  1963. border-radius:4px;
  1964. -moz-box-shadow:none;
  1965. -webkit-box-shadow:none;
  1966. box-shadow:none;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:10px;
  1971. color:#FFFFFF;
  1972. }
  1973. #u71292 {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:362px;
  1977. top:194px;
  1978. width:12px;
  1979. height:15px;
  1980. display:flex;
  1981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1982. font-weight:400;
  1983. font-style:normal;
  1984. font-size:10px;
  1985. color:#FFFFFF;
  1986. }
  1987. #u71292 .text {
  1988. position:absolute;
  1989. align-self:center;
  1990. padding:0px 0px 0px 0px;
  1991. box-sizing:border-box;
  1992. width:100%;
  1993. }
  1994. #u71292_text {
  1995. border-width:0px;
  1996. word-wrap:break-word;
  1997. text-transform:none;
  1998. }
  1999. #u71293_div {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:127px;
  2005. height:19px;
  2006. background:inherit;
  2007. background-color:rgba(51, 51, 51, 0);
  2008. border:none;
  2009. border-radius:4px;
  2010. -moz-box-shadow:none;
  2011. -webkit-box-shadow:none;
  2012. box-shadow:none;
  2013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2014. font-weight:400;
  2015. font-style:normal;
  2016. font-size:14px;
  2017. text-align:left;
  2018. }
  2019. #u71293 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:383px;
  2023. top:189px;
  2024. width:127px;
  2025. height:19px;
  2026. display:flex;
  2027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2028. font-weight:400;
  2029. font-style:normal;
  2030. font-size:14px;
  2031. text-align:left;
  2032. }
  2033. #u71293 .text {
  2034. position:absolute;
  2035. align-self:center;
  2036. padding:0px 0px 0px 0px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u71293_text {
  2041. border-width:0px;
  2042. white-space:nowrap;
  2043. text-transform:none;
  2044. }
  2045. #u71294 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:0px;
  2051. height:0px;
  2052. }
  2053. #u71295_div {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:260px;
  2059. height:48px;
  2060. background:inherit;
  2061. background-color:rgba(255, 255, 255, 0);
  2062. border:none;
  2063. border-radius:4px;
  2064. -moz-box-shadow:none;
  2065. -webkit-box-shadow:none;
  2066. box-shadow:none;
  2067. font-family:'Microsoft YaHei', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:14px;
  2071. color:#CCCCCC;
  2072. text-align:left;
  2073. }
  2074. #u71295 {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:349px;
  2078. top:224px;
  2079. width:260px;
  2080. height:48px;
  2081. display:flex;
  2082. font-family:'Microsoft YaHei', sans-serif;
  2083. font-weight:400;
  2084. font-style:normal;
  2085. font-size:14px;
  2086. color:#CCCCCC;
  2087. text-align:left;
  2088. }
  2089. #u71295 .text {
  2090. position:absolute;
  2091. align-self:center;
  2092. padding:2px 8px 2px 8px;
  2093. box-sizing:border-box;
  2094. width:100%;
  2095. }
  2096. #u71295_text {
  2097. border-width:0px;
  2098. word-wrap:break-word;
  2099. text-transform:none;
  2100. visibility:hidden;
  2101. }
  2102. #u71296_div {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:12px;
  2108. height:15px;
  2109. background:inherit;
  2110. background-color:rgba(51, 51, 51, 0);
  2111. box-sizing:border-box;
  2112. border-width:1px;
  2113. border-style:solid;
  2114. border-color:rgba(51, 51, 51, 1);
  2115. border-radius:4px;
  2116. -moz-box-shadow:none;
  2117. -webkit-box-shadow:none;
  2118. box-shadow:none;
  2119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2120. font-weight:400;
  2121. font-style:normal;
  2122. font-size:10px;
  2123. }
  2124. #u71296 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:382px;
  2128. top:242px;
  2129. width:12px;
  2130. height:15px;
  2131. display:flex;
  2132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2133. font-weight:400;
  2134. font-style:normal;
  2135. font-size:10px;
  2136. }
  2137. #u71296 .text {
  2138. position:absolute;
  2139. align-self:center;
  2140. padding:0px 0px 0px 0px;
  2141. box-sizing:border-box;
  2142. width:100%;
  2143. }
  2144. #u71296_text {
  2145. border-width:0px;
  2146. word-wrap:break-word;
  2147. text-transform:none;
  2148. }
  2149. #u71297_div {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:0px;
  2153. top:0px;
  2154. width:127px;
  2155. height:19px;
  2156. background:inherit;
  2157. background-color:rgba(51, 51, 51, 0);
  2158. border:none;
  2159. border-radius:4px;
  2160. -moz-box-shadow:none;
  2161. -webkit-box-shadow:none;
  2162. box-shadow:none;
  2163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:14px;
  2167. text-align:left;
  2168. }
  2169. #u71297 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:403px;
  2173. top:237px;
  2174. width:127px;
  2175. height:19px;
  2176. display:flex;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. text-align:left;
  2182. }
  2183. #u71297 .text {
  2184. position:absolute;
  2185. align-self:center;
  2186. padding:0px 0px 0px 0px;
  2187. box-sizing:border-box;
  2188. width:100%;
  2189. }
  2190. #u71297_text {
  2191. border-width:0px;
  2192. white-space:nowrap;
  2193. text-transform:none;
  2194. }
  2195. #u71298 {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:0px;
  2201. height:0px;
  2202. }
  2203. #u71299_div {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:260px;
  2209. height:48px;
  2210. background:inherit;
  2211. background-color:rgba(255, 255, 255, 0);
  2212. border:none;
  2213. border-radius:4px;
  2214. -moz-box-shadow:none;
  2215. -webkit-box-shadow:none;
  2216. box-shadow:none;
  2217. font-family:'Microsoft YaHei', sans-serif;
  2218. font-weight:400;
  2219. font-style:normal;
  2220. font-size:14px;
  2221. color:#CCCCCC;
  2222. text-align:left;
  2223. }
  2224. #u71299 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:349px;
  2228. top:272px;
  2229. width:260px;
  2230. height:48px;
  2231. display:flex;
  2232. font-family:'Microsoft YaHei', sans-serif;
  2233. font-weight:400;
  2234. font-style:normal;
  2235. font-size:14px;
  2236. color:#CCCCCC;
  2237. text-align:left;
  2238. }
  2239. #u71299 .text {
  2240. position:absolute;
  2241. align-self:center;
  2242. padding:2px 8px 2px 8px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u71299_text {
  2247. border-width:0px;
  2248. word-wrap:break-word;
  2249. text-transform:none;
  2250. visibility:hidden;
  2251. }
  2252. #u71300_div {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:0px;
  2256. top:0px;
  2257. width:12px;
  2258. height:15px;
  2259. background:inherit;
  2260. background-color:rgba(51, 51, 51, 1);
  2261. border:none;
  2262. border-radius:4px;
  2263. -moz-box-shadow:none;
  2264. -webkit-box-shadow:none;
  2265. box-shadow:none;
  2266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2267. font-weight:400;
  2268. font-style:normal;
  2269. font-size:10px;
  2270. color:#FFFFFF;
  2271. }
  2272. #u71300 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:362px;
  2276. top:288px;
  2277. width:12px;
  2278. height:15px;
  2279. display:flex;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:10px;
  2284. color:#FFFFFF;
  2285. }
  2286. #u71300 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:0px 0px 0px 0px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u71300_text {
  2294. border-width:0px;
  2295. word-wrap:break-word;
  2296. text-transform:none;
  2297. }
  2298. #u71301_div {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:127px;
  2304. height:19px;
  2305. background:inherit;
  2306. background-color:rgba(51, 51, 51, 0);
  2307. border:none;
  2308. border-radius:4px;
  2309. -moz-box-shadow:none;
  2310. -webkit-box-shadow:none;
  2311. box-shadow:none;
  2312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:14px;
  2316. text-align:left;
  2317. }
  2318. #u71301 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:383px;
  2322. top:284px;
  2323. width:127px;
  2324. height:19px;
  2325. display:flex;
  2326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2327. font-weight:400;
  2328. font-style:normal;
  2329. font-size:14px;
  2330. text-align:left;
  2331. }
  2332. #u71301 .text {
  2333. position:absolute;
  2334. align-self:center;
  2335. padding:0px 0px 0px 0px;
  2336. box-sizing:border-box;
  2337. width:100%;
  2338. }
  2339. #u71301_text {
  2340. border-width:0px;
  2341. white-space:nowrap;
  2342. text-transform:none;
  2343. }
  2344. #u71302 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:0px;
  2350. height:0px;
  2351. }
  2352. #u71303_div {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:260px;
  2358. height:48px;
  2359. background:inherit;
  2360. background-color:rgba(255, 255, 255, 0);
  2361. border:none;
  2362. border-radius:4px;
  2363. -moz-box-shadow:none;
  2364. -webkit-box-shadow:none;
  2365. box-shadow:none;
  2366. font-family:'Microsoft YaHei', sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:14px;
  2370. color:#CCCCCC;
  2371. text-align:left;
  2372. }
  2373. #u71303 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:349px;
  2377. top:320px;
  2378. width:260px;
  2379. height:48px;
  2380. display:flex;
  2381. font-family:'Microsoft YaHei', sans-serif;
  2382. font-weight:400;
  2383. font-style:normal;
  2384. font-size:14px;
  2385. color:#CCCCCC;
  2386. text-align:left;
  2387. }
  2388. #u71303 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 8px 2px 8px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u71303_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. visibility:hidden;
  2400. }
  2401. #u71304_div {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:12px;
  2407. height:15px;
  2408. background:inherit;
  2409. background-color:rgba(51, 51, 51, 0);
  2410. box-sizing:border-box;
  2411. border-width:1px;
  2412. border-style:solid;
  2413. border-color:rgba(51, 51, 51, 1);
  2414. border-radius:4px;
  2415. -moz-box-shadow:none;
  2416. -webkit-box-shadow:none;
  2417. box-shadow:none;
  2418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:10px;
  2422. }
  2423. #u71304 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:382px;
  2427. top:337px;
  2428. width:12px;
  2429. height:15px;
  2430. display:flex;
  2431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2432. font-weight:400;
  2433. font-style:normal;
  2434. font-size:10px;
  2435. }
  2436. #u71304 .text {
  2437. position:absolute;
  2438. align-self:center;
  2439. padding:0px 0px 0px 0px;
  2440. box-sizing:border-box;
  2441. width:100%;
  2442. }
  2443. #u71304_text {
  2444. border-width:0px;
  2445. word-wrap:break-word;
  2446. text-transform:none;
  2447. }
  2448. #u71305_div {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:0px;
  2452. top:0px;
  2453. width:127px;
  2454. height:19px;
  2455. background:inherit;
  2456. background-color:rgba(51, 51, 51, 0);
  2457. border:none;
  2458. border-radius:4px;
  2459. -moz-box-shadow:none;
  2460. -webkit-box-shadow:none;
  2461. box-shadow:none;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:14px;
  2466. text-align:left;
  2467. }
  2468. #u71305 {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:403px;
  2472. top:332px;
  2473. width:127px;
  2474. height:19px;
  2475. display:flex;
  2476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2477. font-weight:400;
  2478. font-style:normal;
  2479. font-size:14px;
  2480. text-align:left;
  2481. }
  2482. #u71305 .text {
  2483. position:absolute;
  2484. align-self:center;
  2485. padding:0px 0px 0px 0px;
  2486. box-sizing:border-box;
  2487. width:100%;
  2488. }
  2489. #u71305_text {
  2490. border-width:0px;
  2491. white-space:nowrap;
  2492. text-transform:none;
  2493. }
  2494. #u71306 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:0px;
  2498. top:0px;
  2499. width:0px;
  2500. height:0px;
  2501. }
  2502. #u71307_div {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:260px;
  2508. height:48px;
  2509. background:inherit;
  2510. background-color:rgba(255, 255, 255, 0);
  2511. border:none;
  2512. border-radius:4px;
  2513. -moz-box-shadow:none;
  2514. -webkit-box-shadow:none;
  2515. box-shadow:none;
  2516. font-family:'Microsoft YaHei', sans-serif;
  2517. font-weight:400;
  2518. font-style:normal;
  2519. font-size:14px;
  2520. color:#CCCCCC;
  2521. text-align:left;
  2522. }
  2523. #u71307 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:349px;
  2527. top:368px;
  2528. width:260px;
  2529. height:48px;
  2530. display:flex;
  2531. font-family:'Microsoft YaHei', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:14px;
  2535. color:#CCCCCC;
  2536. text-align:left;
  2537. }
  2538. #u71307 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 8px 2px 8px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u71307_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. visibility:hidden;
  2550. }
  2551. #u71308_div {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:12px;
  2557. height:15px;
  2558. background:inherit;
  2559. background-color:rgba(51, 51, 51, 1);
  2560. border:none;
  2561. border-radius:4px;
  2562. -moz-box-shadow:none;
  2563. -webkit-box-shadow:none;
  2564. box-shadow:none;
  2565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2566. font-weight:400;
  2567. font-style:normal;
  2568. font-size:10px;
  2569. color:#FFFFFF;
  2570. }
  2571. #u71308 {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:362px;
  2575. top:384px;
  2576. width:12px;
  2577. height:15px;
  2578. display:flex;
  2579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2580. font-weight:400;
  2581. font-style:normal;
  2582. font-size:10px;
  2583. color:#FFFFFF;
  2584. }
  2585. #u71308 .text {
  2586. position:absolute;
  2587. align-self:center;
  2588. padding:0px 0px 0px 0px;
  2589. box-sizing:border-box;
  2590. width:100%;
  2591. }
  2592. #u71308_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. }
  2597. #u71309_div {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:155px;
  2603. height:19px;
  2604. background:inherit;
  2605. background-color:rgba(51, 51, 51, 0);
  2606. border:none;
  2607. border-radius:4px;
  2608. -moz-box-shadow:none;
  2609. -webkit-box-shadow:none;
  2610. box-shadow:none;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:14px;
  2615. text-align:left;
  2616. }
  2617. #u71309 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:383px;
  2621. top:379px;
  2622. width:155px;
  2623. height:19px;
  2624. display:flex;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:14px;
  2629. text-align:left;
  2630. }
  2631. #u71309 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:0px 0px 0px 0px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u71309_text {
  2639. border-width:0px;
  2640. white-space:nowrap;
  2641. text-transform:none;
  2642. }
  2643. #u71310_div {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:73px;
  2649. height:50px;
  2650. background:inherit;
  2651. background-color:rgba(255, 255, 255, 0);
  2652. border:none;
  2653. border-left:0px;
  2654. border-top:0px;
  2655. border-right:0px;
  2656. border-radius:0px;
  2657. border-bottom-right-radius:0px;
  2658. border-bottom-left-radius:0px;
  2659. -moz-box-shadow:none;
  2660. -webkit-box-shadow:none;
  2661. box-shadow:none;
  2662. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2663. font-weight:500;
  2664. font-style:normal;
  2665. font-size:18px;
  2666. line-height:40px;
  2667. }
  2668. #u71310 {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:349px;
  2672. top:60px;
  2673. width:73px;
  2674. height:50px;
  2675. display:flex;
  2676. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2677. font-weight:500;
  2678. font-style:normal;
  2679. font-size:18px;
  2680. line-height:40px;
  2681. }
  2682. #u71310 .text {
  2683. position:absolute;
  2684. align-self:center;
  2685. padding:5px 0px 5px 0px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u71310_text {
  2690. border-width:0px;
  2691. white-space:nowrap;
  2692. text-transform:none;
  2693. }
  2694. #u71311_div {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:80px;
  2700. height:30px;
  2701. background:inherit;
  2702. background-color:rgba(24, 144, 255, 1);
  2703. border:none;
  2704. border-radius:4px;
  2705. -moz-box-shadow:none;
  2706. -webkit-box-shadow:none;
  2707. box-shadow:none;
  2708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:14px;
  2712. color:#FFFFFF;
  2713. }
  2714. #u71311 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:740px;
  2718. top:203px;
  2719. width:80px;
  2720. height:30px;
  2721. display:flex;
  2722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:14px;
  2726. color:#FFFFFF;
  2727. }
  2728. #u71311 .text {
  2729. position:absolute;
  2730. align-self:center;
  2731. padding:2px 2px 2px 2px;
  2732. box-sizing:border-box;
  2733. width:100%;
  2734. }
  2735. #u71311_text {
  2736. border-width:0px;
  2737. word-wrap:break-word;
  2738. text-transform:none;
  2739. }
  2740. #u71312_div {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:80px;
  2746. height:30px;
  2747. background:inherit;
  2748. background-color:rgba(255, 255, 255, 1);
  2749. box-sizing:border-box;
  2750. border-width:1px;
  2751. border-style:solid;
  2752. border-color:rgba(24, 144, 255, 1);
  2753. border-radius:4px;
  2754. -moz-box-shadow:none;
  2755. -webkit-box-shadow:none;
  2756. box-shadow:none;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:14px;
  2761. color:#1890FF;
  2762. }
  2763. #u71312 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:650px;
  2767. top:203px;
  2768. width:80px;
  2769. height:30px;
  2770. display:flex;
  2771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:14px;
  2775. color:#1890FF;
  2776. }
  2777. #u71312 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 2px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u71312_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. }
  2789. #u71313 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:650px;
  2793. top:248px;
  2794. width:919px;
  2795. height:324px;
  2796. }
  2797. #u71314_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:134px;
  2803. height:44px;
  2804. }
  2805. #u71314 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:134px;
  2811. height:44px;
  2812. display:flex;
  2813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. font-size:12px;
  2817. color:#FFFFFF;
  2818. }
  2819. #u71314 .text {
  2820. position:absolute;
  2821. align-self:center;
  2822. padding:2px 2px 2px 2px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u71314_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. }
  2831. #u71315_img {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:108px;
  2837. height:44px;
  2838. }
  2839. #u71315 {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:134px;
  2843. top:0px;
  2844. width:108px;
  2845. height:44px;
  2846. display:flex;
  2847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2848. font-weight:400;
  2849. font-style:normal;
  2850. font-size:12px;
  2851. color:#FFFFFF;
  2852. }
  2853. #u71315 .text {
  2854. position:absolute;
  2855. align-self:center;
  2856. padding:2px 2px 2px 2px;
  2857. box-sizing:border-box;
  2858. width:100%;
  2859. }
  2860. #u71315_text {
  2861. border-width:0px;
  2862. word-wrap:break-word;
  2863. text-transform:none;
  2864. }
  2865. #u71316_img {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:108px;
  2871. height:44px;
  2872. }
  2873. #u71316 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:242px;
  2877. top:0px;
  2878. width:108px;
  2879. height:44px;
  2880. display:flex;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:12px;
  2885. color:#FFFFFF;
  2886. }
  2887. #u71316 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 2px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u71316_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. }
  2899. #u71317_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:127px;
  2905. height:44px;
  2906. }
  2907. #u71317 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:350px;
  2911. top:0px;
  2912. width:127px;
  2913. height:44px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. color:#FFFFFF;
  2920. }
  2921. #u71317 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 2px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u71317_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. }
  2933. #u71318_img {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:127px;
  2939. height:44px;
  2940. }
  2941. #u71318 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:477px;
  2945. top:0px;
  2946. width:127px;
  2947. height:44px;
  2948. display:flex;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:12px;
  2953. color:#FFFFFF;
  2954. }
  2955. #u71318 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 2px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u71318_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. }
  2967. #u71319_img {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:127px;
  2973. height:44px;
  2974. }
  2975. #u71319 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:604px;
  2979. top:0px;
  2980. width:127px;
  2981. height:44px;
  2982. display:flex;
  2983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2984. font-weight:400;
  2985. font-style:normal;
  2986. font-size:12px;
  2987. color:#FFFFFF;
  2988. }
  2989. #u71319 .text {
  2990. position:absolute;
  2991. align-self:center;
  2992. padding:2px 2px 2px 2px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u71319_text {
  2997. border-width:0px;
  2998. word-wrap:break-word;
  2999. text-transform:none;
  3000. }
  3001. #u71320_img {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:188px;
  3007. height:44px;
  3008. }
  3009. #u71320 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:731px;
  3013. top:0px;
  3014. width:188px;
  3015. height:44px;
  3016. display:flex;
  3017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:12px;
  3021. color:#FFFFFF;
  3022. }
  3023. #u71320 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 2px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u71320_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. }
  3035. #u71321_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:134px;
  3041. height:40px;
  3042. }
  3043. #u71321 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:44px;
  3048. width:134px;
  3049. height:40px;
  3050. display:flex;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:12px;
  3055. }
  3056. #u71321 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 2px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u71321_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. }
  3068. #u71322_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:108px;
  3074. height:40px;
  3075. }
  3076. #u71322 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:134px;
  3080. top:44px;
  3081. width:108px;
  3082. height:40px;
  3083. display:flex;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:12px;
  3088. }
  3089. #u71322 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 2px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u71322_text {
  3097. border-width:0px;
  3098. word-wrap:break-word;
  3099. text-transform:none;
  3100. }
  3101. #u71323_img {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:108px;
  3107. height:40px;
  3108. }
  3109. #u71323 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:242px;
  3113. top:44px;
  3114. width:108px;
  3115. height:40px;
  3116. display:flex;
  3117. font-size:12px;
  3118. }
  3119. #u71323 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 2px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u71323_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. }
  3131. #u71324_img {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:127px;
  3137. height:40px;
  3138. }
  3139. #u71324 {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:350px;
  3143. top:44px;
  3144. width:127px;
  3145. height:40px;
  3146. display:flex;
  3147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3148. font-weight:400;
  3149. font-style:normal;
  3150. font-size:12px;
  3151. }
  3152. #u71324 .text {
  3153. position:absolute;
  3154. align-self:center;
  3155. padding:2px 2px 2px 2px;
  3156. box-sizing:border-box;
  3157. width:100%;
  3158. }
  3159. #u71324_text {
  3160. border-width:0px;
  3161. word-wrap:break-word;
  3162. text-transform:none;
  3163. }
  3164. #u71325_img {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:127px;
  3170. height:40px;
  3171. }
  3172. #u71325 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:477px;
  3176. top:44px;
  3177. width:127px;
  3178. height:40px;
  3179. display:flex;
  3180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3181. font-weight:400;
  3182. font-style:normal;
  3183. font-size:12px;
  3184. }
  3185. #u71325 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 2px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u71325_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. }
  3197. #u71326_img {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:127px;
  3203. height:40px;
  3204. }
  3205. #u71326 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:604px;
  3209. top:44px;
  3210. width:127px;
  3211. height:40px;
  3212. display:flex;
  3213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3214. font-weight:400;
  3215. font-style:normal;
  3216. font-size:12px;
  3217. color:#1890FF;
  3218. }
  3219. #u71326 .text {
  3220. position:absolute;
  3221. align-self:center;
  3222. padding:2px 2px 2px 2px;
  3223. box-sizing:border-box;
  3224. width:100%;
  3225. }
  3226. #u71326_text {
  3227. border-width:0px;
  3228. word-wrap:break-word;
  3229. text-transform:none;
  3230. }
  3231. #u71327_img {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:188px;
  3237. height:40px;
  3238. }
  3239. #u71327 {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:731px;
  3243. top:44px;
  3244. width:188px;
  3245. height:40px;
  3246. display:flex;
  3247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. font-size:12px;
  3251. color:#1890FF;
  3252. }
  3253. #u71327 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 2px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u71327_text {
  3261. border-width:0px;
  3262. word-wrap:break-word;
  3263. text-transform:none;
  3264. }
  3265. #u71328_img {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:134px;
  3271. height:40px;
  3272. }
  3273. #u71328 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:84px;
  3278. width:134px;
  3279. height:40px;
  3280. display:flex;
  3281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3282. font-weight:400;
  3283. font-style:normal;
  3284. font-size:12px;
  3285. }
  3286. #u71328 .text {
  3287. position:absolute;
  3288. align-self:center;
  3289. padding:2px 2px 2px 2px;
  3290. box-sizing:border-box;
  3291. width:100%;
  3292. }
  3293. #u71328_text {
  3294. border-width:0px;
  3295. word-wrap:break-word;
  3296. text-transform:none;
  3297. }
  3298. #u71329_img {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:108px;
  3304. height:40px;
  3305. }
  3306. #u71329 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:134px;
  3310. top:84px;
  3311. width:108px;
  3312. height:40px;
  3313. display:flex;
  3314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3315. font-weight:400;
  3316. font-style:normal;
  3317. font-size:12px;
  3318. }
  3319. #u71329 .text {
  3320. position:absolute;
  3321. align-self:center;
  3322. padding:2px 2px 2px 2px;
  3323. box-sizing:border-box;
  3324. width:100%;
  3325. }
  3326. #u71329_text {
  3327. border-width:0px;
  3328. word-wrap:break-word;
  3329. text-transform:none;
  3330. }
  3331. #u71330_img {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:108px;
  3337. height:40px;
  3338. }
  3339. #u71330 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:242px;
  3343. top:84px;
  3344. width:108px;
  3345. height:40px;
  3346. display:flex;
  3347. font-size:12px;
  3348. }
  3349. #u71330 .text {
  3350. position:absolute;
  3351. align-self:center;
  3352. padding:2px 2px 2px 2px;
  3353. box-sizing:border-box;
  3354. width:100%;
  3355. }
  3356. #u71330_text {
  3357. border-width:0px;
  3358. word-wrap:break-word;
  3359. text-transform:none;
  3360. }
  3361. #u71331_img {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:127px;
  3367. height:40px;
  3368. }
  3369. #u71331 {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:350px;
  3373. top:84px;
  3374. width:127px;
  3375. height:40px;
  3376. display:flex;
  3377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3378. font-weight:400;
  3379. font-style:normal;
  3380. font-size:12px;
  3381. }
  3382. #u71331 .text {
  3383. position:absolute;
  3384. align-self:center;
  3385. padding:2px 2px 2px 2px;
  3386. box-sizing:border-box;
  3387. width:100%;
  3388. }
  3389. #u71331_text {
  3390. border-width:0px;
  3391. word-wrap:break-word;
  3392. text-transform:none;
  3393. visibility:hidden;
  3394. }
  3395. #u71332_img {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:0px;
  3399. top:0px;
  3400. width:127px;
  3401. height:40px;
  3402. }
  3403. #u71332 {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:477px;
  3407. top:84px;
  3408. width:127px;
  3409. height:40px;
  3410. display:flex;
  3411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3412. font-weight:400;
  3413. font-style:normal;
  3414. font-size:12px;
  3415. }
  3416. #u71332 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 2px 2px 2px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u71332_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. visibility:hidden;
  3428. }
  3429. #u71333_img {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:0px;
  3433. top:0px;
  3434. width:127px;
  3435. height:40px;
  3436. }
  3437. #u71333 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:604px;
  3441. top:84px;
  3442. width:127px;
  3443. height:40px;
  3444. display:flex;
  3445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:12px;
  3449. }
  3450. #u71333 .text {
  3451. position:absolute;
  3452. align-self:center;
  3453. padding:2px 2px 2px 2px;
  3454. box-sizing:border-box;
  3455. width:100%;
  3456. }
  3457. #u71333_text {
  3458. border-width:0px;
  3459. word-wrap:break-word;
  3460. text-transform:none;
  3461. visibility:hidden;
  3462. }
  3463. #u71334_img {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:0px;
  3467. top:0px;
  3468. width:188px;
  3469. height:40px;
  3470. }
  3471. #u71334 {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:731px;
  3475. top:84px;
  3476. width:188px;
  3477. height:40px;
  3478. display:flex;
  3479. font-size:12px;
  3480. }
  3481. #u71334 .text {
  3482. position:absolute;
  3483. align-self:center;
  3484. padding:2px 2px 2px 2px;
  3485. box-sizing:border-box;
  3486. width:100%;
  3487. }
  3488. #u71334_text {
  3489. border-width:0px;
  3490. word-wrap:break-word;
  3491. text-transform:none;
  3492. visibility:hidden;
  3493. }
  3494. #u71335_img {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:134px;
  3500. height:40px;
  3501. }
  3502. #u71335 {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:124px;
  3507. width:134px;
  3508. height:40px;
  3509. display:flex;
  3510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3511. font-weight:400;
  3512. font-style:normal;
  3513. font-size:12px;
  3514. }
  3515. #u71335 .text {
  3516. position:absolute;
  3517. align-self:center;
  3518. padding:2px 2px 2px 2px;
  3519. box-sizing:border-box;
  3520. width:100%;
  3521. }
  3522. #u71335_text {
  3523. border-width:0px;
  3524. word-wrap:break-word;
  3525. text-transform:none;
  3526. visibility:hidden;
  3527. }
  3528. #u71336_img {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:108px;
  3534. height:40px;
  3535. }
  3536. #u71336 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:134px;
  3540. top:124px;
  3541. width:108px;
  3542. height:40px;
  3543. display:flex;
  3544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3545. font-weight:400;
  3546. font-style:normal;
  3547. font-size:12px;
  3548. }
  3549. #u71336 .text {
  3550. position:absolute;
  3551. align-self:center;
  3552. padding:2px 2px 2px 2px;
  3553. box-sizing:border-box;
  3554. width:100%;
  3555. }
  3556. #u71336_text {
  3557. border-width:0px;
  3558. word-wrap:break-word;
  3559. text-transform:none;
  3560. visibility:hidden;
  3561. }
  3562. #u71337_img {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:108px;
  3568. height:40px;
  3569. }
  3570. #u71337 {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:242px;
  3574. top:124px;
  3575. width:108px;
  3576. height:40px;
  3577. display:flex;
  3578. font-size:12px;
  3579. }
  3580. #u71337 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 2px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u71337_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u71338_img {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:127px;
  3599. height:40px;
  3600. }
  3601. #u71338 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:350px;
  3605. top:124px;
  3606. width:127px;
  3607. height:40px;
  3608. display:flex;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. }
  3614. #u71338 .text {
  3615. position:absolute;
  3616. align-self:center;
  3617. padding:2px 2px 2px 2px;
  3618. box-sizing:border-box;
  3619. width:100%;
  3620. }
  3621. #u71338_text {
  3622. border-width:0px;
  3623. word-wrap:break-word;
  3624. text-transform:none;
  3625. visibility:hidden;
  3626. }
  3627. #u71339_img {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:127px;
  3633. height:40px;
  3634. }
  3635. #u71339 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:477px;
  3639. top:124px;
  3640. width:127px;
  3641. height:40px;
  3642. display:flex;
  3643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3644. font-weight:400;
  3645. font-style:normal;
  3646. font-size:12px;
  3647. }
  3648. #u71339 .text {
  3649. position:absolute;
  3650. align-self:center;
  3651. padding:2px 2px 2px 2px;
  3652. box-sizing:border-box;
  3653. width:100%;
  3654. }
  3655. #u71339_text {
  3656. border-width:0px;
  3657. word-wrap:break-word;
  3658. text-transform:none;
  3659. visibility:hidden;
  3660. }
  3661. #u71340_img {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:0px;
  3665. top:0px;
  3666. width:127px;
  3667. height:40px;
  3668. }
  3669. #u71340 {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:604px;
  3673. top:124px;
  3674. width:127px;
  3675. height:40px;
  3676. display:flex;
  3677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3678. font-weight:400;
  3679. font-style:normal;
  3680. font-size:12px;
  3681. }
  3682. #u71340 .text {
  3683. position:absolute;
  3684. align-self:center;
  3685. padding:2px 2px 2px 2px;
  3686. box-sizing:border-box;
  3687. width:100%;
  3688. }
  3689. #u71340_text {
  3690. border-width:0px;
  3691. word-wrap:break-word;
  3692. text-transform:none;
  3693. visibility:hidden;
  3694. }
  3695. #u71341_img {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:188px;
  3701. height:40px;
  3702. }
  3703. #u71341 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:731px;
  3707. top:124px;
  3708. width:188px;
  3709. height:40px;
  3710. display:flex;
  3711. font-size:12px;
  3712. }
  3713. #u71341 .text {
  3714. position:absolute;
  3715. align-self:center;
  3716. padding:2px 2px 2px 2px;
  3717. box-sizing:border-box;
  3718. width:100%;
  3719. }
  3720. #u71341_text {
  3721. border-width:0px;
  3722. word-wrap:break-word;
  3723. text-transform:none;
  3724. visibility:hidden;
  3725. }
  3726. #u71342_img {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:134px;
  3732. height:40px;
  3733. }
  3734. #u71342 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:164px;
  3739. width:134px;
  3740. height:40px;
  3741. display:flex;
  3742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3743. font-weight:400;
  3744. font-style:normal;
  3745. font-size:12px;
  3746. }
  3747. #u71342 .text {
  3748. position:absolute;
  3749. align-self:center;
  3750. padding:2px 2px 2px 2px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u71342_text {
  3755. border-width:0px;
  3756. word-wrap:break-word;
  3757. text-transform:none;
  3758. visibility:hidden;
  3759. }
  3760. #u71343_img {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:0px;
  3764. top:0px;
  3765. width:108px;
  3766. height:40px;
  3767. }
  3768. #u71343 {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:134px;
  3772. top:164px;
  3773. width:108px;
  3774. height:40px;
  3775. display:flex;
  3776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3777. font-weight:400;
  3778. font-style:normal;
  3779. font-size:12px;
  3780. }
  3781. #u71343 .text {
  3782. position:absolute;
  3783. align-self:center;
  3784. padding:2px 2px 2px 2px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u71343_text {
  3789. border-width:0px;
  3790. word-wrap:break-word;
  3791. text-transform:none;
  3792. visibility:hidden;
  3793. }
  3794. #u71344_img {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:108px;
  3800. height:40px;
  3801. }
  3802. #u71344 {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:242px;
  3806. top:164px;
  3807. width:108px;
  3808. height:40px;
  3809. display:flex;
  3810. font-size:12px;
  3811. }
  3812. #u71344 .text {
  3813. position:absolute;
  3814. align-self:center;
  3815. padding:2px 2px 2px 2px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u71344_text {
  3820. border-width:0px;
  3821. word-wrap:break-word;
  3822. text-transform:none;
  3823. visibility:hidden;
  3824. }
  3825. #u71345_img {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:127px;
  3831. height:40px;
  3832. }
  3833. #u71345 {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:350px;
  3837. top:164px;
  3838. width:127px;
  3839. height:40px;
  3840. display:flex;
  3841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:12px;
  3845. }
  3846. #u71345 .text {
  3847. position:absolute;
  3848. align-self:center;
  3849. padding:2px 2px 2px 2px;
  3850. box-sizing:border-box;
  3851. width:100%;
  3852. }
  3853. #u71345_text {
  3854. border-width:0px;
  3855. word-wrap:break-word;
  3856. text-transform:none;
  3857. visibility:hidden;
  3858. }
  3859. #u71346_img {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:127px;
  3865. height:40px;
  3866. }
  3867. #u71346 {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:477px;
  3871. top:164px;
  3872. width:127px;
  3873. height:40px;
  3874. display:flex;
  3875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3876. font-weight:400;
  3877. font-style:normal;
  3878. font-size:12px;
  3879. }
  3880. #u71346 .text {
  3881. position:absolute;
  3882. align-self:center;
  3883. padding:2px 2px 2px 2px;
  3884. box-sizing:border-box;
  3885. width:100%;
  3886. }
  3887. #u71346_text {
  3888. border-width:0px;
  3889. word-wrap:break-word;
  3890. text-transform:none;
  3891. visibility:hidden;
  3892. }
  3893. #u71347_img {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:0px;
  3897. top:0px;
  3898. width:127px;
  3899. height:40px;
  3900. }
  3901. #u71347 {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:604px;
  3905. top:164px;
  3906. width:127px;
  3907. height:40px;
  3908. display:flex;
  3909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3910. font-weight:400;
  3911. font-style:normal;
  3912. font-size:12px;
  3913. }
  3914. #u71347 .text {
  3915. position:absolute;
  3916. align-self:center;
  3917. padding:2px 2px 2px 2px;
  3918. box-sizing:border-box;
  3919. width:100%;
  3920. }
  3921. #u71347_text {
  3922. border-width:0px;
  3923. word-wrap:break-word;
  3924. text-transform:none;
  3925. visibility:hidden;
  3926. }
  3927. #u71348_img {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:0px;
  3931. top:0px;
  3932. width:188px;
  3933. height:40px;
  3934. }
  3935. #u71348 {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:731px;
  3939. top:164px;
  3940. width:188px;
  3941. height:40px;
  3942. display:flex;
  3943. font-size:12px;
  3944. }
  3945. #u71348 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 2px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u71348_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u71349_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:134px;
  3964. height:40px;
  3965. }
  3966. #u71349 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:204px;
  3971. width:134px;
  3972. height:40px;
  3973. display:flex;
  3974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:12px;
  3978. }
  3979. #u71349 .text {
  3980. position:absolute;
  3981. align-self:center;
  3982. padding:2px 2px 2px 2px;
  3983. box-sizing:border-box;
  3984. width:100%;
  3985. }
  3986. #u71349_text {
  3987. border-width:0px;
  3988. word-wrap:break-word;
  3989. text-transform:none;
  3990. visibility:hidden;
  3991. }
  3992. #u71350_img {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:108px;
  3998. height:40px;
  3999. }
  4000. #u71350 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:134px;
  4004. top:204px;
  4005. width:108px;
  4006. height:40px;
  4007. display:flex;
  4008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4009. font-weight:400;
  4010. font-style:normal;
  4011. font-size:12px;
  4012. }
  4013. #u71350 .text {
  4014. position:absolute;
  4015. align-self:center;
  4016. padding:2px 2px 2px 2px;
  4017. box-sizing:border-box;
  4018. width:100%;
  4019. }
  4020. #u71350_text {
  4021. border-width:0px;
  4022. word-wrap:break-word;
  4023. text-transform:none;
  4024. visibility:hidden;
  4025. }
  4026. #u71351_img {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:108px;
  4032. height:40px;
  4033. }
  4034. #u71351 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:242px;
  4038. top:204px;
  4039. width:108px;
  4040. height:40px;
  4041. display:flex;
  4042. font-size:12px;
  4043. }
  4044. #u71351 .text {
  4045. position:absolute;
  4046. align-self:center;
  4047. padding:2px 2px 2px 2px;
  4048. box-sizing:border-box;
  4049. width:100%;
  4050. }
  4051. #u71351_text {
  4052. border-width:0px;
  4053. word-wrap:break-word;
  4054. text-transform:none;
  4055. visibility:hidden;
  4056. }
  4057. #u71352_img {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:0px;
  4061. top:0px;
  4062. width:127px;
  4063. height:40px;
  4064. }
  4065. #u71352 {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:350px;
  4069. top:204px;
  4070. width:127px;
  4071. height:40px;
  4072. display:flex;
  4073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4074. font-weight:400;
  4075. font-style:normal;
  4076. font-size:12px;
  4077. }
  4078. #u71352 .text {
  4079. position:absolute;
  4080. align-self:center;
  4081. padding:2px 2px 2px 2px;
  4082. box-sizing:border-box;
  4083. width:100%;
  4084. }
  4085. #u71352_text {
  4086. border-width:0px;
  4087. word-wrap:break-word;
  4088. text-transform:none;
  4089. visibility:hidden;
  4090. }
  4091. #u71353_img {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:0px;
  4095. top:0px;
  4096. width:127px;
  4097. height:40px;
  4098. }
  4099. #u71353 {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:477px;
  4103. top:204px;
  4104. width:127px;
  4105. height:40px;
  4106. display:flex;
  4107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4108. font-weight:400;
  4109. font-style:normal;
  4110. font-size:12px;
  4111. }
  4112. #u71353 .text {
  4113. position:absolute;
  4114. align-self:center;
  4115. padding:2px 2px 2px 2px;
  4116. box-sizing:border-box;
  4117. width:100%;
  4118. }
  4119. #u71353_text {
  4120. border-width:0px;
  4121. word-wrap:break-word;
  4122. text-transform:none;
  4123. visibility:hidden;
  4124. }
  4125. #u71354_img {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:127px;
  4131. height:40px;
  4132. }
  4133. #u71354 {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:604px;
  4137. top:204px;
  4138. width:127px;
  4139. height:40px;
  4140. display:flex;
  4141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:12px;
  4145. }
  4146. #u71354 .text {
  4147. position:absolute;
  4148. align-self:center;
  4149. padding:2px 2px 2px 2px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u71354_text {
  4154. border-width:0px;
  4155. word-wrap:break-word;
  4156. text-transform:none;
  4157. visibility:hidden;
  4158. }
  4159. #u71355_img {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:188px;
  4165. height:40px;
  4166. }
  4167. #u71355 {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:731px;
  4171. top:204px;
  4172. width:188px;
  4173. height:40px;
  4174. display:flex;
  4175. font-size:12px;
  4176. }
  4177. #u71355 .text {
  4178. position:absolute;
  4179. align-self:center;
  4180. padding:2px 2px 2px 2px;
  4181. box-sizing:border-box;
  4182. width:100%;
  4183. }
  4184. #u71355_text {
  4185. border-width:0px;
  4186. word-wrap:break-word;
  4187. text-transform:none;
  4188. visibility:hidden;
  4189. }
  4190. #u71356_img {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:0px;
  4194. top:0px;
  4195. width:134px;
  4196. height:40px;
  4197. }
  4198. #u71356 {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:244px;
  4203. width:134px;
  4204. height:40px;
  4205. display:flex;
  4206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4207. font-weight:400;
  4208. font-style:normal;
  4209. font-size:12px;
  4210. }
  4211. #u71356 .text {
  4212. position:absolute;
  4213. align-self:center;
  4214. padding:2px 2px 2px 2px;
  4215. box-sizing:border-box;
  4216. width:100%;
  4217. }
  4218. #u71356_text {
  4219. border-width:0px;
  4220. word-wrap:break-word;
  4221. text-transform:none;
  4222. visibility:hidden;
  4223. }
  4224. #u71357_img {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:108px;
  4230. height:40px;
  4231. }
  4232. #u71357 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:134px;
  4236. top:244px;
  4237. width:108px;
  4238. height:40px;
  4239. display:flex;
  4240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4241. font-weight:400;
  4242. font-style:normal;
  4243. font-size:12px;
  4244. }
  4245. #u71357 .text {
  4246. position:absolute;
  4247. align-self:center;
  4248. padding:2px 2px 2px 2px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u71357_text {
  4253. border-width:0px;
  4254. word-wrap:break-word;
  4255. text-transform:none;
  4256. visibility:hidden;
  4257. }
  4258. #u71358_img {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:108px;
  4264. height:40px;
  4265. }
  4266. #u71358 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:242px;
  4270. top:244px;
  4271. width:108px;
  4272. height:40px;
  4273. display:flex;
  4274. font-size:12px;
  4275. }
  4276. #u71358 .text {
  4277. position:absolute;
  4278. align-self:center;
  4279. padding:2px 2px 2px 2px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u71358_text {
  4284. border-width:0px;
  4285. word-wrap:break-word;
  4286. text-transform:none;
  4287. visibility:hidden;
  4288. }
  4289. #u71359_img {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:127px;
  4295. height:40px;
  4296. }
  4297. #u71359 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:350px;
  4301. top:244px;
  4302. width:127px;
  4303. height:40px;
  4304. display:flex;
  4305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:12px;
  4309. }
  4310. #u71359 .text {
  4311. position:absolute;
  4312. align-self:center;
  4313. padding:2px 2px 2px 2px;
  4314. box-sizing:border-box;
  4315. width:100%;
  4316. }
  4317. #u71359_text {
  4318. border-width:0px;
  4319. word-wrap:break-word;
  4320. text-transform:none;
  4321. visibility:hidden;
  4322. }
  4323. #u71360_img {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:127px;
  4329. height:40px;
  4330. }
  4331. #u71360 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:477px;
  4335. top:244px;
  4336. width:127px;
  4337. height:40px;
  4338. display:flex;
  4339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4340. font-weight:400;
  4341. font-style:normal;
  4342. font-size:12px;
  4343. }
  4344. #u71360 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 2px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u71360_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. visibility:hidden;
  4356. }
  4357. #u71361_img {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:127px;
  4363. height:40px;
  4364. }
  4365. #u71361 {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:604px;
  4369. top:244px;
  4370. width:127px;
  4371. height:40px;
  4372. display:flex;
  4373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:12px;
  4377. }
  4378. #u71361 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 2px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u71361_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u71362_img {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:188px;
  4397. height:40px;
  4398. }
  4399. #u71362 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:731px;
  4403. top:244px;
  4404. width:188px;
  4405. height:40px;
  4406. display:flex;
  4407. font-size:12px;
  4408. }
  4409. #u71362 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 2px 2px 2px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u71362_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. visibility:hidden;
  4421. }
  4422. #u71363_img {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:134px;
  4428. height:40px;
  4429. }
  4430. #u71363 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:284px;
  4435. width:134px;
  4436. height:40px;
  4437. display:flex;
  4438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. font-size:12px;
  4442. }
  4443. #u71363 .text {
  4444. position:absolute;
  4445. align-self:center;
  4446. padding:2px 2px 2px 2px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u71363_text {
  4451. border-width:0px;
  4452. word-wrap:break-word;
  4453. text-transform:none;
  4454. visibility:hidden;
  4455. }
  4456. #u71364_img {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:0px;
  4460. top:0px;
  4461. width:108px;
  4462. height:40px;
  4463. }
  4464. #u71364 {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:134px;
  4468. top:284px;
  4469. width:108px;
  4470. height:40px;
  4471. display:flex;
  4472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:12px;
  4476. }
  4477. #u71364 .text {
  4478. position:absolute;
  4479. align-self:center;
  4480. padding:2px 2px 2px 2px;
  4481. box-sizing:border-box;
  4482. width:100%;
  4483. }
  4484. #u71364_text {
  4485. border-width:0px;
  4486. word-wrap:break-word;
  4487. text-transform:none;
  4488. visibility:hidden;
  4489. }
  4490. #u71365_img {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:108px;
  4496. height:40px;
  4497. }
  4498. #u71365 {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:242px;
  4502. top:284px;
  4503. width:108px;
  4504. height:40px;
  4505. display:flex;
  4506. font-size:12px;
  4507. }
  4508. #u71365 .text {
  4509. position:absolute;
  4510. align-self:center;
  4511. padding:2px 2px 2px 2px;
  4512. box-sizing:border-box;
  4513. width:100%;
  4514. }
  4515. #u71365_text {
  4516. border-width:0px;
  4517. word-wrap:break-word;
  4518. text-transform:none;
  4519. visibility:hidden;
  4520. }
  4521. #u71366_img {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:127px;
  4527. height:40px;
  4528. }
  4529. #u71366 {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:350px;
  4533. top:284px;
  4534. width:127px;
  4535. height:40px;
  4536. display:flex;
  4537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4538. font-weight:400;
  4539. font-style:normal;
  4540. font-size:12px;
  4541. }
  4542. #u71366 .text {
  4543. position:absolute;
  4544. align-self:center;
  4545. padding:2px 2px 2px 2px;
  4546. box-sizing:border-box;
  4547. width:100%;
  4548. }
  4549. #u71366_text {
  4550. border-width:0px;
  4551. word-wrap:break-word;
  4552. text-transform:none;
  4553. visibility:hidden;
  4554. }
  4555. #u71367_img {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:127px;
  4561. height:40px;
  4562. }
  4563. #u71367 {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:477px;
  4567. top:284px;
  4568. width:127px;
  4569. height:40px;
  4570. display:flex;
  4571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. font-size:12px;
  4575. }
  4576. #u71367 .text {
  4577. position:absolute;
  4578. align-self:center;
  4579. padding:2px 2px 2px 2px;
  4580. box-sizing:border-box;
  4581. width:100%;
  4582. }
  4583. #u71367_text {
  4584. border-width:0px;
  4585. word-wrap:break-word;
  4586. text-transform:none;
  4587. visibility:hidden;
  4588. }
  4589. #u71368_img {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:127px;
  4595. height:40px;
  4596. }
  4597. #u71368 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:604px;
  4601. top:284px;
  4602. width:127px;
  4603. height:40px;
  4604. display:flex;
  4605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4606. font-weight:400;
  4607. font-style:normal;
  4608. font-size:12px;
  4609. }
  4610. #u71368 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:2px 2px 2px 2px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u71368_text {
  4618. border-width:0px;
  4619. word-wrap:break-word;
  4620. text-transform:none;
  4621. visibility:hidden;
  4622. }
  4623. #u71369_img {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:0px;
  4627. top:0px;
  4628. width:188px;
  4629. height:40px;
  4630. }
  4631. #u71369 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:731px;
  4635. top:284px;
  4636. width:188px;
  4637. height:40px;
  4638. display:flex;
  4639. font-size:12px;
  4640. }
  4641. #u71369 .text {
  4642. position:absolute;
  4643. align-self:center;
  4644. padding:2px 2px 2px 2px;
  4645. box-sizing:border-box;
  4646. width:100%;
  4647. }
  4648. #u71369_text {
  4649. border-width:0px;
  4650. word-wrap:break-word;
  4651. text-transform:none;
  4652. visibility:hidden;
  4653. }
  4654. #u71370 {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:0px;
  4660. height:0px;
  4661. }
  4662. #u71371_div {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:0px;
  4666. top:0px;
  4667. width:455px;
  4668. height:160px;
  4669. background:inherit;
  4670. background-color:rgba(255, 255, 255, 1);
  4671. box-sizing:border-box;
  4672. border-width:1px;
  4673. border-style:solid;
  4674. border-color:rgba(204, 204, 204, 1);
  4675. border-radius:0px;
  4676. -moz-box-shadow:none;
  4677. -webkit-box-shadow:none;
  4678. box-shadow:none;
  4679. font-family:'Microsoft YaHei', sans-serif;
  4680. font-weight:400;
  4681. font-style:normal;
  4682. }
  4683. #u71371 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:1074px;
  4687. top:781px;
  4688. width:455px;
  4689. height:160px;
  4690. display:flex;
  4691. font-family:'Microsoft YaHei', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. }
  4695. #u71371 .text {
  4696. position:absolute;
  4697. align-self:center;
  4698. padding:2px 2px 2px 2px;
  4699. box-sizing:border-box;
  4700. width:100%;
  4701. }
  4702. #u71371_text {
  4703. border-width:0px;
  4704. word-wrap:break-word;
  4705. text-transform:none;
  4706. visibility:hidden;
  4707. }
  4708. #u71372_div {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:145px;
  4714. height:21px;
  4715. background:inherit;
  4716. background-color:rgba(255, 255, 255, 0);
  4717. border:none;
  4718. border-radius:0px;
  4719. -moz-box-shadow:none;
  4720. -webkit-box-shadow:none;
  4721. box-shadow:none;
  4722. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4723. font-weight:650;
  4724. font-style:normal;
  4725. font-size:18px;
  4726. color:#000000;
  4727. line-height:22px;
  4728. }
  4729. #u71372 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:1134px;
  4733. top:816px;
  4734. width:145px;
  4735. height:21px;
  4736. display:flex;
  4737. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4738. font-weight:650;
  4739. font-style:normal;
  4740. font-size:18px;
  4741. color:#000000;
  4742. line-height:22px;
  4743. }
  4744. #u71372 .text {
  4745. position:absolute;
  4746. align-self:flex-start;
  4747. padding:0px 0px 0px 0px;
  4748. box-sizing:border-box;
  4749. width:100%;
  4750. }
  4751. #u71372_text {
  4752. border-width:0px;
  4753. white-space:nowrap;
  4754. text-transform:none;
  4755. }
  4756. #u71373_div {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:61px;
  4762. height:32px;
  4763. background:inherit;
  4764. background-color:rgba(24, 144, 255, 1);
  4765. border:none;
  4766. border-radius:4px;
  4767. -moz-box-shadow:none;
  4768. -webkit-box-shadow:none;
  4769. box-shadow:none;
  4770. font-family:'Microsoft YaHei', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:14px;
  4774. color:#FFFFFF;
  4775. }
  4776. #u71373 {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:1435px;
  4780. top:886px;
  4781. width:61px;
  4782. height:32px;
  4783. display:flex;
  4784. font-family:'Microsoft YaHei', sans-serif;
  4785. font-weight:400;
  4786. font-style:normal;
  4787. font-size:14px;
  4788. color:#FFFFFF;
  4789. }
  4790. #u71373 .text {
  4791. position:absolute;
  4792. align-self:center;
  4793. padding:2px 16px 2px 16px;
  4794. box-sizing:border-box;
  4795. width:100%;
  4796. }
  4797. #u71373_text {
  4798. border-width:0px;
  4799. white-space:nowrap;
  4800. text-transform:none;
  4801. }
  4802. #u71374_div {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:66px;
  4808. height:32px;
  4809. background:inherit;
  4810. background-color:rgba(255, 255, 255, 1);
  4811. box-sizing:border-box;
  4812. border-width:1px;
  4813. border-style:solid;
  4814. border-color:rgba(217, 217, 217, 1);
  4815. border-radius:4px;
  4816. -moz-box-shadow:none;
  4817. -webkit-box-shadow:none;
  4818. box-shadow:none;
  4819. font-family:'Microsoft YaHei', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:14px;
  4823. color:rgba(0, 0, 0, 0.647058823529412);
  4824. line-height:21px;
  4825. }
  4826. #u71374 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:1353px;
  4830. top:886px;
  4831. width:66px;
  4832. height:32px;
  4833. display:flex;
  4834. font-family:'Microsoft YaHei', sans-serif;
  4835. font-weight:400;
  4836. font-style:normal;
  4837. font-size:14px;
  4838. color:rgba(0, 0, 0, 0.647058823529412);
  4839. line-height:21px;
  4840. }
  4841. #u71374 .text {
  4842. position:absolute;
  4843. align-self:center;
  4844. padding:2px 16px 2px 16px;
  4845. box-sizing:border-box;
  4846. width:100%;
  4847. }
  4848. #u71374_text {
  4849. border-width:0px;
  4850. white-space:nowrap;
  4851. text-transform:none;
  4852. }
  4853. #u71375_div {
  4854. border-width:0px;
  4855. position:absolute;
  4856. left:0px;
  4857. top:0px;
  4858. width:313px;
  4859. height:22px;
  4860. background:inherit;
  4861. background-color:rgba(255, 255, 255, 0);
  4862. border:none;
  4863. border-radius:0px;
  4864. -moz-box-shadow:none;
  4865. -webkit-box-shadow:none;
  4866. box-shadow:none;
  4867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. font-size:12px;
  4871. color:#7F7F7F;
  4872. line-height:22px;
  4873. }
  4874. #u71375 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:1134px;
  4878. top:848px;
  4879. width:313px;
  4880. height:22px;
  4881. display:flex;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:12px;
  4886. color:#7F7F7F;
  4887. line-height:22px;
  4888. }
  4889. #u71375 .text {
  4890. position:absolute;
  4891. align-self:flex-start;
  4892. padding:0px 0px 0px 0px;
  4893. box-sizing:border-box;
  4894. width:100%;
  4895. }
  4896. #u71375_text {
  4897. border-width:0px;
  4898. white-space:nowrap;
  4899. text-transform:none;
  4900. }
  4901. #u71376_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:24px;
  4907. height:24px;
  4908. }
  4909. #u71376 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:1098px;
  4913. top:816px;
  4914. width:24px;
  4915. height:24px;
  4916. display:flex;
  4917. }
  4918. #u71376 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 2px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u71376_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u71377 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:0px;
  4937. height:0px;
  4938. }
  4939. #u71378_div {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:455px;
  4945. height:160px;
  4946. background:inherit;
  4947. background-color:rgba(255, 255, 255, 1);
  4948. box-sizing:border-box;
  4949. border-width:1px;
  4950. border-style:solid;
  4951. border-color:rgba(204, 204, 204, 1);
  4952. border-radius:0px;
  4953. -moz-box-shadow:none;
  4954. -webkit-box-shadow:none;
  4955. box-shadow:none;
  4956. font-family:'Microsoft YaHei', sans-serif;
  4957. font-weight:400;
  4958. font-style:normal;
  4959. }
  4960. #u71378 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:1071px;
  4964. top:972px;
  4965. width:455px;
  4966. height:160px;
  4967. display:flex;
  4968. font-family:'Microsoft YaHei', sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. }
  4972. #u71378 .text {
  4973. position:absolute;
  4974. align-self:center;
  4975. padding:2px 2px 2px 2px;
  4976. box-sizing:border-box;
  4977. width:100%;
  4978. }
  4979. #u71378_text {
  4980. border-width:0px;
  4981. word-wrap:break-word;
  4982. text-transform:none;
  4983. visibility:hidden;
  4984. }
  4985. #u71379_div {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:0px;
  4989. top:0px;
  4990. width:145px;
  4991. height:21px;
  4992. background:inherit;
  4993. background-color:rgba(255, 255, 255, 0);
  4994. border:none;
  4995. border-radius:0px;
  4996. -moz-box-shadow:none;
  4997. -webkit-box-shadow:none;
  4998. box-shadow:none;
  4999. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5000. font-weight:650;
  5001. font-style:normal;
  5002. font-size:18px;
  5003. color:#000000;
  5004. line-height:22px;
  5005. }
  5006. #u71379 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:1131px;
  5010. top:1007px;
  5011. width:145px;
  5012. height:21px;
  5013. display:flex;
  5014. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5015. font-weight:650;
  5016. font-style:normal;
  5017. font-size:18px;
  5018. color:#000000;
  5019. line-height:22px;
  5020. }
  5021. #u71379 .text {
  5022. position:absolute;
  5023. align-self:flex-start;
  5024. padding:0px 0px 0px 0px;
  5025. box-sizing:border-box;
  5026. width:100%;
  5027. }
  5028. #u71379_text {
  5029. border-width:0px;
  5030. white-space:nowrap;
  5031. text-transform:none;
  5032. }
  5033. #u71380_div {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:61px;
  5039. height:32px;
  5040. background:inherit;
  5041. background-color:rgba(24, 144, 255, 1);
  5042. border:none;
  5043. border-radius:4px;
  5044. -moz-box-shadow:none;
  5045. -webkit-box-shadow:none;
  5046. box-shadow:none;
  5047. font-family:'Microsoft YaHei', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. font-size:14px;
  5051. color:#FFFFFF;
  5052. }
  5053. #u71380 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:1432px;
  5057. top:1077px;
  5058. width:61px;
  5059. height:32px;
  5060. display:flex;
  5061. font-family:'Microsoft YaHei', sans-serif;
  5062. font-weight:400;
  5063. font-style:normal;
  5064. font-size:14px;
  5065. color:#FFFFFF;
  5066. }
  5067. #u71380 .text {
  5068. position:absolute;
  5069. align-self:center;
  5070. padding:2px 16px 2px 16px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u71380_text {
  5075. border-width:0px;
  5076. white-space:nowrap;
  5077. text-transform:none;
  5078. }
  5079. #u71381_div {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:66px;
  5085. height:32px;
  5086. background:inherit;
  5087. background-color:rgba(255, 255, 255, 1);
  5088. box-sizing:border-box;
  5089. border-width:1px;
  5090. border-style:solid;
  5091. border-color:rgba(217, 217, 217, 1);
  5092. border-radius:4px;
  5093. -moz-box-shadow:none;
  5094. -webkit-box-shadow:none;
  5095. box-shadow:none;
  5096. font-family:'Microsoft YaHei', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:14px;
  5100. color:rgba(0, 0, 0, 0.647058823529412);
  5101. line-height:21px;
  5102. }
  5103. #u71381 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:1350px;
  5107. top:1077px;
  5108. width:66px;
  5109. height:32px;
  5110. display:flex;
  5111. font-family:'Microsoft YaHei', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:14px;
  5115. color:rgba(0, 0, 0, 0.647058823529412);
  5116. line-height:21px;
  5117. }
  5118. #u71381 .text {
  5119. position:absolute;
  5120. align-self:center;
  5121. padding:2px 16px 2px 16px;
  5122. box-sizing:border-box;
  5123. width:100%;
  5124. }
  5125. #u71381_text {
  5126. border-width:0px;
  5127. white-space:nowrap;
  5128. text-transform:none;
  5129. }
  5130. #u71382_img {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:24px;
  5136. height:24px;
  5137. }
  5138. #u71382 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:1095px;
  5142. top:1005px;
  5143. width:24px;
  5144. height:24px;
  5145. display:flex;
  5146. font-family:'Microsoft YaHei', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:52px;
  5150. color:#FAAD14;
  5151. }
  5152. #u71382 .text {
  5153. position:absolute;
  5154. align-self:center;
  5155. padding:2px 2px 2px 2px;
  5156. box-sizing:border-box;
  5157. width:100%;
  5158. }
  5159. #u71382_text {
  5160. border-width:0px;
  5161. word-wrap:break-word;
  5162. text-transform:none;
  5163. visibility:hidden;
  5164. }
  5165. #u71383_div {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:0px;
  5169. top:0px;
  5170. width:289px;
  5171. height:22px;
  5172. background:inherit;
  5173. background-color:rgba(255, 255, 255, 0);
  5174. border:none;
  5175. border-radius:0px;
  5176. -moz-box-shadow:none;
  5177. -webkit-box-shadow:none;
  5178. box-shadow:none;
  5179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5180. font-weight:400;
  5181. font-style:normal;
  5182. font-size:12px;
  5183. color:#7F7F7F;
  5184. line-height:22px;
  5185. }
  5186. #u71383 {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:1131px;
  5190. top:1039px;
  5191. width:289px;
  5192. height:22px;
  5193. display:flex;
  5194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5195. font-weight:400;
  5196. font-style:normal;
  5197. font-size:12px;
  5198. color:#7F7F7F;
  5199. line-height:22px;
  5200. }
  5201. #u71383 .text {
  5202. position:absolute;
  5203. align-self:flex-start;
  5204. padding:0px 0px 0px 0px;
  5205. box-sizing:border-box;
  5206. width:100%;
  5207. }
  5208. #u71383_text {
  5209. border-width:0px;
  5210. white-space:nowrap;
  5211. text-transform:none;
  5212. }
  5213. #u71384 {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:0px;
  5219. height:0px;
  5220. }
  5221. #u71385_div {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:100px;
  5227. height:100px;
  5228. background:inherit;
  5229. background-color:rgba(255, 255, 255, 1);
  5230. box-sizing:border-box;
  5231. border-width:1px;
  5232. border-style:solid;
  5233. border-color:rgba(242, 242, 242, 1);
  5234. border-left:0px;
  5235. border-right:0px;
  5236. border-radius:3px;
  5237. border-top-left-radius:0px;
  5238. border-top-right-radius:0px;
  5239. border-bottom-right-radius:0px;
  5240. border-bottom-left-radius:0px;
  5241. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5242. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5243. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5244. }
  5245. #u71385 {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:1452px;
  5249. top:328px;
  5250. width:100px;
  5251. height:100px;
  5252. display:flex;
  5253. }
  5254. #u71385 .text {
  5255. position:absolute;
  5256. align-self:center;
  5257. padding:2px 2px 2px 2px;
  5258. box-sizing:border-box;
  5259. width:100%;
  5260. }
  5261. #u71385_text {
  5262. border-width:0px;
  5263. word-wrap:break-word;
  5264. text-transform:none;
  5265. visibility:hidden;
  5266. }
  5267. #u71386_div {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:83px;
  5273. height:40px;
  5274. background:inherit;
  5275. background-color:rgba(255, 255, 255, 1);
  5276. border:none;
  5277. border-left:0px;
  5278. border-top:0px;
  5279. border-right:0px;
  5280. border-radius:4px;
  5281. border-bottom-right-radius:0px;
  5282. border-bottom-left-radius:0px;
  5283. -moz-box-shadow:none;
  5284. -webkit-box-shadow:none;
  5285. box-shadow:none;
  5286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5287. font-weight:400;
  5288. font-style:normal;
  5289. font-size:14px;
  5290. }
  5291. #u71386 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:1460px;
  5295. top:378px;
  5296. width:83px;
  5297. height:40px;
  5298. display:flex;
  5299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:14px;
  5303. }
  5304. #u71386 .text {
  5305. position:absolute;
  5306. align-self:center;
  5307. padding:5px 0px 5px 0px;
  5308. box-sizing:border-box;
  5309. width:100%;
  5310. }
  5311. #u71386_text {
  5312. border-width:0px;
  5313. word-wrap:break-word;
  5314. text-transform:none;
  5315. }
  5316. #u71387_div {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:83px;
  5322. height:40px;
  5323. background:inherit;
  5324. background-color:rgba(255, 255, 255, 1);
  5325. box-sizing:border-box;
  5326. border-width:1px;
  5327. border-style:solid;
  5328. border-color:rgba(242, 242, 242, 1);
  5329. border-left:0px;
  5330. border-top:0px;
  5331. border-right:0px;
  5332. border-radius:4px;
  5333. border-bottom-right-radius:0px;
  5334. border-bottom-left-radius:0px;
  5335. -moz-box-shadow:none;
  5336. -webkit-box-shadow:none;
  5337. box-shadow:none;
  5338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:14px;
  5342. }
  5343. #u71387 {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:1460px;
  5347. top:338px;
  5348. width:83px;
  5349. height:40px;
  5350. display:flex;
  5351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5352. font-weight:400;
  5353. font-style:normal;
  5354. font-size:14px;
  5355. }
  5356. #u71387 .text {
  5357. position:absolute;
  5358. align-self:center;
  5359. padding:5px 0px 5px 0px;
  5360. box-sizing:border-box;
  5361. width:100%;
  5362. }
  5363. #u71387_text {
  5364. border-width:0px;
  5365. word-wrap:break-word;
  5366. text-transform:none;
  5367. }
  5368. #u71388_div {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:0px;
  5372. top:0px;
  5373. width:60px;
  5374. height:30px;
  5375. background:inherit;
  5376. background-color:rgba(255, 255, 255, 1);
  5377. box-sizing:border-box;
  5378. border-width:1px;
  5379. border-style:solid;
  5380. border-color:rgba(24, 144, 255, 1);
  5381. border-radius:4px;
  5382. -moz-box-shadow:none;
  5383. -webkit-box-shadow:none;
  5384. box-shadow:none;
  5385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5386. font-weight:400;
  5387. font-style:normal;
  5388. font-size:14px;
  5389. color:#1890FF;
  5390. }
  5391. #u71388 {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:830px;
  5395. top:203px;
  5396. width:60px;
  5397. height:30px;
  5398. display:flex;
  5399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5400. font-weight:400;
  5401. font-style:normal;
  5402. font-size:14px;
  5403. color:#1890FF;
  5404. }
  5405. #u71388 .text {
  5406. position:absolute;
  5407. align-self:center;
  5408. padding:2px 2px 2px 2px;
  5409. box-sizing:border-box;
  5410. width:100%;
  5411. }
  5412. #u71388_text {
  5413. border-width:0px;
  5414. word-wrap:break-word;
  5415. text-transform:none;
  5416. }
  5417. #u71389_div {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:55px;
  5423. height:30px;
  5424. background:inherit;
  5425. background-color:rgba(255, 255, 255, 1);
  5426. box-sizing:border-box;
  5427. border-width:1px;
  5428. border-style:solid;
  5429. border-color:rgba(170, 170, 170, 1);
  5430. border-radius:4px;
  5431. -moz-box-shadow:none;
  5432. -webkit-box-shadow:none;
  5433. box-shadow:none;
  5434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:12px;
  5438. color:#555555;
  5439. }
  5440. #u71389 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:874px;
  5444. top:156px;
  5445. width:55px;
  5446. height:30px;
  5447. display:flex;
  5448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. font-size:12px;
  5452. color:#555555;
  5453. }
  5454. #u71389 .text {
  5455. position:absolute;
  5456. align-self:center;
  5457. padding:5px 15px 5px 15px;
  5458. box-sizing:border-box;
  5459. width:100%;
  5460. }
  5461. #u71389_text {
  5462. border-width:0px;
  5463. white-space:nowrap;
  5464. text-transform:none;
  5465. }
  5466. #u71390 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:0px;
  5472. height:0px;
  5473. }
  5474. #u71391_div {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:0px;
  5478. top:0px;
  5479. width:140px;
  5480. height:30px;
  5481. background:inherit;
  5482. background-color:rgba(255, 255, 255, 1);
  5483. box-sizing:border-box;
  5484. border-width:1px;
  5485. border-style:solid;
  5486. border-color:rgba(201, 201, 201, 1);
  5487. border-radius:4px;
  5488. -moz-box-shadow:none;
  5489. -webkit-box-shadow:none;
  5490. box-shadow:none;
  5491. font-family:'Microsoft YaHei', sans-serif;
  5492. font-weight:400;
  5493. font-style:normal;
  5494. font-size:14px;
  5495. color:#CCCCCC;
  5496. text-align:left;
  5497. }
  5498. #u71391 {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:800px;
  5502. top:116px;
  5503. width:140px;
  5504. height:30px;
  5505. display:flex;
  5506. font-family:'Microsoft YaHei', sans-serif;
  5507. font-weight:400;
  5508. font-style:normal;
  5509. font-size:14px;
  5510. color:#CCCCCC;
  5511. text-align:left;
  5512. }
  5513. #u71391 .text {
  5514. position:absolute;
  5515. align-self:center;
  5516. padding:2px 8px 2px 8px;
  5517. box-sizing:border-box;
  5518. width:100%;
  5519. }
  5520. #u71391_text {
  5521. border-width:0px;
  5522. word-wrap:break-word;
  5523. text-transform:none;
  5524. visibility:hidden;
  5525. }
  5526. #u71392_input {
  5527. position:absolute;
  5528. left:0px;
  5529. top:0px;
  5530. width:127px;
  5531. height:25px;
  5532. padding:2px 2px 2px 2px;
  5533. font-family:'Microsoft YaHei', sans-serif;
  5534. font-weight:400;
  5535. font-style:normal;
  5536. font-size:10px;
  5537. letter-spacing:normal;
  5538. color:#000000;
  5539. vertical-align:none;
  5540. text-align:left;
  5541. text-transform:none;
  5542. background-color:transparent;
  5543. border-color:transparent;
  5544. }
  5545. #u71392_input.disabled {
  5546. position:absolute;
  5547. left:0px;
  5548. top:0px;
  5549. width:127px;
  5550. height:25px;
  5551. padding:2px 2px 2px 2px;
  5552. font-family:'Microsoft YaHei', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:10px;
  5556. letter-spacing:normal;
  5557. color:#000000;
  5558. vertical-align:none;
  5559. text-align:left;
  5560. text-transform:none;
  5561. background-color:transparent;
  5562. border-color:transparent;
  5563. }
  5564. #u71392_div {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:127px;
  5570. height:25px;
  5571. background:inherit;
  5572. background-color:rgba(255, 255, 255, 1);
  5573. border:none;
  5574. border-radius:0px;
  5575. -moz-box-shadow:none;
  5576. -webkit-box-shadow:none;
  5577. box-shadow:none;
  5578. font-family:'Microsoft YaHei', sans-serif;
  5579. font-weight:400;
  5580. font-style:normal;
  5581. font-size:10px;
  5582. }
  5583. #u71392 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:808px;
  5587. top:117px;
  5588. width:127px;
  5589. height:25px;
  5590. display:flex;
  5591. font-family:'Microsoft YaHei', sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. font-size:10px;
  5595. }
  5596. #u71392 .text {
  5597. position:absolute;
  5598. align-self:center;
  5599. padding:2px 2px 2px 2px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u71392_div.disabled {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:127px;
  5609. height:25px;
  5610. background:inherit;
  5611. background-color:rgba(240, 240, 240, 1);
  5612. border:none;
  5613. border-radius:0px;
  5614. -moz-box-shadow:none;
  5615. -webkit-box-shadow:none;
  5616. box-shadow:none;
  5617. font-family:'Microsoft YaHei', sans-serif;
  5618. font-weight:400;
  5619. font-style:normal;
  5620. font-size:10px;
  5621. }
  5622. #u71392.disabled {
  5623. }
  5624. #u71393_div {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:59px;
  5630. height:30px;
  5631. background:inherit;
  5632. background-color:rgba(0, 153, 255, 1);
  5633. box-sizing:border-box;
  5634. border-width:1px;
  5635. border-style:solid;
  5636. border-color:rgba(0, 153, 255, 1);
  5637. border-radius:4px;
  5638. -moz-box-shadow:none;
  5639. -webkit-box-shadow:none;
  5640. box-shadow:none;
  5641. font-family:'Microsoft YaHei', sans-serif;
  5642. font-weight:400;
  5643. font-style:normal;
  5644. font-size:14px;
  5645. color:#FFFFFF;
  5646. }
  5647. #u71393 {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:805px;
  5651. top:156px;
  5652. width:59px;
  5653. height:30px;
  5654. display:flex;
  5655. font-family:'Microsoft YaHei', sans-serif;
  5656. font-weight:400;
  5657. font-style:normal;
  5658. font-size:14px;
  5659. color:#FFFFFF;
  5660. }
  5661. #u71393 .text {
  5662. position:absolute;
  5663. align-self:center;
  5664. padding:5px 15px 5px 15px;
  5665. box-sizing:border-box;
  5666. width:100%;
  5667. }
  5668. #u71393_text {
  5669. border-width:0px;
  5670. white-space:nowrap;
  5671. text-transform:none;
  5672. }
  5673. #u71394 {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:0px;
  5679. height:0px;
  5680. }
  5681. #u71395_div {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:0px;
  5685. top:0px;
  5686. width:140px;
  5687. height:30px;
  5688. background:inherit;
  5689. background-color:rgba(255, 255, 255, 1);
  5690. box-sizing:border-box;
  5691. border-width:1px;
  5692. border-style:solid;
  5693. border-color:rgba(201, 201, 201, 1);
  5694. border-radius:4px;
  5695. -moz-box-shadow:none;
  5696. -webkit-box-shadow:none;
  5697. box-shadow:none;
  5698. font-family:'Microsoft YaHei', sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. font-size:14px;
  5702. color:#CCCCCC;
  5703. text-align:left;
  5704. }
  5705. #u71395 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:1100px;
  5709. top:116px;
  5710. width:140px;
  5711. height:30px;
  5712. display:flex;
  5713. font-family:'Microsoft YaHei', sans-serif;
  5714. font-weight:400;
  5715. font-style:normal;
  5716. font-size:14px;
  5717. color:#CCCCCC;
  5718. text-align:left;
  5719. }
  5720. #u71395 .text {
  5721. position:absolute;
  5722. align-self:center;
  5723. padding:2px 8px 2px 8px;
  5724. box-sizing:border-box;
  5725. width:100%;
  5726. }
  5727. #u71395_text {
  5728. border-width:0px;
  5729. word-wrap:break-word;
  5730. text-transform:none;
  5731. visibility:hidden;
  5732. }
  5733. #u71396_input {
  5734. position:absolute;
  5735. left:0px;
  5736. top:0px;
  5737. width:127px;
  5738. height:25px;
  5739. padding:2px 2px 2px 2px;
  5740. font-family:'Microsoft YaHei', sans-serif;
  5741. font-weight:400;
  5742. font-style:normal;
  5743. font-size:10px;
  5744. letter-spacing:normal;
  5745. color:#000000;
  5746. vertical-align:none;
  5747. text-align:left;
  5748. text-transform:none;
  5749. background-color:transparent;
  5750. border-color:transparent;
  5751. }
  5752. #u71396_input.disabled {
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:127px;
  5757. height:25px;
  5758. padding:2px 2px 2px 2px;
  5759. font-family:'Microsoft YaHei', sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:10px;
  5763. letter-spacing:normal;
  5764. color:#000000;
  5765. vertical-align:none;
  5766. text-align:left;
  5767. text-transform:none;
  5768. background-color:transparent;
  5769. border-color:transparent;
  5770. }
  5771. #u71396_div {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:0px;
  5775. top:0px;
  5776. width:127px;
  5777. height:25px;
  5778. background:inherit;
  5779. background-color:rgba(255, 255, 255, 1);
  5780. border:none;
  5781. border-radius:0px;
  5782. -moz-box-shadow:none;
  5783. -webkit-box-shadow:none;
  5784. box-shadow:none;
  5785. font-family:'Microsoft YaHei', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. font-size:10px;
  5789. }
  5790. #u71396 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:1108px;
  5794. top:117px;
  5795. width:127px;
  5796. height:25px;
  5797. display:flex;
  5798. font-family:'Microsoft YaHei', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. font-size:10px;
  5802. }
  5803. #u71396 .text {
  5804. position:absolute;
  5805. align-self:center;
  5806. padding:2px 2px 2px 2px;
  5807. box-sizing:border-box;
  5808. width:100%;
  5809. }
  5810. #u71396_div.disabled {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:127px;
  5816. height:25px;
  5817. background:inherit;
  5818. background-color:rgba(240, 240, 240, 1);
  5819. border:none;
  5820. border-radius:0px;
  5821. -moz-box-shadow:none;
  5822. -webkit-box-shadow:none;
  5823. box-shadow:none;
  5824. font-family:'Microsoft YaHei', sans-serif;
  5825. font-weight:400;
  5826. font-style:normal;
  5827. font-size:10px;
  5828. }
  5829. #u71396.disabled {
  5830. }
  5831. #u71397 {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:0px;
  5835. top:0px;
  5836. width:0px;
  5837. height:0px;
  5838. }
  5839. #u71398_div {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:140px;
  5845. height:30px;
  5846. background:inherit;
  5847. background-color:rgba(255, 255, 255, 1);
  5848. box-sizing:border-box;
  5849. border-width:1px;
  5850. border-style:solid;
  5851. border-color:rgba(215, 215, 215, 1);
  5852. border-radius:4px;
  5853. -moz-box-shadow:none;
  5854. -webkit-box-shadow:none;
  5855. box-shadow:none;
  5856. font-size:11px;
  5857. }
  5858. #u71398 {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:950px;
  5862. top:116px;
  5863. width:140px;
  5864. height:30px;
  5865. display:flex;
  5866. font-size:11px;
  5867. }
  5868. #u71398 .text {
  5869. position:absolute;
  5870. align-self:center;
  5871. padding:2px 2px 2px 2px;
  5872. box-sizing:border-box;
  5873. width:100%;
  5874. }
  5875. #u71398_text {
  5876. border-width:0px;
  5877. word-wrap:break-word;
  5878. text-transform:none;
  5879. visibility:hidden;
  5880. }
  5881. #u71399_input {
  5882. position:absolute;
  5883. left:0px;
  5884. top:0px;
  5885. width:123px;
  5886. height:23px;
  5887. padding:2px 2px 2px 2px;
  5888. font-family:'ArialMT', 'Arial', sans-serif;
  5889. font-weight:400;
  5890. font-style:normal;
  5891. font-size:11px;
  5892. letter-spacing:normal;
  5893. color:#AAAAAA;
  5894. vertical-align:none;
  5895. text-align:left;
  5896. text-transform:none;
  5897. background-color:transparent;
  5898. border-color:transparent;
  5899. }
  5900. #u71399_input.disabled {
  5901. position:absolute;
  5902. left:0px;
  5903. top:0px;
  5904. width:123px;
  5905. height:23px;
  5906. padding:2px 2px 2px 2px;
  5907. font-family:'ArialMT', 'Arial', sans-serif;
  5908. font-weight:400;
  5909. font-style:normal;
  5910. font-size:11px;
  5911. letter-spacing:normal;
  5912. color:#AAAAAA;
  5913. vertical-align:none;
  5914. text-align:left;
  5915. text-transform:none;
  5916. background-color:transparent;
  5917. border-color:transparent;
  5918. }
  5919. #u71399_div {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:0px;
  5923. top:0px;
  5924. width:123px;
  5925. height:23px;
  5926. background:inherit;
  5927. background-color:rgba(255, 255, 255, 1);
  5928. border:none;
  5929. border-radius:0px;
  5930. -moz-box-shadow:none;
  5931. -webkit-box-shadow:none;
  5932. box-shadow:none;
  5933. font-size:11px;
  5934. color:#AAAAAA;
  5935. }
  5936. #u71399 {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:956px;
  5940. top:118px;
  5941. width:123px;
  5942. height:23px;
  5943. display:flex;
  5944. font-size:11px;
  5945. color:#AAAAAA;
  5946. }
  5947. #u71399 .text {
  5948. position:absolute;
  5949. align-self:flex-start;
  5950. padding:2px 2px 2px 2px;
  5951. box-sizing:border-box;
  5952. width:100%;
  5953. }
  5954. #u71399_div.disabled {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:123px;
  5960. height:23px;
  5961. background:inherit;
  5962. background-color:rgba(240, 240, 240, 1);
  5963. border:none;
  5964. border-radius:0px;
  5965. -moz-box-shadow:none;
  5966. -webkit-box-shadow:none;
  5967. box-shadow:none;
  5968. font-size:11px;
  5969. color:#AAAAAA;
  5970. }
  5971. #u71399.disabled {
  5972. }
  5973. .u71399_input_option {
  5974. font-size:11px;
  5975. }
  5976. #u71400 {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:0px;
  5982. height:0px;
  5983. }
  5984. #u71401_div {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:0px;
  5988. top:0px;
  5989. width:140px;
  5990. height:30px;
  5991. background:inherit;
  5992. background-color:rgba(255, 255, 255, 1);
  5993. box-sizing:border-box;
  5994. border-width:1px;
  5995. border-style:solid;
  5996. border-color:rgba(201, 201, 201, 1);
  5997. border-radius:4px;
  5998. -moz-box-shadow:none;
  5999. -webkit-box-shadow:none;
  6000. box-shadow:none;
  6001. font-family:'Microsoft YaHei', sans-serif;
  6002. font-weight:400;
  6003. font-style:normal;
  6004. font-size:14px;
  6005. color:#CCCCCC;
  6006. text-align:left;
  6007. }
  6008. #u71401 {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:1250px;
  6012. top:116px;
  6013. width:140px;
  6014. height:30px;
  6015. display:flex;
  6016. font-family:'Microsoft YaHei', sans-serif;
  6017. font-weight:400;
  6018. font-style:normal;
  6019. font-size:14px;
  6020. color:#CCCCCC;
  6021. text-align:left;
  6022. }
  6023. #u71401 .text {
  6024. position:absolute;
  6025. align-self:center;
  6026. padding:2px 8px 2px 8px;
  6027. box-sizing:border-box;
  6028. width:100%;
  6029. }
  6030. #u71401_text {
  6031. border-width:0px;
  6032. word-wrap:break-word;
  6033. text-transform:none;
  6034. visibility:hidden;
  6035. }
  6036. #u71402_input {
  6037. position:absolute;
  6038. left:0px;
  6039. top:0px;
  6040. width:127px;
  6041. height:25px;
  6042. padding:2px 2px 2px 2px;
  6043. font-family:'Microsoft YaHei', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:10px;
  6047. letter-spacing:normal;
  6048. color:#000000;
  6049. vertical-align:none;
  6050. text-align:left;
  6051. text-transform:none;
  6052. background-color:transparent;
  6053. border-color:transparent;
  6054. }
  6055. #u71402_input.disabled {
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:127px;
  6060. height:25px;
  6061. padding:2px 2px 2px 2px;
  6062. font-family:'Microsoft YaHei', sans-serif;
  6063. font-weight:400;
  6064. font-style:normal;
  6065. font-size:10px;
  6066. letter-spacing:normal;
  6067. color:#000000;
  6068. vertical-align:none;
  6069. text-align:left;
  6070. text-transform:none;
  6071. background-color:transparent;
  6072. border-color:transparent;
  6073. }
  6074. #u71402_div {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:127px;
  6080. height:25px;
  6081. background:inherit;
  6082. background-color:rgba(255, 255, 255, 1);
  6083. border:none;
  6084. border-radius:0px;
  6085. -moz-box-shadow:none;
  6086. -webkit-box-shadow:none;
  6087. box-shadow:none;
  6088. font-family:'Microsoft YaHei', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:10px;
  6092. }
  6093. #u71402 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:1258px;
  6097. top:117px;
  6098. width:127px;
  6099. height:25px;
  6100. display:flex;
  6101. font-family:'Microsoft YaHei', sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. font-size:10px;
  6105. }
  6106. #u71402 .text {
  6107. position:absolute;
  6108. align-self:center;
  6109. padding:2px 2px 2px 2px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u71402_div.disabled {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:0px;
  6117. top:0px;
  6118. width:127px;
  6119. height:25px;
  6120. background:inherit;
  6121. background-color:rgba(240, 240, 240, 1);
  6122. border:none;
  6123. border-radius:0px;
  6124. -moz-box-shadow:none;
  6125. -webkit-box-shadow:none;
  6126. box-shadow:none;
  6127. font-family:'Microsoft YaHei', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. font-size:10px;
  6131. }
  6132. #u71402.disabled {
  6133. }
  6134. #u71403 {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:0px;
  6138. top:0px;
  6139. width:0px;
  6140. height:0px;
  6141. }
  6142. #u71404_div {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:0px;
  6146. top:0px;
  6147. width:140px;
  6148. height:30px;
  6149. background:inherit;
  6150. background-color:rgba(255, 255, 255, 1);
  6151. box-sizing:border-box;
  6152. border-width:1px;
  6153. border-style:solid;
  6154. border-color:rgba(201, 201, 201, 1);
  6155. border-radius:4px;
  6156. -moz-box-shadow:none;
  6157. -webkit-box-shadow:none;
  6158. box-shadow:none;
  6159. font-family:'Microsoft YaHei', sans-serif;
  6160. font-weight:400;
  6161. font-style:normal;
  6162. font-size:14px;
  6163. color:#CCCCCC;
  6164. text-align:left;
  6165. }
  6166. #u71404 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:1400px;
  6170. top:116px;
  6171. width:140px;
  6172. height:30px;
  6173. display:flex;
  6174. font-family:'Microsoft YaHei', sans-serif;
  6175. font-weight:400;
  6176. font-style:normal;
  6177. font-size:14px;
  6178. color:#CCCCCC;
  6179. text-align:left;
  6180. }
  6181. #u71404 .text {
  6182. position:absolute;
  6183. align-self:center;
  6184. padding:2px 8px 2px 8px;
  6185. box-sizing:border-box;
  6186. width:100%;
  6187. }
  6188. #u71404_text {
  6189. border-width:0px;
  6190. word-wrap:break-word;
  6191. text-transform:none;
  6192. visibility:hidden;
  6193. }
  6194. #u71405_input {
  6195. position:absolute;
  6196. left:0px;
  6197. top:0px;
  6198. width:127px;
  6199. height:25px;
  6200. padding:2px 2px 2px 2px;
  6201. font-family:'Microsoft YaHei', sans-serif;
  6202. font-weight:400;
  6203. font-style:normal;
  6204. font-size:10px;
  6205. letter-spacing:normal;
  6206. color:#000000;
  6207. vertical-align:none;
  6208. text-align:left;
  6209. text-transform:none;
  6210. background-color:transparent;
  6211. border-color:transparent;
  6212. }
  6213. #u71405_input.disabled {
  6214. position:absolute;
  6215. left:0px;
  6216. top:0px;
  6217. width:127px;
  6218. height:25px;
  6219. padding:2px 2px 2px 2px;
  6220. font-family:'Microsoft YaHei', sans-serif;
  6221. font-weight:400;
  6222. font-style:normal;
  6223. font-size:10px;
  6224. letter-spacing:normal;
  6225. color:#000000;
  6226. vertical-align:none;
  6227. text-align:left;
  6228. text-transform:none;
  6229. background-color:transparent;
  6230. border-color:transparent;
  6231. }
  6232. #u71405_div {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:127px;
  6238. height:25px;
  6239. background:inherit;
  6240. background-color:rgba(255, 255, 255, 1);
  6241. border:none;
  6242. border-radius:0px;
  6243. -moz-box-shadow:none;
  6244. -webkit-box-shadow:none;
  6245. box-shadow:none;
  6246. font-family:'Microsoft YaHei', sans-serif;
  6247. font-weight:400;
  6248. font-style:normal;
  6249. font-size:10px;
  6250. }
  6251. #u71405 {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:1408px;
  6255. top:117px;
  6256. width:127px;
  6257. height:25px;
  6258. display:flex;
  6259. font-family:'Microsoft YaHei', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:10px;
  6263. }
  6264. #u71405 .text {
  6265. position:absolute;
  6266. align-self:center;
  6267. padding:2px 2px 2px 2px;
  6268. box-sizing:border-box;
  6269. width:100%;
  6270. }
  6271. #u71405_div.disabled {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:0px;
  6275. top:0px;
  6276. width:127px;
  6277. height:25px;
  6278. background:inherit;
  6279. background-color:rgba(240, 240, 240, 1);
  6280. border:none;
  6281. border-radius:0px;
  6282. -moz-box-shadow:none;
  6283. -webkit-box-shadow:none;
  6284. box-shadow:none;
  6285. font-family:'Microsoft YaHei', sans-serif;
  6286. font-weight:400;
  6287. font-style:normal;
  6288. font-size:10px;
  6289. }
  6290. #u71405.disabled {
  6291. }
  6292. #u71406 {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:0px;
  6298. height:0px;
  6299. }
  6300. #u71407_div {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:0px;
  6304. top:0px;
  6305. width:140px;
  6306. height:30px;
  6307. background:inherit;
  6308. background-color:rgba(255, 255, 255, 1);
  6309. box-sizing:border-box;
  6310. border-width:1px;
  6311. border-style:solid;
  6312. border-color:rgba(201, 201, 201, 1);
  6313. border-radius:4px;
  6314. -moz-box-shadow:none;
  6315. -webkit-box-shadow:none;
  6316. box-shadow:none;
  6317. font-family:'Microsoft YaHei', sans-serif;
  6318. font-weight:400;
  6319. font-style:normal;
  6320. font-size:14px;
  6321. color:#CCCCCC;
  6322. text-align:left;
  6323. }
  6324. #u71407 {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:650px;
  6328. top:156px;
  6329. width:140px;
  6330. height:30px;
  6331. display:flex;
  6332. font-family:'Microsoft YaHei', sans-serif;
  6333. font-weight:400;
  6334. font-style:normal;
  6335. font-size:14px;
  6336. color:#CCCCCC;
  6337. text-align:left;
  6338. }
  6339. #u71407 .text {
  6340. position:absolute;
  6341. align-self:center;
  6342. padding:2px 8px 2px 8px;
  6343. box-sizing:border-box;
  6344. width:100%;
  6345. }
  6346. #u71407_text {
  6347. border-width:0px;
  6348. word-wrap:break-word;
  6349. text-transform:none;
  6350. visibility:hidden;
  6351. }
  6352. #u71408_input {
  6353. position:absolute;
  6354. left:0px;
  6355. top:0px;
  6356. width:127px;
  6357. height:25px;
  6358. padding:2px 2px 2px 2px;
  6359. font-family:'Microsoft YaHei', sans-serif;
  6360. font-weight:400;
  6361. font-style:normal;
  6362. font-size:10px;
  6363. letter-spacing:normal;
  6364. color:#000000;
  6365. vertical-align:none;
  6366. text-align:left;
  6367. text-transform:none;
  6368. background-color:transparent;
  6369. border-color:transparent;
  6370. }
  6371. #u71408_input.disabled {
  6372. position:absolute;
  6373. left:0px;
  6374. top:0px;
  6375. width:127px;
  6376. height:25px;
  6377. padding:2px 2px 2px 2px;
  6378. font-family:'Microsoft YaHei', sans-serif;
  6379. font-weight:400;
  6380. font-style:normal;
  6381. font-size:10px;
  6382. letter-spacing:normal;
  6383. color:#000000;
  6384. vertical-align:none;
  6385. text-align:left;
  6386. text-transform:none;
  6387. background-color:transparent;
  6388. border-color:transparent;
  6389. }
  6390. #u71408_div {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:127px;
  6396. height:25px;
  6397. background:inherit;
  6398. background-color:rgba(255, 255, 255, 1);
  6399. border:none;
  6400. border-radius:0px;
  6401. -moz-box-shadow:none;
  6402. -webkit-box-shadow:none;
  6403. box-shadow:none;
  6404. font-family:'Microsoft YaHei', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:10px;
  6408. }
  6409. #u71408 {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:658px;
  6413. top:157px;
  6414. width:127px;
  6415. height:25px;
  6416. display:flex;
  6417. font-family:'Microsoft YaHei', sans-serif;
  6418. font-weight:400;
  6419. font-style:normal;
  6420. font-size:10px;
  6421. }
  6422. #u71408 .text {
  6423. position:absolute;
  6424. align-self:center;
  6425. padding:2px 2px 2px 2px;
  6426. box-sizing:border-box;
  6427. width:100%;
  6428. }
  6429. #u71408_div.disabled {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:0px;
  6433. top:0px;
  6434. width:127px;
  6435. height:25px;
  6436. background:inherit;
  6437. background-color:rgba(240, 240, 240, 1);
  6438. border:none;
  6439. border-radius:0px;
  6440. -moz-box-shadow:none;
  6441. -webkit-box-shadow:none;
  6442. box-shadow:none;
  6443. font-family:'Microsoft YaHei', sans-serif;
  6444. font-weight:400;
  6445. font-style:normal;
  6446. font-size:10px;
  6447. }
  6448. #u71408.disabled {
  6449. }
  6450. #u71409 {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:0px;
  6454. top:0px;
  6455. width:0px;
  6456. height:0px;
  6457. }
  6458. #u71410_div {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:0px;
  6462. top:0px;
  6463. width:140px;
  6464. height:30px;
  6465. background:inherit;
  6466. background-color:rgba(255, 255, 255, 1);
  6467. box-sizing:border-box;
  6468. border-width:1px;
  6469. border-style:solid;
  6470. border-color:rgba(215, 215, 215, 1);
  6471. border-radius:4px;
  6472. -moz-box-shadow:none;
  6473. -webkit-box-shadow:none;
  6474. box-shadow:none;
  6475. font-size:11px;
  6476. }
  6477. #u71410 {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:650px;
  6481. top:115px;
  6482. width:140px;
  6483. height:30px;
  6484. display:flex;
  6485. font-size:11px;
  6486. }
  6487. #u71410 .text {
  6488. position:absolute;
  6489. align-self:center;
  6490. padding:2px 2px 2px 2px;
  6491. box-sizing:border-box;
  6492. width:100%;
  6493. }
  6494. #u71410_text {
  6495. border-width:0px;
  6496. word-wrap:break-word;
  6497. text-transform:none;
  6498. visibility:hidden;
  6499. }
  6500. #u71411_input {
  6501. position:absolute;
  6502. left:0px;
  6503. top:0px;
  6504. width:123px;
  6505. height:23px;
  6506. padding:2px 2px 2px 2px;
  6507. font-family:'ArialMT', 'Arial', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:11px;
  6511. letter-spacing:normal;
  6512. color:#AAAAAA;
  6513. vertical-align:none;
  6514. text-align:left;
  6515. text-transform:none;
  6516. background-color:transparent;
  6517. border-color:transparent;
  6518. }
  6519. #u71411_input.disabled {
  6520. position:absolute;
  6521. left:0px;
  6522. top:0px;
  6523. width:123px;
  6524. height:23px;
  6525. padding:2px 2px 2px 2px;
  6526. font-family:'ArialMT', 'Arial', sans-serif;
  6527. font-weight:400;
  6528. font-style:normal;
  6529. font-size:11px;
  6530. letter-spacing:normal;
  6531. color:#AAAAAA;
  6532. vertical-align:none;
  6533. text-align:left;
  6534. text-transform:none;
  6535. background-color:transparent;
  6536. border-color:transparent;
  6537. }
  6538. #u71411_div {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:0px;
  6542. top:0px;
  6543. width:123px;
  6544. height:23px;
  6545. background:inherit;
  6546. background-color:rgba(255, 255, 255, 1);
  6547. border:none;
  6548. border-radius:0px;
  6549. -moz-box-shadow:none;
  6550. -webkit-box-shadow:none;
  6551. box-shadow:none;
  6552. font-size:11px;
  6553. color:#AAAAAA;
  6554. }
  6555. #u71411 {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:656px;
  6559. top:117px;
  6560. width:123px;
  6561. height:23px;
  6562. display:flex;
  6563. font-size:11px;
  6564. color:#AAAAAA;
  6565. }
  6566. #u71411 .text {
  6567. position:absolute;
  6568. align-self:flex-start;
  6569. padding:2px 2px 2px 2px;
  6570. box-sizing:border-box;
  6571. width:100%;
  6572. }
  6573. #u71411_div.disabled {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:0px;
  6577. top:0px;
  6578. width:123px;
  6579. height:23px;
  6580. background:inherit;
  6581. background-color:rgba(240, 240, 240, 1);
  6582. border:none;
  6583. border-radius:0px;
  6584. -moz-box-shadow:none;
  6585. -webkit-box-shadow:none;
  6586. box-shadow:none;
  6587. font-size:11px;
  6588. color:#AAAAAA;
  6589. }
  6590. #u71411.disabled {
  6591. }
  6592. .u71411_input_option {
  6593. font-size:11px;
  6594. }
  6595. #u71412 {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:0px;
  6599. top:0px;
  6600. width:0px;
  6601. height:0px;
  6602. }
  6603. #u71413_div {
  6604. border-width:0px;
  6605. position:absolute;
  6606. left:0px;
  6607. top:0px;
  6608. width:680px;
  6609. height:1196px;
  6610. background:inherit;
  6611. background-color:rgba(255, 255, 255, 1);
  6612. box-sizing:border-box;
  6613. border-width:1px;
  6614. border-style:solid;
  6615. border-color:rgba(215, 215, 215, 1);
  6616. border-radius:0px;
  6617. -moz-box-shadow:none;
  6618. -webkit-box-shadow:none;
  6619. box-shadow:none;
  6620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6621. font-weight:400;
  6622. font-style:normal;
  6623. font-size:14px;
  6624. color:#AAAAAA;
  6625. text-align:center;
  6626. line-height:30px;
  6627. }
  6628. #u71413 {
  6629. border-width:0px;
  6630. position:absolute;
  6631. left:1648px;
  6632. top:82px;
  6633. width:680px;
  6634. height:1196px;
  6635. display:flex;
  6636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6637. font-weight:400;
  6638. font-style:normal;
  6639. font-size:14px;
  6640. color:#AAAAAA;
  6641. text-align:center;
  6642. line-height:30px;
  6643. }
  6644. #u71413 .text {
  6645. position:absolute;
  6646. align-self:center;
  6647. padding:5px 10px 5px 10px;
  6648. box-sizing:border-box;
  6649. width:100%;
  6650. }
  6651. #u71413_text {
  6652. border-width:0px;
  6653. word-wrap:break-word;
  6654. text-transform:none;
  6655. visibility:hidden;
  6656. }
  6657. #u71414_div {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:0px;
  6661. top:0px;
  6662. width:83px;
  6663. height:35px;
  6664. background:inherit;
  6665. background-color:rgba(255, 255, 255, 0);
  6666. border:none;
  6667. border-top:0px;
  6668. border-right:0px;
  6669. border-bottom:0px;
  6670. border-radius:0px;
  6671. border-top-left-radius:0px;
  6672. border-bottom-left-radius:0px;
  6673. -moz-box-shadow:none;
  6674. -webkit-box-shadow:none;
  6675. box-shadow:none;
  6676. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6677. font-weight:500;
  6678. font-style:normal;
  6679. font-size:18px;
  6680. }
  6681. #u71414 {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:1668px;
  6685. top:100px;
  6686. width:83px;
  6687. height:35px;
  6688. display:flex;
  6689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6690. font-weight:500;
  6691. font-style:normal;
  6692. font-size:18px;
  6693. }
  6694. #u71414 .text {
  6695. position:absolute;
  6696. align-self:center;
  6697. padding:5px 10px 5px 0px;
  6698. box-sizing:border-box;
  6699. width:100%;
  6700. }
  6701. #u71414_text {
  6702. border-width:0px;
  6703. white-space:nowrap;
  6704. text-transform:none;
  6705. }
  6706. #u71415_div {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:40px;
  6712. height:40px;
  6713. background:inherit;
  6714. background-color:rgba(255, 255, 255, 0);
  6715. border:none;
  6716. border-top:0px;
  6717. border-right:0px;
  6718. border-bottom:0px;
  6719. border-radius:0px;
  6720. border-top-left-radius:0px;
  6721. border-bottom-left-radius:0px;
  6722. -moz-box-shadow:none;
  6723. -webkit-box-shadow:none;
  6724. box-shadow:none;
  6725. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6726. font-weight:500;
  6727. font-style:normal;
  6728. font-size:18px;
  6729. text-align:center;
  6730. }
  6731. #u71415 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:2288px;
  6735. top:82px;
  6736. width:40px;
  6737. height:40px;
  6738. display:flex;
  6739. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6740. font-weight:500;
  6741. font-style:normal;
  6742. font-size:18px;
  6743. text-align:center;
  6744. }
  6745. #u71415 .text {
  6746. position:absolute;
  6747. align-self:center;
  6748. padding:5px 10px 5px 0px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u71415_text {
  6753. border-width:0px;
  6754. word-wrap:break-word;
  6755. text-transform:none;
  6756. }
  6757. #u71416_img {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:13px;
  6763. height:13px;
  6764. }
  6765. #u71416 {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:2276px;
  6769. top:98px;
  6770. width:13px;
  6771. height:13px;
  6772. display:flex;
  6773. }
  6774. #u71416 .text {
  6775. position:absolute;
  6776. align-self:center;
  6777. padding:2px 2px 2px 2px;
  6778. box-sizing:border-box;
  6779. width:100%;
  6780. }
  6781. #u71416_text {
  6782. border-width:0px;
  6783. word-wrap:break-word;
  6784. text-transform:none;
  6785. visibility:hidden;
  6786. }
  6787. #u71417_div {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:0px;
  6791. top:0px;
  6792. width:131px;
  6793. height:27px;
  6794. background:inherit;
  6795. background-color:rgba(255, 255, 255, 0);
  6796. border:none;
  6797. border-top:0px;
  6798. border-right:0px;
  6799. border-bottom:0px;
  6800. border-radius:0px;
  6801. border-top-left-radius:0px;
  6802. border-bottom-left-radius:0px;
  6803. -moz-box-shadow:none;
  6804. -webkit-box-shadow:none;
  6805. box-shadow:none;
  6806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6807. font-weight:400;
  6808. font-style:normal;
  6809. font-size:12px;
  6810. }
  6811. #u71417 {
  6812. border-width:0px;
  6813. position:absolute;
  6814. left:1783px;
  6815. top:158px;
  6816. width:131px;
  6817. height:27px;
  6818. display:flex;
  6819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6820. font-weight:400;
  6821. font-style:normal;
  6822. font-size:12px;
  6823. }
  6824. #u71417 .text {
  6825. position:absolute;
  6826. align-self:center;
  6827. padding:5px 10px 5px 0px;
  6828. box-sizing:border-box;
  6829. width:100%;
  6830. }
  6831. #u71417_text {
  6832. border-width:0px;
  6833. white-space:nowrap;
  6834. text-transform:none;
  6835. }
  6836. #u71418 {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:0px;
  6842. height:0px;
  6843. }
  6844. #u71419_div {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:0px;
  6848. top:0px;
  6849. width:680px;
  6850. height:50px;
  6851. background:inherit;
  6852. background-color:rgba(255, 255, 255, 1);
  6853. box-sizing:border-box;
  6854. border-width:1px;
  6855. border-style:solid;
  6856. border-color:rgba(215, 215, 215, 1);
  6857. border-radius:0px;
  6858. -moz-box-shadow:none;
  6859. -webkit-box-shadow:none;
  6860. box-shadow:none;
  6861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6862. font-weight:400;
  6863. font-style:normal;
  6864. font-size:14px;
  6865. color:#AAAAAA;
  6866. text-align:center;
  6867. line-height:30px;
  6868. }
  6869. #u71419 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:1648px;
  6873. top:1228px;
  6874. width:680px;
  6875. height:50px;
  6876. display:flex;
  6877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:14px;
  6881. color:#AAAAAA;
  6882. text-align:center;
  6883. line-height:30px;
  6884. }
  6885. #u71419 .text {
  6886. position:absolute;
  6887. align-self:center;
  6888. padding:5px 10px 5px 10px;
  6889. box-sizing:border-box;
  6890. width:100%;
  6891. }
  6892. #u71419_text {
  6893. border-width:0px;
  6894. word-wrap:break-word;
  6895. text-transform:none;
  6896. visibility:hidden;
  6897. }
  6898. #u71420_div {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:0px;
  6902. top:0px;
  6903. width:80px;
  6904. height:30px;
  6905. background:inherit;
  6906. background-color:rgba(24, 144, 255, 1);
  6907. border:none;
  6908. border-radius:4px;
  6909. -moz-box-shadow:none;
  6910. -webkit-box-shadow:none;
  6911. box-shadow:none;
  6912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6913. font-weight:400;
  6914. font-style:normal;
  6915. font-size:14px;
  6916. color:#FFFFFF;
  6917. }
  6918. #u71420 {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:2226px;
  6922. top:1238px;
  6923. width:80px;
  6924. height:30px;
  6925. display:flex;
  6926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:14px;
  6930. color:#FFFFFF;
  6931. }
  6932. #u71420 .text {
  6933. position:absolute;
  6934. align-self:center;
  6935. padding:2px 2px 2px 2px;
  6936. box-sizing:border-box;
  6937. width:100%;
  6938. }
  6939. #u71420_text {
  6940. border-width:0px;
  6941. word-wrap:break-word;
  6942. text-transform:none;
  6943. }
  6944. #u71421_div {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:0px;
  6948. top:0px;
  6949. width:80px;
  6950. height:30px;
  6951. background:inherit;
  6952. background-color:rgba(255, 255, 255, 1);
  6953. box-sizing:border-box;
  6954. border-width:1px;
  6955. border-style:solid;
  6956. border-color:rgba(121, 121, 121, 1);
  6957. border-radius:4px;
  6958. -moz-box-shadow:none;
  6959. -webkit-box-shadow:none;
  6960. box-shadow:none;
  6961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:14px;
  6965. }
  6966. #u71421 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:2136px;
  6970. top:1238px;
  6971. width:80px;
  6972. height:30px;
  6973. display:flex;
  6974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6975. font-weight:400;
  6976. font-style:normal;
  6977. font-size:14px;
  6978. }
  6979. #u71421 .text {
  6980. position:absolute;
  6981. align-self:center;
  6982. padding:2px 2px 2px 2px;
  6983. box-sizing:border-box;
  6984. width:100%;
  6985. }
  6986. #u71421_text {
  6987. border-width:0px;
  6988. word-wrap:break-word;
  6989. text-transform:none;
  6990. }
  6991. #u71422_div {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:0px;
  6995. top:0px;
  6996. width:71px;
  6997. height:27px;
  6998. background:inherit;
  6999. background-color:rgba(255, 255, 255, 0);
  7000. border:none;
  7001. border-top:0px;
  7002. border-right:0px;
  7003. border-bottom:0px;
  7004. border-radius:0px;
  7005. border-top-left-radius:0px;
  7006. border-bottom-left-radius:0px;
  7007. -moz-box-shadow:none;
  7008. -webkit-box-shadow:none;
  7009. box-shadow:none;
  7010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7011. font-weight:400;
  7012. font-style:normal;
  7013. font-size:12px;
  7014. color:#7F7F7F;
  7015. }
  7016. #u71422 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:1696px;
  7020. top:158px;
  7021. width:71px;
  7022. height:27px;
  7023. display:flex;
  7024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7025. font-weight:400;
  7026. font-style:normal;
  7027. font-size:12px;
  7028. color:#7F7F7F;
  7029. }
  7030. #u71422 .text {
  7031. position:absolute;
  7032. align-self:center;
  7033. padding:5px 10px 5px 0px;
  7034. box-sizing:border-box;
  7035. width:100%;
  7036. }
  7037. #u71422_text {
  7038. border-width:0px;
  7039. white-space:nowrap;
  7040. text-transform:none;
  7041. }
  7042. #u71423_div {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:94px;
  7048. height:27px;
  7049. background:inherit;
  7050. background-color:rgba(255, 255, 255, 0);
  7051. border:none;
  7052. border-top:0px;
  7053. border-right:0px;
  7054. border-bottom:0px;
  7055. border-radius:0px;
  7056. border-top-left-radius:0px;
  7057. border-bottom-left-radius:0px;
  7058. -moz-box-shadow:none;
  7059. -webkit-box-shadow:none;
  7060. box-shadow:none;
  7061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7062. font-weight:400;
  7063. font-style:normal;
  7064. font-size:12px;
  7065. }
  7066. #u71423 {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:2109px;
  7070. top:158px;
  7071. width:94px;
  7072. height:27px;
  7073. display:flex;
  7074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:12px;
  7078. }
  7079. #u71423 .text {
  7080. position:absolute;
  7081. align-self:center;
  7082. padding:5px 10px 5px 0px;
  7083. box-sizing:border-box;
  7084. width:100%;
  7085. }
  7086. #u71423_text {
  7087. border-width:0px;
  7088. white-space:nowrap;
  7089. text-transform:none;
  7090. }
  7091. #u71424_div {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:0px;
  7095. top:0px;
  7096. width:71px;
  7097. height:27px;
  7098. background:inherit;
  7099. background-color:rgba(255, 255, 255, 0);
  7100. border:none;
  7101. border-top:0px;
  7102. border-right:0px;
  7103. border-bottom:0px;
  7104. border-radius:0px;
  7105. border-top-left-radius:0px;
  7106. border-bottom-left-radius:0px;
  7107. -moz-box-shadow:none;
  7108. -webkit-box-shadow:none;
  7109. box-shadow:none;
  7110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7111. font-weight:400;
  7112. font-style:normal;
  7113. font-size:12px;
  7114. color:#7F7F7F;
  7115. }
  7116. #u71424 {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:2022px;
  7120. top:158px;
  7121. width:71px;
  7122. height:27px;
  7123. display:flex;
  7124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:12px;
  7128. color:#7F7F7F;
  7129. }
  7130. #u71424 .text {
  7131. position:absolute;
  7132. align-self:center;
  7133. padding:5px 10px 5px 0px;
  7134. box-sizing:border-box;
  7135. width:100%;
  7136. }
  7137. #u71424_text {
  7138. border-width:0px;
  7139. white-space:nowrap;
  7140. text-transform:none;
  7141. }
  7142. #u71425_div {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:0px;
  7146. top:0px;
  7147. width:59px;
  7148. height:27px;
  7149. background:inherit;
  7150. background-color:rgba(255, 255, 255, 0);
  7151. border:none;
  7152. border-top:0px;
  7153. border-right:0px;
  7154. border-bottom:0px;
  7155. border-radius:0px;
  7156. border-top-left-radius:0px;
  7157. border-bottom-left-radius:0px;
  7158. -moz-box-shadow:none;
  7159. -webkit-box-shadow:none;
  7160. box-shadow:none;
  7161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:12px;
  7165. }
  7166. #u71425 {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:2109px;
  7170. top:188px;
  7171. width:59px;
  7172. height:27px;
  7173. display:flex;
  7174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7175. font-weight:400;
  7176. font-style:normal;
  7177. font-size:12px;
  7178. }
  7179. #u71425 .text {
  7180. position:absolute;
  7181. align-self:center;
  7182. padding:5px 10px 5px 0px;
  7183. box-sizing:border-box;
  7184. width:100%;
  7185. }
  7186. #u71425_text {
  7187. border-width:0px;
  7188. white-space:nowrap;
  7189. text-transform:none;
  7190. }
  7191. #u71426_div {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:71px;
  7197. height:27px;
  7198. background:inherit;
  7199. background-color:rgba(255, 255, 255, 0);
  7200. border:none;
  7201. border-top:0px;
  7202. border-right:0px;
  7203. border-bottom:0px;
  7204. border-radius:0px;
  7205. border-top-left-radius:0px;
  7206. border-bottom-left-radius:0px;
  7207. -moz-box-shadow:none;
  7208. -webkit-box-shadow:none;
  7209. box-shadow:none;
  7210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7211. font-weight:400;
  7212. font-style:normal;
  7213. font-size:12px;
  7214. color:#7F7F7F;
  7215. }
  7216. #u71426 {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:2022px;
  7220. top:188px;
  7221. width:71px;
  7222. height:27px;
  7223. display:flex;
  7224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7225. font-weight:400;
  7226. font-style:normal;
  7227. font-size:12px;
  7228. color:#7F7F7F;
  7229. }
  7230. #u71426 .text {
  7231. position:absolute;
  7232. align-self:center;
  7233. padding:5px 10px 5px 0px;
  7234. box-sizing:border-box;
  7235. width:100%;
  7236. }
  7237. #u71426_text {
  7238. border-width:0px;
  7239. white-space:nowrap;
  7240. text-transform:none;
  7241. }
  7242. #u71427_div {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:38px;
  7248. height:27px;
  7249. background:inherit;
  7250. background-color:rgba(255, 255, 255, 0);
  7251. border:none;
  7252. border-top:0px;
  7253. border-right:0px;
  7254. border-bottom:0px;
  7255. border-radius:0px;
  7256. border-top-left-radius:0px;
  7257. border-bottom-left-radius:0px;
  7258. -moz-box-shadow:none;
  7259. -webkit-box-shadow:none;
  7260. box-shadow:none;
  7261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7262. font-weight:400;
  7263. font-style:normal;
  7264. font-size:12px;
  7265. }
  7266. #u71427 {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:1783px;
  7270. top:188px;
  7271. width:38px;
  7272. height:27px;
  7273. display:flex;
  7274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7275. font-weight:400;
  7276. font-style:normal;
  7277. font-size:12px;
  7278. }
  7279. #u71427 .text {
  7280. position:absolute;
  7281. align-self:center;
  7282. padding:5px 10px 5px 0px;
  7283. box-sizing:border-box;
  7284. width:100%;
  7285. }
  7286. #u71427_text {
  7287. border-width:0px;
  7288. white-space:nowrap;
  7289. text-transform:none;
  7290. }
  7291. #u71428_div {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:0px;
  7296. width:59px;
  7297. height:27px;
  7298. background:inherit;
  7299. background-color:rgba(255, 255, 255, 0);
  7300. border:none;
  7301. border-top:0px;
  7302. border-right:0px;
  7303. border-bottom:0px;
  7304. border-radius:0px;
  7305. border-top-left-radius:0px;
  7306. border-bottom-left-radius:0px;
  7307. -moz-box-shadow:none;
  7308. -webkit-box-shadow:none;
  7309. box-shadow:none;
  7310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:12px;
  7314. color:#7F7F7F;
  7315. }
  7316. #u71428 {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:1696px;
  7320. top:188px;
  7321. width:59px;
  7322. height:27px;
  7323. display:flex;
  7324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. font-size:12px;
  7328. color:#7F7F7F;
  7329. }
  7330. #u71428 .text {
  7331. position:absolute;
  7332. align-self:center;
  7333. padding:5px 10px 5px 0px;
  7334. box-sizing:border-box;
  7335. width:100%;
  7336. }
  7337. #u71428_text {
  7338. border-width:0px;
  7339. white-space:nowrap;
  7340. text-transform:none;
  7341. }
  7342. #u71429 {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:1696px;
  7346. top:235px;
  7347. width:604px;
  7348. height:324px;
  7349. }
  7350. #u71430_img {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:0px;
  7354. top:0px;
  7355. width:134px;
  7356. height:44px;
  7357. }
  7358. #u71430 {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:0px;
  7362. top:0px;
  7363. width:134px;
  7364. height:44px;
  7365. display:flex;
  7366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7367. font-weight:400;
  7368. font-style:normal;
  7369. font-size:12px;
  7370. color:#FFFFFF;
  7371. }
  7372. #u71430 .text {
  7373. position:absolute;
  7374. align-self:center;
  7375. padding:2px 2px 2px 2px;
  7376. box-sizing:border-box;
  7377. width:100%;
  7378. }
  7379. #u71430_text {
  7380. border-width:0px;
  7381. word-wrap:break-word;
  7382. text-transform:none;
  7383. }
  7384. #u71431_img {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:0px;
  7388. top:0px;
  7389. width:108px;
  7390. height:44px;
  7391. }
  7392. #u71431 {
  7393. border-width:0px;
  7394. position:absolute;
  7395. left:134px;
  7396. top:0px;
  7397. width:108px;
  7398. height:44px;
  7399. display:flex;
  7400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7401. font-weight:400;
  7402. font-style:normal;
  7403. font-size:12px;
  7404. color:#FFFFFF;
  7405. }
  7406. #u71431 .text {
  7407. position:absolute;
  7408. align-self:center;
  7409. padding:2px 2px 2px 2px;
  7410. box-sizing:border-box;
  7411. width:100%;
  7412. }
  7413. #u71431_text {
  7414. border-width:0px;
  7415. word-wrap:break-word;
  7416. text-transform:none;
  7417. }
  7418. #u71432_img {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:0px;
  7422. top:0px;
  7423. width:108px;
  7424. height:44px;
  7425. }
  7426. #u71432 {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:242px;
  7430. top:0px;
  7431. width:108px;
  7432. height:44px;
  7433. display:flex;
  7434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7435. font-weight:400;
  7436. font-style:normal;
  7437. font-size:12px;
  7438. color:#FFFFFF;
  7439. }
  7440. #u71432 .text {
  7441. position:absolute;
  7442. align-self:center;
  7443. padding:2px 2px 2px 2px;
  7444. box-sizing:border-box;
  7445. width:100%;
  7446. }
  7447. #u71432_text {
  7448. border-width:0px;
  7449. word-wrap:break-word;
  7450. text-transform:none;
  7451. }
  7452. #u71433_img {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:0px;
  7456. top:0px;
  7457. width:127px;
  7458. height:44px;
  7459. }
  7460. #u71433 {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:350px;
  7464. top:0px;
  7465. width:127px;
  7466. height:44px;
  7467. display:flex;
  7468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7469. font-weight:400;
  7470. font-style:normal;
  7471. font-size:12px;
  7472. color:#FFFFFF;
  7473. }
  7474. #u71433 .text {
  7475. position:absolute;
  7476. align-self:center;
  7477. padding:2px 2px 2px 2px;
  7478. box-sizing:border-box;
  7479. width:100%;
  7480. }
  7481. #u71433_text {
  7482. border-width:0px;
  7483. word-wrap:break-word;
  7484. text-transform:none;
  7485. }
  7486. #u71434_img {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:0px;
  7490. top:0px;
  7491. width:127px;
  7492. height:44px;
  7493. }
  7494. #u71434 {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:477px;
  7498. top:0px;
  7499. width:127px;
  7500. height:44px;
  7501. display:flex;
  7502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7503. font-weight:400;
  7504. font-style:normal;
  7505. font-size:12px;
  7506. color:#FFFFFF;
  7507. }
  7508. #u71434 .text {
  7509. position:absolute;
  7510. align-self:center;
  7511. padding:2px 2px 2px 2px;
  7512. box-sizing:border-box;
  7513. width:100%;
  7514. }
  7515. #u71434_text {
  7516. border-width:0px;
  7517. word-wrap:break-word;
  7518. text-transform:none;
  7519. }
  7520. #u71435_img {
  7521. border-width:0px;
  7522. position:absolute;
  7523. left:0px;
  7524. top:0px;
  7525. width:134px;
  7526. height:40px;
  7527. }
  7528. #u71435 {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:0px;
  7532. top:44px;
  7533. width:134px;
  7534. height:40px;
  7535. display:flex;
  7536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7537. font-weight:400;
  7538. font-style:normal;
  7539. font-size:12px;
  7540. }
  7541. #u71435 .text {
  7542. position:absolute;
  7543. align-self:center;
  7544. padding:2px 2px 2px 2px;
  7545. box-sizing:border-box;
  7546. width:100%;
  7547. }
  7548. #u71435_text {
  7549. border-width:0px;
  7550. word-wrap:break-word;
  7551. text-transform:none;
  7552. }
  7553. #u71436_img {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:0px;
  7557. top:0px;
  7558. width:108px;
  7559. height:40px;
  7560. }
  7561. #u71436 {
  7562. border-width:0px;
  7563. position:absolute;
  7564. left:134px;
  7565. top:44px;
  7566. width:108px;
  7567. height:40px;
  7568. display:flex;
  7569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7570. font-weight:400;
  7571. font-style:normal;
  7572. font-size:12px;
  7573. }
  7574. #u71436 .text {
  7575. position:absolute;
  7576. align-self:center;
  7577. padding:2px 2px 2px 2px;
  7578. box-sizing:border-box;
  7579. width:100%;
  7580. }
  7581. #u71436_text {
  7582. border-width:0px;
  7583. word-wrap:break-word;
  7584. text-transform:none;
  7585. visibility:hidden;
  7586. }
  7587. #u71437_img {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:0px;
  7591. top:0px;
  7592. width:108px;
  7593. height:40px;
  7594. }
  7595. #u71437 {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:242px;
  7599. top:44px;
  7600. width:108px;
  7601. height:40px;
  7602. display:flex;
  7603. font-size:12px;
  7604. }
  7605. #u71437 .text {
  7606. position:absolute;
  7607. align-self:center;
  7608. padding:2px 2px 2px 2px;
  7609. box-sizing:border-box;
  7610. width:100%;
  7611. }
  7612. #u71437_text {
  7613. border-width:0px;
  7614. word-wrap:break-word;
  7615. text-transform:none;
  7616. visibility:hidden;
  7617. }
  7618. #u71438_img {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:0px;
  7622. top:0px;
  7623. width:127px;
  7624. height:40px;
  7625. }
  7626. #u71438 {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:350px;
  7630. top:44px;
  7631. width:127px;
  7632. height:40px;
  7633. display:flex;
  7634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7635. font-weight:400;
  7636. font-style:normal;
  7637. font-size:12px;
  7638. }
  7639. #u71438 .text {
  7640. position:absolute;
  7641. align-self:center;
  7642. padding:2px 2px 2px 2px;
  7643. box-sizing:border-box;
  7644. width:100%;
  7645. }
  7646. #u71438_text {
  7647. border-width:0px;
  7648. word-wrap:break-word;
  7649. text-transform:none;
  7650. visibility:hidden;
  7651. }
  7652. #u71439_img {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:0px;
  7656. top:0px;
  7657. width:127px;
  7658. height:40px;
  7659. }
  7660. #u71439 {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:477px;
  7664. top:44px;
  7665. width:127px;
  7666. height:40px;
  7667. display:flex;
  7668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7669. font-weight:400;
  7670. font-style:normal;
  7671. font-size:12px;
  7672. }
  7673. #u71439 .text {
  7674. position:absolute;
  7675. align-self:center;
  7676. padding:2px 2px 2px 2px;
  7677. box-sizing:border-box;
  7678. width:100%;
  7679. }
  7680. #u71439_text {
  7681. border-width:0px;
  7682. word-wrap:break-word;
  7683. text-transform:none;
  7684. visibility:hidden;
  7685. }
  7686. #u71440_img {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:0px;
  7690. top:0px;
  7691. width:134px;
  7692. height:40px;
  7693. }
  7694. #u71440 {
  7695. border-width:0px;
  7696. position:absolute;
  7697. left:0px;
  7698. top:84px;
  7699. width:134px;
  7700. height:40px;
  7701. display:flex;
  7702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7703. font-weight:400;
  7704. font-style:normal;
  7705. font-size:12px;
  7706. }
  7707. #u71440 .text {
  7708. position:absolute;
  7709. align-self:center;
  7710. padding:2px 2px 2px 2px;
  7711. box-sizing:border-box;
  7712. width:100%;
  7713. }
  7714. #u71440_text {
  7715. border-width:0px;
  7716. word-wrap:break-word;
  7717. text-transform:none;
  7718. visibility:hidden;
  7719. }
  7720. #u71441_img {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:0px;
  7724. top:0px;
  7725. width:108px;
  7726. height:40px;
  7727. }
  7728. #u71441 {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:134px;
  7732. top:84px;
  7733. width:108px;
  7734. height:40px;
  7735. display:flex;
  7736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7737. font-weight:400;
  7738. font-style:normal;
  7739. font-size:12px;
  7740. }
  7741. #u71441 .text {
  7742. position:absolute;
  7743. align-self:center;
  7744. padding:2px 2px 2px 2px;
  7745. box-sizing:border-box;
  7746. width:100%;
  7747. }
  7748. #u71441_text {
  7749. border-width:0px;
  7750. word-wrap:break-word;
  7751. text-transform:none;
  7752. visibility:hidden;
  7753. }
  7754. #u71442_img {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:108px;
  7760. height:40px;
  7761. }
  7762. #u71442 {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:242px;
  7766. top:84px;
  7767. width:108px;
  7768. height:40px;
  7769. display:flex;
  7770. font-size:12px;
  7771. }
  7772. #u71442 .text {
  7773. position:absolute;
  7774. align-self:center;
  7775. padding:2px 2px 2px 2px;
  7776. box-sizing:border-box;
  7777. width:100%;
  7778. }
  7779. #u71442_text {
  7780. border-width:0px;
  7781. word-wrap:break-word;
  7782. text-transform:none;
  7783. visibility:hidden;
  7784. }
  7785. #u71443_img {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:0px;
  7789. top:0px;
  7790. width:127px;
  7791. height:40px;
  7792. }
  7793. #u71443 {
  7794. border-width:0px;
  7795. position:absolute;
  7796. left:350px;
  7797. top:84px;
  7798. width:127px;
  7799. height:40px;
  7800. display:flex;
  7801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7802. font-weight:400;
  7803. font-style:normal;
  7804. font-size:12px;
  7805. }
  7806. #u71443 .text {
  7807. position:absolute;
  7808. align-self:center;
  7809. padding:2px 2px 2px 2px;
  7810. box-sizing:border-box;
  7811. width:100%;
  7812. }
  7813. #u71443_text {
  7814. border-width:0px;
  7815. word-wrap:break-word;
  7816. text-transform:none;
  7817. visibility:hidden;
  7818. }
  7819. #u71444_img {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:0px;
  7823. top:0px;
  7824. width:127px;
  7825. height:40px;
  7826. }
  7827. #u71444 {
  7828. border-width:0px;
  7829. position:absolute;
  7830. left:477px;
  7831. top:84px;
  7832. width:127px;
  7833. height:40px;
  7834. display:flex;
  7835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7836. font-weight:400;
  7837. font-style:normal;
  7838. font-size:12px;
  7839. }
  7840. #u71444 .text {
  7841. position:absolute;
  7842. align-self:center;
  7843. padding:2px 2px 2px 2px;
  7844. box-sizing:border-box;
  7845. width:100%;
  7846. }
  7847. #u71444_text {
  7848. border-width:0px;
  7849. word-wrap:break-word;
  7850. text-transform:none;
  7851. visibility:hidden;
  7852. }
  7853. #u71445_img {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:0px;
  7857. top:0px;
  7858. width:134px;
  7859. height:40px;
  7860. }
  7861. #u71445 {
  7862. border-width:0px;
  7863. position:absolute;
  7864. left:0px;
  7865. top:124px;
  7866. width:134px;
  7867. height:40px;
  7868. display:flex;
  7869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7870. font-weight:400;
  7871. font-style:normal;
  7872. font-size:12px;
  7873. }
  7874. #u71445 .text {
  7875. position:absolute;
  7876. align-self:center;
  7877. padding:2px 2px 2px 2px;
  7878. box-sizing:border-box;
  7879. width:100%;
  7880. }
  7881. #u71445_text {
  7882. border-width:0px;
  7883. word-wrap:break-word;
  7884. text-transform:none;
  7885. visibility:hidden;
  7886. }
  7887. #u71446_img {
  7888. border-width:0px;
  7889. position:absolute;
  7890. left:0px;
  7891. top:0px;
  7892. width:108px;
  7893. height:40px;
  7894. }
  7895. #u71446 {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:134px;
  7899. top:124px;
  7900. width:108px;
  7901. height:40px;
  7902. display:flex;
  7903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7904. font-weight:400;
  7905. font-style:normal;
  7906. font-size:12px;
  7907. }
  7908. #u71446 .text {
  7909. position:absolute;
  7910. align-self:center;
  7911. padding:2px 2px 2px 2px;
  7912. box-sizing:border-box;
  7913. width:100%;
  7914. }
  7915. #u71446_text {
  7916. border-width:0px;
  7917. word-wrap:break-word;
  7918. text-transform:none;
  7919. visibility:hidden;
  7920. }
  7921. #u71447_img {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:0px;
  7925. top:0px;
  7926. width:108px;
  7927. height:40px;
  7928. }
  7929. #u71447 {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:242px;
  7933. top:124px;
  7934. width:108px;
  7935. height:40px;
  7936. display:flex;
  7937. font-size:12px;
  7938. }
  7939. #u71447 .text {
  7940. position:absolute;
  7941. align-self:center;
  7942. padding:2px 2px 2px 2px;
  7943. box-sizing:border-box;
  7944. width:100%;
  7945. }
  7946. #u71447_text {
  7947. border-width:0px;
  7948. word-wrap:break-word;
  7949. text-transform:none;
  7950. visibility:hidden;
  7951. }
  7952. #u71448_img {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:0px;
  7956. top:0px;
  7957. width:127px;
  7958. height:40px;
  7959. }
  7960. #u71448 {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:350px;
  7964. top:124px;
  7965. width:127px;
  7966. height:40px;
  7967. display:flex;
  7968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7969. font-weight:400;
  7970. font-style:normal;
  7971. font-size:12px;
  7972. }
  7973. #u71448 .text {
  7974. position:absolute;
  7975. align-self:center;
  7976. padding:2px 2px 2px 2px;
  7977. box-sizing:border-box;
  7978. width:100%;
  7979. }
  7980. #u71448_text {
  7981. border-width:0px;
  7982. word-wrap:break-word;
  7983. text-transform:none;
  7984. visibility:hidden;
  7985. }
  7986. #u71449_img {
  7987. border-width:0px;
  7988. position:absolute;
  7989. left:0px;
  7990. top:0px;
  7991. width:127px;
  7992. height:40px;
  7993. }
  7994. #u71449 {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:477px;
  7998. top:124px;
  7999. width:127px;
  8000. height:40px;
  8001. display:flex;
  8002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8003. font-weight:400;
  8004. font-style:normal;
  8005. font-size:12px;
  8006. }
  8007. #u71449 .text {
  8008. position:absolute;
  8009. align-self:center;
  8010. padding:2px 2px 2px 2px;
  8011. box-sizing:border-box;
  8012. width:100%;
  8013. }
  8014. #u71449_text {
  8015. border-width:0px;
  8016. word-wrap:break-word;
  8017. text-transform:none;
  8018. visibility:hidden;
  8019. }
  8020. #u71450_img {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:134px;
  8026. height:40px;
  8027. }
  8028. #u71450 {
  8029. border-width:0px;
  8030. position:absolute;
  8031. left:0px;
  8032. top:164px;
  8033. width:134px;
  8034. height:40px;
  8035. display:flex;
  8036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8037. font-weight:400;
  8038. font-style:normal;
  8039. font-size:12px;
  8040. }
  8041. #u71450 .text {
  8042. position:absolute;
  8043. align-self:center;
  8044. padding:2px 2px 2px 2px;
  8045. box-sizing:border-box;
  8046. width:100%;
  8047. }
  8048. #u71450_text {
  8049. border-width:0px;
  8050. word-wrap:break-word;
  8051. text-transform:none;
  8052. visibility:hidden;
  8053. }
  8054. #u71451_img {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:0px;
  8058. top:0px;
  8059. width:108px;
  8060. height:40px;
  8061. }
  8062. #u71451 {
  8063. border-width:0px;
  8064. position:absolute;
  8065. left:134px;
  8066. top:164px;
  8067. width:108px;
  8068. height:40px;
  8069. display:flex;
  8070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8071. font-weight:400;
  8072. font-style:normal;
  8073. font-size:12px;
  8074. }
  8075. #u71451 .text {
  8076. position:absolute;
  8077. align-self:center;
  8078. padding:2px 2px 2px 2px;
  8079. box-sizing:border-box;
  8080. width:100%;
  8081. }
  8082. #u71451_text {
  8083. border-width:0px;
  8084. word-wrap:break-word;
  8085. text-transform:none;
  8086. visibility:hidden;
  8087. }
  8088. #u71452_img {
  8089. border-width:0px;
  8090. position:absolute;
  8091. left:0px;
  8092. top:0px;
  8093. width:108px;
  8094. height:40px;
  8095. }
  8096. #u71452 {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:242px;
  8100. top:164px;
  8101. width:108px;
  8102. height:40px;
  8103. display:flex;
  8104. font-size:12px;
  8105. }
  8106. #u71452 .text {
  8107. position:absolute;
  8108. align-self:center;
  8109. padding:2px 2px 2px 2px;
  8110. box-sizing:border-box;
  8111. width:100%;
  8112. }
  8113. #u71452_text {
  8114. border-width:0px;
  8115. word-wrap:break-word;
  8116. text-transform:none;
  8117. visibility:hidden;
  8118. }
  8119. #u71453_img {
  8120. border-width:0px;
  8121. position:absolute;
  8122. left:0px;
  8123. top:0px;
  8124. width:127px;
  8125. height:40px;
  8126. }
  8127. #u71453 {
  8128. border-width:0px;
  8129. position:absolute;
  8130. left:350px;
  8131. top:164px;
  8132. width:127px;
  8133. height:40px;
  8134. display:flex;
  8135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8136. font-weight:400;
  8137. font-style:normal;
  8138. font-size:12px;
  8139. }
  8140. #u71453 .text {
  8141. position:absolute;
  8142. align-self:center;
  8143. padding:2px 2px 2px 2px;
  8144. box-sizing:border-box;
  8145. width:100%;
  8146. }
  8147. #u71453_text {
  8148. border-width:0px;
  8149. word-wrap:break-word;
  8150. text-transform:none;
  8151. visibility:hidden;
  8152. }
  8153. #u71454_img {
  8154. border-width:0px;
  8155. position:absolute;
  8156. left:0px;
  8157. top:0px;
  8158. width:127px;
  8159. height:40px;
  8160. }
  8161. #u71454 {
  8162. border-width:0px;
  8163. position:absolute;
  8164. left:477px;
  8165. top:164px;
  8166. width:127px;
  8167. height:40px;
  8168. display:flex;
  8169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8170. font-weight:400;
  8171. font-style:normal;
  8172. font-size:12px;
  8173. }
  8174. #u71454 .text {
  8175. position:absolute;
  8176. align-self:center;
  8177. padding:2px 2px 2px 2px;
  8178. box-sizing:border-box;
  8179. width:100%;
  8180. }
  8181. #u71454_text {
  8182. border-width:0px;
  8183. word-wrap:break-word;
  8184. text-transform:none;
  8185. visibility:hidden;
  8186. }
  8187. #u71455_img {
  8188. border-width:0px;
  8189. position:absolute;
  8190. left:0px;
  8191. top:0px;
  8192. width:134px;
  8193. height:40px;
  8194. }
  8195. #u71455 {
  8196. border-width:0px;
  8197. position:absolute;
  8198. left:0px;
  8199. top:204px;
  8200. width:134px;
  8201. height:40px;
  8202. display:flex;
  8203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8204. font-weight:400;
  8205. font-style:normal;
  8206. font-size:12px;
  8207. }
  8208. #u71455 .text {
  8209. position:absolute;
  8210. align-self:center;
  8211. padding:2px 2px 2px 2px;
  8212. box-sizing:border-box;
  8213. width:100%;
  8214. }
  8215. #u71455_text {
  8216. border-width:0px;
  8217. word-wrap:break-word;
  8218. text-transform:none;
  8219. visibility:hidden;
  8220. }
  8221. #u71456_img {
  8222. border-width:0px;
  8223. position:absolute;
  8224. left:0px;
  8225. top:0px;
  8226. width:108px;
  8227. height:40px;
  8228. }
  8229. #u71456 {
  8230. border-width:0px;
  8231. position:absolute;
  8232. left:134px;
  8233. top:204px;
  8234. width:108px;
  8235. height:40px;
  8236. display:flex;
  8237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8238. font-weight:400;
  8239. font-style:normal;
  8240. font-size:12px;
  8241. }
  8242. #u71456 .text {
  8243. position:absolute;
  8244. align-self:center;
  8245. padding:2px 2px 2px 2px;
  8246. box-sizing:border-box;
  8247. width:100%;
  8248. }
  8249. #u71456_text {
  8250. border-width:0px;
  8251. word-wrap:break-word;
  8252. text-transform:none;
  8253. visibility:hidden;
  8254. }
  8255. #u71457_img {
  8256. border-width:0px;
  8257. position:absolute;
  8258. left:0px;
  8259. top:0px;
  8260. width:108px;
  8261. height:40px;
  8262. }
  8263. #u71457 {
  8264. border-width:0px;
  8265. position:absolute;
  8266. left:242px;
  8267. top:204px;
  8268. width:108px;
  8269. height:40px;
  8270. display:flex;
  8271. font-size:12px;
  8272. }
  8273. #u71457 .text {
  8274. position:absolute;
  8275. align-self:center;
  8276. padding:2px 2px 2px 2px;
  8277. box-sizing:border-box;
  8278. width:100%;
  8279. }
  8280. #u71457_text {
  8281. border-width:0px;
  8282. word-wrap:break-word;
  8283. text-transform:none;
  8284. visibility:hidden;
  8285. }
  8286. #u71458_img {
  8287. border-width:0px;
  8288. position:absolute;
  8289. left:0px;
  8290. top:0px;
  8291. width:127px;
  8292. height:40px;
  8293. }
  8294. #u71458 {
  8295. border-width:0px;
  8296. position:absolute;
  8297. left:350px;
  8298. top:204px;
  8299. width:127px;
  8300. height:40px;
  8301. display:flex;
  8302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8303. font-weight:400;
  8304. font-style:normal;
  8305. font-size:12px;
  8306. }
  8307. #u71458 .text {
  8308. position:absolute;
  8309. align-self:center;
  8310. padding:2px 2px 2px 2px;
  8311. box-sizing:border-box;
  8312. width:100%;
  8313. }
  8314. #u71458_text {
  8315. border-width:0px;
  8316. word-wrap:break-word;
  8317. text-transform:none;
  8318. visibility:hidden;
  8319. }
  8320. #u71459_img {
  8321. border-width:0px;
  8322. position:absolute;
  8323. left:0px;
  8324. top:0px;
  8325. width:127px;
  8326. height:40px;
  8327. }
  8328. #u71459 {
  8329. border-width:0px;
  8330. position:absolute;
  8331. left:477px;
  8332. top:204px;
  8333. width:127px;
  8334. height:40px;
  8335. display:flex;
  8336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8337. font-weight:400;
  8338. font-style:normal;
  8339. font-size:12px;
  8340. }
  8341. #u71459 .text {
  8342. position:absolute;
  8343. align-self:center;
  8344. padding:2px 2px 2px 2px;
  8345. box-sizing:border-box;
  8346. width:100%;
  8347. }
  8348. #u71459_text {
  8349. border-width:0px;
  8350. word-wrap:break-word;
  8351. text-transform:none;
  8352. visibility:hidden;
  8353. }
  8354. #u71460_img {
  8355. border-width:0px;
  8356. position:absolute;
  8357. left:0px;
  8358. top:0px;
  8359. width:134px;
  8360. height:40px;
  8361. }
  8362. #u71460 {
  8363. border-width:0px;
  8364. position:absolute;
  8365. left:0px;
  8366. top:244px;
  8367. width:134px;
  8368. height:40px;
  8369. display:flex;
  8370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8371. font-weight:400;
  8372. font-style:normal;
  8373. font-size:12px;
  8374. }
  8375. #u71460 .text {
  8376. position:absolute;
  8377. align-self:center;
  8378. padding:2px 2px 2px 2px;
  8379. box-sizing:border-box;
  8380. width:100%;
  8381. }
  8382. #u71460_text {
  8383. border-width:0px;
  8384. word-wrap:break-word;
  8385. text-transform:none;
  8386. visibility:hidden;
  8387. }
  8388. #u71461_img {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:0px;
  8392. top:0px;
  8393. width:108px;
  8394. height:40px;
  8395. }
  8396. #u71461 {
  8397. border-width:0px;
  8398. position:absolute;
  8399. left:134px;
  8400. top:244px;
  8401. width:108px;
  8402. height:40px;
  8403. display:flex;
  8404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8405. font-weight:400;
  8406. font-style:normal;
  8407. font-size:12px;
  8408. }
  8409. #u71461 .text {
  8410. position:absolute;
  8411. align-self:center;
  8412. padding:2px 2px 2px 2px;
  8413. box-sizing:border-box;
  8414. width:100%;
  8415. }
  8416. #u71461_text {
  8417. border-width:0px;
  8418. word-wrap:break-word;
  8419. text-transform:none;
  8420. visibility:hidden;
  8421. }
  8422. #u71462_img {
  8423. border-width:0px;
  8424. position:absolute;
  8425. left:0px;
  8426. top:0px;
  8427. width:108px;
  8428. height:40px;
  8429. }
  8430. #u71462 {
  8431. border-width:0px;
  8432. position:absolute;
  8433. left:242px;
  8434. top:244px;
  8435. width:108px;
  8436. height:40px;
  8437. display:flex;
  8438. font-size:12px;
  8439. }
  8440. #u71462 .text {
  8441. position:absolute;
  8442. align-self:center;
  8443. padding:2px 2px 2px 2px;
  8444. box-sizing:border-box;
  8445. width:100%;
  8446. }
  8447. #u71462_text {
  8448. border-width:0px;
  8449. word-wrap:break-word;
  8450. text-transform:none;
  8451. visibility:hidden;
  8452. }
  8453. #u71463_img {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:0px;
  8457. top:0px;
  8458. width:127px;
  8459. height:40px;
  8460. }
  8461. #u71463 {
  8462. border-width:0px;
  8463. position:absolute;
  8464. left:350px;
  8465. top:244px;
  8466. width:127px;
  8467. height:40px;
  8468. display:flex;
  8469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8470. font-weight:400;
  8471. font-style:normal;
  8472. font-size:12px;
  8473. }
  8474. #u71463 .text {
  8475. position:absolute;
  8476. align-self:center;
  8477. padding:2px 2px 2px 2px;
  8478. box-sizing:border-box;
  8479. width:100%;
  8480. }
  8481. #u71463_text {
  8482. border-width:0px;
  8483. word-wrap:break-word;
  8484. text-transform:none;
  8485. visibility:hidden;
  8486. }
  8487. #u71464_img {
  8488. border-width:0px;
  8489. position:absolute;
  8490. left:0px;
  8491. top:0px;
  8492. width:127px;
  8493. height:40px;
  8494. }
  8495. #u71464 {
  8496. border-width:0px;
  8497. position:absolute;
  8498. left:477px;
  8499. top:244px;
  8500. width:127px;
  8501. height:40px;
  8502. display:flex;
  8503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8504. font-weight:400;
  8505. font-style:normal;
  8506. font-size:12px;
  8507. }
  8508. #u71464 .text {
  8509. position:absolute;
  8510. align-self:center;
  8511. padding:2px 2px 2px 2px;
  8512. box-sizing:border-box;
  8513. width:100%;
  8514. }
  8515. #u71464_text {
  8516. border-width:0px;
  8517. word-wrap:break-word;
  8518. text-transform:none;
  8519. visibility:hidden;
  8520. }
  8521. #u71465_img {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:0px;
  8525. top:0px;
  8526. width:134px;
  8527. height:40px;
  8528. }
  8529. #u71465 {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:0px;
  8533. top:284px;
  8534. width:134px;
  8535. height:40px;
  8536. display:flex;
  8537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8538. font-weight:400;
  8539. font-style:normal;
  8540. font-size:12px;
  8541. }
  8542. #u71465 .text {
  8543. position:absolute;
  8544. align-self:center;
  8545. padding:2px 2px 2px 2px;
  8546. box-sizing:border-box;
  8547. width:100%;
  8548. }
  8549. #u71465_text {
  8550. border-width:0px;
  8551. word-wrap:break-word;
  8552. text-transform:none;
  8553. visibility:hidden;
  8554. }
  8555. #u71466_img {
  8556. border-width:0px;
  8557. position:absolute;
  8558. left:0px;
  8559. top:0px;
  8560. width:108px;
  8561. height:40px;
  8562. }
  8563. #u71466 {
  8564. border-width:0px;
  8565. position:absolute;
  8566. left:134px;
  8567. top:284px;
  8568. width:108px;
  8569. height:40px;
  8570. display:flex;
  8571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8572. font-weight:400;
  8573. font-style:normal;
  8574. font-size:12px;
  8575. }
  8576. #u71466 .text {
  8577. position:absolute;
  8578. align-self:center;
  8579. padding:2px 2px 2px 2px;
  8580. box-sizing:border-box;
  8581. width:100%;
  8582. }
  8583. #u71466_text {
  8584. border-width:0px;
  8585. word-wrap:break-word;
  8586. text-transform:none;
  8587. visibility:hidden;
  8588. }
  8589. #u71467_img {
  8590. border-width:0px;
  8591. position:absolute;
  8592. left:0px;
  8593. top:0px;
  8594. width:108px;
  8595. height:40px;
  8596. }
  8597. #u71467 {
  8598. border-width:0px;
  8599. position:absolute;
  8600. left:242px;
  8601. top:284px;
  8602. width:108px;
  8603. height:40px;
  8604. display:flex;
  8605. font-size:12px;
  8606. }
  8607. #u71467 .text {
  8608. position:absolute;
  8609. align-self:center;
  8610. padding:2px 2px 2px 2px;
  8611. box-sizing:border-box;
  8612. width:100%;
  8613. }
  8614. #u71467_text {
  8615. border-width:0px;
  8616. word-wrap:break-word;
  8617. text-transform:none;
  8618. visibility:hidden;
  8619. }
  8620. #u71468_img {
  8621. border-width:0px;
  8622. position:absolute;
  8623. left:0px;
  8624. top:0px;
  8625. width:127px;
  8626. height:40px;
  8627. }
  8628. #u71468 {
  8629. border-width:0px;
  8630. position:absolute;
  8631. left:350px;
  8632. top:284px;
  8633. width:127px;
  8634. height:40px;
  8635. display:flex;
  8636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8637. font-weight:400;
  8638. font-style:normal;
  8639. font-size:12px;
  8640. }
  8641. #u71468 .text {
  8642. position:absolute;
  8643. align-self:center;
  8644. padding:2px 2px 2px 2px;
  8645. box-sizing:border-box;
  8646. width:100%;
  8647. }
  8648. #u71468_text {
  8649. border-width:0px;
  8650. word-wrap:break-word;
  8651. text-transform:none;
  8652. visibility:hidden;
  8653. }
  8654. #u71469_img {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:0px;
  8658. top:0px;
  8659. width:127px;
  8660. height:40px;
  8661. }
  8662. #u71469 {
  8663. border-width:0px;
  8664. position:absolute;
  8665. left:477px;
  8666. top:284px;
  8667. width:127px;
  8668. height:40px;
  8669. display:flex;
  8670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8671. font-weight:400;
  8672. font-style:normal;
  8673. font-size:12px;
  8674. }
  8675. #u71469 .text {
  8676. position:absolute;
  8677. align-self:center;
  8678. padding:2px 2px 2px 2px;
  8679. box-sizing:border-box;
  8680. width:100%;
  8681. }
  8682. #u71469_text {
  8683. border-width:0px;
  8684. word-wrap:break-word;
  8685. text-transform:none;
  8686. visibility:hidden;
  8687. }
  8688. #u71471 {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:0px;
  8692. top:0px;
  8693. width:0px;
  8694. height:0px;
  8695. }
  8696. #u71472_img {
  8697. border-width:0px;
  8698. position:absolute;
  8699. left:0px;
  8700. top:0px;
  8701. width:200px;
  8702. height:1191px;
  8703. }
  8704. #u71472 {
  8705. border-width:0px;
  8706. position:absolute;
  8707. left:120px;
  8708. top:50px;
  8709. width:200px;
  8710. height:1191px;
  8711. display:flex;
  8712. }
  8713. #u71472 .text {
  8714. position:absolute;
  8715. align-self:center;
  8716. padding:2px 2px 2px 2px;
  8717. box-sizing:border-box;
  8718. width:100%;
  8719. }
  8720. #u71472_text {
  8721. border-width:0px;
  8722. word-wrap:break-word;
  8723. text-transform:none;
  8724. visibility:hidden;
  8725. }
  8726. #u71473_div {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:0px;
  8730. top:0px;
  8731. width:200px;
  8732. height:60px;
  8733. background:inherit;
  8734. background-color:rgba(224, 231, 247, 1);
  8735. border:none;
  8736. border-radius:0px;
  8737. -moz-box-shadow:none;
  8738. -webkit-box-shadow:none;
  8739. box-shadow:none;
  8740. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8741. font-weight:500;
  8742. font-style:normal;
  8743. font-size:18px;
  8744. }
  8745. #u71473 {
  8746. border-width:0px;
  8747. position:absolute;
  8748. left:120px;
  8749. top:50px;
  8750. width:200px;
  8751. height:60px;
  8752. display:flex;
  8753. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8754. font-weight:500;
  8755. font-style:normal;
  8756. font-size:18px;
  8757. }
  8758. #u71473 .text {
  8759. position:absolute;
  8760. align-self:center;
  8761. padding:0px 0px 0px 20px;
  8762. box-sizing:border-box;
  8763. width:100%;
  8764. }
  8765. #u71473_text {
  8766. border-width:0px;
  8767. word-wrap:break-word;
  8768. text-transform:none;
  8769. }
  8770. #u71474 {
  8771. border-width:0px;
  8772. position:absolute;
  8773. left:120px;
  8774. top:130px;
  8775. width:200px;
  8776. height:1078px;
  8777. }
  8778. #u71474_state0 {
  8779. border-width:0px;
  8780. position:absolute;
  8781. left:0px;
  8782. top:0px;
  8783. width:200px;
  8784. height:1078px;
  8785. overflow:auto;
  8786. -webkit-overflow-scrolling:touch;
  8787. -ms-overflow-x:hidden;
  8788. overflow-x:hidden;
  8789. background-image:none;
  8790. border:none;
  8791. border-radius:0px;
  8792. -moz-box-shadow:none;
  8793. -webkit-box-shadow:none;
  8794. box-shadow:none;
  8795. }
  8796. #u71474_state0_content {
  8797. border-width:0px;
  8798. position:absolute;
  8799. left:0px;
  8800. top:0px;
  8801. width:1px;
  8802. height:1px;
  8803. }
  8804. #u71475_div {
  8805. border-width:0px;
  8806. position:absolute;
  8807. left:0px;
  8808. top:0px;
  8809. width:97px;
  8810. height:22px;
  8811. background:inherit;
  8812. background-color:rgba(255, 255, 255, 0);
  8813. border:none;
  8814. border-radius:0px;
  8815. -moz-box-shadow:none;
  8816. -webkit-box-shadow:none;
  8817. box-shadow:none;
  8818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8819. font-weight:400;
  8820. font-style:normal;
  8821. font-size:16px;
  8822. }
  8823. #u71475 {
  8824. border-width:0px;
  8825. position:absolute;
  8826. left:30px;
  8827. top:0px;
  8828. width:97px;
  8829. height:22px;
  8830. display:flex;
  8831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8832. font-weight:400;
  8833. font-style:normal;
  8834. font-size:16px;
  8835. }
  8836. #u71475 .text {
  8837. position:absolute;
  8838. align-self:flex-start;
  8839. padding:0px 0px 0px 0px;
  8840. box-sizing:border-box;
  8841. width:100%;
  8842. }
  8843. #u71475_text {
  8844. border-width:0px;
  8845. word-wrap:break-word;
  8846. text-transform:none;
  8847. }
  8848. #u71476_div {
  8849. border-width:0px;
  8850. position:absolute;
  8851. left:0px;
  8852. top:0px;
  8853. width:65px;
  8854. height:22px;
  8855. background:inherit;
  8856. background-color:rgba(255, 255, 255, 0);
  8857. border:none;
  8858. border-radius:0px;
  8859. -moz-box-shadow:none;
  8860. -webkit-box-shadow:none;
  8861. box-shadow:none;
  8862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8863. font-weight:400;
  8864. font-style:normal;
  8865. font-size:16px;
  8866. }
  8867. #u71476 {
  8868. border-width:0px;
  8869. position:absolute;
  8870. left:30px;
  8871. top:42px;
  8872. width:65px;
  8873. height:22px;
  8874. display:flex;
  8875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8876. font-weight:400;
  8877. font-style:normal;
  8878. font-size:16px;
  8879. }
  8880. #u71476 .text {
  8881. position:absolute;
  8882. align-self:flex-start;
  8883. padding:0px 0px 0px 0px;
  8884. box-sizing:border-box;
  8885. width:100%;
  8886. }
  8887. #u71476_text {
  8888. border-width:0px;
  8889. white-space:nowrap;
  8890. text-transform:none;
  8891. }
  8892. #u71477_div {
  8893. border-width:0px;
  8894. position:absolute;
  8895. left:0px;
  8896. top:0px;
  8897. width:49px;
  8898. height:22px;
  8899. background:inherit;
  8900. background-color:rgba(255, 255, 255, 0);
  8901. border:none;
  8902. border-radius:0px;
  8903. -moz-box-shadow:none;
  8904. -webkit-box-shadow:none;
  8905. box-shadow:none;
  8906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8907. font-weight:400;
  8908. font-style:normal;
  8909. font-size:16px;
  8910. }
  8911. #u71477 {
  8912. border-width:0px;
  8913. position:absolute;
  8914. left:30px;
  8915. top:145px;
  8916. width:49px;
  8917. height:22px;
  8918. display:flex;
  8919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8920. font-weight:400;
  8921. font-style:normal;
  8922. font-size:16px;
  8923. }
  8924. #u71477 .text {
  8925. position:absolute;
  8926. align-self:flex-start;
  8927. padding:0px 0px 0px 0px;
  8928. box-sizing:border-box;
  8929. width:100%;
  8930. }
  8931. #u71477_text {
  8932. border-width:0px;
  8933. white-space:nowrap;
  8934. text-transform:none;
  8935. }
  8936. #u71478_div {
  8937. border-width:0px;
  8938. position:absolute;
  8939. left:0px;
  8940. top:0px;
  8941. width:97px;
  8942. height:22px;
  8943. background:inherit;
  8944. background-color:rgba(255, 255, 255, 0);
  8945. border:none;
  8946. border-radius:0px;
  8947. -moz-box-shadow:none;
  8948. -webkit-box-shadow:none;
  8949. box-shadow:none;
  8950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8951. font-weight:400;
  8952. font-style:normal;
  8953. font-size:16px;
  8954. }
  8955. #u71478 {
  8956. border-width:0px;
  8957. position:absolute;
  8958. left:30px;
  8959. top:187px;
  8960. width:97px;
  8961. height:22px;
  8962. display:flex;
  8963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8964. font-weight:400;
  8965. font-style:normal;
  8966. font-size:16px;
  8967. }
  8968. #u71478 .text {
  8969. position:absolute;
  8970. align-self:flex-start;
  8971. padding:0px 0px 0px 0px;
  8972. box-sizing:border-box;
  8973. width:100%;
  8974. }
  8975. #u71478_text {
  8976. border-width:0px;
  8977. word-wrap:break-word;
  8978. text-transform:none;
  8979. }
  8980. #u71479_img {
  8981. border-width:0px;
  8982. position:absolute;
  8983. left:0px;
  8984. top:0px;
  8985. width:201px;
  8986. height:2px;
  8987. }
  8988. #u71479 {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:0px;
  8992. top:84px;
  8993. width:200px;
  8994. height:1px;
  8995. display:flex;
  8996. }
  8997. #u71479 .text {
  8998. position:absolute;
  8999. align-self:center;
  9000. padding:2px 2px 2px 2px;
  9001. box-sizing:border-box;
  9002. width:100%;
  9003. }
  9004. #u71479_text {
  9005. border-width:0px;
  9006. word-wrap:break-word;
  9007. text-transform:none;
  9008. visibility:hidden;
  9009. }
  9010. #u71480_div {
  9011. border-width:0px;
  9012. position:absolute;
  9013. left:0px;
  9014. top:0px;
  9015. width:49px;
  9016. height:17px;
  9017. background:inherit;
  9018. background-color:rgba(255, 255, 255, 0);
  9019. border:none;
  9020. border-radius:0px;
  9021. -moz-box-shadow:none;
  9022. -webkit-box-shadow:none;
  9023. box-shadow:none;
  9024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9025. font-weight:400;
  9026. font-style:normal;
  9027. font-size:12px;
  9028. color:#AAAAAA;
  9029. }
  9030. #u71480 {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:30px;
  9034. top:105px;
  9035. width:49px;
  9036. height:17px;
  9037. display:flex;
  9038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9039. font-weight:400;
  9040. font-style:normal;
  9041. font-size:12px;
  9042. color:#AAAAAA;
  9043. }
  9044. #u71480 .text {
  9045. position:absolute;
  9046. align-self:flex-start;
  9047. padding:0px 0px 0px 0px;
  9048. box-sizing:border-box;
  9049. width:100%;
  9050. }
  9051. #u71480_text {
  9052. border-width:0px;
  9053. white-space:nowrap;
  9054. text-transform:none;
  9055. }
  9056. #u71481_div {
  9057. border-width:0px;
  9058. position:absolute;
  9059. left:0px;
  9060. top:0px;
  9061. width:97px;
  9062. height:22px;
  9063. background:inherit;
  9064. background-color:rgba(255, 255, 255, 0);
  9065. border:none;
  9066. border-radius:0px;
  9067. -moz-box-shadow:none;
  9068. -webkit-box-shadow:none;
  9069. box-shadow:none;
  9070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9071. font-weight:400;
  9072. font-style:normal;
  9073. font-size:16px;
  9074. }
  9075. #u71481 {
  9076. border-width:0px;
  9077. position:absolute;
  9078. left:30px;
  9079. top:229px;
  9080. width:97px;
  9081. height:22px;
  9082. display:flex;
  9083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9084. font-weight:400;
  9085. font-style:normal;
  9086. font-size:16px;
  9087. }
  9088. #u71481 .text {
  9089. position:absolute;
  9090. align-self:flex-start;
  9091. padding:0px 0px 0px 0px;
  9092. box-sizing:border-box;
  9093. width:100%;
  9094. }
  9095. #u71481_text {
  9096. border-width:0px;
  9097. word-wrap:break-word;
  9098. text-transform:none;
  9099. }
  9100. #u71482_div {
  9101. border-width:0px;
  9102. position:absolute;
  9103. left:0px;
  9104. top:0px;
  9105. width:65px;
  9106. height:22px;
  9107. background:inherit;
  9108. background-color:rgba(255, 255, 255, 0);
  9109. border:none;
  9110. border-radius:0px;
  9111. -moz-box-shadow:none;
  9112. -webkit-box-shadow:none;
  9113. box-shadow:none;
  9114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9115. font-weight:400;
  9116. font-style:normal;
  9117. font-size:16px;
  9118. }
  9119. #u71482 {
  9120. border-width:0px;
  9121. position:absolute;
  9122. left:30px;
  9123. top:271px;
  9124. width:65px;
  9125. height:22px;
  9126. display:flex;
  9127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9128. font-weight:400;
  9129. font-style:normal;
  9130. font-size:16px;
  9131. }
  9132. #u71482 .text {
  9133. position:absolute;
  9134. align-self:flex-start;
  9135. padding:0px 0px 0px 0px;
  9136. box-sizing:border-box;
  9137. width:100%;
  9138. }
  9139. #u71482_text {
  9140. border-width:0px;
  9141. white-space:nowrap;
  9142. text-transform:none;
  9143. }
  9144. #u71483_img {
  9145. border-width:0px;
  9146. position:absolute;
  9147. left:0px;
  9148. top:0px;
  9149. width:201px;
  9150. height:2px;
  9151. }
  9152. #u71483 {
  9153. border-width:0px;
  9154. position:absolute;
  9155. left:0px;
  9156. top:313px;
  9157. width:200px;
  9158. height:1px;
  9159. display:flex;
  9160. }
  9161. #u71483 .text {
  9162. position:absolute;
  9163. align-self:center;
  9164. padding:2px 2px 2px 2px;
  9165. box-sizing:border-box;
  9166. width:100%;
  9167. }
  9168. #u71483_text {
  9169. border-width:0px;
  9170. word-wrap:break-word;
  9171. text-transform:none;
  9172. visibility:hidden;
  9173. }
  9174. #u71484_div {
  9175. border-width:0px;
  9176. position:absolute;
  9177. left:0px;
  9178. top:0px;
  9179. width:65px;
  9180. height:22px;
  9181. background:inherit;
  9182. background-color:rgba(255, 255, 255, 0);
  9183. border:none;
  9184. border-radius:0px;
  9185. -moz-box-shadow:none;
  9186. -webkit-box-shadow:none;
  9187. box-shadow:none;
  9188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9189. font-weight:400;
  9190. font-style:normal;
  9191. font-size:16px;
  9192. }
  9193. #u71484 {
  9194. border-width:0px;
  9195. position:absolute;
  9196. left:30px;
  9197. top:370px;
  9198. width:65px;
  9199. height:22px;
  9200. display:flex;
  9201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9202. font-weight:400;
  9203. font-style:normal;
  9204. font-size:16px;
  9205. }
  9206. #u71484 .text {
  9207. position:absolute;
  9208. align-self:flex-start;
  9209. padding:0px 0px 0px 0px;
  9210. box-sizing:border-box;
  9211. width:100%;
  9212. }
  9213. #u71484_text {
  9214. border-width:0px;
  9215. white-space:nowrap;
  9216. text-transform:none;
  9217. }
  9218. #u71485_div {
  9219. border-width:0px;
  9220. position:absolute;
  9221. left:0px;
  9222. top:0px;
  9223. width:49px;
  9224. height:17px;
  9225. background:inherit;
  9226. background-color:rgba(255, 255, 255, 0);
  9227. border:none;
  9228. border-radius:0px;
  9229. -moz-box-shadow:none;
  9230. -webkit-box-shadow:none;
  9231. box-shadow:none;
  9232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9233. font-weight:400;
  9234. font-style:normal;
  9235. font-size:12px;
  9236. color:#AAAAAA;
  9237. }
  9238. #u71485 {
  9239. border-width:0px;
  9240. position:absolute;
  9241. left:30px;
  9242. top:334px;
  9243. width:49px;
  9244. height:17px;
  9245. display:flex;
  9246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9247. font-weight:400;
  9248. font-style:normal;
  9249. font-size:12px;
  9250. color:#AAAAAA;
  9251. }
  9252. #u71485 .text {
  9253. position:absolute;
  9254. align-self:flex-start;
  9255. padding:0px 0px 0px 0px;
  9256. box-sizing:border-box;
  9257. width:100%;
  9258. }
  9259. #u71485_text {
  9260. border-width:0px;
  9261. white-space:nowrap;
  9262. text-transform:none;
  9263. }
  9264. #u71486_div {
  9265. border-width:0px;
  9266. position:absolute;
  9267. left:0px;
  9268. top:0px;
  9269. width:65px;
  9270. height:22px;
  9271. background:inherit;
  9272. background-color:rgba(255, 255, 255, 0);
  9273. border:none;
  9274. border-radius:0px;
  9275. -moz-box-shadow:none;
  9276. -webkit-box-shadow:none;
  9277. box-shadow:none;
  9278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9279. font-weight:400;
  9280. font-style:normal;
  9281. font-size:16px;
  9282. }
  9283. #u71486 {
  9284. border-width:0px;
  9285. position:absolute;
  9286. left:30px;
  9287. top:412px;
  9288. width:65px;
  9289. height:22px;
  9290. display:flex;
  9291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9292. font-weight:400;
  9293. font-style:normal;
  9294. font-size:16px;
  9295. }
  9296. #u71486 .text {
  9297. position:absolute;
  9298. align-self:flex-start;
  9299. padding:0px 0px 0px 0px;
  9300. box-sizing:border-box;
  9301. width:100%;
  9302. }
  9303. #u71486_text {
  9304. border-width:0px;
  9305. white-space:nowrap;
  9306. text-transform:none;
  9307. }
  9308. #u71487_div {
  9309. border-width:0px;
  9310. position:absolute;
  9311. left:0px;
  9312. top:0px;
  9313. width:65px;
  9314. height:22px;
  9315. background:inherit;
  9316. background-color:rgba(255, 255, 255, 0);
  9317. border:none;
  9318. border-radius:0px;
  9319. -moz-box-shadow:none;
  9320. -webkit-box-shadow:none;
  9321. box-shadow:none;
  9322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9323. font-weight:400;
  9324. font-style:normal;
  9325. font-size:16px;
  9326. }
  9327. #u71487 {
  9328. border-width:0px;
  9329. position:absolute;
  9330. left:30px;
  9331. top:454px;
  9332. width:65px;
  9333. height:22px;
  9334. display:flex;
  9335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9336. font-weight:400;
  9337. font-style:normal;
  9338. font-size:16px;
  9339. }
  9340. #u71487 .text {
  9341. position:absolute;
  9342. align-self:flex-start;
  9343. padding:0px 0px 0px 0px;
  9344. box-sizing:border-box;
  9345. width:100%;
  9346. }
  9347. #u71487_text {
  9348. border-width:0px;
  9349. white-space:nowrap;
  9350. text-transform:none;
  9351. }
  9352. #u71488_div {
  9353. border-width:0px;
  9354. position:absolute;
  9355. left:0px;
  9356. top:0px;
  9357. width:65px;
  9358. height:22px;
  9359. background:inherit;
  9360. background-color:rgba(255, 255, 255, 0);
  9361. border:none;
  9362. border-radius:0px;
  9363. -moz-box-shadow:none;
  9364. -webkit-box-shadow:none;
  9365. box-shadow:none;
  9366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9367. font-weight:400;
  9368. font-style:normal;
  9369. font-size:16px;
  9370. }
  9371. #u71488 {
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:30px;
  9375. top:496px;
  9376. width:65px;
  9377. height:22px;
  9378. display:flex;
  9379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9380. font-weight:400;
  9381. font-style:normal;
  9382. font-size:16px;
  9383. }
  9384. #u71488 .text {
  9385. position:absolute;
  9386. align-self:flex-start;
  9387. padding:0px 0px 0px 0px;
  9388. box-sizing:border-box;
  9389. width:100%;
  9390. }
  9391. #u71488_text {
  9392. border-width:0px;
  9393. white-space:nowrap;
  9394. text-transform:none;
  9395. }
  9396. #u71489_div {
  9397. border-width:0px;
  9398. position:absolute;
  9399. left:0px;
  9400. top:0px;
  9401. width:65px;
  9402. height:22px;
  9403. background:inherit;
  9404. background-color:rgba(255, 255, 255, 0);
  9405. border:none;
  9406. border-radius:0px;
  9407. -moz-box-shadow:none;
  9408. -webkit-box-shadow:none;
  9409. box-shadow:none;
  9410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9411. font-weight:400;
  9412. font-style:normal;
  9413. font-size:16px;
  9414. }
  9415. #u71489 {
  9416. border-width:0px;
  9417. position:absolute;
  9418. left:30px;
  9419. top:538px;
  9420. width:65px;
  9421. height:22px;
  9422. display:flex;
  9423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9424. font-weight:400;
  9425. font-style:normal;
  9426. font-size:16px;
  9427. }
  9428. #u71489 .text {
  9429. position:absolute;
  9430. align-self:flex-start;
  9431. padding:0px 0px 0px 0px;
  9432. box-sizing:border-box;
  9433. width:100%;
  9434. }
  9435. #u71489_text {
  9436. border-width:0px;
  9437. white-space:nowrap;
  9438. text-transform:none;
  9439. }
  9440. #u71490_div {
  9441. border-width:0px;
  9442. position:absolute;
  9443. left:0px;
  9444. top:0px;
  9445. width:65px;
  9446. height:22px;
  9447. background:inherit;
  9448. background-color:rgba(255, 255, 255, 0);
  9449. border:none;
  9450. border-radius:0px;
  9451. -moz-box-shadow:none;
  9452. -webkit-box-shadow:none;
  9453. box-shadow:none;
  9454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9455. font-weight:400;
  9456. font-style:normal;
  9457. font-size:16px;
  9458. }
  9459. #u71490 {
  9460. border-width:0px;
  9461. position:absolute;
  9462. left:30px;
  9463. top:580px;
  9464. width:65px;
  9465. height:22px;
  9466. display:flex;
  9467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9468. font-weight:400;
  9469. font-style:normal;
  9470. font-size:16px;
  9471. }
  9472. #u71490 .text {
  9473. position:absolute;
  9474. align-self:flex-start;
  9475. padding:0px 0px 0px 0px;
  9476. box-sizing:border-box;
  9477. width:100%;
  9478. }
  9479. #u71490_text {
  9480. border-width:0px;
  9481. white-space:nowrap;
  9482. text-transform:none;
  9483. }
  9484. #u71491_img {
  9485. border-width:0px;
  9486. position:absolute;
  9487. left:0px;
  9488. top:0px;
  9489. width:201px;
  9490. height:2px;
  9491. }
  9492. #u71491 {
  9493. border-width:0px;
  9494. position:absolute;
  9495. left:0px;
  9496. top:1289px;
  9497. width:200px;
  9498. height:1px;
  9499. display:flex;
  9500. }
  9501. #u71491 .text {
  9502. position:absolute;
  9503. align-self:center;
  9504. padding:2px 2px 2px 2px;
  9505. box-sizing:border-box;
  9506. width:100%;
  9507. }
  9508. #u71491_text {
  9509. border-width:0px;
  9510. word-wrap:break-word;
  9511. text-transform:none;
  9512. visibility:hidden;
  9513. }
  9514. #u71492_div {
  9515. border-width:0px;
  9516. position:absolute;
  9517. left:0px;
  9518. top:0px;
  9519. width:65px;
  9520. height:22px;
  9521. background:inherit;
  9522. background-color:rgba(255, 255, 255, 0);
  9523. border:none;
  9524. border-radius:0px;
  9525. -moz-box-shadow:none;
  9526. -webkit-box-shadow:none;
  9527. box-shadow:none;
  9528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9529. font-weight:400;
  9530. font-style:normal;
  9531. font-size:16px;
  9532. }
  9533. #u71492 {
  9534. border-width:0px;
  9535. position:absolute;
  9536. left:30px;
  9537. top:1346px;
  9538. width:65px;
  9539. height:22px;
  9540. display:flex;
  9541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9542. font-weight:400;
  9543. font-style:normal;
  9544. font-size:16px;
  9545. }
  9546. #u71492 .text {
  9547. position:absolute;
  9548. align-self:flex-start;
  9549. padding:0px 0px 0px 0px;
  9550. box-sizing:border-box;
  9551. width:100%;
  9552. }
  9553. #u71492_text {
  9554. border-width:0px;
  9555. white-space:nowrap;
  9556. text-transform:none;
  9557. }
  9558. #u71493_div {
  9559. border-width:0px;
  9560. position:absolute;
  9561. left:0px;
  9562. top:0px;
  9563. width:49px;
  9564. height:17px;
  9565. background:inherit;
  9566. background-color:rgba(255, 255, 255, 0);
  9567. border:none;
  9568. border-radius:0px;
  9569. -moz-box-shadow:none;
  9570. -webkit-box-shadow:none;
  9571. box-shadow:none;
  9572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9573. font-weight:400;
  9574. font-style:normal;
  9575. font-size:12px;
  9576. color:#AAAAAA;
  9577. }
  9578. #u71493 {
  9579. border-width:0px;
  9580. position:absolute;
  9581. left:30px;
  9582. top:1310px;
  9583. width:49px;
  9584. height:17px;
  9585. display:flex;
  9586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9587. font-weight:400;
  9588. font-style:normal;
  9589. font-size:12px;
  9590. color:#AAAAAA;
  9591. }
  9592. #u71493 .text {
  9593. position:absolute;
  9594. align-self:flex-start;
  9595. padding:0px 0px 0px 0px;
  9596. box-sizing:border-box;
  9597. width:100%;
  9598. }
  9599. #u71493_text {
  9600. border-width:0px;
  9601. white-space:nowrap;
  9602. text-transform:none;
  9603. }
  9604. #u71494_div {
  9605. border-width:0px;
  9606. position:absolute;
  9607. left:0px;
  9608. top:0px;
  9609. width:65px;
  9610. height:22px;
  9611. background:inherit;
  9612. background-color:rgba(255, 255, 255, 0);
  9613. border:none;
  9614. border-radius:0px;
  9615. -moz-box-shadow:none;
  9616. -webkit-box-shadow:none;
  9617. box-shadow:none;
  9618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9619. font-weight:400;
  9620. font-style:normal;
  9621. font-size:16px;
  9622. }
  9623. #u71494 {
  9624. border-width:0px;
  9625. position:absolute;
  9626. left:30px;
  9627. top:1388px;
  9628. width:65px;
  9629. height:22px;
  9630. display:flex;
  9631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9632. font-weight:400;
  9633. font-style:normal;
  9634. font-size:16px;
  9635. }
  9636. #u71494 .text {
  9637. position:absolute;
  9638. align-self:flex-start;
  9639. padding:0px 0px 0px 0px;
  9640. box-sizing:border-box;
  9641. width:100%;
  9642. }
  9643. #u71494_text {
  9644. border-width:0px;
  9645. white-space:nowrap;
  9646. text-transform:none;
  9647. }
  9648. #u71495_div {
  9649. border-width:0px;
  9650. position:absolute;
  9651. left:0px;
  9652. top:0px;
  9653. width:65px;
  9654. height:22px;
  9655. background:inherit;
  9656. background-color:rgba(255, 255, 255, 0);
  9657. border:none;
  9658. border-radius:0px;
  9659. -moz-box-shadow:none;
  9660. -webkit-box-shadow:none;
  9661. box-shadow:none;
  9662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9663. font-weight:400;
  9664. font-style:normal;
  9665. font-size:16px;
  9666. }
  9667. #u71495 {
  9668. border-width:0px;
  9669. position:absolute;
  9670. left:30px;
  9671. top:1472px;
  9672. width:65px;
  9673. height:22px;
  9674. display:flex;
  9675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9676. font-weight:400;
  9677. font-style:normal;
  9678. font-size:16px;
  9679. }
  9680. #u71495 .text {
  9681. position:absolute;
  9682. align-self:flex-start;
  9683. padding:0px 0px 0px 0px;
  9684. box-sizing:border-box;
  9685. width:100%;
  9686. }
  9687. #u71495_text {
  9688. border-width:0px;
  9689. white-space:nowrap;
  9690. text-transform:none;
  9691. }
  9692. #u71496_img {
  9693. border-width:0px;
  9694. position:absolute;
  9695. left:0px;
  9696. top:0px;
  9697. width:201px;
  9698. height:2px;
  9699. }
  9700. #u71496 {
  9701. border-width:0px;
  9702. position:absolute;
  9703. left:0px;
  9704. top:1514px;
  9705. width:200px;
  9706. height:1px;
  9707. display:flex;
  9708. }
  9709. #u71496 .text {
  9710. position:absolute;
  9711. align-self:center;
  9712. padding:2px 2px 2px 2px;
  9713. box-sizing:border-box;
  9714. width:100%;
  9715. }
  9716. #u71496_text {
  9717. border-width:0px;
  9718. word-wrap:break-word;
  9719. text-transform:none;
  9720. visibility:hidden;
  9721. }
  9722. #u71497_div {
  9723. border-width:0px;
  9724. position:absolute;
  9725. left:0px;
  9726. top:0px;
  9727. width:49px;
  9728. height:22px;
  9729. background:inherit;
  9730. background-color:rgba(255, 255, 255, 0);
  9731. border:none;
  9732. border-radius:0px;
  9733. -moz-box-shadow:none;
  9734. -webkit-box-shadow:none;
  9735. box-shadow:none;
  9736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9737. font-weight:400;
  9738. font-style:normal;
  9739. font-size:16px;
  9740. }
  9741. #u71497 {
  9742. border-width:0px;
  9743. position:absolute;
  9744. left:30px;
  9745. top:1571px;
  9746. width:49px;
  9747. height:22px;
  9748. display:flex;
  9749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9750. font-weight:400;
  9751. font-style:normal;
  9752. font-size:16px;
  9753. }
  9754. #u71497 .text {
  9755. position:absolute;
  9756. align-self:flex-start;
  9757. padding:0px 0px 0px 0px;
  9758. box-sizing:border-box;
  9759. width:100%;
  9760. }
  9761. #u71497_text {
  9762. border-width:0px;
  9763. white-space:nowrap;
  9764. text-transform:none;
  9765. }
  9766. #u71498_div {
  9767. border-width:0px;
  9768. position:absolute;
  9769. left:0px;
  9770. top:0px;
  9771. width:49px;
  9772. height:17px;
  9773. background:inherit;
  9774. background-color:rgba(255, 255, 255, 0);
  9775. border:none;
  9776. border-radius:0px;
  9777. -moz-box-shadow:none;
  9778. -webkit-box-shadow:none;
  9779. box-shadow:none;
  9780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9781. font-weight:400;
  9782. font-style:normal;
  9783. font-size:12px;
  9784. color:#AAAAAA;
  9785. }
  9786. #u71498 {
  9787. border-width:0px;
  9788. position:absolute;
  9789. left:30px;
  9790. top:1535px;
  9791. width:49px;
  9792. height:17px;
  9793. display:flex;
  9794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9795. font-weight:400;
  9796. font-style:normal;
  9797. font-size:12px;
  9798. color:#AAAAAA;
  9799. }
  9800. #u71498 .text {
  9801. position:absolute;
  9802. align-self:flex-start;
  9803. padding:0px 0px 0px 0px;
  9804. box-sizing:border-box;
  9805. width:100%;
  9806. }
  9807. #u71498_text {
  9808. border-width:0px;
  9809. white-space:nowrap;
  9810. text-transform:none;
  9811. }
  9812. #u71499_div {
  9813. border-width:0px;
  9814. position:absolute;
  9815. left:0px;
  9816. top:0px;
  9817. width:49px;
  9818. height:22px;
  9819. background:inherit;
  9820. background-color:rgba(255, 255, 255, 0);
  9821. border:none;
  9822. border-radius:0px;
  9823. -moz-box-shadow:none;
  9824. -webkit-box-shadow:none;
  9825. box-shadow:none;
  9826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9827. font-weight:400;
  9828. font-style:normal;
  9829. font-size:16px;
  9830. }
  9831. #u71499 {
  9832. border-width:0px;
  9833. position:absolute;
  9834. left:30px;
  9835. top:1613px;
  9836. width:49px;
  9837. height:22px;
  9838. display:flex;
  9839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9840. font-weight:400;
  9841. font-style:normal;
  9842. font-size:16px;
  9843. }
  9844. #u71499 .text {
  9845. position:absolute;
  9846. align-self:flex-start;
  9847. padding:0px 0px 0px 0px;
  9848. box-sizing:border-box;
  9849. width:100%;
  9850. }
  9851. #u71499_text {
  9852. border-width:0px;
  9853. white-space:nowrap;
  9854. text-transform:none;
  9855. }
  9856. #u71500_div {
  9857. border-width:0px;
  9858. position:absolute;
  9859. left:0px;
  9860. top:0px;
  9861. width:65px;
  9862. height:22px;
  9863. background:inherit;
  9864. background-color:rgba(255, 255, 255, 0);
  9865. border:none;
  9866. border-radius:0px;
  9867. -moz-box-shadow:none;
  9868. -webkit-box-shadow:none;
  9869. box-shadow:none;
  9870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9871. font-weight:400;
  9872. font-style:normal;
  9873. font-size:16px;
  9874. }
  9875. #u71500 {
  9876. border-width:0px;
  9877. position:absolute;
  9878. left:30px;
  9879. top:1655px;
  9880. width:65px;
  9881. height:22px;
  9882. display:flex;
  9883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9884. font-weight:400;
  9885. font-style:normal;
  9886. font-size:16px;
  9887. }
  9888. #u71500 .text {
  9889. position:absolute;
  9890. align-self:flex-start;
  9891. padding:0px 0px 0px 0px;
  9892. box-sizing:border-box;
  9893. width:100%;
  9894. }
  9895. #u71500_text {
  9896. border-width:0px;
  9897. white-space:nowrap;
  9898. text-transform:none;
  9899. }
  9900. #u71501_img {
  9901. border-width:0px;
  9902. position:absolute;
  9903. left:0px;
  9904. top:0px;
  9905. width:201px;
  9906. height:2px;
  9907. }
  9908. #u71501 {
  9909. border-width:0px;
  9910. position:absolute;
  9911. left:0px;
  9912. top:1697px;
  9913. width:200px;
  9914. height:1px;
  9915. display:flex;
  9916. }
  9917. #u71501 .text {
  9918. position:absolute;
  9919. align-self:center;
  9920. padding:2px 2px 2px 2px;
  9921. box-sizing:border-box;
  9922. width:100%;
  9923. }
  9924. #u71501_text {
  9925. border-width:0px;
  9926. word-wrap:break-word;
  9927. text-transform:none;
  9928. visibility:hidden;
  9929. }
  9930. #u71502_div {
  9931. border-width:0px;
  9932. position:absolute;
  9933. left:0px;
  9934. top:0px;
  9935. width:81px;
  9936. height:22px;
  9937. background:inherit;
  9938. background-color:rgba(255, 255, 255, 0);
  9939. border:none;
  9940. border-radius:0px;
  9941. -moz-box-shadow:none;
  9942. -webkit-box-shadow:none;
  9943. box-shadow:none;
  9944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9945. font-weight:400;
  9946. font-style:normal;
  9947. font-size:16px;
  9948. }
  9949. #u71502 {
  9950. border-width:0px;
  9951. position:absolute;
  9952. left:30px;
  9953. top:1754px;
  9954. width:81px;
  9955. height:22px;
  9956. display:flex;
  9957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9958. font-weight:400;
  9959. font-style:normal;
  9960. font-size:16px;
  9961. }
  9962. #u71502 .text {
  9963. position:absolute;
  9964. align-self:flex-start;
  9965. padding:0px 0px 0px 0px;
  9966. box-sizing:border-box;
  9967. width:100%;
  9968. }
  9969. #u71502_text {
  9970. border-width:0px;
  9971. white-space:nowrap;
  9972. text-transform:none;
  9973. }
  9974. #u71503_div {
  9975. border-width:0px;
  9976. position:absolute;
  9977. left:0px;
  9978. top:0px;
  9979. width:49px;
  9980. height:17px;
  9981. background:inherit;
  9982. background-color:rgba(255, 255, 255, 0);
  9983. border:none;
  9984. border-radius:0px;
  9985. -moz-box-shadow:none;
  9986. -webkit-box-shadow:none;
  9987. box-shadow:none;
  9988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9989. font-weight:400;
  9990. font-style:normal;
  9991. font-size:12px;
  9992. color:#AAAAAA;
  9993. }
  9994. #u71503 {
  9995. border-width:0px;
  9996. position:absolute;
  9997. left:30px;
  9998. top:1718px;
  9999. width:49px;
  10000. height:17px;
  10001. display:flex;
  10002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10003. font-weight:400;
  10004. font-style:normal;
  10005. font-size:12px;
  10006. color:#AAAAAA;
  10007. }
  10008. #u71503 .text {
  10009. position:absolute;
  10010. align-self:flex-start;
  10011. padding:0px 0px 0px 0px;
  10012. box-sizing:border-box;
  10013. width:100%;
  10014. }
  10015. #u71503_text {
  10016. border-width:0px;
  10017. white-space:nowrap;
  10018. text-transform:none;
  10019. }
  10020. #u71504_div {
  10021. border-width:0px;
  10022. position:absolute;
  10023. left:0px;
  10024. top:0px;
  10025. width:81px;
  10026. height:22px;
  10027. background:inherit;
  10028. background-color:rgba(255, 255, 255, 0);
  10029. border:none;
  10030. border-radius:0px;
  10031. -moz-box-shadow:none;
  10032. -webkit-box-shadow:none;
  10033. box-shadow:none;
  10034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10035. font-weight:400;
  10036. font-style:normal;
  10037. font-size:16px;
  10038. }
  10039. #u71504 {
  10040. border-width:0px;
  10041. position:absolute;
  10042. left:30px;
  10043. top:1796px;
  10044. width:81px;
  10045. height:22px;
  10046. display:flex;
  10047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10048. font-weight:400;
  10049. font-style:normal;
  10050. font-size:16px;
  10051. }
  10052. #u71504 .text {
  10053. position:absolute;
  10054. align-self:flex-start;
  10055. padding:0px 0px 0px 0px;
  10056. box-sizing:border-box;
  10057. width:100%;
  10058. }
  10059. #u71504_text {
  10060. border-width:0px;
  10061. white-space:nowrap;
  10062. text-transform:none;
  10063. }
  10064. #u71505_div {
  10065. border-width:0px;
  10066. position:absolute;
  10067. left:0px;
  10068. top:0px;
  10069. width:81px;
  10070. height:22px;
  10071. background:inherit;
  10072. background-color:rgba(255, 255, 255, 0);
  10073. border:none;
  10074. border-radius:0px;
  10075. -moz-box-shadow:none;
  10076. -webkit-box-shadow:none;
  10077. box-shadow:none;
  10078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10079. font-weight:400;
  10080. font-style:normal;
  10081. font-size:16px;
  10082. }
  10083. #u71505 {
  10084. border-width:0px;
  10085. position:absolute;
  10086. left:30px;
  10087. top:1838px;
  10088. width:81px;
  10089. height:22px;
  10090. display:flex;
  10091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10092. font-weight:400;
  10093. font-style:normal;
  10094. font-size:16px;
  10095. }
  10096. #u71505 .text {
  10097. position:absolute;
  10098. align-self:flex-start;
  10099. padding:0px 0px 0px 0px;
  10100. box-sizing:border-box;
  10101. width:100%;
  10102. }
  10103. #u71505_text {
  10104. border-width:0px;
  10105. white-space:nowrap;
  10106. text-transform:none;
  10107. }
  10108. #u71506_div {
  10109. border-width:0px;
  10110. position:absolute;
  10111. left:0px;
  10112. top:0px;
  10113. width:65px;
  10114. height:22px;
  10115. background:inherit;
  10116. background-color:rgba(255, 255, 255, 0);
  10117. border:none;
  10118. border-radius:0px;
  10119. -moz-box-shadow:none;
  10120. -webkit-box-shadow:none;
  10121. box-shadow:none;
  10122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10123. font-weight:400;
  10124. font-style:normal;
  10125. font-size:16px;
  10126. }
  10127. #u71506 {
  10128. border-width:0px;
  10129. position:absolute;
  10130. left:30px;
  10131. top:1430px;
  10132. width:65px;
  10133. height:22px;
  10134. display:flex;
  10135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10136. font-weight:400;
  10137. font-style:normal;
  10138. font-size:16px;
  10139. }
  10140. #u71506 .text {
  10141. position:absolute;
  10142. align-self:flex-start;
  10143. padding:0px 0px 0px 0px;
  10144. box-sizing:border-box;
  10145. width:100%;
  10146. }
  10147. #u71506_text {
  10148. border-width:0px;
  10149. white-space:nowrap;
  10150. text-transform:none;
  10151. }
  10152. #u71507_img {
  10153. border-width:0px;
  10154. position:absolute;
  10155. left:0px;
  10156. top:0px;
  10157. width:201px;
  10158. height:2px;
  10159. }
  10160. #u71507 {
  10161. border-width:0px;
  10162. position:absolute;
  10163. left:0px;
  10164. top:669px;
  10165. width:200px;
  10166. height:1px;
  10167. display:flex;
  10168. }
  10169. #u71507 .text {
  10170. position:absolute;
  10171. align-self:center;
  10172. padding:2px 2px 2px 2px;
  10173. box-sizing:border-box;
  10174. width:100%;
  10175. }
  10176. #u71507_text {
  10177. border-width:0px;
  10178. word-wrap:break-word;
  10179. text-transform:none;
  10180. visibility:hidden;
  10181. }
  10182. #u71508_div {
  10183. border-width:0px;
  10184. position:absolute;
  10185. left:0px;
  10186. top:0px;
  10187. width:65px;
  10188. height:22px;
  10189. background:inherit;
  10190. background-color:rgba(255, 255, 255, 0);
  10191. border:none;
  10192. border-radius:0px;
  10193. -moz-box-shadow:none;
  10194. -webkit-box-shadow:none;
  10195. box-shadow:none;
  10196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10197. font-weight:400;
  10198. font-style:normal;
  10199. font-size:16px;
  10200. }
  10201. #u71508 {
  10202. border-width:0px;
  10203. position:absolute;
  10204. left:30px;
  10205. top:726px;
  10206. width:65px;
  10207. height:22px;
  10208. display:flex;
  10209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10210. font-weight:400;
  10211. font-style:normal;
  10212. font-size:16px;
  10213. }
  10214. #u71508 .text {
  10215. position:absolute;
  10216. align-self:flex-start;
  10217. padding:0px 0px 0px 0px;
  10218. box-sizing:border-box;
  10219. width:100%;
  10220. }
  10221. #u71508_text {
  10222. border-width:0px;
  10223. white-space:nowrap;
  10224. text-transform:none;
  10225. }
  10226. #u71509_div {
  10227. border-width:0px;
  10228. position:absolute;
  10229. left:0px;
  10230. top:0px;
  10231. width:49px;
  10232. height:17px;
  10233. background:inherit;
  10234. background-color:rgba(255, 255, 255, 0);
  10235. border:none;
  10236. border-radius:0px;
  10237. -moz-box-shadow:none;
  10238. -webkit-box-shadow:none;
  10239. box-shadow:none;
  10240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10241. font-weight:400;
  10242. font-style:normal;
  10243. font-size:12px;
  10244. color:#AAAAAA;
  10245. }
  10246. #u71509 {
  10247. border-width:0px;
  10248. position:absolute;
  10249. left:30px;
  10250. top:690px;
  10251. width:49px;
  10252. height:17px;
  10253. display:flex;
  10254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10255. font-weight:400;
  10256. font-style:normal;
  10257. font-size:12px;
  10258. color:#AAAAAA;
  10259. }
  10260. #u71509 .text {
  10261. position:absolute;
  10262. align-self:flex-start;
  10263. padding:0px 0px 0px 0px;
  10264. box-sizing:border-box;
  10265. width:100%;
  10266. }
  10267. #u71509_text {
  10268. border-width:0px;
  10269. white-space:nowrap;
  10270. text-transform:none;
  10271. }
  10272. #u71510_div {
  10273. border-width:0px;
  10274. position:absolute;
  10275. left:0px;
  10276. top:0px;
  10277. width:65px;
  10278. height:22px;
  10279. background:inherit;
  10280. background-color:rgba(255, 255, 255, 0);
  10281. border:none;
  10282. border-radius:0px;
  10283. -moz-box-shadow:none;
  10284. -webkit-box-shadow:none;
  10285. box-shadow:none;
  10286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10287. font-weight:400;
  10288. font-style:normal;
  10289. font-size:16px;
  10290. }
  10291. #u71510 {
  10292. border-width:0px;
  10293. position:absolute;
  10294. left:30px;
  10295. top:768px;
  10296. width:65px;
  10297. height:22px;
  10298. display:flex;
  10299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10300. font-weight:400;
  10301. font-style:normal;
  10302. font-size:16px;
  10303. }
  10304. #u71510 .text {
  10305. position:absolute;
  10306. align-self:flex-start;
  10307. padding:0px 0px 0px 0px;
  10308. box-sizing:border-box;
  10309. width:100%;
  10310. }
  10311. #u71510_text {
  10312. border-width:0px;
  10313. white-space:nowrap;
  10314. text-transform:none;
  10315. }
  10316. #u71511_div {
  10317. border-width:0px;
  10318. position:absolute;
  10319. left:0px;
  10320. top:0px;
  10321. width:65px;
  10322. height:22px;
  10323. background:inherit;
  10324. background-color:rgba(255, 255, 255, 0);
  10325. border:none;
  10326. border-radius:0px;
  10327. -moz-box-shadow:none;
  10328. -webkit-box-shadow:none;
  10329. box-shadow:none;
  10330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10331. font-weight:400;
  10332. font-style:normal;
  10333. font-size:16px;
  10334. }
  10335. #u71511 {
  10336. border-width:0px;
  10337. position:absolute;
  10338. left:30px;
  10339. top:852px;
  10340. width:65px;
  10341. height:22px;
  10342. display:flex;
  10343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10344. font-weight:400;
  10345. font-style:normal;
  10346. font-size:16px;
  10347. }
  10348. #u71511 .text {
  10349. position:absolute;
  10350. align-self:flex-start;
  10351. padding:0px 0px 0px 0px;
  10352. box-sizing:border-box;
  10353. width:100%;
  10354. }
  10355. #u71511_text {
  10356. border-width:0px;
  10357. white-space:nowrap;
  10358. text-transform:none;
  10359. }
  10360. #u71512_div {
  10361. border-width:0px;
  10362. position:absolute;
  10363. left:0px;
  10364. top:0px;
  10365. width:65px;
  10366. height:22px;
  10367. background:inherit;
  10368. background-color:rgba(255, 255, 255, 0);
  10369. border:none;
  10370. border-radius:0px;
  10371. -moz-box-shadow:none;
  10372. -webkit-box-shadow:none;
  10373. box-shadow:none;
  10374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10375. font-weight:400;
  10376. font-style:normal;
  10377. font-size:16px;
  10378. }
  10379. #u71512 {
  10380. border-width:0px;
  10381. position:absolute;
  10382. left:30px;
  10383. top:810px;
  10384. width:65px;
  10385. height:22px;
  10386. display:flex;
  10387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10388. font-weight:400;
  10389. font-style:normal;
  10390. font-size:16px;
  10391. }
  10392. #u71512 .text {
  10393. position:absolute;
  10394. align-self:flex-start;
  10395. padding:0px 0px 0px 0px;
  10396. box-sizing:border-box;
  10397. width:100%;
  10398. }
  10399. #u71512_text {
  10400. border-width:0px;
  10401. white-space:nowrap;
  10402. text-transform:none;
  10403. }
  10404. #u71513_div {
  10405. border-width:0px;
  10406. position:absolute;
  10407. left:0px;
  10408. top:0px;
  10409. width:65px;
  10410. height:22px;
  10411. background:inherit;
  10412. background-color:rgba(255, 255, 255, 0);
  10413. border:none;
  10414. border-radius:0px;
  10415. -moz-box-shadow:none;
  10416. -webkit-box-shadow:none;
  10417. box-shadow:none;
  10418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10419. font-weight:400;
  10420. font-style:normal;
  10421. font-size:16px;
  10422. }
  10423. #u71513 {
  10424. border-width:0px;
  10425. position:absolute;
  10426. left:30px;
  10427. top:894px;
  10428. width:65px;
  10429. height:22px;
  10430. display:flex;
  10431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10432. font-weight:400;
  10433. font-style:normal;
  10434. font-size:16px;
  10435. }
  10436. #u71513 .text {
  10437. position:absolute;
  10438. align-self:flex-start;
  10439. padding:0px 0px 0px 0px;
  10440. box-sizing:border-box;
  10441. width:100%;
  10442. }
  10443. #u71513_text {
  10444. border-width:0px;
  10445. white-space:nowrap;
  10446. text-transform:none;
  10447. }
  10448. #u71514_div {
  10449. border-width:0px;
  10450. position:absolute;
  10451. left:0px;
  10452. top:0px;
  10453. width:65px;
  10454. height:22px;
  10455. background:inherit;
  10456. background-color:rgba(255, 255, 255, 0);
  10457. border:none;
  10458. border-radius:0px;
  10459. -moz-box-shadow:none;
  10460. -webkit-box-shadow:none;
  10461. box-shadow:none;
  10462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10463. font-weight:400;
  10464. font-style:normal;
  10465. font-size:16px;
  10466. }
  10467. #u71514 {
  10468. border-width:0px;
  10469. position:absolute;
  10470. left:30px;
  10471. top:936px;
  10472. width:65px;
  10473. height:22px;
  10474. display:flex;
  10475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10476. font-weight:400;
  10477. font-style:normal;
  10478. font-size:16px;
  10479. }
  10480. #u71514 .text {
  10481. position:absolute;
  10482. align-self:flex-start;
  10483. padding:0px 0px 0px 0px;
  10484. box-sizing:border-box;
  10485. width:100%;
  10486. }
  10487. #u71514_text {
  10488. border-width:0px;
  10489. white-space:nowrap;
  10490. text-transform:none;
  10491. }
  10492. #u71515_img {
  10493. border-width:0px;
  10494. position:absolute;
  10495. left:0px;
  10496. top:0px;
  10497. width:201px;
  10498. height:2px;
  10499. }
  10500. #u71515 {
  10501. border-width:0px;
  10502. position:absolute;
  10503. left:0px;
  10504. top:1018px;
  10505. width:200px;
  10506. height:1px;
  10507. display:flex;
  10508. }
  10509. #u71515 .text {
  10510. position:absolute;
  10511. align-self:center;
  10512. padding:2px 2px 2px 2px;
  10513. box-sizing:border-box;
  10514. width:100%;
  10515. }
  10516. #u71515_text {
  10517. border-width:0px;
  10518. word-wrap:break-word;
  10519. text-transform:none;
  10520. visibility:hidden;
  10521. }
  10522. #u71516_div {
  10523. border-width:0px;
  10524. position:absolute;
  10525. left:0px;
  10526. top:0px;
  10527. width:65px;
  10528. height:22px;
  10529. background:inherit;
  10530. background-color:rgba(255, 255, 255, 0);
  10531. border:none;
  10532. border-radius:0px;
  10533. -moz-box-shadow:none;
  10534. -webkit-box-shadow:none;
  10535. box-shadow:none;
  10536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10537. font-weight:400;
  10538. font-style:normal;
  10539. font-size:16px;
  10540. }
  10541. #u71516 {
  10542. border-width:0px;
  10543. position:absolute;
  10544. left:30px;
  10545. top:1075px;
  10546. width:65px;
  10547. height:22px;
  10548. display:flex;
  10549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10550. font-weight:400;
  10551. font-style:normal;
  10552. font-size:16px;
  10553. }
  10554. #u71516 .text {
  10555. position:absolute;
  10556. align-self:flex-start;
  10557. padding:0px 0px 0px 0px;
  10558. box-sizing:border-box;
  10559. width:100%;
  10560. }
  10561. #u71516_text {
  10562. border-width:0px;
  10563. white-space:nowrap;
  10564. text-transform:none;
  10565. }
  10566. #u71517_div {
  10567. border-width:0px;
  10568. position:absolute;
  10569. left:0px;
  10570. top:0px;
  10571. width:49px;
  10572. height:17px;
  10573. background:inherit;
  10574. background-color:rgba(255, 255, 255, 0);
  10575. border:none;
  10576. border-radius:0px;
  10577. -moz-box-shadow:none;
  10578. -webkit-box-shadow:none;
  10579. box-shadow:none;
  10580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10581. font-weight:400;
  10582. font-style:normal;
  10583. font-size:12px;
  10584. color:#AAAAAA;
  10585. }
  10586. #u71517 {
  10587. border-width:0px;
  10588. position:absolute;
  10589. left:30px;
  10590. top:1039px;
  10591. width:49px;
  10592. height:17px;
  10593. display:flex;
  10594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10595. font-weight:400;
  10596. font-style:normal;
  10597. font-size:12px;
  10598. color:#AAAAAA;
  10599. }
  10600. #u71517 .text {
  10601. position:absolute;
  10602. align-self:flex-start;
  10603. padding:0px 0px 0px 0px;
  10604. box-sizing:border-box;
  10605. width:100%;
  10606. }
  10607. #u71517_text {
  10608. border-width:0px;
  10609. white-space:nowrap;
  10610. text-transform:none;
  10611. }
  10612. #u71518_div {
  10613. border-width:0px;
  10614. position:absolute;
  10615. left:0px;
  10616. top:0px;
  10617. width:65px;
  10618. height:22px;
  10619. background:inherit;
  10620. background-color:rgba(255, 255, 255, 0);
  10621. border:none;
  10622. border-radius:0px;
  10623. -moz-box-shadow:none;
  10624. -webkit-box-shadow:none;
  10625. box-shadow:none;
  10626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10627. font-weight:400;
  10628. font-style:normal;
  10629. font-size:16px;
  10630. }
  10631. #u71518 {
  10632. border-width:0px;
  10633. position:absolute;
  10634. left:30px;
  10635. top:1117px;
  10636. width:65px;
  10637. height:22px;
  10638. display:flex;
  10639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10640. font-weight:400;
  10641. font-style:normal;
  10642. font-size:16px;
  10643. }
  10644. #u71518 .text {
  10645. position:absolute;
  10646. align-self:flex-start;
  10647. padding:0px 0px 0px 0px;
  10648. box-sizing:border-box;
  10649. width:100%;
  10650. }
  10651. #u71518_text {
  10652. border-width:0px;
  10653. white-space:nowrap;
  10654. text-transform:none;
  10655. }
  10656. #u71519_div {
  10657. border-width:0px;
  10658. position:absolute;
  10659. left:0px;
  10660. top:0px;
  10661. width:65px;
  10662. height:22px;
  10663. background:inherit;
  10664. background-color:rgba(255, 255, 255, 0);
  10665. border:none;
  10666. border-radius:0px;
  10667. -moz-box-shadow:none;
  10668. -webkit-box-shadow:none;
  10669. box-shadow:none;
  10670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10671. font-weight:400;
  10672. font-style:normal;
  10673. font-size:16px;
  10674. }
  10675. #u71519 {
  10676. border-width:0px;
  10677. position:absolute;
  10678. left:30px;
  10679. top:1201px;
  10680. width:65px;
  10681. height:22px;
  10682. display:flex;
  10683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10684. font-weight:400;
  10685. font-style:normal;
  10686. font-size:16px;
  10687. }
  10688. #u71519 .text {
  10689. position:absolute;
  10690. align-self:flex-start;
  10691. padding:0px 0px 0px 0px;
  10692. box-sizing:border-box;
  10693. width:100%;
  10694. }
  10695. #u71519_text {
  10696. border-width:0px;
  10697. white-space:nowrap;
  10698. text-transform:none;
  10699. }
  10700. #u71520_div {
  10701. border-width:0px;
  10702. position:absolute;
  10703. left:0px;
  10704. top:0px;
  10705. width:65px;
  10706. height:22px;
  10707. background:inherit;
  10708. background-color:rgba(255, 255, 255, 0);
  10709. border:none;
  10710. border-radius:0px;
  10711. -moz-box-shadow:none;
  10712. -webkit-box-shadow:none;
  10713. box-shadow:none;
  10714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10715. font-weight:400;
  10716. font-style:normal;
  10717. font-size:16px;
  10718. }
  10719. #u71520 {
  10720. border-width:0px;
  10721. position:absolute;
  10722. left:30px;
  10723. top:1159px;
  10724. width:65px;
  10725. height:22px;
  10726. display:flex;
  10727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10728. font-weight:400;
  10729. font-style:normal;
  10730. font-size:16px;
  10731. }
  10732. #u71520 .text {
  10733. position:absolute;
  10734. align-self:flex-start;
  10735. padding:0px 0px 0px 0px;
  10736. box-sizing:border-box;
  10737. width:100%;
  10738. }
  10739. #u71520_text {
  10740. border-width:0px;
  10741. white-space:nowrap;
  10742. text-transform:none;
  10743. }
  10744. #u71521_div {
  10745. border-width:0px;
  10746. position:absolute;
  10747. left:0px;
  10748. top:0px;
  10749. width:65px;
  10750. height:22px;
  10751. background:inherit;
  10752. background-color:rgba(255, 255, 255, 0);
  10753. border:none;
  10754. border-radius:0px;
  10755. -moz-box-shadow:none;
  10756. -webkit-box-shadow:none;
  10757. box-shadow:none;
  10758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10759. font-weight:400;
  10760. font-style:normal;
  10761. font-size:16px;
  10762. }
  10763. #u71521 {
  10764. border-width:0px;
  10765. position:absolute;
  10766. left:30px;
  10767. top:1243px;
  10768. width:65px;
  10769. height:22px;
  10770. display:flex;
  10771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10772. font-weight:400;
  10773. font-style:normal;
  10774. font-size:16px;
  10775. }
  10776. #u71521 .text {
  10777. position:absolute;
  10778. align-self:flex-start;
  10779. padding:0px 0px 0px 0px;
  10780. box-sizing:border-box;
  10781. width:100%;
  10782. }
  10783. #u71521_text {
  10784. border-width:0px;
  10785. white-space:nowrap;
  10786. text-transform:none;
  10787. }
  10788. #u71522_div {
  10789. border-width:0px;
  10790. position:absolute;
  10791. left:0px;
  10792. top:0px;
  10793. width:65px;
  10794. height:22px;
  10795. background:inherit;
  10796. background-color:rgba(255, 255, 255, 0);
  10797. border:none;
  10798. border-radius:0px;
  10799. -moz-box-shadow:none;
  10800. -webkit-box-shadow:none;
  10801. box-shadow:none;
  10802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10803. font-weight:400;
  10804. font-style:normal;
  10805. font-size:16px;
  10806. }
  10807. #u71522 {
  10808. border-width:0px;
  10809. position:absolute;
  10810. left:30px;
  10811. top:978px;
  10812. width:65px;
  10813. height:22px;
  10814. display:flex;
  10815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10816. font-weight:400;
  10817. font-style:normal;
  10818. font-size:16px;
  10819. }
  10820. #u71522 .text {
  10821. position:absolute;
  10822. align-self:flex-start;
  10823. padding:0px 0px 0px 0px;
  10824. box-sizing:border-box;
  10825. width:100%;
  10826. }
  10827. #u71522_text {
  10828. border-width:0px;
  10829. white-space:nowrap;
  10830. text-transform:none;
  10831. }
  10832. #u71523_div {
  10833. border-width:0px;
  10834. position:absolute;
  10835. left:0px;
  10836. top:0px;
  10837. width:65px;
  10838. height:22px;
  10839. background:inherit;
  10840. background-color:rgba(255, 255, 255, 0);
  10841. border:none;
  10842. border-radius:0px;
  10843. -moz-box-shadow:none;
  10844. -webkit-box-shadow:none;
  10845. box-shadow:none;
  10846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10847. font-weight:400;
  10848. font-style:normal;
  10849. font-size:16px;
  10850. }
  10851. #u71523 {
  10852. border-width:0px;
  10853. position:absolute;
  10854. left:30px;
  10855. top:622px;
  10856. width:65px;
  10857. height:22px;
  10858. display:flex;
  10859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10860. font-weight:400;
  10861. font-style:normal;
  10862. font-size:16px;
  10863. }
  10864. #u71523 .text {
  10865. position:absolute;
  10866. align-self:flex-start;
  10867. padding:0px 0px 0px 0px;
  10868. box-sizing:border-box;
  10869. width:100%;
  10870. }
  10871. #u71523_text {
  10872. border-width:0px;
  10873. white-space:nowrap;
  10874. text-transform:none;
  10875. }
  10876. #u71524_div {
  10877. border-width:0px;
  10878. position:absolute;
  10879. left:0px;
  10880. top:0px;
  10881. width:80px;
  10882. height:30px;
  10883. background:inherit;
  10884. background-color:rgba(255, 255, 255, 1);
  10885. box-sizing:border-box;
  10886. border-width:1px;
  10887. border-style:solid;
  10888. border-color:rgba(24, 144, 255, 1);
  10889. border-radius:4px;
  10890. -moz-box-shadow:none;
  10891. -webkit-box-shadow:none;
  10892. box-shadow:none;
  10893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10894. font-weight:400;
  10895. font-style:normal;
  10896. font-size:14px;
  10897. color:#1890FF;
  10898. }
  10899. #u71524 {
  10900. border-width:0px;
  10901. position:absolute;
  10902. left:1489px;
  10903. top:62px;
  10904. width:80px;
  10905. height:30px;
  10906. display:flex;
  10907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10908. font-weight:400;
  10909. font-style:normal;
  10910. font-size:14px;
  10911. color:#1890FF;
  10912. }
  10913. #u71524 .text {
  10914. position:absolute;
  10915. align-self:center;
  10916. padding:2px 2px 2px 2px;
  10917. box-sizing:border-box;
  10918. width:100%;
  10919. }
  10920. #u71524_text {
  10921. border-width:0px;
  10922. word-wrap:break-word;
  10923. text-transform:none;
  10924. }