styles.css 166 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u80429_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. #u80429 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u80429 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u80429_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u80430_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. #u80430 {
  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. #u80430 .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. #u80430_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u80431_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. #u80431 {
  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. #u80431 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u80431_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u80432 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u80433_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u80433 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u80433 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u80433_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u80434_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. #u80434 {
  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. #u80434 .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. #u80434_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u80435_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. #u80435 {
  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. #u80435 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u80435_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u80436 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u80437_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u80437_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u80437_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u80437 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u80437 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u80437_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u80437.disabled {
  356. }
  357. .u80437_input_option {
  358. font-size:14px;
  359. }
  360. #u80438_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u80438 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u80438 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u80438_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u80439_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u80439 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u80439 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u80439_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u80440_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u80440 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u80440 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u80440_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u80441 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u80442_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u80442 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u80442 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u80442_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u80443_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u80443 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u80443 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u80443_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u80444 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u80445_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u80445 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u80445 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u80445_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u80446_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u80446 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u80446 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u80446_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u80447 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u80448_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u80448 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u80448 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u80448_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u80449_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u80449 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u80449 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u80449_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u80450 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u80451_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u80451 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u80451 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u80451_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u80452_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u80452 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u80452 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u80452_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u80453 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u80454_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u80454 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u80454 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u80454_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u80455_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u80455 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u80455 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u80455_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u80456 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u80457_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u80457 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u80457 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u80457_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u80458_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u80458 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u80458 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u80458_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u80459 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u80460_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u80460 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u80460 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u80460_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u80461_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u80461 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u80461 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u80461_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u80462 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u80463_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u80463 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u80463 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u80463_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u80464_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u80464 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u80464 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u80464_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u80465 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u80466_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u80466 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u80466 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u80466_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u80467_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u80467 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u80467 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u80467_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u80468 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u80469_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u80469 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u80469 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u80469_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u80470_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u80470 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u80470 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u80470_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u80471_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u80471 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u80471 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u80471_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u80472_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u80472 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u80472 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u80472_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u80473_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u80473 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u80473 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u80473_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u80474_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u80474 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u80474 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u80474_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u80475 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u80476_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u80476 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u80476 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u80476_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u80477_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u80477 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u80477 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u80477_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u80478 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u80479_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u80479 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u80479 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u80479_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u80480_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u80480 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u80480 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u80480_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u80481_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1191px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1652. }
  1653. #u80481 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:1191px;
  1660. display:flex;
  1661. }
  1662. #u80481 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u80481_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u80482_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:73px;
  1681. height:25px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:18px;
  1693. }
  1694. #u80482 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:350px;
  1698. top:71px;
  1699. width:73px;
  1700. height:25px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:18px;
  1706. }
  1707. #u80482 .text {
  1708. position:absolute;
  1709. align-self:flex-start;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u80482_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u80483_div {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:55px;
  1725. height:30px;
  1726. background:inherit;
  1727. background-color:rgba(255, 255, 255, 1);
  1728. box-sizing:border-box;
  1729. border-width:1px;
  1730. border-style:solid;
  1731. border-color:rgba(170, 170, 170, 1);
  1732. border-radius:4px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. color:#555555;
  1741. }
  1742. #u80483 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:570px;
  1746. top:156px;
  1747. width:55px;
  1748. height:30px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:12px;
  1754. color:#555555;
  1755. }
  1756. #u80483 .text {
  1757. position:absolute;
  1758. align-self:center;
  1759. padding:5px 15px 5px 15px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u80483_text {
  1764. border-width:0px;
  1765. white-space:nowrap;
  1766. text-transform:none;
  1767. }
  1768. #u80484 {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:0px;
  1774. height:0px;
  1775. }
  1776. #u80485_div {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:140px;
  1782. height:30px;
  1783. background:inherit;
  1784. background-color:rgba(255, 255, 255, 1);
  1785. box-sizing:border-box;
  1786. border-width:1px;
  1787. border-style:solid;
  1788. border-color:rgba(201, 201, 201, 1);
  1789. border-radius:4px;
  1790. -moz-box-shadow:none;
  1791. -webkit-box-shadow:none;
  1792. box-shadow:none;
  1793. font-family:'Microsoft YaHei', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:14px;
  1797. color:#CCCCCC;
  1798. text-align:left;
  1799. }
  1800. #u80485 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:351px;
  1804. top:156px;
  1805. width:140px;
  1806. height:30px;
  1807. display:flex;
  1808. font-family:'Microsoft YaHei', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:14px;
  1812. color:#CCCCCC;
  1813. text-align:left;
  1814. }
  1815. #u80485 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:2px 8px 2px 8px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u80485_text {
  1823. border-width:0px;
  1824. word-wrap:break-word;
  1825. text-transform:none;
  1826. visibility:hidden;
  1827. }
  1828. #u80486_input {
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:127px;
  1833. height:25px;
  1834. padding:2px 2px 2px 2px;
  1835. font-family:'Microsoft YaHei', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:10px;
  1839. letter-spacing:normal;
  1840. color:#000000;
  1841. vertical-align:none;
  1842. text-align:left;
  1843. text-transform:none;
  1844. background-color:transparent;
  1845. border-color:transparent;
  1846. }
  1847. #u80486_input.disabled {
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:127px;
  1852. height:25px;
  1853. padding:2px 2px 2px 2px;
  1854. font-family:'Microsoft YaHei', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:10px;
  1858. letter-spacing:normal;
  1859. color:#000000;
  1860. vertical-align:none;
  1861. text-align:left;
  1862. text-transform:none;
  1863. background-color:transparent;
  1864. border-color:transparent;
  1865. }
  1866. #u80486_div {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:127px;
  1872. height:25px;
  1873. background:inherit;
  1874. background-color:rgba(255, 255, 255, 1);
  1875. border:none;
  1876. border-radius:0px;
  1877. -moz-box-shadow:none;
  1878. -webkit-box-shadow:none;
  1879. box-shadow:none;
  1880. font-family:'Microsoft YaHei', sans-serif;
  1881. font-weight:400;
  1882. font-style:normal;
  1883. font-size:10px;
  1884. }
  1885. #u80486 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:359px;
  1889. top:157px;
  1890. width:127px;
  1891. height:25px;
  1892. display:flex;
  1893. font-family:'Microsoft YaHei', sans-serif;
  1894. font-weight:400;
  1895. font-style:normal;
  1896. font-size:10px;
  1897. }
  1898. #u80486 .text {
  1899. position:absolute;
  1900. align-self:center;
  1901. padding:2px 2px 2px 2px;
  1902. box-sizing:border-box;
  1903. width:100%;
  1904. }
  1905. #u80486_div.disabled {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:0px;
  1909. top:0px;
  1910. width:127px;
  1911. height:25px;
  1912. background:inherit;
  1913. background-color:rgba(240, 240, 240, 1);
  1914. border:none;
  1915. border-radius:0px;
  1916. -moz-box-shadow:none;
  1917. -webkit-box-shadow:none;
  1918. box-shadow:none;
  1919. font-family:'Microsoft YaHei', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:10px;
  1923. }
  1924. #u80486.disabled {
  1925. }
  1926. #u80487_div {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:59px;
  1932. height:30px;
  1933. background:inherit;
  1934. background-color:rgba(0, 153, 255, 1);
  1935. box-sizing:border-box;
  1936. border-width:1px;
  1937. border-style:solid;
  1938. border-color:rgba(0, 153, 255, 1);
  1939. border-radius:4px;
  1940. -moz-box-shadow:none;
  1941. -webkit-box-shadow:none;
  1942. box-shadow:none;
  1943. font-family:'Microsoft YaHei', sans-serif;
  1944. font-weight:400;
  1945. font-style:normal;
  1946. font-size:14px;
  1947. color:#FFFFFF;
  1948. }
  1949. #u80487 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:501px;
  1953. top:156px;
  1954. width:59px;
  1955. height:30px;
  1956. display:flex;
  1957. font-family:'Microsoft YaHei', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:14px;
  1961. color:#FFFFFF;
  1962. }
  1963. #u80487 .text {
  1964. position:absolute;
  1965. align-self:center;
  1966. padding:5px 15px 5px 15px;
  1967. box-sizing:border-box;
  1968. width:100%;
  1969. }
  1970. #u80487_text {
  1971. border-width:0px;
  1972. white-space:nowrap;
  1973. text-transform:none;
  1974. }
  1975. #u80488 {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:0px;
  1981. height:0px;
  1982. }
  1983. #u80489_div {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:140px;
  1989. height:30px;
  1990. background:inherit;
  1991. background-color:rgba(255, 255, 255, 1);
  1992. box-sizing:border-box;
  1993. border-width:1px;
  1994. border-style:solid;
  1995. border-color:rgba(201, 201, 201, 1);
  1996. border-radius:4px;
  1997. -moz-box-shadow:none;
  1998. -webkit-box-shadow:none;
  1999. box-shadow:none;
  2000. font-family:'Microsoft YaHei', sans-serif;
  2001. font-weight:400;
  2002. font-style:normal;
  2003. font-size:14px;
  2004. color:#CCCCCC;
  2005. text-align:left;
  2006. }
  2007. #u80489 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:1101px;
  2011. top:116px;
  2012. width:140px;
  2013. height:30px;
  2014. display:flex;
  2015. font-family:'Microsoft YaHei', sans-serif;
  2016. font-weight:400;
  2017. font-style:normal;
  2018. font-size:14px;
  2019. color:#CCCCCC;
  2020. text-align:left;
  2021. }
  2022. #u80489 .text {
  2023. position:absolute;
  2024. align-self:center;
  2025. padding:2px 8px 2px 8px;
  2026. box-sizing:border-box;
  2027. width:100%;
  2028. }
  2029. #u80489_text {
  2030. border-width:0px;
  2031. word-wrap:break-word;
  2032. text-transform:none;
  2033. visibility:hidden;
  2034. }
  2035. #u80490_input {
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:127px;
  2040. height:25px;
  2041. padding:2px 2px 2px 2px;
  2042. font-family:'Microsoft YaHei', sans-serif;
  2043. font-weight:400;
  2044. font-style:normal;
  2045. font-size:10px;
  2046. letter-spacing:normal;
  2047. color:#000000;
  2048. vertical-align:none;
  2049. text-align:left;
  2050. text-transform:none;
  2051. background-color:transparent;
  2052. border-color:transparent;
  2053. }
  2054. #u80490_input.disabled {
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:127px;
  2059. height:25px;
  2060. padding:2px 2px 2px 2px;
  2061. font-family:'Microsoft YaHei', sans-serif;
  2062. font-weight:400;
  2063. font-style:normal;
  2064. font-size:10px;
  2065. letter-spacing:normal;
  2066. color:#000000;
  2067. vertical-align:none;
  2068. text-align:left;
  2069. text-transform:none;
  2070. background-color:transparent;
  2071. border-color:transparent;
  2072. }
  2073. #u80490_div {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:127px;
  2079. height:25px;
  2080. background:inherit;
  2081. background-color:rgba(255, 255, 255, 1);
  2082. border:none;
  2083. border-radius:0px;
  2084. -moz-box-shadow:none;
  2085. -webkit-box-shadow:none;
  2086. box-shadow:none;
  2087. font-family:'Microsoft YaHei', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:10px;
  2091. }
  2092. #u80490 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:1109px;
  2096. top:117px;
  2097. width:127px;
  2098. height:25px;
  2099. display:flex;
  2100. font-family:'Microsoft YaHei', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:10px;
  2104. }
  2105. #u80490 .text {
  2106. position:absolute;
  2107. align-self:center;
  2108. padding:2px 2px 2px 2px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u80490_div.disabled {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:127px;
  2118. height:25px;
  2119. background:inherit;
  2120. background-color:rgba(240, 240, 240, 1);
  2121. border:none;
  2122. border-radius:0px;
  2123. -moz-box-shadow:none;
  2124. -webkit-box-shadow:none;
  2125. box-shadow:none;
  2126. font-family:'Microsoft YaHei', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:10px;
  2130. }
  2131. #u80490.disabled {
  2132. }
  2133. #u80491 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:0px;
  2139. height:0px;
  2140. }
  2141. #u80492_div {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:140px;
  2147. height:30px;
  2148. background:inherit;
  2149. background-color:rgba(255, 255, 255, 1);
  2150. box-sizing:border-box;
  2151. border-width:1px;
  2152. border-style:solid;
  2153. border-color:rgba(215, 215, 215, 1);
  2154. border-radius:4px;
  2155. -moz-box-shadow:none;
  2156. -webkit-box-shadow:none;
  2157. box-shadow:none;
  2158. font-size:11px;
  2159. }
  2160. #u80492 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:501px;
  2164. top:116px;
  2165. width:140px;
  2166. height:30px;
  2167. display:flex;
  2168. font-size:11px;
  2169. }
  2170. #u80492 .text {
  2171. position:absolute;
  2172. align-self:center;
  2173. padding:2px 2px 2px 2px;
  2174. box-sizing:border-box;
  2175. width:100%;
  2176. }
  2177. #u80492_text {
  2178. border-width:0px;
  2179. word-wrap:break-word;
  2180. text-transform:none;
  2181. visibility:hidden;
  2182. }
  2183. #u80493_input {
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:123px;
  2188. height:23px;
  2189. padding:2px 2px 2px 2px;
  2190. font-family:'ArialMT', 'Arial', sans-serif;
  2191. font-weight:400;
  2192. font-style:normal;
  2193. font-size:11px;
  2194. letter-spacing:normal;
  2195. color:#AAAAAA;
  2196. vertical-align:none;
  2197. text-align:left;
  2198. text-transform:none;
  2199. background-color:transparent;
  2200. border-color:transparent;
  2201. }
  2202. #u80493_input.disabled {
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:123px;
  2207. height:23px;
  2208. padding:2px 2px 2px 2px;
  2209. font-family:'ArialMT', 'Arial', sans-serif;
  2210. font-weight:400;
  2211. font-style:normal;
  2212. font-size:11px;
  2213. letter-spacing:normal;
  2214. color:#AAAAAA;
  2215. vertical-align:none;
  2216. text-align:left;
  2217. text-transform:none;
  2218. background-color:transparent;
  2219. border-color:transparent;
  2220. }
  2221. #u80493_div {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:123px;
  2227. height:23px;
  2228. background:inherit;
  2229. background-color:rgba(255, 255, 255, 1);
  2230. border:none;
  2231. border-radius:0px;
  2232. -moz-box-shadow:none;
  2233. -webkit-box-shadow:none;
  2234. box-shadow:none;
  2235. font-size:11px;
  2236. color:#AAAAAA;
  2237. }
  2238. #u80493 {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:507px;
  2242. top:118px;
  2243. width:123px;
  2244. height:23px;
  2245. display:flex;
  2246. font-size:11px;
  2247. color:#AAAAAA;
  2248. }
  2249. #u80493 .text {
  2250. position:absolute;
  2251. align-self:flex-start;
  2252. padding:2px 2px 2px 2px;
  2253. box-sizing:border-box;
  2254. width:100%;
  2255. }
  2256. #u80493_div.disabled {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:123px;
  2262. height:23px;
  2263. background:inherit;
  2264. background-color:rgba(240, 240, 240, 1);
  2265. border:none;
  2266. border-radius:0px;
  2267. -moz-box-shadow:none;
  2268. -webkit-box-shadow:none;
  2269. box-shadow:none;
  2270. font-size:11px;
  2271. color:#AAAAAA;
  2272. }
  2273. #u80493.disabled {
  2274. }
  2275. .u80493_input_option {
  2276. font-size:11px;
  2277. }
  2278. #u80494 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:0px;
  2284. height:0px;
  2285. }
  2286. #u80495_div {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:140px;
  2292. height:30px;
  2293. background:inherit;
  2294. background-color:rgba(255, 255, 255, 1);
  2295. box-sizing:border-box;
  2296. border-width:1px;
  2297. border-style:solid;
  2298. border-color:rgba(215, 215, 215, 1);
  2299. border-radius:4px;
  2300. -moz-box-shadow:none;
  2301. -webkit-box-shadow:none;
  2302. box-shadow:none;
  2303. font-size:11px;
  2304. }
  2305. #u80495 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:651px;
  2309. top:116px;
  2310. width:140px;
  2311. height:30px;
  2312. display:flex;
  2313. font-size:11px;
  2314. }
  2315. #u80495 .text {
  2316. position:absolute;
  2317. align-self:center;
  2318. padding:2px 2px 2px 2px;
  2319. box-sizing:border-box;
  2320. width:100%;
  2321. }
  2322. #u80495_text {
  2323. border-width:0px;
  2324. word-wrap:break-word;
  2325. text-transform:none;
  2326. visibility:hidden;
  2327. }
  2328. #u80496_input {
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:123px;
  2333. height:23px;
  2334. padding:2px 2px 2px 2px;
  2335. font-family:'ArialMT', 'Arial', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:11px;
  2339. letter-spacing:normal;
  2340. color:#AAAAAA;
  2341. vertical-align:none;
  2342. text-align:left;
  2343. text-transform:none;
  2344. background-color:transparent;
  2345. border-color:transparent;
  2346. }
  2347. #u80496_input.disabled {
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:123px;
  2352. height:23px;
  2353. padding:2px 2px 2px 2px;
  2354. font-family:'ArialMT', 'Arial', sans-serif;
  2355. font-weight:400;
  2356. font-style:normal;
  2357. font-size:11px;
  2358. letter-spacing:normal;
  2359. color:#AAAAAA;
  2360. vertical-align:none;
  2361. text-align:left;
  2362. text-transform:none;
  2363. background-color:transparent;
  2364. border-color:transparent;
  2365. }
  2366. #u80496_div {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:123px;
  2372. height:23px;
  2373. background:inherit;
  2374. background-color:rgba(255, 255, 255, 1);
  2375. border:none;
  2376. border-radius:0px;
  2377. -moz-box-shadow:none;
  2378. -webkit-box-shadow:none;
  2379. box-shadow:none;
  2380. font-size:11px;
  2381. color:#AAAAAA;
  2382. }
  2383. #u80496 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:657px;
  2387. top:118px;
  2388. width:123px;
  2389. height:23px;
  2390. display:flex;
  2391. font-size:11px;
  2392. color:#AAAAAA;
  2393. }
  2394. #u80496 .text {
  2395. position:absolute;
  2396. align-self:flex-start;
  2397. padding:2px 2px 2px 2px;
  2398. box-sizing:border-box;
  2399. width:100%;
  2400. }
  2401. #u80496_div.disabled {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:123px;
  2407. height:23px;
  2408. background:inherit;
  2409. background-color:rgba(240, 240, 240, 1);
  2410. border:none;
  2411. border-radius:0px;
  2412. -moz-box-shadow:none;
  2413. -webkit-box-shadow:none;
  2414. box-shadow:none;
  2415. font-size:11px;
  2416. color:#AAAAAA;
  2417. }
  2418. #u80496.disabled {
  2419. }
  2420. .u80496_input_option {
  2421. font-size:11px;
  2422. }
  2423. #u80497 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:0px;
  2428. width:0px;
  2429. height:0px;
  2430. }
  2431. #u80498_div {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:140px;
  2437. height:30px;
  2438. background:inherit;
  2439. background-color:rgba(255, 255, 255, 1);
  2440. box-sizing:border-box;
  2441. border-width:1px;
  2442. border-style:solid;
  2443. border-color:rgba(215, 215, 215, 1);
  2444. border-radius:4px;
  2445. -moz-box-shadow:none;
  2446. -webkit-box-shadow:none;
  2447. box-shadow:none;
  2448. font-size:11px;
  2449. }
  2450. #u80498 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:351px;
  2454. top:115px;
  2455. width:140px;
  2456. height:30px;
  2457. display:flex;
  2458. font-size:11px;
  2459. }
  2460. #u80498 .text {
  2461. position:absolute;
  2462. align-self:center;
  2463. padding:2px 2px 2px 2px;
  2464. box-sizing:border-box;
  2465. width:100%;
  2466. }
  2467. #u80498_text {
  2468. border-width:0px;
  2469. word-wrap:break-word;
  2470. text-transform:none;
  2471. visibility:hidden;
  2472. }
  2473. #u80499_input {
  2474. position:absolute;
  2475. left:0px;
  2476. top:0px;
  2477. width:123px;
  2478. height:23px;
  2479. padding:2px 2px 2px 2px;
  2480. font-family:'ArialMT', 'Arial', sans-serif;
  2481. font-weight:400;
  2482. font-style:normal;
  2483. font-size:11px;
  2484. letter-spacing:normal;
  2485. color:#AAAAAA;
  2486. vertical-align:none;
  2487. text-align:left;
  2488. text-transform:none;
  2489. background-color:transparent;
  2490. border-color:transparent;
  2491. }
  2492. #u80499_input.disabled {
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:123px;
  2497. height:23px;
  2498. padding:2px 2px 2px 2px;
  2499. font-family:'ArialMT', 'Arial', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:11px;
  2503. letter-spacing:normal;
  2504. color:#AAAAAA;
  2505. vertical-align:none;
  2506. text-align:left;
  2507. text-transform:none;
  2508. background-color:transparent;
  2509. border-color:transparent;
  2510. }
  2511. #u80499_div {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:123px;
  2517. height:23px;
  2518. background:inherit;
  2519. background-color:rgba(255, 255, 255, 1);
  2520. border:none;
  2521. border-radius:0px;
  2522. -moz-box-shadow:none;
  2523. -webkit-box-shadow:none;
  2524. box-shadow:none;
  2525. font-size:11px;
  2526. color:#AAAAAA;
  2527. }
  2528. #u80499 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:357px;
  2532. top:117px;
  2533. width:123px;
  2534. height:23px;
  2535. display:flex;
  2536. font-size:11px;
  2537. color:#AAAAAA;
  2538. }
  2539. #u80499 .text {
  2540. position:absolute;
  2541. align-self:flex-start;
  2542. padding:2px 2px 2px 2px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u80499_div.disabled {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:123px;
  2552. height:23px;
  2553. background:inherit;
  2554. background-color:rgba(240, 240, 240, 1);
  2555. border:none;
  2556. border-radius:0px;
  2557. -moz-box-shadow:none;
  2558. -webkit-box-shadow:none;
  2559. box-shadow:none;
  2560. font-size:11px;
  2561. color:#AAAAAA;
  2562. }
  2563. #u80499.disabled {
  2564. }
  2565. .u80499_input_option {
  2566. font-size:11px;
  2567. }
  2568. #u80500 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:0px;
  2572. top:0px;
  2573. width:0px;
  2574. height:0px;
  2575. }
  2576. #u80501_div {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:0px;
  2580. top:0px;
  2581. width:140px;
  2582. height:30px;
  2583. background:inherit;
  2584. background-color:rgba(255, 255, 255, 1);
  2585. box-sizing:border-box;
  2586. border-width:1px;
  2587. border-style:solid;
  2588. border-color:rgba(201, 201, 201, 1);
  2589. border-radius:4px;
  2590. -moz-box-shadow:none;
  2591. -webkit-box-shadow:none;
  2592. box-shadow:none;
  2593. font-family:'Microsoft YaHei', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:14px;
  2597. color:#CCCCCC;
  2598. text-align:left;
  2599. }
  2600. #u80501 {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:1251px;
  2604. top:116px;
  2605. width:140px;
  2606. height:30px;
  2607. display:flex;
  2608. font-family:'Microsoft YaHei', sans-serif;
  2609. font-weight:400;
  2610. font-style:normal;
  2611. font-size:14px;
  2612. color:#CCCCCC;
  2613. text-align:left;
  2614. }
  2615. #u80501 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:2px 8px 2px 8px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u80501_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. visibility:hidden;
  2627. }
  2628. #u80502_input {
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:127px;
  2633. height:25px;
  2634. padding:2px 2px 2px 2px;
  2635. font-family:'Microsoft YaHei', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:10px;
  2639. letter-spacing:normal;
  2640. color:#000000;
  2641. vertical-align:none;
  2642. text-align:left;
  2643. text-transform:none;
  2644. background-color:transparent;
  2645. border-color:transparent;
  2646. }
  2647. #u80502_input.disabled {
  2648. position:absolute;
  2649. left:0px;
  2650. top:0px;
  2651. width:127px;
  2652. height:25px;
  2653. padding:2px 2px 2px 2px;
  2654. font-family:'Microsoft YaHei', sans-serif;
  2655. font-weight:400;
  2656. font-style:normal;
  2657. font-size:10px;
  2658. letter-spacing:normal;
  2659. color:#000000;
  2660. vertical-align:none;
  2661. text-align:left;
  2662. text-transform:none;
  2663. background-color:transparent;
  2664. border-color:transparent;
  2665. }
  2666. #u80502_div {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:127px;
  2672. height:25px;
  2673. background:inherit;
  2674. background-color:rgba(255, 255, 255, 1);
  2675. border:none;
  2676. border-radius:0px;
  2677. -moz-box-shadow:none;
  2678. -webkit-box-shadow:none;
  2679. box-shadow:none;
  2680. font-family:'Microsoft YaHei', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:10px;
  2684. }
  2685. #u80502 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:1259px;
  2689. top:117px;
  2690. width:127px;
  2691. height:25px;
  2692. display:flex;
  2693. font-family:'Microsoft YaHei', sans-serif;
  2694. font-weight:400;
  2695. font-style:normal;
  2696. font-size:10px;
  2697. }
  2698. #u80502 .text {
  2699. position:absolute;
  2700. align-self:center;
  2701. padding:2px 2px 2px 2px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u80502_div.disabled {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:0px;
  2710. width:127px;
  2711. height:25px;
  2712. background:inherit;
  2713. background-color:rgba(240, 240, 240, 1);
  2714. border:none;
  2715. border-radius:0px;
  2716. -moz-box-shadow:none;
  2717. -webkit-box-shadow:none;
  2718. box-shadow:none;
  2719. font-family:'Microsoft YaHei', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:10px;
  2723. }
  2724. #u80502.disabled {
  2725. }
  2726. #u80503_div {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:55px;
  2732. height:30px;
  2733. background:inherit;
  2734. background-color:rgba(255, 255, 255, 1);
  2735. box-sizing:border-box;
  2736. border-width:1px;
  2737. border-style:solid;
  2738. border-color:rgba(170, 170, 170, 1);
  2739. border-radius:4px;
  2740. -moz-box-shadow:none;
  2741. -webkit-box-shadow:none;
  2742. box-shadow:none;
  2743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2744. font-weight:400;
  2745. font-style:normal;
  2746. font-size:12px;
  2747. color:#555555;
  2748. }
  2749. #u80503 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:351px;
  2753. top:205px;
  2754. width:55px;
  2755. height:30px;
  2756. display:flex;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:12px;
  2761. color:#555555;
  2762. }
  2763. #u80503 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:5px 15px 5px 15px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u80503_text {
  2771. border-width:0px;
  2772. white-space:nowrap;
  2773. text-transform:none;
  2774. }
  2775. #u80504 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:0px;
  2781. height:0px;
  2782. }
  2783. #u80505_div {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:140px;
  2789. height:30px;
  2790. background:inherit;
  2791. background-color:rgba(255, 255, 255, 1);
  2792. box-sizing:border-box;
  2793. border-width:1px;
  2794. border-style:solid;
  2795. border-color:rgba(215, 215, 215, 1);
  2796. border-radius:4px;
  2797. -moz-box-shadow:none;
  2798. -webkit-box-shadow:none;
  2799. box-shadow:none;
  2800. font-size:11px;
  2801. }
  2802. #u80505 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:801px;
  2806. top:116px;
  2807. width:140px;
  2808. height:30px;
  2809. display:flex;
  2810. font-size:11px;
  2811. }
  2812. #u80505 .text {
  2813. position:absolute;
  2814. align-self:center;
  2815. padding:2px 2px 2px 2px;
  2816. box-sizing:border-box;
  2817. width:100%;
  2818. }
  2819. #u80505_text {
  2820. border-width:0px;
  2821. word-wrap:break-word;
  2822. text-transform:none;
  2823. visibility:hidden;
  2824. }
  2825. #u80506_input {
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:123px;
  2830. height:23px;
  2831. padding:2px 2px 2px 2px;
  2832. font-family:'ArialMT', 'Arial', sans-serif;
  2833. font-weight:400;
  2834. font-style:normal;
  2835. font-size:11px;
  2836. letter-spacing:normal;
  2837. color:#AAAAAA;
  2838. vertical-align:none;
  2839. text-align:left;
  2840. text-transform:none;
  2841. background-color:transparent;
  2842. border-color:transparent;
  2843. }
  2844. #u80506_input.disabled {
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:123px;
  2849. height:23px;
  2850. padding:2px 2px 2px 2px;
  2851. font-family:'ArialMT', 'Arial', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:11px;
  2855. letter-spacing:normal;
  2856. color:#AAAAAA;
  2857. vertical-align:none;
  2858. text-align:left;
  2859. text-transform:none;
  2860. background-color:transparent;
  2861. border-color:transparent;
  2862. }
  2863. #u80506_div {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:123px;
  2869. height:23px;
  2870. background:inherit;
  2871. background-color:rgba(255, 255, 255, 1);
  2872. border:none;
  2873. border-radius:0px;
  2874. -moz-box-shadow:none;
  2875. -webkit-box-shadow:none;
  2876. box-shadow:none;
  2877. font-size:11px;
  2878. color:#AAAAAA;
  2879. }
  2880. #u80506 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:807px;
  2884. top:118px;
  2885. width:123px;
  2886. height:23px;
  2887. display:flex;
  2888. font-size:11px;
  2889. color:#AAAAAA;
  2890. }
  2891. #u80506 .text {
  2892. position:absolute;
  2893. align-self:flex-start;
  2894. padding:2px 2px 2px 2px;
  2895. box-sizing:border-box;
  2896. width:100%;
  2897. }
  2898. #u80506_div.disabled {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:0px;
  2903. width:123px;
  2904. height:23px;
  2905. background:inherit;
  2906. background-color:rgba(240, 240, 240, 1);
  2907. border:none;
  2908. border-radius:0px;
  2909. -moz-box-shadow:none;
  2910. -webkit-box-shadow:none;
  2911. box-shadow:none;
  2912. font-size:11px;
  2913. color:#AAAAAA;
  2914. }
  2915. #u80506.disabled {
  2916. }
  2917. .u80506_input_option {
  2918. font-size:11px;
  2919. }
  2920. #u80507 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:0px;
  2926. height:0px;
  2927. }
  2928. #u80508_div {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:140px;
  2934. height:30px;
  2935. background:inherit;
  2936. background-color:rgba(255, 255, 255, 1);
  2937. box-sizing:border-box;
  2938. border-width:1px;
  2939. border-style:solid;
  2940. border-color:rgba(215, 215, 215, 1);
  2941. border-radius:4px;
  2942. -moz-box-shadow:none;
  2943. -webkit-box-shadow:none;
  2944. box-shadow:none;
  2945. font-size:11px;
  2946. }
  2947. #u80508 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:951px;
  2951. top:116px;
  2952. width:140px;
  2953. height:30px;
  2954. display:flex;
  2955. font-size:11px;
  2956. }
  2957. #u80508 .text {
  2958. position:absolute;
  2959. align-self:center;
  2960. padding:2px 2px 2px 2px;
  2961. box-sizing:border-box;
  2962. width:100%;
  2963. }
  2964. #u80508_text {
  2965. border-width:0px;
  2966. word-wrap:break-word;
  2967. text-transform:none;
  2968. visibility:hidden;
  2969. }
  2970. #u80509_input {
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:123px;
  2975. height:23px;
  2976. padding:2px 2px 2px 2px;
  2977. font-family:'ArialMT', 'Arial', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:11px;
  2981. letter-spacing:normal;
  2982. color:#AAAAAA;
  2983. vertical-align:none;
  2984. text-align:left;
  2985. text-transform:none;
  2986. background-color:transparent;
  2987. border-color:transparent;
  2988. }
  2989. #u80509_input.disabled {
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:123px;
  2994. height:23px;
  2995. padding:2px 2px 2px 2px;
  2996. font-family:'ArialMT', 'Arial', sans-serif;
  2997. font-weight:400;
  2998. font-style:normal;
  2999. font-size:11px;
  3000. letter-spacing:normal;
  3001. color:#AAAAAA;
  3002. vertical-align:none;
  3003. text-align:left;
  3004. text-transform:none;
  3005. background-color:transparent;
  3006. border-color:transparent;
  3007. }
  3008. #u80509_div {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:123px;
  3014. height:23px;
  3015. background:inherit;
  3016. background-color:rgba(255, 255, 255, 1);
  3017. border:none;
  3018. border-radius:0px;
  3019. -moz-box-shadow:none;
  3020. -webkit-box-shadow:none;
  3021. box-shadow:none;
  3022. font-size:11px;
  3023. color:#AAAAAA;
  3024. }
  3025. #u80509 {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:957px;
  3029. top:118px;
  3030. width:123px;
  3031. height:23px;
  3032. display:flex;
  3033. font-size:11px;
  3034. color:#AAAAAA;
  3035. }
  3036. #u80509 .text {
  3037. position:absolute;
  3038. align-self:flex-start;
  3039. padding:2px 2px 2px 2px;
  3040. box-sizing:border-box;
  3041. width:100%;
  3042. }
  3043. #u80509_div.disabled {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:123px;
  3049. height:23px;
  3050. background:inherit;
  3051. background-color:rgba(240, 240, 240, 1);
  3052. border:none;
  3053. border-radius:0px;
  3054. -moz-box-shadow:none;
  3055. -webkit-box-shadow:none;
  3056. box-shadow:none;
  3057. font-size:11px;
  3058. color:#AAAAAA;
  3059. }
  3060. #u80509.disabled {
  3061. }
  3062. .u80509_input_option {
  3063. font-size:11px;
  3064. }
  3065. #u80510 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:351px;
  3069. top:245px;
  3070. width:1222px;
  3071. height:413px;
  3072. }
  3073. #u80511_img {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:70px;
  3079. height:43px;
  3080. }
  3081. #u80511 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:70px;
  3087. height:43px;
  3088. display:flex;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:14px;
  3093. color:#FFFFFF;
  3094. text-align:left;
  3095. line-height:30px;
  3096. }
  3097. #u80511 .text {
  3098. position:absolute;
  3099. align-self:center;
  3100. padding:2px 10px 2px 10px;
  3101. box-sizing:border-box;
  3102. width:100%;
  3103. }
  3104. #u80511_text {
  3105. border-width:0px;
  3106. word-wrap:break-word;
  3107. text-transform:none;
  3108. }
  3109. #u80512_img {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:70px;
  3115. height:43px;
  3116. }
  3117. #u80512 {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:70px;
  3121. top:0px;
  3122. width:70px;
  3123. height:43px;
  3124. display:flex;
  3125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3126. font-weight:400;
  3127. font-style:normal;
  3128. font-size:14px;
  3129. color:#FFFFFF;
  3130. text-align:left;
  3131. line-height:30px;
  3132. }
  3133. #u80512 .text {
  3134. position:absolute;
  3135. align-self:center;
  3136. padding:2px 10px 2px 10px;
  3137. box-sizing:border-box;
  3138. width:100%;
  3139. }
  3140. #u80512_text {
  3141. border-width:0px;
  3142. word-wrap:break-word;
  3143. text-transform:none;
  3144. }
  3145. #u80513_img {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:0px;
  3149. top:0px;
  3150. width:101px;
  3151. height:43px;
  3152. }
  3153. #u80513 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:140px;
  3157. top:0px;
  3158. width:101px;
  3159. height:43px;
  3160. display:flex;
  3161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3162. font-weight:400;
  3163. font-style:normal;
  3164. font-size:14px;
  3165. color:#FFFFFF;
  3166. text-align:left;
  3167. line-height:30px;
  3168. }
  3169. #u80513 .text {
  3170. position:absolute;
  3171. align-self:center;
  3172. padding:2px 10px 2px 10px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u80513_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. }
  3181. #u80514_img {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:101px;
  3187. height:43px;
  3188. }
  3189. #u80514 {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:241px;
  3193. top:0px;
  3194. width:101px;
  3195. height:43px;
  3196. display:flex;
  3197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3198. font-weight:400;
  3199. font-style:normal;
  3200. font-size:14px;
  3201. color:#FFFFFF;
  3202. text-align:left;
  3203. line-height:30px;
  3204. }
  3205. #u80514 .text {
  3206. position:absolute;
  3207. align-self:center;
  3208. padding:2px 10px 2px 10px;
  3209. box-sizing:border-box;
  3210. width:100%;
  3211. }
  3212. #u80514_text {
  3213. border-width:0px;
  3214. word-wrap:break-word;
  3215. text-transform:none;
  3216. }
  3217. #u80515_img {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:0px;
  3221. top:0px;
  3222. width:101px;
  3223. height:43px;
  3224. }
  3225. #u80515 {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:342px;
  3229. top:0px;
  3230. width:101px;
  3231. height:43px;
  3232. display:flex;
  3233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3234. font-weight:400;
  3235. font-style:normal;
  3236. font-size:14px;
  3237. color:#FFFFFF;
  3238. text-align:left;
  3239. line-height:30px;
  3240. }
  3241. #u80515 .text {
  3242. position:absolute;
  3243. align-self:center;
  3244. padding:2px 10px 2px 10px;
  3245. box-sizing:border-box;
  3246. width:100%;
  3247. }
  3248. #u80515_text {
  3249. border-width:0px;
  3250. word-wrap:break-word;
  3251. text-transform:none;
  3252. }
  3253. #u80516_img {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:0px;
  3257. top:0px;
  3258. width:100px;
  3259. height:43px;
  3260. }
  3261. #u80516 {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:443px;
  3265. top:0px;
  3266. width:100px;
  3267. height:43px;
  3268. display:flex;
  3269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3270. font-weight:400;
  3271. font-style:normal;
  3272. font-size:14px;
  3273. color:#FFFFFF;
  3274. text-align:left;
  3275. line-height:30px;
  3276. }
  3277. #u80516 .text {
  3278. position:absolute;
  3279. align-self:center;
  3280. padding:2px 10px 2px 10px;
  3281. box-sizing:border-box;
  3282. width:100%;
  3283. }
  3284. #u80516_text {
  3285. border-width:0px;
  3286. word-wrap:break-word;
  3287. text-transform:none;
  3288. }
  3289. #u80517_img {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:0px;
  3293. top:0px;
  3294. width:162px;
  3295. height:43px;
  3296. }
  3297. #u80517 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:543px;
  3301. top:0px;
  3302. width:162px;
  3303. height:43px;
  3304. display:flex;
  3305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3306. font-weight:400;
  3307. font-style:normal;
  3308. font-size:14px;
  3309. color:#FFFFFF;
  3310. text-align:left;
  3311. line-height:30px;
  3312. }
  3313. #u80517 .text {
  3314. position:absolute;
  3315. align-self:center;
  3316. padding:2px 10px 2px 10px;
  3317. box-sizing:border-box;
  3318. width:100%;
  3319. }
  3320. #u80517_text {
  3321. border-width:0px;
  3322. word-wrap:break-word;
  3323. text-transform:none;
  3324. }
  3325. #u80518_img {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:101px;
  3331. height:43px;
  3332. }
  3333. #u80518 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:705px;
  3337. top:0px;
  3338. width:101px;
  3339. height:43px;
  3340. display:flex;
  3341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:14px;
  3345. color:#FFFFFF;
  3346. text-align:left;
  3347. line-height:30px;
  3348. }
  3349. #u80518 .text {
  3350. position:absolute;
  3351. align-self:center;
  3352. padding:2px 10px 2px 10px;
  3353. box-sizing:border-box;
  3354. width:100%;
  3355. }
  3356. #u80518_text {
  3357. border-width:0px;
  3358. word-wrap:break-word;
  3359. text-transform:none;
  3360. }
  3361. #u80519_img {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:101px;
  3367. height:43px;
  3368. }
  3369. #u80519 {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:806px;
  3373. top:0px;
  3374. width:101px;
  3375. height:43px;
  3376. display:flex;
  3377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3378. font-weight:400;
  3379. font-style:normal;
  3380. font-size:14px;
  3381. color:#FFFFFF;
  3382. text-align:left;
  3383. line-height:30px;
  3384. }
  3385. #u80519 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:2px 10px 2px 10px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u80519_text {
  3393. border-width:0px;
  3394. word-wrap:break-word;
  3395. text-transform:none;
  3396. }
  3397. #u80520_img {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:81px;
  3403. height:43px;
  3404. }
  3405. #u80520 {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:907px;
  3409. top:0px;
  3410. width:81px;
  3411. height:43px;
  3412. display:flex;
  3413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3414. font-weight:400;
  3415. font-style:normal;
  3416. font-size:14px;
  3417. color:#FFFFFF;
  3418. text-align:left;
  3419. line-height:30px;
  3420. }
  3421. #u80520 .text {
  3422. position:absolute;
  3423. align-self:center;
  3424. padding:2px 10px 2px 10px;
  3425. box-sizing:border-box;
  3426. width:100%;
  3427. }
  3428. #u80520_text {
  3429. border-width:0px;
  3430. word-wrap:break-word;
  3431. text-transform:none;
  3432. }
  3433. #u80521_img {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:81px;
  3439. height:43px;
  3440. }
  3441. #u80521 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:988px;
  3445. top:0px;
  3446. width:81px;
  3447. height:43px;
  3448. display:flex;
  3449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:14px;
  3453. color:#FFFFFF;
  3454. text-align:left;
  3455. line-height:30px;
  3456. }
  3457. #u80521 .text {
  3458. position:absolute;
  3459. align-self:center;
  3460. padding:2px 10px 2px 10px;
  3461. box-sizing:border-box;
  3462. width:100%;
  3463. }
  3464. #u80521_text {
  3465. border-width:0px;
  3466. word-wrap:break-word;
  3467. text-transform:none;
  3468. }
  3469. #u80522_img {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:153px;
  3475. height:43px;
  3476. }
  3477. #u80522 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:1069px;
  3481. top:0px;
  3482. width:153px;
  3483. height:43px;
  3484. display:flex;
  3485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3486. font-weight:400;
  3487. font-style:normal;
  3488. font-size:14px;
  3489. color:#FFFFFF;
  3490. text-align:left;
  3491. line-height:30px;
  3492. }
  3493. #u80522 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 10px 2px 10px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u80522_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. }
  3505. #u80523_img {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:70px;
  3511. height:50px;
  3512. }
  3513. #u80523 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:0px;
  3517. top:43px;
  3518. width:70px;
  3519. height:50px;
  3520. display:flex;
  3521. font-size:14px;
  3522. text-align:left;
  3523. }
  3524. #u80523 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 10px 2px 10px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u80523_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. visibility:hidden;
  3536. }
  3537. #u80524_img {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:70px;
  3543. height:50px;
  3544. }
  3545. #u80524 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:70px;
  3549. top:43px;
  3550. width:70px;
  3551. height:50px;
  3552. display:flex;
  3553. font-size:14px;
  3554. text-align:left;
  3555. }
  3556. #u80524 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 10px 2px 10px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u80524_text {
  3564. border-width:0px;
  3565. word-wrap:break-word;
  3566. text-transform:none;
  3567. visibility:hidden;
  3568. }
  3569. #u80525_img {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:101px;
  3575. height:50px;
  3576. }
  3577. #u80525 {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:140px;
  3581. top:43px;
  3582. width:101px;
  3583. height:50px;
  3584. display:flex;
  3585. font-size:14px;
  3586. text-align:left;
  3587. }
  3588. #u80525 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:2px 10px 2px 10px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u80525_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. }
  3600. #u80526_img {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:0px;
  3604. top:0px;
  3605. width:101px;
  3606. height:50px;
  3607. }
  3608. #u80526 {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:241px;
  3612. top:43px;
  3613. width:101px;
  3614. height:50px;
  3615. display:flex;
  3616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3617. font-weight:400;
  3618. font-style:normal;
  3619. font-size:14px;
  3620. text-align:left;
  3621. }
  3622. #u80526 .text {
  3623. position:absolute;
  3624. align-self:center;
  3625. padding:2px 10px 2px 10px;
  3626. box-sizing:border-box;
  3627. width:100%;
  3628. }
  3629. #u80526_text {
  3630. border-width:0px;
  3631. word-wrap:break-word;
  3632. text-transform:none;
  3633. }
  3634. #u80527_img {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:101px;
  3640. height:50px;
  3641. }
  3642. #u80527 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:342px;
  3646. top:43px;
  3647. width:101px;
  3648. height:50px;
  3649. display:flex;
  3650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3651. font-weight:400;
  3652. font-style:normal;
  3653. font-size:14px;
  3654. text-align:left;
  3655. }
  3656. #u80527 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:2px 10px 2px 10px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u80527_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u80528_img {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:100px;
  3675. height:50px;
  3676. }
  3677. #u80528 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:443px;
  3681. top:43px;
  3682. width:100px;
  3683. height:50px;
  3684. display:flex;
  3685. font-size:14px;
  3686. text-align:left;
  3687. }
  3688. #u80528 .text {
  3689. position:absolute;
  3690. align-self:center;
  3691. padding:2px 10px 2px 10px;
  3692. box-sizing:border-box;
  3693. width:100%;
  3694. }
  3695. #u80528_text {
  3696. border-width:0px;
  3697. word-wrap:break-word;
  3698. text-transform:none;
  3699. visibility:hidden;
  3700. }
  3701. #u80529_img {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:0px;
  3705. top:0px;
  3706. width:162px;
  3707. height:50px;
  3708. }
  3709. #u80529 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:543px;
  3713. top:43px;
  3714. width:162px;
  3715. height:50px;
  3716. display:flex;
  3717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3718. font-weight:400;
  3719. font-style:normal;
  3720. text-align:left;
  3721. }
  3722. #u80529 .text {
  3723. position:absolute;
  3724. align-self:center;
  3725. padding:2px 10px 2px 10px;
  3726. box-sizing:border-box;
  3727. width:100%;
  3728. }
  3729. #u80529_text {
  3730. border-width:0px;
  3731. word-wrap:break-word;
  3732. text-transform:none;
  3733. }
  3734. #u80530_img {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:101px;
  3740. height:50px;
  3741. }
  3742. #u80530 {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:705px;
  3746. top:43px;
  3747. width:101px;
  3748. height:50px;
  3749. display:flex;
  3750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3751. font-weight:400;
  3752. font-style:normal;
  3753. text-align:left;
  3754. }
  3755. #u80530 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 10px 2px 10px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u80530_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. visibility:hidden;
  3767. }
  3768. #u80531_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:101px;
  3774. height:50px;
  3775. }
  3776. #u80531 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:806px;
  3780. top:43px;
  3781. width:101px;
  3782. height:50px;
  3783. display:flex;
  3784. font-size:14px;
  3785. text-align:left;
  3786. }
  3787. #u80531 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:2px 10px 2px 10px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u80531_text {
  3795. border-width:0px;
  3796. word-wrap:break-word;
  3797. text-transform:none;
  3798. visibility:hidden;
  3799. }
  3800. #u80532_img {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:81px;
  3806. height:50px;
  3807. }
  3808. #u80532 {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:907px;
  3812. top:43px;
  3813. width:81px;
  3814. height:50px;
  3815. display:flex;
  3816. font-size:14px;
  3817. text-align:left;
  3818. }
  3819. #u80532 .text {
  3820. position:absolute;
  3821. align-self:center;
  3822. padding:2px 10px 2px 10px;
  3823. box-sizing:border-box;
  3824. width:100%;
  3825. }
  3826. #u80532_text {
  3827. border-width:0px;
  3828. word-wrap:break-word;
  3829. text-transform:none;
  3830. visibility:hidden;
  3831. }
  3832. #u80533_img {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:0px;
  3836. top:0px;
  3837. width:81px;
  3838. height:50px;
  3839. }
  3840. #u80533 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:988px;
  3844. top:43px;
  3845. width:81px;
  3846. height:50px;
  3847. display:flex;
  3848. font-size:14px;
  3849. text-align:left;
  3850. }
  3851. #u80533 .text {
  3852. position:absolute;
  3853. align-self:center;
  3854. padding:2px 10px 2px 10px;
  3855. box-sizing:border-box;
  3856. width:100%;
  3857. }
  3858. #u80533_text {
  3859. border-width:0px;
  3860. word-wrap:break-word;
  3861. text-transform:none;
  3862. visibility:hidden;
  3863. }
  3864. #u80534_img {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:153px;
  3870. height:50px;
  3871. }
  3872. #u80534 {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:1069px;
  3876. top:43px;
  3877. width:153px;
  3878. height:50px;
  3879. display:flex;
  3880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3881. font-weight:400;
  3882. font-style:normal;
  3883. font-size:14px;
  3884. color:#0099FF;
  3885. text-align:left;
  3886. }
  3887. #u80534 .text {
  3888. position:absolute;
  3889. align-self:center;
  3890. padding:2px 10px 2px 10px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u80534_text {
  3895. border-width:0px;
  3896. word-wrap:break-word;
  3897. text-transform:none;
  3898. }
  3899. #u80535_img {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:70px;
  3905. height:50px;
  3906. }
  3907. #u80535 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:93px;
  3912. width:70px;
  3913. height:50px;
  3914. display:flex;
  3915. font-size:14px;
  3916. text-align:left;
  3917. }
  3918. #u80535 .text {
  3919. position:absolute;
  3920. align-self:center;
  3921. padding:2px 10px 2px 10px;
  3922. box-sizing:border-box;
  3923. width:100%;
  3924. }
  3925. #u80535_text {
  3926. border-width:0px;
  3927. word-wrap:break-word;
  3928. text-transform:none;
  3929. visibility:hidden;
  3930. }
  3931. #u80536_img {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:70px;
  3937. height:50px;
  3938. }
  3939. #u80536 {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:70px;
  3943. top:93px;
  3944. width:70px;
  3945. height:50px;
  3946. display:flex;
  3947. font-size:14px;
  3948. text-align:left;
  3949. }
  3950. #u80536 .text {
  3951. position:absolute;
  3952. align-self:center;
  3953. padding:2px 10px 2px 10px;
  3954. box-sizing:border-box;
  3955. width:100%;
  3956. }
  3957. #u80536_text {
  3958. border-width:0px;
  3959. word-wrap:break-word;
  3960. text-transform:none;
  3961. visibility:hidden;
  3962. }
  3963. #u80537_img {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:101px;
  3969. height:50px;
  3970. }
  3971. #u80537 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:140px;
  3975. top:93px;
  3976. width:101px;
  3977. height:50px;
  3978. display:flex;
  3979. font-size:14px;
  3980. text-align:left;
  3981. }
  3982. #u80537 .text {
  3983. position:absolute;
  3984. align-self:center;
  3985. padding:2px 10px 2px 10px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u80537_text {
  3990. border-width:0px;
  3991. word-wrap:break-word;
  3992. text-transform:none;
  3993. }
  3994. #u80538_img {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:101px;
  4000. height:50px;
  4001. }
  4002. #u80538 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:241px;
  4006. top:93px;
  4007. width:101px;
  4008. height:50px;
  4009. display:flex;
  4010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4011. font-weight:400;
  4012. font-style:normal;
  4013. font-size:14px;
  4014. text-align:left;
  4015. }
  4016. #u80538 .text {
  4017. position:absolute;
  4018. align-self:center;
  4019. padding:2px 10px 2px 10px;
  4020. box-sizing:border-box;
  4021. width:100%;
  4022. }
  4023. #u80538_text {
  4024. border-width:0px;
  4025. word-wrap:break-word;
  4026. text-transform:none;
  4027. }
  4028. #u80539_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:101px;
  4034. height:50px;
  4035. }
  4036. #u80539 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:342px;
  4040. top:93px;
  4041. width:101px;
  4042. height:50px;
  4043. display:flex;
  4044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:14px;
  4048. text-align:left;
  4049. }
  4050. #u80539 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 10px 2px 10px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u80539_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u80540_img {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:100px;
  4069. height:50px;
  4070. }
  4071. #u80540 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:443px;
  4075. top:93px;
  4076. width:100px;
  4077. height:50px;
  4078. display:flex;
  4079. font-size:14px;
  4080. text-align:left;
  4081. }
  4082. #u80540 .text {
  4083. position:absolute;
  4084. align-self:center;
  4085. padding:2px 10px 2px 10px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u80540_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. visibility:hidden;
  4094. }
  4095. #u80541_img {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:162px;
  4101. height:50px;
  4102. }
  4103. #u80541 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:543px;
  4107. top:93px;
  4108. width:162px;
  4109. height:50px;
  4110. display:flex;
  4111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4112. font-weight:400;
  4113. font-style:normal;
  4114. text-align:left;
  4115. }
  4116. #u80541 .text {
  4117. position:absolute;
  4118. align-self:center;
  4119. padding:2px 10px 2px 10px;
  4120. box-sizing:border-box;
  4121. width:100%;
  4122. }
  4123. #u80541_text {
  4124. border-width:0px;
  4125. word-wrap:break-word;
  4126. text-transform:none;
  4127. }
  4128. #u80542_img {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:0px;
  4132. top:0px;
  4133. width:101px;
  4134. height:50px;
  4135. }
  4136. #u80542 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:705px;
  4140. top:93px;
  4141. width:101px;
  4142. height:50px;
  4143. display:flex;
  4144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. text-align:left;
  4148. }
  4149. #u80542 .text {
  4150. position:absolute;
  4151. align-self:center;
  4152. padding:2px 10px 2px 10px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u80542_text {
  4157. border-width:0px;
  4158. word-wrap:break-word;
  4159. text-transform:none;
  4160. visibility:hidden;
  4161. }
  4162. #u80543_img {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:101px;
  4168. height:50px;
  4169. }
  4170. #u80543 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:806px;
  4174. top:93px;
  4175. width:101px;
  4176. height:50px;
  4177. display:flex;
  4178. font-size:14px;
  4179. text-align:left;
  4180. }
  4181. #u80543 .text {
  4182. position:absolute;
  4183. align-self:center;
  4184. padding:2px 10px 2px 10px;
  4185. box-sizing:border-box;
  4186. width:100%;
  4187. }
  4188. #u80543_text {
  4189. border-width:0px;
  4190. word-wrap:break-word;
  4191. text-transform:none;
  4192. visibility:hidden;
  4193. }
  4194. #u80544_img {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:81px;
  4200. height:50px;
  4201. }
  4202. #u80544 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:907px;
  4206. top:93px;
  4207. width:81px;
  4208. height:50px;
  4209. display:flex;
  4210. font-size:14px;
  4211. text-align:left;
  4212. }
  4213. #u80544 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:2px 10px 2px 10px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u80544_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. visibility:hidden;
  4225. }
  4226. #u80545_img {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:81px;
  4232. height:50px;
  4233. }
  4234. #u80545 {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:988px;
  4238. top:93px;
  4239. width:81px;
  4240. height:50px;
  4241. display:flex;
  4242. font-size:14px;
  4243. text-align:left;
  4244. }
  4245. #u80545 .text {
  4246. position:absolute;
  4247. align-self:center;
  4248. padding:2px 10px 2px 10px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u80545_text {
  4253. border-width:0px;
  4254. word-wrap:break-word;
  4255. text-transform:none;
  4256. visibility:hidden;
  4257. }
  4258. #u80546_img {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:153px;
  4264. height:50px;
  4265. }
  4266. #u80546 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:1069px;
  4270. top:93px;
  4271. width:153px;
  4272. height:50px;
  4273. display:flex;
  4274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:14px;
  4278. color:#0099FF;
  4279. text-align:left;
  4280. }
  4281. #u80546 .text {
  4282. position:absolute;
  4283. align-self:center;
  4284. padding:2px 10px 2px 10px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u80546_text {
  4289. border-width:0px;
  4290. word-wrap:break-word;
  4291. text-transform:none;
  4292. }
  4293. #u80547_img {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:70px;
  4299. height:50px;
  4300. }
  4301. #u80547 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:143px;
  4306. width:70px;
  4307. height:50px;
  4308. display:flex;
  4309. font-size:14px;
  4310. text-align:left;
  4311. }
  4312. #u80547 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 10px 2px 10px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u80547_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. visibility:hidden;
  4324. }
  4325. #u80548_img {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:70px;
  4331. height:50px;
  4332. }
  4333. #u80548 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:70px;
  4337. top:143px;
  4338. width:70px;
  4339. height:50px;
  4340. display:flex;
  4341. font-size:14px;
  4342. text-align:left;
  4343. }
  4344. #u80548 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 10px 2px 10px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u80548_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. visibility:hidden;
  4356. }
  4357. #u80549_img {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:101px;
  4363. height:50px;
  4364. }
  4365. #u80549 {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:140px;
  4369. top:143px;
  4370. width:101px;
  4371. height:50px;
  4372. display:flex;
  4373. font-size:14px;
  4374. text-align:left;
  4375. }
  4376. #u80549 .text {
  4377. position:absolute;
  4378. align-self:center;
  4379. padding:2px 10px 2px 10px;
  4380. box-sizing:border-box;
  4381. width:100%;
  4382. }
  4383. #u80549_text {
  4384. border-width:0px;
  4385. word-wrap:break-word;
  4386. text-transform:none;
  4387. }
  4388. #u80550_img {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:0px;
  4392. top:0px;
  4393. width:101px;
  4394. height:50px;
  4395. }
  4396. #u80550 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:241px;
  4400. top:143px;
  4401. width:101px;
  4402. height:50px;
  4403. display:flex;
  4404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4405. font-weight:400;
  4406. font-style:normal;
  4407. font-size:14px;
  4408. text-align:left;
  4409. }
  4410. #u80550 .text {
  4411. position:absolute;
  4412. align-self:center;
  4413. padding:2px 10px 2px 10px;
  4414. box-sizing:border-box;
  4415. width:100%;
  4416. }
  4417. #u80550_text {
  4418. border-width:0px;
  4419. word-wrap:break-word;
  4420. text-transform:none;
  4421. }
  4422. #u80551_img {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:101px;
  4428. height:50px;
  4429. }
  4430. #u80551 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:342px;
  4434. top:143px;
  4435. width:101px;
  4436. height:50px;
  4437. display:flex;
  4438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. font-size:14px;
  4442. text-align:left;
  4443. }
  4444. #u80551 .text {
  4445. position:absolute;
  4446. align-self:center;
  4447. padding:2px 10px 2px 10px;
  4448. box-sizing:border-box;
  4449. width:100%;
  4450. }
  4451. #u80551_text {
  4452. border-width:0px;
  4453. word-wrap:break-word;
  4454. text-transform:none;
  4455. visibility:hidden;
  4456. }
  4457. #u80552_img {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:0px;
  4461. top:0px;
  4462. width:100px;
  4463. height:50px;
  4464. }
  4465. #u80552 {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:443px;
  4469. top:143px;
  4470. width:100px;
  4471. height:50px;
  4472. display:flex;
  4473. font-size:14px;
  4474. text-align:left;
  4475. }
  4476. #u80552 .text {
  4477. position:absolute;
  4478. align-self:center;
  4479. padding:2px 10px 2px 10px;
  4480. box-sizing:border-box;
  4481. width:100%;
  4482. }
  4483. #u80552_text {
  4484. border-width:0px;
  4485. word-wrap:break-word;
  4486. text-transform:none;
  4487. visibility:hidden;
  4488. }
  4489. #u80553_img {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:162px;
  4495. height:50px;
  4496. }
  4497. #u80553 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:543px;
  4501. top:143px;
  4502. width:162px;
  4503. height:50px;
  4504. display:flex;
  4505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4506. font-weight:400;
  4507. font-style:normal;
  4508. text-align:left;
  4509. }
  4510. #u80553 .text {
  4511. position:absolute;
  4512. align-self:center;
  4513. padding:2px 10px 2px 10px;
  4514. box-sizing:border-box;
  4515. width:100%;
  4516. }
  4517. #u80553_text {
  4518. border-width:0px;
  4519. word-wrap:break-word;
  4520. text-transform:none;
  4521. }
  4522. #u80554_img {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:0px;
  4526. top:0px;
  4527. width:101px;
  4528. height:50px;
  4529. }
  4530. #u80554 {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:705px;
  4534. top:143px;
  4535. width:101px;
  4536. height:50px;
  4537. display:flex;
  4538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4539. font-weight:400;
  4540. font-style:normal;
  4541. text-align:left;
  4542. }
  4543. #u80554 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:2px 10px 2px 10px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u80554_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. visibility:hidden;
  4555. }
  4556. #u80555_img {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:101px;
  4562. height:50px;
  4563. }
  4564. #u80555 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:806px;
  4568. top:143px;
  4569. width:101px;
  4570. height:50px;
  4571. display:flex;
  4572. font-size:14px;
  4573. text-align:left;
  4574. }
  4575. #u80555 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 10px 2px 10px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u80555_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u80556_img {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:81px;
  4594. height:50px;
  4595. }
  4596. #u80556 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:907px;
  4600. top:143px;
  4601. width:81px;
  4602. height:50px;
  4603. display:flex;
  4604. font-size:14px;
  4605. text-align:left;
  4606. }
  4607. #u80556 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 10px 2px 10px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u80556_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. visibility:hidden;
  4619. }
  4620. #u80557_img {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:81px;
  4626. height:50px;
  4627. }
  4628. #u80557 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:988px;
  4632. top:143px;
  4633. width:81px;
  4634. height:50px;
  4635. display:flex;
  4636. font-size:14px;
  4637. text-align:left;
  4638. }
  4639. #u80557 .text {
  4640. position:absolute;
  4641. align-self:center;
  4642. padding:2px 10px 2px 10px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u80557_text {
  4647. border-width:0px;
  4648. word-wrap:break-word;
  4649. text-transform:none;
  4650. visibility:hidden;
  4651. }
  4652. #u80558_img {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:153px;
  4658. height:50px;
  4659. }
  4660. #u80558 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:1069px;
  4664. top:143px;
  4665. width:153px;
  4666. height:50px;
  4667. display:flex;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:14px;
  4672. text-align:left;
  4673. }
  4674. #u80558 .text {
  4675. position:absolute;
  4676. align-self:center;
  4677. padding:2px 10px 2px 10px;
  4678. box-sizing:border-box;
  4679. width:100%;
  4680. }
  4681. #u80558_text {
  4682. border-width:0px;
  4683. word-wrap:break-word;
  4684. text-transform:none;
  4685. }
  4686. #u80559_img {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:0px;
  4690. top:0px;
  4691. width:70px;
  4692. height:44px;
  4693. }
  4694. #u80559 {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:193px;
  4699. width:70px;
  4700. height:44px;
  4701. display:flex;
  4702. font-size:14px;
  4703. text-align:left;
  4704. }
  4705. #u80559 .text {
  4706. position:absolute;
  4707. align-self:center;
  4708. padding:2px 10px 2px 10px;
  4709. box-sizing:border-box;
  4710. width:100%;
  4711. }
  4712. #u80559_text {
  4713. border-width:0px;
  4714. word-wrap:break-word;
  4715. text-transform:none;
  4716. visibility:hidden;
  4717. }
  4718. #u80560_img {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:70px;
  4724. height:44px;
  4725. }
  4726. #u80560 {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:70px;
  4730. top:193px;
  4731. width:70px;
  4732. height:44px;
  4733. display:flex;
  4734. font-size:14px;
  4735. text-align:left;
  4736. }
  4737. #u80560 .text {
  4738. position:absolute;
  4739. align-self:center;
  4740. padding:2px 10px 2px 10px;
  4741. box-sizing:border-box;
  4742. width:100%;
  4743. }
  4744. #u80560_text {
  4745. border-width:0px;
  4746. word-wrap:break-word;
  4747. text-transform:none;
  4748. visibility:hidden;
  4749. }
  4750. #u80561_img {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:0px;
  4755. width:101px;
  4756. height:44px;
  4757. }
  4758. #u80561 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:140px;
  4762. top:193px;
  4763. width:101px;
  4764. height:44px;
  4765. display:flex;
  4766. font-size:14px;
  4767. text-align:left;
  4768. }
  4769. #u80561 .text {
  4770. position:absolute;
  4771. align-self:center;
  4772. padding:2px 10px 2px 10px;
  4773. box-sizing:border-box;
  4774. width:100%;
  4775. }
  4776. #u80561_text {
  4777. border-width:0px;
  4778. word-wrap:break-word;
  4779. text-transform:none;
  4780. visibility:hidden;
  4781. }
  4782. #u80562_img {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:0px;
  4786. top:0px;
  4787. width:101px;
  4788. height:44px;
  4789. }
  4790. #u80562 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:241px;
  4794. top:193px;
  4795. width:101px;
  4796. height:44px;
  4797. display:flex;
  4798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4799. font-weight:400;
  4800. font-style:normal;
  4801. font-size:14px;
  4802. text-align:left;
  4803. }
  4804. #u80562 .text {
  4805. position:absolute;
  4806. align-self:center;
  4807. padding:2px 10px 2px 10px;
  4808. box-sizing:border-box;
  4809. width:100%;
  4810. }
  4811. #u80562_text {
  4812. border-width:0px;
  4813. word-wrap:break-word;
  4814. text-transform:none;
  4815. visibility:hidden;
  4816. }
  4817. #u80563_img {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:101px;
  4823. height:44px;
  4824. }
  4825. #u80563 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:342px;
  4829. top:193px;
  4830. width:101px;
  4831. height:44px;
  4832. display:flex;
  4833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4834. font-weight:400;
  4835. font-style:normal;
  4836. font-size:14px;
  4837. text-align:left;
  4838. }
  4839. #u80563 .text {
  4840. position:absolute;
  4841. align-self:center;
  4842. padding:2px 10px 2px 10px;
  4843. box-sizing:border-box;
  4844. width:100%;
  4845. }
  4846. #u80563_text {
  4847. border-width:0px;
  4848. word-wrap:break-word;
  4849. text-transform:none;
  4850. visibility:hidden;
  4851. }
  4852. #u80564_img {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:100px;
  4858. height:44px;
  4859. }
  4860. #u80564 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:443px;
  4864. top:193px;
  4865. width:100px;
  4866. height:44px;
  4867. display:flex;
  4868. font-size:14px;
  4869. text-align:left;
  4870. }
  4871. #u80564 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 10px 2px 10px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u80564_text {
  4879. border-width:0px;
  4880. word-wrap:break-word;
  4881. text-transform:none;
  4882. visibility:hidden;
  4883. }
  4884. #u80565_img {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:162px;
  4890. height:44px;
  4891. }
  4892. #u80565 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:543px;
  4896. top:193px;
  4897. width:162px;
  4898. height:44px;
  4899. display:flex;
  4900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:14px;
  4904. text-align:left;
  4905. }
  4906. #u80565 .text {
  4907. position:absolute;
  4908. align-self:center;
  4909. padding:2px 10px 2px 10px;
  4910. box-sizing:border-box;
  4911. width:100%;
  4912. }
  4913. #u80565_text {
  4914. border-width:0px;
  4915. word-wrap:break-word;
  4916. text-transform:none;
  4917. visibility:hidden;
  4918. }
  4919. #u80566_img {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:0px;
  4923. top:0px;
  4924. width:101px;
  4925. height:44px;
  4926. }
  4927. #u80566 {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:705px;
  4931. top:193px;
  4932. width:101px;
  4933. height:44px;
  4934. display:flex;
  4935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4936. font-weight:400;
  4937. font-style:normal;
  4938. text-align:left;
  4939. }
  4940. #u80566 .text {
  4941. position:absolute;
  4942. align-self:center;
  4943. padding:2px 10px 2px 10px;
  4944. box-sizing:border-box;
  4945. width:100%;
  4946. }
  4947. #u80566_text {
  4948. border-width:0px;
  4949. word-wrap:break-word;
  4950. text-transform:none;
  4951. visibility:hidden;
  4952. }
  4953. #u80567_img {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:0px;
  4957. top:0px;
  4958. width:101px;
  4959. height:44px;
  4960. }
  4961. #u80567 {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:806px;
  4965. top:193px;
  4966. width:101px;
  4967. height:44px;
  4968. display:flex;
  4969. font-size:14px;
  4970. text-align:left;
  4971. }
  4972. #u80567 .text {
  4973. position:absolute;
  4974. align-self:center;
  4975. padding:2px 10px 2px 10px;
  4976. box-sizing:border-box;
  4977. width:100%;
  4978. }
  4979. #u80567_text {
  4980. border-width:0px;
  4981. word-wrap:break-word;
  4982. text-transform:none;
  4983. visibility:hidden;
  4984. }
  4985. #u80568_img {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:0px;
  4989. top:0px;
  4990. width:81px;
  4991. height:44px;
  4992. }
  4993. #u80568 {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:907px;
  4997. top:193px;
  4998. width:81px;
  4999. height:44px;
  5000. display:flex;
  5001. font-size:14px;
  5002. text-align:left;
  5003. }
  5004. #u80568 .text {
  5005. position:absolute;
  5006. align-self:center;
  5007. padding:2px 10px 2px 10px;
  5008. box-sizing:border-box;
  5009. width:100%;
  5010. }
  5011. #u80568_text {
  5012. border-width:0px;
  5013. word-wrap:break-word;
  5014. text-transform:none;
  5015. visibility:hidden;
  5016. }
  5017. #u80569_img {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:0px;
  5021. top:0px;
  5022. width:81px;
  5023. height:44px;
  5024. }
  5025. #u80569 {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:988px;
  5029. top:193px;
  5030. width:81px;
  5031. height:44px;
  5032. display:flex;
  5033. font-size:14px;
  5034. text-align:left;
  5035. }
  5036. #u80569 .text {
  5037. position:absolute;
  5038. align-self:center;
  5039. padding:2px 10px 2px 10px;
  5040. box-sizing:border-box;
  5041. width:100%;
  5042. }
  5043. #u80569_text {
  5044. border-width:0px;
  5045. word-wrap:break-word;
  5046. text-transform:none;
  5047. visibility:hidden;
  5048. }
  5049. #u80570_img {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:0px;
  5053. top:0px;
  5054. width:153px;
  5055. height:44px;
  5056. }
  5057. #u80570 {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:1069px;
  5061. top:193px;
  5062. width:153px;
  5063. height:44px;
  5064. display:flex;
  5065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5066. font-weight:400;
  5067. font-style:normal;
  5068. font-size:14px;
  5069. text-align:left;
  5070. }
  5071. #u80570 .text {
  5072. position:absolute;
  5073. align-self:center;
  5074. padding:2px 10px 2px 10px;
  5075. box-sizing:border-box;
  5076. width:100%;
  5077. }
  5078. #u80570_text {
  5079. border-width:0px;
  5080. word-wrap:break-word;
  5081. text-transform:none;
  5082. }
  5083. #u80571_img {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:0px;
  5087. top:0px;
  5088. width:70px;
  5089. height:44px;
  5090. }
  5091. #u80571 {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:237px;
  5096. width:70px;
  5097. height:44px;
  5098. display:flex;
  5099. font-size:14px;
  5100. text-align:left;
  5101. }
  5102. #u80571 .text {
  5103. position:absolute;
  5104. align-self:center;
  5105. padding:2px 10px 2px 10px;
  5106. box-sizing:border-box;
  5107. width:100%;
  5108. }
  5109. #u80571_text {
  5110. border-width:0px;
  5111. word-wrap:break-word;
  5112. text-transform:none;
  5113. visibility:hidden;
  5114. }
  5115. #u80572_img {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:70px;
  5121. height:44px;
  5122. }
  5123. #u80572 {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:70px;
  5127. top:237px;
  5128. width:70px;
  5129. height:44px;
  5130. display:flex;
  5131. font-size:14px;
  5132. text-align:left;
  5133. }
  5134. #u80572 .text {
  5135. position:absolute;
  5136. align-self:center;
  5137. padding:2px 10px 2px 10px;
  5138. box-sizing:border-box;
  5139. width:100%;
  5140. }
  5141. #u80572_text {
  5142. border-width:0px;
  5143. word-wrap:break-word;
  5144. text-transform:none;
  5145. visibility:hidden;
  5146. }
  5147. #u80573_img {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:101px;
  5153. height:44px;
  5154. }
  5155. #u80573 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:140px;
  5159. top:237px;
  5160. width:101px;
  5161. height:44px;
  5162. display:flex;
  5163. font-size:14px;
  5164. text-align:left;
  5165. }
  5166. #u80573 .text {
  5167. position:absolute;
  5168. align-self:center;
  5169. padding:2px 10px 2px 10px;
  5170. box-sizing:border-box;
  5171. width:100%;
  5172. }
  5173. #u80573_text {
  5174. border-width:0px;
  5175. word-wrap:break-word;
  5176. text-transform:none;
  5177. visibility:hidden;
  5178. }
  5179. #u80574_img {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:101px;
  5185. height:44px;
  5186. }
  5187. #u80574 {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:241px;
  5191. top:237px;
  5192. width:101px;
  5193. height:44px;
  5194. display:flex;
  5195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:14px;
  5199. text-align:left;
  5200. }
  5201. #u80574 .text {
  5202. position:absolute;
  5203. align-self:center;
  5204. padding:2px 10px 2px 10px;
  5205. box-sizing:border-box;
  5206. width:100%;
  5207. }
  5208. #u80574_text {
  5209. border-width:0px;
  5210. word-wrap:break-word;
  5211. text-transform:none;
  5212. visibility:hidden;
  5213. }
  5214. #u80575_img {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:101px;
  5220. height:44px;
  5221. }
  5222. #u80575 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:342px;
  5226. top:237px;
  5227. width:101px;
  5228. height:44px;
  5229. display:flex;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:14px;
  5234. text-align:left;
  5235. }
  5236. #u80575 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:2px 10px 2px 10px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u80575_text {
  5244. border-width:0px;
  5245. word-wrap:break-word;
  5246. text-transform:none;
  5247. visibility:hidden;
  5248. }
  5249. #u80576_img {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:0px;
  5253. top:0px;
  5254. width:100px;
  5255. height:44px;
  5256. }
  5257. #u80576 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:443px;
  5261. top:237px;
  5262. width:100px;
  5263. height:44px;
  5264. display:flex;
  5265. font-size:14px;
  5266. text-align:left;
  5267. }
  5268. #u80576 .text {
  5269. position:absolute;
  5270. align-self:center;
  5271. padding:2px 10px 2px 10px;
  5272. box-sizing:border-box;
  5273. width:100%;
  5274. }
  5275. #u80576_text {
  5276. border-width:0px;
  5277. word-wrap:break-word;
  5278. text-transform:none;
  5279. visibility:hidden;
  5280. }
  5281. #u80577_img {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:162px;
  5287. height:44px;
  5288. }
  5289. #u80577 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:543px;
  5293. top:237px;
  5294. width:162px;
  5295. height:44px;
  5296. display:flex;
  5297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. text-align:left;
  5301. }
  5302. #u80577 .text {
  5303. position:absolute;
  5304. align-self:center;
  5305. padding:2px 10px 2px 10px;
  5306. box-sizing:border-box;
  5307. width:100%;
  5308. }
  5309. #u80577_text {
  5310. border-width:0px;
  5311. word-wrap:break-word;
  5312. text-transform:none;
  5313. visibility:hidden;
  5314. }
  5315. #u80578_img {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:101px;
  5321. height:44px;
  5322. }
  5323. #u80578 {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:705px;
  5327. top:237px;
  5328. width:101px;
  5329. height:44px;
  5330. display:flex;
  5331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5332. font-weight:400;
  5333. font-style:normal;
  5334. text-align:left;
  5335. }
  5336. #u80578 .text {
  5337. position:absolute;
  5338. align-self:center;
  5339. padding:2px 10px 2px 10px;
  5340. box-sizing:border-box;
  5341. width:100%;
  5342. }
  5343. #u80578_text {
  5344. border-width:0px;
  5345. word-wrap:break-word;
  5346. text-transform:none;
  5347. visibility:hidden;
  5348. }
  5349. #u80579_img {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:101px;
  5355. height:44px;
  5356. }
  5357. #u80579 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:806px;
  5361. top:237px;
  5362. width:101px;
  5363. height:44px;
  5364. display:flex;
  5365. font-size:14px;
  5366. text-align:left;
  5367. }
  5368. #u80579 .text {
  5369. position:absolute;
  5370. align-self:center;
  5371. padding:2px 10px 2px 10px;
  5372. box-sizing:border-box;
  5373. width:100%;
  5374. }
  5375. #u80579_text {
  5376. border-width:0px;
  5377. word-wrap:break-word;
  5378. text-transform:none;
  5379. visibility:hidden;
  5380. }
  5381. #u80580_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:81px;
  5387. height:44px;
  5388. }
  5389. #u80580 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:907px;
  5393. top:237px;
  5394. width:81px;
  5395. height:44px;
  5396. display:flex;
  5397. font-size:14px;
  5398. text-align:left;
  5399. }
  5400. #u80580 .text {
  5401. position:absolute;
  5402. align-self:center;
  5403. padding:2px 10px 2px 10px;
  5404. box-sizing:border-box;
  5405. width:100%;
  5406. }
  5407. #u80580_text {
  5408. border-width:0px;
  5409. word-wrap:break-word;
  5410. text-transform:none;
  5411. }
  5412. #u80581_img {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:81px;
  5418. height:44px;
  5419. }
  5420. #u80581 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:988px;
  5424. top:237px;
  5425. width:81px;
  5426. height:44px;
  5427. display:flex;
  5428. font-size:14px;
  5429. text-align:left;
  5430. }
  5431. #u80581 .text {
  5432. position:absolute;
  5433. align-self:center;
  5434. padding:2px 10px 2px 10px;
  5435. box-sizing:border-box;
  5436. width:100%;
  5437. }
  5438. #u80581_text {
  5439. border-width:0px;
  5440. word-wrap:break-word;
  5441. text-transform:none;
  5442. visibility:hidden;
  5443. }
  5444. #u80582_img {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:153px;
  5450. height:44px;
  5451. }
  5452. #u80582 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:1069px;
  5456. top:237px;
  5457. width:153px;
  5458. height:44px;
  5459. display:flex;
  5460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5461. font-weight:400;
  5462. font-style:normal;
  5463. font-size:14px;
  5464. color:#1890FF;
  5465. text-align:left;
  5466. }
  5467. #u80582 .text {
  5468. position:absolute;
  5469. align-self:center;
  5470. padding:2px 10px 2px 10px;
  5471. box-sizing:border-box;
  5472. width:100%;
  5473. }
  5474. #u80582_text {
  5475. border-width:0px;
  5476. word-wrap:break-word;
  5477. text-transform:none;
  5478. }
  5479. #u80583_img {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:70px;
  5485. height:44px;
  5486. }
  5487. #u80583 {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:281px;
  5492. width:70px;
  5493. height:44px;
  5494. display:flex;
  5495. font-size:14px;
  5496. text-align:left;
  5497. }
  5498. #u80583 .text {
  5499. position:absolute;
  5500. align-self:center;
  5501. padding:2px 10px 2px 10px;
  5502. box-sizing:border-box;
  5503. width:100%;
  5504. }
  5505. #u80583_text {
  5506. border-width:0px;
  5507. word-wrap:break-word;
  5508. text-transform:none;
  5509. visibility:hidden;
  5510. }
  5511. #u80584_img {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:70px;
  5517. height:44px;
  5518. }
  5519. #u80584 {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:70px;
  5523. top:281px;
  5524. width:70px;
  5525. height:44px;
  5526. display:flex;
  5527. font-size:14px;
  5528. text-align:left;
  5529. }
  5530. #u80584 .text {
  5531. position:absolute;
  5532. align-self:center;
  5533. padding:2px 10px 2px 10px;
  5534. box-sizing:border-box;
  5535. width:100%;
  5536. }
  5537. #u80584_text {
  5538. border-width:0px;
  5539. word-wrap:break-word;
  5540. text-transform:none;
  5541. visibility:hidden;
  5542. }
  5543. #u80585_img {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:0px;
  5547. top:0px;
  5548. width:101px;
  5549. height:44px;
  5550. }
  5551. #u80585 {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:140px;
  5555. top:281px;
  5556. width:101px;
  5557. height:44px;
  5558. display:flex;
  5559. font-size:14px;
  5560. text-align:left;
  5561. }
  5562. #u80585 .text {
  5563. position:absolute;
  5564. align-self:center;
  5565. padding:2px 10px 2px 10px;
  5566. box-sizing:border-box;
  5567. width:100%;
  5568. }
  5569. #u80585_text {
  5570. border-width:0px;
  5571. word-wrap:break-word;
  5572. text-transform:none;
  5573. visibility:hidden;
  5574. }
  5575. #u80586_img {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:0px;
  5579. top:0px;
  5580. width:101px;
  5581. height:44px;
  5582. }
  5583. #u80586 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:241px;
  5587. top:281px;
  5588. width:101px;
  5589. height:44px;
  5590. display:flex;
  5591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. font-size:14px;
  5595. text-align:left;
  5596. }
  5597. #u80586 .text {
  5598. position:absolute;
  5599. align-self:center;
  5600. padding:2px 10px 2px 10px;
  5601. box-sizing:border-box;
  5602. width:100%;
  5603. }
  5604. #u80586_text {
  5605. border-width:0px;
  5606. word-wrap:break-word;
  5607. text-transform:none;
  5608. visibility:hidden;
  5609. }
  5610. #u80587_img {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:101px;
  5616. height:44px;
  5617. }
  5618. #u80587 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:342px;
  5622. top:281px;
  5623. width:101px;
  5624. height:44px;
  5625. display:flex;
  5626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5627. font-weight:400;
  5628. font-style:normal;
  5629. font-size:14px;
  5630. text-align:left;
  5631. }
  5632. #u80587 .text {
  5633. position:absolute;
  5634. align-self:center;
  5635. padding:2px 10px 2px 10px;
  5636. box-sizing:border-box;
  5637. width:100%;
  5638. }
  5639. #u80587_text {
  5640. border-width:0px;
  5641. word-wrap:break-word;
  5642. text-transform:none;
  5643. visibility:hidden;
  5644. }
  5645. #u80588_img {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:100px;
  5651. height:44px;
  5652. }
  5653. #u80588 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:443px;
  5657. top:281px;
  5658. width:100px;
  5659. height:44px;
  5660. display:flex;
  5661. font-size:14px;
  5662. text-align:left;
  5663. }
  5664. #u80588 .text {
  5665. position:absolute;
  5666. align-self:center;
  5667. padding:2px 10px 2px 10px;
  5668. box-sizing:border-box;
  5669. width:100%;
  5670. }
  5671. #u80588_text {
  5672. border-width:0px;
  5673. word-wrap:break-word;
  5674. text-transform:none;
  5675. visibility:hidden;
  5676. }
  5677. #u80589_img {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:162px;
  5683. height:44px;
  5684. }
  5685. #u80589 {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:543px;
  5689. top:281px;
  5690. width:162px;
  5691. height:44px;
  5692. display:flex;
  5693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5694. font-weight:400;
  5695. font-style:normal;
  5696. text-align:left;
  5697. }
  5698. #u80589 .text {
  5699. position:absolute;
  5700. align-self:center;
  5701. padding:2px 10px 2px 10px;
  5702. box-sizing:border-box;
  5703. width:100%;
  5704. }
  5705. #u80589_text {
  5706. border-width:0px;
  5707. word-wrap:break-word;
  5708. text-transform:none;
  5709. visibility:hidden;
  5710. }
  5711. #u80590_img {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:0px;
  5715. top:0px;
  5716. width:101px;
  5717. height:44px;
  5718. }
  5719. #u80590 {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:705px;
  5723. top:281px;
  5724. width:101px;
  5725. height:44px;
  5726. display:flex;
  5727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5728. font-weight:400;
  5729. font-style:normal;
  5730. text-align:left;
  5731. }
  5732. #u80590 .text {
  5733. position:absolute;
  5734. align-self:center;
  5735. padding:2px 10px 2px 10px;
  5736. box-sizing:border-box;
  5737. width:100%;
  5738. }
  5739. #u80590_text {
  5740. border-width:0px;
  5741. word-wrap:break-word;
  5742. text-transform:none;
  5743. visibility:hidden;
  5744. }
  5745. #u80591_img {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:101px;
  5751. height:44px;
  5752. }
  5753. #u80591 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:806px;
  5757. top:281px;
  5758. width:101px;
  5759. height:44px;
  5760. display:flex;
  5761. font-size:14px;
  5762. text-align:left;
  5763. }
  5764. #u80591 .text {
  5765. position:absolute;
  5766. align-self:center;
  5767. padding:2px 10px 2px 10px;
  5768. box-sizing:border-box;
  5769. width:100%;
  5770. }
  5771. #u80591_text {
  5772. border-width:0px;
  5773. word-wrap:break-word;
  5774. text-transform:none;
  5775. visibility:hidden;
  5776. }
  5777. #u80592_img {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:81px;
  5783. height:44px;
  5784. }
  5785. #u80592 {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:907px;
  5789. top:281px;
  5790. width:81px;
  5791. height:44px;
  5792. display:flex;
  5793. font-size:14px;
  5794. text-align:left;
  5795. }
  5796. #u80592 .text {
  5797. position:absolute;
  5798. align-self:center;
  5799. padding:2px 10px 2px 10px;
  5800. box-sizing:border-box;
  5801. width:100%;
  5802. }
  5803. #u80592_text {
  5804. border-width:0px;
  5805. word-wrap:break-word;
  5806. text-transform:none;
  5807. visibility:hidden;
  5808. }
  5809. #u80593_img {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:0px;
  5813. top:0px;
  5814. width:81px;
  5815. height:44px;
  5816. }
  5817. #u80593 {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:988px;
  5821. top:281px;
  5822. width:81px;
  5823. height:44px;
  5824. display:flex;
  5825. font-size:14px;
  5826. text-align:left;
  5827. }
  5828. #u80593 .text {
  5829. position:absolute;
  5830. align-self:center;
  5831. padding:2px 10px 2px 10px;
  5832. box-sizing:border-box;
  5833. width:100%;
  5834. }
  5835. #u80593_text {
  5836. border-width:0px;
  5837. word-wrap:break-word;
  5838. text-transform:none;
  5839. visibility:hidden;
  5840. }
  5841. #u80594_img {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:153px;
  5847. height:44px;
  5848. }
  5849. #u80594 {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:1069px;
  5853. top:281px;
  5854. width:153px;
  5855. height:44px;
  5856. display:flex;
  5857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5858. font-weight:400;
  5859. font-style:normal;
  5860. font-size:14px;
  5861. color:#1890FF;
  5862. text-align:left;
  5863. }
  5864. #u80594 .text {
  5865. position:absolute;
  5866. align-self:center;
  5867. padding:2px 10px 2px 10px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u80594_text {
  5872. border-width:0px;
  5873. word-wrap:break-word;
  5874. text-transform:none;
  5875. }
  5876. #u80595_img {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:70px;
  5882. height:44px;
  5883. }
  5884. #u80595 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:0px;
  5888. top:325px;
  5889. width:70px;
  5890. height:44px;
  5891. display:flex;
  5892. font-size:14px;
  5893. text-align:left;
  5894. }
  5895. #u80595 .text {
  5896. position:absolute;
  5897. align-self:center;
  5898. padding:2px 10px 2px 10px;
  5899. box-sizing:border-box;
  5900. width:100%;
  5901. }
  5902. #u80595_text {
  5903. border-width:0px;
  5904. word-wrap:break-word;
  5905. text-transform:none;
  5906. visibility:hidden;
  5907. }
  5908. #u80596_img {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:70px;
  5914. height:44px;
  5915. }
  5916. #u80596 {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:70px;
  5920. top:325px;
  5921. width:70px;
  5922. height:44px;
  5923. display:flex;
  5924. font-size:14px;
  5925. text-align:left;
  5926. }
  5927. #u80596 .text {
  5928. position:absolute;
  5929. align-self:center;
  5930. padding:2px 10px 2px 10px;
  5931. box-sizing:border-box;
  5932. width:100%;
  5933. }
  5934. #u80596_text {
  5935. border-width:0px;
  5936. word-wrap:break-word;
  5937. text-transform:none;
  5938. visibility:hidden;
  5939. }
  5940. #u80597_img {
  5941. border-width:0px;
  5942. position:absolute;
  5943. left:0px;
  5944. top:0px;
  5945. width:101px;
  5946. height:44px;
  5947. }
  5948. #u80597 {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:140px;
  5952. top:325px;
  5953. width:101px;
  5954. height:44px;
  5955. display:flex;
  5956. font-size:14px;
  5957. text-align:left;
  5958. }
  5959. #u80597 .text {
  5960. position:absolute;
  5961. align-self:center;
  5962. padding:2px 10px 2px 10px;
  5963. box-sizing:border-box;
  5964. width:100%;
  5965. }
  5966. #u80597_text {
  5967. border-width:0px;
  5968. word-wrap:break-word;
  5969. text-transform:none;
  5970. visibility:hidden;
  5971. }
  5972. #u80598_img {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:101px;
  5978. height:44px;
  5979. }
  5980. #u80598 {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:241px;
  5984. top:325px;
  5985. width:101px;
  5986. height:44px;
  5987. display:flex;
  5988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5989. font-weight:400;
  5990. font-style:normal;
  5991. font-size:14px;
  5992. text-align:left;
  5993. }
  5994. #u80598 .text {
  5995. position:absolute;
  5996. align-self:center;
  5997. padding:2px 10px 2px 10px;
  5998. box-sizing:border-box;
  5999. width:100%;
  6000. }
  6001. #u80598_text {
  6002. border-width:0px;
  6003. word-wrap:break-word;
  6004. text-transform:none;
  6005. visibility:hidden;
  6006. }
  6007. #u80599_img {
  6008. border-width:0px;
  6009. position:absolute;
  6010. left:0px;
  6011. top:0px;
  6012. width:101px;
  6013. height:44px;
  6014. }
  6015. #u80599 {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:342px;
  6019. top:325px;
  6020. width:101px;
  6021. height:44px;
  6022. display:flex;
  6023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6024. font-weight:400;
  6025. font-style:normal;
  6026. font-size:14px;
  6027. text-align:left;
  6028. }
  6029. #u80599 .text {
  6030. position:absolute;
  6031. align-self:center;
  6032. padding:2px 10px 2px 10px;
  6033. box-sizing:border-box;
  6034. width:100%;
  6035. }
  6036. #u80599_text {
  6037. border-width:0px;
  6038. word-wrap:break-word;
  6039. text-transform:none;
  6040. visibility:hidden;
  6041. }
  6042. #u80600_img {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:100px;
  6048. height:44px;
  6049. }
  6050. #u80600 {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:443px;
  6054. top:325px;
  6055. width:100px;
  6056. height:44px;
  6057. display:flex;
  6058. font-size:14px;
  6059. text-align:left;
  6060. }
  6061. #u80600 .text {
  6062. position:absolute;
  6063. align-self:center;
  6064. padding:2px 10px 2px 10px;
  6065. box-sizing:border-box;
  6066. width:100%;
  6067. }
  6068. #u80600_text {
  6069. border-width:0px;
  6070. word-wrap:break-word;
  6071. text-transform:none;
  6072. visibility:hidden;
  6073. }
  6074. #u80601_img {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:162px;
  6080. height:44px;
  6081. }
  6082. #u80601 {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:543px;
  6086. top:325px;
  6087. width:162px;
  6088. height:44px;
  6089. display:flex;
  6090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6091. font-weight:400;
  6092. font-style:normal;
  6093. text-align:left;
  6094. }
  6095. #u80601 .text {
  6096. position:absolute;
  6097. align-self:center;
  6098. padding:2px 10px 2px 10px;
  6099. box-sizing:border-box;
  6100. width:100%;
  6101. }
  6102. #u80601_text {
  6103. border-width:0px;
  6104. word-wrap:break-word;
  6105. text-transform:none;
  6106. visibility:hidden;
  6107. }
  6108. #u80602_img {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:0px;
  6112. top:0px;
  6113. width:101px;
  6114. height:44px;
  6115. }
  6116. #u80602 {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:705px;
  6120. top:325px;
  6121. width:101px;
  6122. height:44px;
  6123. display:flex;
  6124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6125. font-weight:400;
  6126. font-style:normal;
  6127. text-align:left;
  6128. }
  6129. #u80602 .text {
  6130. position:absolute;
  6131. align-self:center;
  6132. padding:2px 10px 2px 10px;
  6133. box-sizing:border-box;
  6134. width:100%;
  6135. }
  6136. #u80602_text {
  6137. border-width:0px;
  6138. word-wrap:break-word;
  6139. text-transform:none;
  6140. visibility:hidden;
  6141. }
  6142. #u80603_img {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:0px;
  6146. top:0px;
  6147. width:101px;
  6148. height:44px;
  6149. }
  6150. #u80603 {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:806px;
  6154. top:325px;
  6155. width:101px;
  6156. height:44px;
  6157. display:flex;
  6158. font-size:14px;
  6159. text-align:left;
  6160. }
  6161. #u80603 .text {
  6162. position:absolute;
  6163. align-self:center;
  6164. padding:2px 10px 2px 10px;
  6165. box-sizing:border-box;
  6166. width:100%;
  6167. }
  6168. #u80603_text {
  6169. border-width:0px;
  6170. word-wrap:break-word;
  6171. text-transform:none;
  6172. visibility:hidden;
  6173. }
  6174. #u80604_img {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:81px;
  6180. height:44px;
  6181. }
  6182. #u80604 {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:907px;
  6186. top:325px;
  6187. width:81px;
  6188. height:44px;
  6189. display:flex;
  6190. font-size:14px;
  6191. text-align:left;
  6192. }
  6193. #u80604 .text {
  6194. position:absolute;
  6195. align-self:center;
  6196. padding:2px 10px 2px 10px;
  6197. box-sizing:border-box;
  6198. width:100%;
  6199. }
  6200. #u80604_text {
  6201. border-width:0px;
  6202. word-wrap:break-word;
  6203. text-transform:none;
  6204. visibility:hidden;
  6205. }
  6206. #u80605_img {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:81px;
  6212. height:44px;
  6213. }
  6214. #u80605 {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:988px;
  6218. top:325px;
  6219. width:81px;
  6220. height:44px;
  6221. display:flex;
  6222. font-size:14px;
  6223. text-align:left;
  6224. }
  6225. #u80605 .text {
  6226. position:absolute;
  6227. align-self:center;
  6228. padding:2px 10px 2px 10px;
  6229. box-sizing:border-box;
  6230. width:100%;
  6231. }
  6232. #u80605_text {
  6233. border-width:0px;
  6234. word-wrap:break-word;
  6235. text-transform:none;
  6236. visibility:hidden;
  6237. }
  6238. #u80606_img {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:0px;
  6242. top:0px;
  6243. width:153px;
  6244. height:44px;
  6245. }
  6246. #u80606 {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:1069px;
  6250. top:325px;
  6251. width:153px;
  6252. height:44px;
  6253. display:flex;
  6254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6255. font-weight:400;
  6256. font-style:normal;
  6257. font-size:14px;
  6258. color:#1890FF;
  6259. text-align:left;
  6260. }
  6261. #u80606 .text {
  6262. position:absolute;
  6263. align-self:center;
  6264. padding:2px 10px 2px 10px;
  6265. box-sizing:border-box;
  6266. width:100%;
  6267. }
  6268. #u80606_text {
  6269. border-width:0px;
  6270. word-wrap:break-word;
  6271. text-transform:none;
  6272. visibility:hidden;
  6273. }
  6274. #u80607_img {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:0px;
  6278. top:0px;
  6279. width:70px;
  6280. height:44px;
  6281. }
  6282. #u80607 {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:369px;
  6287. width:70px;
  6288. height:44px;
  6289. display:flex;
  6290. font-size:14px;
  6291. text-align:left;
  6292. }
  6293. #u80607 .text {
  6294. position:absolute;
  6295. align-self:center;
  6296. padding:2px 10px 2px 10px;
  6297. box-sizing:border-box;
  6298. width:100%;
  6299. }
  6300. #u80607_text {
  6301. border-width:0px;
  6302. word-wrap:break-word;
  6303. text-transform:none;
  6304. visibility:hidden;
  6305. }
  6306. #u80608_img {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:0px;
  6310. top:0px;
  6311. width:70px;
  6312. height:44px;
  6313. }
  6314. #u80608 {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:70px;
  6318. top:369px;
  6319. width:70px;
  6320. height:44px;
  6321. display:flex;
  6322. font-size:14px;
  6323. text-align:left;
  6324. }
  6325. #u80608 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 10px 2px 10px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u80608_text {
  6333. border-width:0px;
  6334. word-wrap:break-word;
  6335. text-transform:none;
  6336. visibility:hidden;
  6337. }
  6338. #u80609_img {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:101px;
  6344. height:44px;
  6345. }
  6346. #u80609 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:140px;
  6350. top:369px;
  6351. width:101px;
  6352. height:44px;
  6353. display:flex;
  6354. font-size:14px;
  6355. text-align:left;
  6356. }
  6357. #u80609 .text {
  6358. position:absolute;
  6359. align-self:center;
  6360. padding:2px 10px 2px 10px;
  6361. box-sizing:border-box;
  6362. width:100%;
  6363. }
  6364. #u80609_text {
  6365. border-width:0px;
  6366. word-wrap:break-word;
  6367. text-transform:none;
  6368. visibility:hidden;
  6369. }
  6370. #u80610_img {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:0px;
  6374. top:0px;
  6375. width:101px;
  6376. height:44px;
  6377. }
  6378. #u80610 {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:241px;
  6382. top:369px;
  6383. width:101px;
  6384. height:44px;
  6385. display:flex;
  6386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6387. font-weight:400;
  6388. font-style:normal;
  6389. font-size:14px;
  6390. text-align:left;
  6391. }
  6392. #u80610 .text {
  6393. position:absolute;
  6394. align-self:center;
  6395. padding:2px 10px 2px 10px;
  6396. box-sizing:border-box;
  6397. width:100%;
  6398. }
  6399. #u80610_text {
  6400. border-width:0px;
  6401. word-wrap:break-word;
  6402. text-transform:none;
  6403. visibility:hidden;
  6404. }
  6405. #u80611_img {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:0px;
  6409. top:0px;
  6410. width:101px;
  6411. height:44px;
  6412. }
  6413. #u80611 {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:342px;
  6417. top:369px;
  6418. width:101px;
  6419. height:44px;
  6420. display:flex;
  6421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6422. font-weight:400;
  6423. font-style:normal;
  6424. font-size:14px;
  6425. text-align:left;
  6426. }
  6427. #u80611 .text {
  6428. position:absolute;
  6429. align-self:center;
  6430. padding:2px 10px 2px 10px;
  6431. box-sizing:border-box;
  6432. width:100%;
  6433. }
  6434. #u80611_text {
  6435. border-width:0px;
  6436. word-wrap:break-word;
  6437. text-transform:none;
  6438. visibility:hidden;
  6439. }
  6440. #u80612_img {
  6441. border-width:0px;
  6442. position:absolute;
  6443. left:0px;
  6444. top:0px;
  6445. width:100px;
  6446. height:44px;
  6447. }
  6448. #u80612 {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:443px;
  6452. top:369px;
  6453. width:100px;
  6454. height:44px;
  6455. display:flex;
  6456. font-size:14px;
  6457. text-align:left;
  6458. }
  6459. #u80612 .text {
  6460. position:absolute;
  6461. align-self:center;
  6462. padding:2px 10px 2px 10px;
  6463. box-sizing:border-box;
  6464. width:100%;
  6465. }
  6466. #u80612_text {
  6467. border-width:0px;
  6468. word-wrap:break-word;
  6469. text-transform:none;
  6470. visibility:hidden;
  6471. }
  6472. #u80613_img {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:0px;
  6476. top:0px;
  6477. width:162px;
  6478. height:44px;
  6479. }
  6480. #u80613 {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:543px;
  6484. top:369px;
  6485. width:162px;
  6486. height:44px;
  6487. display:flex;
  6488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. text-align:left;
  6492. }
  6493. #u80613 .text {
  6494. position:absolute;
  6495. align-self:center;
  6496. padding:2px 10px 2px 10px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u80613_text {
  6501. border-width:0px;
  6502. word-wrap:break-word;
  6503. text-transform:none;
  6504. visibility:hidden;
  6505. }
  6506. #u80614_img {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:0px;
  6510. top:0px;
  6511. width:101px;
  6512. height:44px;
  6513. }
  6514. #u80614 {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:705px;
  6518. top:369px;
  6519. width:101px;
  6520. height:44px;
  6521. display:flex;
  6522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. text-align:left;
  6526. }
  6527. #u80614 .text {
  6528. position:absolute;
  6529. align-self:center;
  6530. padding:2px 10px 2px 10px;
  6531. box-sizing:border-box;
  6532. width:100%;
  6533. }
  6534. #u80614_text {
  6535. border-width:0px;
  6536. word-wrap:break-word;
  6537. text-transform:none;
  6538. visibility:hidden;
  6539. }
  6540. #u80615_img {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:0px;
  6544. top:0px;
  6545. width:101px;
  6546. height:44px;
  6547. }
  6548. #u80615 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:806px;
  6552. top:369px;
  6553. width:101px;
  6554. height:44px;
  6555. display:flex;
  6556. font-size:14px;
  6557. text-align:left;
  6558. }
  6559. #u80615 .text {
  6560. position:absolute;
  6561. align-self:center;
  6562. padding:2px 10px 2px 10px;
  6563. box-sizing:border-box;
  6564. width:100%;
  6565. }
  6566. #u80615_text {
  6567. border-width:0px;
  6568. word-wrap:break-word;
  6569. text-transform:none;
  6570. visibility:hidden;
  6571. }
  6572. #u80616_img {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:81px;
  6578. height:44px;
  6579. }
  6580. #u80616 {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:907px;
  6584. top:369px;
  6585. width:81px;
  6586. height:44px;
  6587. display:flex;
  6588. font-size:14px;
  6589. text-align:left;
  6590. }
  6591. #u80616 .text {
  6592. position:absolute;
  6593. align-self:center;
  6594. padding:2px 10px 2px 10px;
  6595. box-sizing:border-box;
  6596. width:100%;
  6597. }
  6598. #u80616_text {
  6599. border-width:0px;
  6600. word-wrap:break-word;
  6601. text-transform:none;
  6602. visibility:hidden;
  6603. }
  6604. #u80617_img {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:81px;
  6610. height:44px;
  6611. }
  6612. #u80617 {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:988px;
  6616. top:369px;
  6617. width:81px;
  6618. height:44px;
  6619. display:flex;
  6620. font-size:14px;
  6621. text-align:left;
  6622. }
  6623. #u80617 .text {
  6624. position:absolute;
  6625. align-self:center;
  6626. padding:2px 10px 2px 10px;
  6627. box-sizing:border-box;
  6628. width:100%;
  6629. }
  6630. #u80617_text {
  6631. border-width:0px;
  6632. word-wrap:break-word;
  6633. text-transform:none;
  6634. visibility:hidden;
  6635. }
  6636. #u80618_img {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:0px;
  6640. top:0px;
  6641. width:153px;
  6642. height:44px;
  6643. }
  6644. #u80618 {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:1069px;
  6648. top:369px;
  6649. width:153px;
  6650. height:44px;
  6651. display:flex;
  6652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6653. font-weight:400;
  6654. font-style:normal;
  6655. font-size:14px;
  6656. color:#1890FF;
  6657. text-align:left;
  6658. }
  6659. #u80618 .text {
  6660. position:absolute;
  6661. align-self:center;
  6662. padding:2px 10px 2px 10px;
  6663. box-sizing:border-box;
  6664. width:100%;
  6665. }
  6666. #u80618_text {
  6667. border-width:0px;
  6668. word-wrap:break-word;
  6669. text-transform:none;
  6670. visibility:hidden;
  6671. }
  6672. #u80619_div {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:19px;
  6678. height:18px;
  6679. background:inherit;
  6680. background-color:rgba(129, 211, 248, 0.0980392156862745);
  6681. box-sizing:border-box;
  6682. border-width:1px;
  6683. border-style:solid;
  6684. border-color:rgba(0, 153, 255, 1);
  6685. border-radius:4px;
  6686. -moz-box-shadow:none;
  6687. -webkit-box-shadow:none;
  6688. box-shadow:none;
  6689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6690. font-weight:400;
  6691. font-style:normal;
  6692. font-size:10px;
  6693. color:#0099FF;
  6694. }
  6695. #u80619 {
  6696. border-width:0px;
  6697. position:absolute;
  6698. left:648px;
  6699. top:303px;
  6700. width:19px;
  6701. height:18px;
  6702. display:flex;
  6703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6704. font-weight:400;
  6705. font-style:normal;
  6706. font-size:10px;
  6707. color:#0099FF;
  6708. }
  6709. #u80619 .text {
  6710. position:absolute;
  6711. align-self:center;
  6712. padding:2px 2px 2px 2px;
  6713. box-sizing:border-box;
  6714. width:100%;
  6715. }
  6716. #u80619_text {
  6717. border-width:0px;
  6718. word-wrap:break-word;
  6719. text-transform:none;
  6720. }
  6721. #u80620_div {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:0px;
  6725. top:0px;
  6726. width:19px;
  6727. height:18px;
  6728. background:inherit;
  6729. background-color:rgba(129, 211, 248, 0.0980392156862745);
  6730. box-sizing:border-box;
  6731. border-width:1px;
  6732. border-style:solid;
  6733. border-color:rgba(0, 153, 255, 1);
  6734. border-radius:4px;
  6735. -moz-box-shadow:none;
  6736. -webkit-box-shadow:none;
  6737. box-shadow:none;
  6738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6739. font-weight:400;
  6740. font-style:normal;
  6741. font-size:10px;
  6742. color:#0099FF;
  6743. }
  6744. #u80620 {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:648px;
  6748. top:353px;
  6749. width:19px;
  6750. height:18px;
  6751. display:flex;
  6752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:10px;
  6756. color:#0099FF;
  6757. }
  6758. #u80620 .text {
  6759. position:absolute;
  6760. align-self:center;
  6761. padding:2px 2px 2px 2px;
  6762. box-sizing:border-box;
  6763. width:100%;
  6764. }
  6765. #u80620_text {
  6766. border-width:0px;
  6767. word-wrap:break-word;
  6768. text-transform:none;
  6769. }
  6770. #u80621_div {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:0px;
  6774. top:0px;
  6775. width:38px;
  6776. height:24px;
  6777. background:inherit;
  6778. background-color:rgba(255, 255, 255, 1);
  6779. box-sizing:border-box;
  6780. border-width:1px;
  6781. border-style:solid;
  6782. border-color:rgba(170, 170, 170, 1);
  6783. border-radius:4px;
  6784. -moz-box-shadow:none;
  6785. -webkit-box-shadow:none;
  6786. box-shadow:none;
  6787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6788. font-weight:400;
  6789. font-style:normal;
  6790. font-size:10px;
  6791. color:#555555;
  6792. }
  6793. #u80621 {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:1353px;
  6797. top:300px;
  6798. width:38px;
  6799. height:24px;
  6800. display:flex;
  6801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6802. font-weight:400;
  6803. font-style:normal;
  6804. font-size:10px;
  6805. color:#555555;
  6806. }
  6807. #u80621 .text {
  6808. position:absolute;
  6809. align-self:center;
  6810. padding:5px 0px 5px 0px;
  6811. box-sizing:border-box;
  6812. width:100%;
  6813. }
  6814. #u80621_text {
  6815. border-width:0px;
  6816. word-wrap:break-word;
  6817. text-transform:none;
  6818. }
  6819. #u80622_div {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:0px;
  6823. top:0px;
  6824. width:38px;
  6825. height:24px;
  6826. background:inherit;
  6827. background-color:rgba(255, 255, 255, 1);
  6828. box-sizing:border-box;
  6829. border-width:1px;
  6830. border-style:solid;
  6831. border-color:rgba(217, 0, 27, 1);
  6832. border-radius:4px;
  6833. -moz-box-shadow:none;
  6834. -webkit-box-shadow:none;
  6835. box-shadow:none;
  6836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6837. font-weight:400;
  6838. font-style:normal;
  6839. font-size:10px;
  6840. color:#D9001B;
  6841. }
  6842. #u80622 {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:1353px;
  6846. top:493px;
  6847. width:38px;
  6848. height:24px;
  6849. display:flex;
  6850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:10px;
  6854. color:#D9001B;
  6855. }
  6856. #u80622 .text {
  6857. position:absolute;
  6858. align-self:center;
  6859. padding:5px 0px 5px 0px;
  6860. box-sizing:border-box;
  6861. width:100%;
  6862. }
  6863. #u80622_text {
  6864. border-width:0px;
  6865. word-wrap:break-word;
  6866. text-transform:none;
  6867. }
  6868. #u80623_div {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:0px;
  6872. top:0px;
  6873. width:38px;
  6874. height:24px;
  6875. background:inherit;
  6876. background-color:rgba(255, 255, 255, 1);
  6877. box-sizing:border-box;
  6878. border-width:1px;
  6879. border-style:solid;
  6880. border-color:rgba(170, 170, 170, 1);
  6881. border-radius:4px;
  6882. -moz-box-shadow:none;
  6883. -webkit-box-shadow:none;
  6884. box-shadow:none;
  6885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6886. font-weight:400;
  6887. font-style:normal;
  6888. font-size:10px;
  6889. color:#555555;
  6890. }
  6891. #u80623 {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:1353px;
  6895. top:353px;
  6896. width:38px;
  6897. height:24px;
  6898. display:flex;
  6899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6900. font-weight:400;
  6901. font-style:normal;
  6902. font-size:10px;
  6903. color:#555555;
  6904. }
  6905. #u80623 .text {
  6906. position:absolute;
  6907. align-self:center;
  6908. padding:5px 0px 5px 0px;
  6909. box-sizing:border-box;
  6910. width:100%;
  6911. }
  6912. #u80623_text {
  6913. border-width:0px;
  6914. word-wrap:break-word;
  6915. text-transform:none;
  6916. }
  6917. #u80624_div {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:0px;
  6921. top:0px;
  6922. width:38px;
  6923. height:24px;
  6924. background:inherit;
  6925. background-color:rgba(255, 255, 255, 1);
  6926. box-sizing:border-box;
  6927. border-width:1px;
  6928. border-style:solid;
  6929. border-color:rgba(170, 170, 170, 1);
  6930. border-radius:4px;
  6931. -moz-box-shadow:none;
  6932. -webkit-box-shadow:none;
  6933. box-shadow:none;
  6934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6935. font-weight:400;
  6936. font-style:normal;
  6937. font-size:10px;
  6938. color:#555555;
  6939. }
  6940. #u80624 {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:1353px;
  6944. top:401px;
  6945. width:38px;
  6946. height:24px;
  6947. display:flex;
  6948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6949. font-weight:400;
  6950. font-style:normal;
  6951. font-size:10px;
  6952. color:#555555;
  6953. }
  6954. #u80624 .text {
  6955. position:absolute;
  6956. align-self:center;
  6957. padding:5px 0px 5px 0px;
  6958. box-sizing:border-box;
  6959. width:100%;
  6960. }
  6961. #u80624_text {
  6962. border-width:0px;
  6963. word-wrap:break-word;
  6964. text-transform:none;
  6965. }
  6966. #u80625_div {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:0px;
  6970. top:0px;
  6971. width:38px;
  6972. height:24px;
  6973. background:inherit;
  6974. background-color:rgba(255, 255, 255, 1);
  6975. box-sizing:border-box;
  6976. border-width:1px;
  6977. border-style:solid;
  6978. border-color:rgba(170, 170, 170, 1);
  6979. border-radius:4px;
  6980. -moz-box-shadow:none;
  6981. -webkit-box-shadow:none;
  6982. box-shadow:none;
  6983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6984. font-weight:400;
  6985. font-style:normal;
  6986. font-size:10px;
  6987. color:#555555;
  6988. }
  6989. #u80625 {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:1353px;
  6993. top:449px;
  6994. width:38px;
  6995. height:24px;
  6996. display:flex;
  6997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6998. font-weight:400;
  6999. font-style:normal;
  7000. font-size:10px;
  7001. color:#555555;
  7002. }
  7003. #u80625 .text {
  7004. position:absolute;
  7005. align-self:center;
  7006. padding:5px 0px 5px 0px;
  7007. box-sizing:border-box;
  7008. width:100%;
  7009. }
  7010. #u80625_text {
  7011. border-width:0px;
  7012. word-wrap:break-word;
  7013. text-transform:none;
  7014. }
  7015. #u80626_div {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:38px;
  7021. height:24px;
  7022. background:inherit;
  7023. background-color:rgba(255, 255, 255, 1);
  7024. box-sizing:border-box;
  7025. border-width:1px;
  7026. border-style:solid;
  7027. border-color:rgba(170, 170, 170, 1);
  7028. border-radius:4px;
  7029. -moz-box-shadow:none;
  7030. -webkit-box-shadow:none;
  7031. box-shadow:none;
  7032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7033. font-weight:400;
  7034. font-style:normal;
  7035. font-size:10px;
  7036. color:#555555;
  7037. }
  7038. #u80626 {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:1273px;
  7042. top:353px;
  7043. width:38px;
  7044. height:24px;
  7045. display:flex;
  7046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7047. font-weight:400;
  7048. font-style:normal;
  7049. font-size:10px;
  7050. color:#555555;
  7051. }
  7052. #u80626 .text {
  7053. position:absolute;
  7054. align-self:center;
  7055. padding:5px 0px 5px 0px;
  7056. box-sizing:border-box;
  7057. width:100%;
  7058. }
  7059. #u80626_text {
  7060. border-width:0px;
  7061. word-wrap:break-word;
  7062. text-transform:none;
  7063. }
  7064. #u80627_div {
  7065. border-width:0px;
  7066. position:absolute;
  7067. left:0px;
  7068. top:0px;
  7069. width:38px;
  7070. height:24px;
  7071. background:inherit;
  7072. background-color:rgba(255, 255, 255, 1);
  7073. box-sizing:border-box;
  7074. border-width:1px;
  7075. border-style:solid;
  7076. border-color:rgba(217, 0, 27, 1);
  7077. border-radius:4px;
  7078. -moz-box-shadow:none;
  7079. -webkit-box-shadow:none;
  7080. box-shadow:none;
  7081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7082. font-weight:400;
  7083. font-style:normal;
  7084. font-size:10px;
  7085. color:#D9001B;
  7086. }
  7087. #u80627 {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:1273px;
  7091. top:449px;
  7092. width:38px;
  7093. height:24px;
  7094. display:flex;
  7095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7096. font-weight:400;
  7097. font-style:normal;
  7098. font-size:10px;
  7099. color:#D9001B;
  7100. }
  7101. #u80627 .text {
  7102. position:absolute;
  7103. align-self:center;
  7104. padding:5px 0px 5px 0px;
  7105. box-sizing:border-box;
  7106. width:100%;
  7107. }
  7108. #u80627_text {
  7109. border-width:0px;
  7110. word-wrap:break-word;
  7111. text-transform:none;
  7112. }
  7113. #u80628_div {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:0px;
  7117. top:0px;
  7118. width:38px;
  7119. height:24px;
  7120. background:inherit;
  7121. background-color:rgba(255, 255, 255, 1);
  7122. box-sizing:border-box;
  7123. border-width:1px;
  7124. border-style:solid;
  7125. border-color:rgba(170, 170, 170, 1);
  7126. border-radius:4px;
  7127. -moz-box-shadow:none;
  7128. -webkit-box-shadow:none;
  7129. box-shadow:none;
  7130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7131. font-weight:400;
  7132. font-style:normal;
  7133. font-size:10px;
  7134. color:#555555;
  7135. }
  7136. #u80628 {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:1273px;
  7140. top:401px;
  7141. width:38px;
  7142. height:24px;
  7143. display:flex;
  7144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7145. font-weight:400;
  7146. font-style:normal;
  7147. font-size:10px;
  7148. color:#555555;
  7149. }
  7150. #u80628 .text {
  7151. position:absolute;
  7152. align-self:center;
  7153. padding:5px 0px 5px 0px;
  7154. box-sizing:border-box;
  7155. width:100%;
  7156. }
  7157. #u80628_text {
  7158. border-width:0px;
  7159. word-wrap:break-word;
  7160. text-transform:none;
  7161. }
  7162. #u80630 {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:0px;
  7166. top:0px;
  7167. width:0px;
  7168. height:0px;
  7169. }
  7170. #u80631_img {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:0px;
  7174. top:0px;
  7175. width:200px;
  7176. height:1191px;
  7177. }
  7178. #u80631 {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:120px;
  7182. top:50px;
  7183. width:200px;
  7184. height:1191px;
  7185. display:flex;
  7186. }
  7187. #u80631 .text {
  7188. position:absolute;
  7189. align-self:center;
  7190. padding:2px 2px 2px 2px;
  7191. box-sizing:border-box;
  7192. width:100%;
  7193. }
  7194. #u80631_text {
  7195. border-width:0px;
  7196. word-wrap:break-word;
  7197. text-transform:none;
  7198. visibility:hidden;
  7199. }
  7200. #u80632_div {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:0px;
  7204. top:0px;
  7205. width:200px;
  7206. height:60px;
  7207. background:inherit;
  7208. background-color:rgba(224, 231, 247, 1);
  7209. border:none;
  7210. border-radius:0px;
  7211. -moz-box-shadow:none;
  7212. -webkit-box-shadow:none;
  7213. box-shadow:none;
  7214. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7215. font-weight:500;
  7216. font-style:normal;
  7217. font-size:18px;
  7218. }
  7219. #u80632 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:120px;
  7223. top:50px;
  7224. width:200px;
  7225. height:60px;
  7226. display:flex;
  7227. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7228. font-weight:500;
  7229. font-style:normal;
  7230. font-size:18px;
  7231. }
  7232. #u80632 .text {
  7233. position:absolute;
  7234. align-self:center;
  7235. padding:0px 0px 0px 20px;
  7236. box-sizing:border-box;
  7237. width:100%;
  7238. }
  7239. #u80632_text {
  7240. border-width:0px;
  7241. word-wrap:break-word;
  7242. text-transform:none;
  7243. }
  7244. #u80633 {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:120px;
  7248. top:130px;
  7249. width:200px;
  7250. height:1078px;
  7251. }
  7252. #u80633_state0 {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:200px;
  7258. height:1078px;
  7259. overflow:auto;
  7260. -webkit-overflow-scrolling:touch;
  7261. -ms-overflow-x:hidden;
  7262. overflow-x:hidden;
  7263. background-image:none;
  7264. border:none;
  7265. border-radius:0px;
  7266. -moz-box-shadow:none;
  7267. -webkit-box-shadow:none;
  7268. box-shadow:none;
  7269. }
  7270. #u80633_state0_content {
  7271. border-width:0px;
  7272. position:absolute;
  7273. left:0px;
  7274. top:0px;
  7275. width:1px;
  7276. height:1px;
  7277. }
  7278. #u80634_div {
  7279. border-width:0px;
  7280. position:absolute;
  7281. left:0px;
  7282. top:0px;
  7283. width:97px;
  7284. height:22px;
  7285. background:inherit;
  7286. background-color:rgba(255, 255, 255, 0);
  7287. border:none;
  7288. border-radius:0px;
  7289. -moz-box-shadow:none;
  7290. -webkit-box-shadow:none;
  7291. box-shadow:none;
  7292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7293. font-weight:400;
  7294. font-style:normal;
  7295. font-size:16px;
  7296. }
  7297. #u80634 {
  7298. border-width:0px;
  7299. position:absolute;
  7300. left:30px;
  7301. top:0px;
  7302. width:97px;
  7303. height:22px;
  7304. display:flex;
  7305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7306. font-weight:400;
  7307. font-style:normal;
  7308. font-size:16px;
  7309. }
  7310. #u80634 .text {
  7311. position:absolute;
  7312. align-self:flex-start;
  7313. padding:0px 0px 0px 0px;
  7314. box-sizing:border-box;
  7315. width:100%;
  7316. }
  7317. #u80634_text {
  7318. border-width:0px;
  7319. word-wrap:break-word;
  7320. text-transform:none;
  7321. }
  7322. #u80635_div {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:0px;
  7326. top:0px;
  7327. width:65px;
  7328. height:22px;
  7329. background:inherit;
  7330. background-color:rgba(255, 255, 255, 0);
  7331. border:none;
  7332. border-radius:0px;
  7333. -moz-box-shadow:none;
  7334. -webkit-box-shadow:none;
  7335. box-shadow:none;
  7336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7337. font-weight:400;
  7338. font-style:normal;
  7339. font-size:16px;
  7340. }
  7341. #u80635 {
  7342. border-width:0px;
  7343. position:absolute;
  7344. left:30px;
  7345. top:42px;
  7346. width:65px;
  7347. height:22px;
  7348. display:flex;
  7349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7350. font-weight:400;
  7351. font-style:normal;
  7352. font-size:16px;
  7353. }
  7354. #u80635 .text {
  7355. position:absolute;
  7356. align-self:flex-start;
  7357. padding:0px 0px 0px 0px;
  7358. box-sizing:border-box;
  7359. width:100%;
  7360. }
  7361. #u80635_text {
  7362. border-width:0px;
  7363. white-space:nowrap;
  7364. text-transform:none;
  7365. }
  7366. #u80636_div {
  7367. border-width:0px;
  7368. position:absolute;
  7369. left:0px;
  7370. top:0px;
  7371. width:49px;
  7372. height:22px;
  7373. background:inherit;
  7374. background-color:rgba(255, 255, 255, 0);
  7375. border:none;
  7376. border-radius:0px;
  7377. -moz-box-shadow:none;
  7378. -webkit-box-shadow:none;
  7379. box-shadow:none;
  7380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7381. font-weight:400;
  7382. font-style:normal;
  7383. font-size:16px;
  7384. }
  7385. #u80636 {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:30px;
  7389. top:145px;
  7390. width:49px;
  7391. height:22px;
  7392. display:flex;
  7393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7394. font-weight:400;
  7395. font-style:normal;
  7396. font-size:16px;
  7397. }
  7398. #u80636 .text {
  7399. position:absolute;
  7400. align-self:flex-start;
  7401. padding:0px 0px 0px 0px;
  7402. box-sizing:border-box;
  7403. width:100%;
  7404. }
  7405. #u80636_text {
  7406. border-width:0px;
  7407. white-space:nowrap;
  7408. text-transform:none;
  7409. }
  7410. #u80637_div {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:0px;
  7414. top:0px;
  7415. width:97px;
  7416. height:22px;
  7417. background:inherit;
  7418. background-color:rgba(255, 255, 255, 0);
  7419. border:none;
  7420. border-radius:0px;
  7421. -moz-box-shadow:none;
  7422. -webkit-box-shadow:none;
  7423. box-shadow:none;
  7424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7425. font-weight:400;
  7426. font-style:normal;
  7427. font-size:16px;
  7428. }
  7429. #u80637 {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:30px;
  7433. top:187px;
  7434. width:97px;
  7435. height:22px;
  7436. display:flex;
  7437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7438. font-weight:400;
  7439. font-style:normal;
  7440. font-size:16px;
  7441. }
  7442. #u80637 .text {
  7443. position:absolute;
  7444. align-self:flex-start;
  7445. padding:0px 0px 0px 0px;
  7446. box-sizing:border-box;
  7447. width:100%;
  7448. }
  7449. #u80637_text {
  7450. border-width:0px;
  7451. word-wrap:break-word;
  7452. text-transform:none;
  7453. }
  7454. #u80638_img {
  7455. border-width:0px;
  7456. position:absolute;
  7457. left:0px;
  7458. top:0px;
  7459. width:201px;
  7460. height:2px;
  7461. }
  7462. #u80638 {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:84px;
  7467. width:200px;
  7468. height:1px;
  7469. display:flex;
  7470. }
  7471. #u80638 .text {
  7472. position:absolute;
  7473. align-self:center;
  7474. padding:2px 2px 2px 2px;
  7475. box-sizing:border-box;
  7476. width:100%;
  7477. }
  7478. #u80638_text {
  7479. border-width:0px;
  7480. word-wrap:break-word;
  7481. text-transform:none;
  7482. visibility:hidden;
  7483. }
  7484. #u80639_div {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:0px;
  7489. width:49px;
  7490. height:17px;
  7491. background:inherit;
  7492. background-color:rgba(255, 255, 255, 0);
  7493. border:none;
  7494. border-radius:0px;
  7495. -moz-box-shadow:none;
  7496. -webkit-box-shadow:none;
  7497. box-shadow:none;
  7498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7499. font-weight:400;
  7500. font-style:normal;
  7501. font-size:12px;
  7502. color:#AAAAAA;
  7503. }
  7504. #u80639 {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:30px;
  7508. top:105px;
  7509. width:49px;
  7510. height:17px;
  7511. display:flex;
  7512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7513. font-weight:400;
  7514. font-style:normal;
  7515. font-size:12px;
  7516. color:#AAAAAA;
  7517. }
  7518. #u80639 .text {
  7519. position:absolute;
  7520. align-self:flex-start;
  7521. padding:0px 0px 0px 0px;
  7522. box-sizing:border-box;
  7523. width:100%;
  7524. }
  7525. #u80639_text {
  7526. border-width:0px;
  7527. white-space:nowrap;
  7528. text-transform:none;
  7529. }
  7530. #u80640_div {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:0px;
  7534. top:0px;
  7535. width:97px;
  7536. height:22px;
  7537. background:inherit;
  7538. background-color:rgba(255, 255, 255, 0);
  7539. border:none;
  7540. border-radius:0px;
  7541. -moz-box-shadow:none;
  7542. -webkit-box-shadow:none;
  7543. box-shadow:none;
  7544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7545. font-weight:400;
  7546. font-style:normal;
  7547. font-size:16px;
  7548. }
  7549. #u80640 {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:30px;
  7553. top:229px;
  7554. width:97px;
  7555. height:22px;
  7556. display:flex;
  7557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7558. font-weight:400;
  7559. font-style:normal;
  7560. font-size:16px;
  7561. }
  7562. #u80640 .text {
  7563. position:absolute;
  7564. align-self:flex-start;
  7565. padding:0px 0px 0px 0px;
  7566. box-sizing:border-box;
  7567. width:100%;
  7568. }
  7569. #u80640_text {
  7570. border-width:0px;
  7571. word-wrap:break-word;
  7572. text-transform:none;
  7573. }
  7574. #u80641_div {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:65px;
  7580. height:22px;
  7581. background:inherit;
  7582. background-color:rgba(255, 255, 255, 0);
  7583. border:none;
  7584. border-radius:0px;
  7585. -moz-box-shadow:none;
  7586. -webkit-box-shadow:none;
  7587. box-shadow:none;
  7588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7589. font-weight:400;
  7590. font-style:normal;
  7591. font-size:16px;
  7592. }
  7593. #u80641 {
  7594. border-width:0px;
  7595. position:absolute;
  7596. left:30px;
  7597. top:271px;
  7598. width:65px;
  7599. height:22px;
  7600. display:flex;
  7601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7602. font-weight:400;
  7603. font-style:normal;
  7604. font-size:16px;
  7605. }
  7606. #u80641 .text {
  7607. position:absolute;
  7608. align-self:flex-start;
  7609. padding:0px 0px 0px 0px;
  7610. box-sizing:border-box;
  7611. width:100%;
  7612. }
  7613. #u80641_text {
  7614. border-width:0px;
  7615. white-space:nowrap;
  7616. text-transform:none;
  7617. }
  7618. #u80642_img {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:0px;
  7622. top:0px;
  7623. width:201px;
  7624. height:2px;
  7625. }
  7626. #u80642 {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:0px;
  7630. top:313px;
  7631. width:200px;
  7632. height:1px;
  7633. display:flex;
  7634. }
  7635. #u80642 .text {
  7636. position:absolute;
  7637. align-self:center;
  7638. padding:2px 2px 2px 2px;
  7639. box-sizing:border-box;
  7640. width:100%;
  7641. }
  7642. #u80642_text {
  7643. border-width:0px;
  7644. word-wrap:break-word;
  7645. text-transform:none;
  7646. visibility:hidden;
  7647. }
  7648. #u80643_div {
  7649. border-width:0px;
  7650. position:absolute;
  7651. left:0px;
  7652. top:0px;
  7653. width:65px;
  7654. height:22px;
  7655. background:inherit;
  7656. background-color:rgba(255, 255, 255, 0);
  7657. border:none;
  7658. border-radius:0px;
  7659. -moz-box-shadow:none;
  7660. -webkit-box-shadow:none;
  7661. box-shadow:none;
  7662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7663. font-weight:400;
  7664. font-style:normal;
  7665. font-size:16px;
  7666. }
  7667. #u80643 {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:30px;
  7671. top:370px;
  7672. width:65px;
  7673. height:22px;
  7674. display:flex;
  7675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7676. font-weight:400;
  7677. font-style:normal;
  7678. font-size:16px;
  7679. }
  7680. #u80643 .text {
  7681. position:absolute;
  7682. align-self:flex-start;
  7683. padding:0px 0px 0px 0px;
  7684. box-sizing:border-box;
  7685. width:100%;
  7686. }
  7687. #u80643_text {
  7688. border-width:0px;
  7689. white-space:nowrap;
  7690. text-transform:none;
  7691. }
  7692. #u80644_div {
  7693. border-width:0px;
  7694. position:absolute;
  7695. left:0px;
  7696. top:0px;
  7697. width:49px;
  7698. height:17px;
  7699. background:inherit;
  7700. background-color:rgba(255, 255, 255, 0);
  7701. border:none;
  7702. border-radius:0px;
  7703. -moz-box-shadow:none;
  7704. -webkit-box-shadow:none;
  7705. box-shadow:none;
  7706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7707. font-weight:400;
  7708. font-style:normal;
  7709. font-size:12px;
  7710. color:#AAAAAA;
  7711. }
  7712. #u80644 {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:30px;
  7716. top:334px;
  7717. width:49px;
  7718. height:17px;
  7719. display:flex;
  7720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7721. font-weight:400;
  7722. font-style:normal;
  7723. font-size:12px;
  7724. color:#AAAAAA;
  7725. }
  7726. #u80644 .text {
  7727. position:absolute;
  7728. align-self:flex-start;
  7729. padding:0px 0px 0px 0px;
  7730. box-sizing:border-box;
  7731. width:100%;
  7732. }
  7733. #u80644_text {
  7734. border-width:0px;
  7735. white-space:nowrap;
  7736. text-transform:none;
  7737. }
  7738. #u80645_div {
  7739. border-width:0px;
  7740. position:absolute;
  7741. left:0px;
  7742. top:0px;
  7743. width:65px;
  7744. height:22px;
  7745. background:inherit;
  7746. background-color:rgba(255, 255, 255, 0);
  7747. border:none;
  7748. border-radius:0px;
  7749. -moz-box-shadow:none;
  7750. -webkit-box-shadow:none;
  7751. box-shadow:none;
  7752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7753. font-weight:400;
  7754. font-style:normal;
  7755. font-size:16px;
  7756. }
  7757. #u80645 {
  7758. border-width:0px;
  7759. position:absolute;
  7760. left:30px;
  7761. top:412px;
  7762. width:65px;
  7763. height:22px;
  7764. display:flex;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:16px;
  7769. }
  7770. #u80645 .text {
  7771. position:absolute;
  7772. align-self:flex-start;
  7773. padding:0px 0px 0px 0px;
  7774. box-sizing:border-box;
  7775. width:100%;
  7776. }
  7777. #u80645_text {
  7778. border-width:0px;
  7779. white-space:nowrap;
  7780. text-transform:none;
  7781. }
  7782. #u80646_div {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:0px;
  7786. top:0px;
  7787. width:65px;
  7788. height:22px;
  7789. background:inherit;
  7790. background-color:rgba(255, 255, 255, 0);
  7791. border:none;
  7792. border-radius:0px;
  7793. -moz-box-shadow:none;
  7794. -webkit-box-shadow:none;
  7795. box-shadow:none;
  7796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7797. font-weight:400;
  7798. font-style:normal;
  7799. font-size:16px;
  7800. }
  7801. #u80646 {
  7802. border-width:0px;
  7803. position:absolute;
  7804. left:30px;
  7805. top:454px;
  7806. width:65px;
  7807. height:22px;
  7808. display:flex;
  7809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7810. font-weight:400;
  7811. font-style:normal;
  7812. font-size:16px;
  7813. }
  7814. #u80646 .text {
  7815. position:absolute;
  7816. align-self:flex-start;
  7817. padding:0px 0px 0px 0px;
  7818. box-sizing:border-box;
  7819. width:100%;
  7820. }
  7821. #u80646_text {
  7822. border-width:0px;
  7823. white-space:nowrap;
  7824. text-transform:none;
  7825. }
  7826. #u80647_div {
  7827. border-width:0px;
  7828. position:absolute;
  7829. left:0px;
  7830. top:0px;
  7831. width:65px;
  7832. height:22px;
  7833. background:inherit;
  7834. background-color:rgba(255, 255, 255, 0);
  7835. border:none;
  7836. border-radius:0px;
  7837. -moz-box-shadow:none;
  7838. -webkit-box-shadow:none;
  7839. box-shadow:none;
  7840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7841. font-weight:400;
  7842. font-style:normal;
  7843. font-size:16px;
  7844. }
  7845. #u80647 {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:30px;
  7849. top:496px;
  7850. width:65px;
  7851. height:22px;
  7852. display:flex;
  7853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7854. font-weight:400;
  7855. font-style:normal;
  7856. font-size:16px;
  7857. }
  7858. #u80647 .text {
  7859. position:absolute;
  7860. align-self:flex-start;
  7861. padding:0px 0px 0px 0px;
  7862. box-sizing:border-box;
  7863. width:100%;
  7864. }
  7865. #u80647_text {
  7866. border-width:0px;
  7867. white-space:nowrap;
  7868. text-transform:none;
  7869. }
  7870. #u80648_div {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:65px;
  7876. height:22px;
  7877. background:inherit;
  7878. background-color:rgba(255, 255, 255, 0);
  7879. border:none;
  7880. border-radius:0px;
  7881. -moz-box-shadow:none;
  7882. -webkit-box-shadow:none;
  7883. box-shadow:none;
  7884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7885. font-weight:400;
  7886. font-style:normal;
  7887. font-size:16px;
  7888. }
  7889. #u80648 {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:30px;
  7893. top:538px;
  7894. width:65px;
  7895. height:22px;
  7896. display:flex;
  7897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7898. font-weight:400;
  7899. font-style:normal;
  7900. font-size:16px;
  7901. }
  7902. #u80648 .text {
  7903. position:absolute;
  7904. align-self:flex-start;
  7905. padding:0px 0px 0px 0px;
  7906. box-sizing:border-box;
  7907. width:100%;
  7908. }
  7909. #u80648_text {
  7910. border-width:0px;
  7911. white-space:nowrap;
  7912. text-transform:none;
  7913. }
  7914. #u80649_div {
  7915. border-width:0px;
  7916. position:absolute;
  7917. left:0px;
  7918. top:0px;
  7919. width:65px;
  7920. height:22px;
  7921. background:inherit;
  7922. background-color:rgba(255, 255, 255, 0);
  7923. border:none;
  7924. border-radius:0px;
  7925. -moz-box-shadow:none;
  7926. -webkit-box-shadow:none;
  7927. box-shadow:none;
  7928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7929. font-weight:400;
  7930. font-style:normal;
  7931. font-size:16px;
  7932. }
  7933. #u80649 {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:30px;
  7937. top:580px;
  7938. width:65px;
  7939. height:22px;
  7940. display:flex;
  7941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7942. font-weight:400;
  7943. font-style:normal;
  7944. font-size:16px;
  7945. }
  7946. #u80649 .text {
  7947. position:absolute;
  7948. align-self:flex-start;
  7949. padding:0px 0px 0px 0px;
  7950. box-sizing:border-box;
  7951. width:100%;
  7952. }
  7953. #u80649_text {
  7954. border-width:0px;
  7955. white-space:nowrap;
  7956. text-transform:none;
  7957. }
  7958. #u80650_img {
  7959. border-width:0px;
  7960. position:absolute;
  7961. left:0px;
  7962. top:0px;
  7963. width:201px;
  7964. height:2px;
  7965. }
  7966. #u80650 {
  7967. border-width:0px;
  7968. position:absolute;
  7969. left:0px;
  7970. top:1289px;
  7971. width:200px;
  7972. height:1px;
  7973. display:flex;
  7974. }
  7975. #u80650 .text {
  7976. position:absolute;
  7977. align-self:center;
  7978. padding:2px 2px 2px 2px;
  7979. box-sizing:border-box;
  7980. width:100%;
  7981. }
  7982. #u80650_text {
  7983. border-width:0px;
  7984. word-wrap:break-word;
  7985. text-transform:none;
  7986. visibility:hidden;
  7987. }
  7988. #u80651_div {
  7989. border-width:0px;
  7990. position:absolute;
  7991. left:0px;
  7992. top:0px;
  7993. width:65px;
  7994. height:22px;
  7995. background:inherit;
  7996. background-color:rgba(255, 255, 255, 0);
  7997. border:none;
  7998. border-radius:0px;
  7999. -moz-box-shadow:none;
  8000. -webkit-box-shadow:none;
  8001. box-shadow:none;
  8002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8003. font-weight:400;
  8004. font-style:normal;
  8005. font-size:16px;
  8006. }
  8007. #u80651 {
  8008. border-width:0px;
  8009. position:absolute;
  8010. left:30px;
  8011. top:1346px;
  8012. width:65px;
  8013. height:22px;
  8014. display:flex;
  8015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8016. font-weight:400;
  8017. font-style:normal;
  8018. font-size:16px;
  8019. }
  8020. #u80651 .text {
  8021. position:absolute;
  8022. align-self:flex-start;
  8023. padding:0px 0px 0px 0px;
  8024. box-sizing:border-box;
  8025. width:100%;
  8026. }
  8027. #u80651_text {
  8028. border-width:0px;
  8029. white-space:nowrap;
  8030. text-transform:none;
  8031. }
  8032. #u80652_div {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:0px;
  8036. top:0px;
  8037. width:49px;
  8038. height:17px;
  8039. background:inherit;
  8040. background-color:rgba(255, 255, 255, 0);
  8041. border:none;
  8042. border-radius:0px;
  8043. -moz-box-shadow:none;
  8044. -webkit-box-shadow:none;
  8045. box-shadow:none;
  8046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8047. font-weight:400;
  8048. font-style:normal;
  8049. font-size:12px;
  8050. color:#AAAAAA;
  8051. }
  8052. #u80652 {
  8053. border-width:0px;
  8054. position:absolute;
  8055. left:30px;
  8056. top:1310px;
  8057. width:49px;
  8058. height:17px;
  8059. display:flex;
  8060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8061. font-weight:400;
  8062. font-style:normal;
  8063. font-size:12px;
  8064. color:#AAAAAA;
  8065. }
  8066. #u80652 .text {
  8067. position:absolute;
  8068. align-self:flex-start;
  8069. padding:0px 0px 0px 0px;
  8070. box-sizing:border-box;
  8071. width:100%;
  8072. }
  8073. #u80652_text {
  8074. border-width:0px;
  8075. white-space:nowrap;
  8076. text-transform:none;
  8077. }
  8078. #u80653_div {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:0px;
  8082. top:0px;
  8083. width:65px;
  8084. height:22px;
  8085. background:inherit;
  8086. background-color:rgba(255, 255, 255, 0);
  8087. border:none;
  8088. border-radius:0px;
  8089. -moz-box-shadow:none;
  8090. -webkit-box-shadow:none;
  8091. box-shadow:none;
  8092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8093. font-weight:400;
  8094. font-style:normal;
  8095. font-size:16px;
  8096. }
  8097. #u80653 {
  8098. border-width:0px;
  8099. position:absolute;
  8100. left:30px;
  8101. top:1388px;
  8102. width:65px;
  8103. height:22px;
  8104. display:flex;
  8105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8106. font-weight:400;
  8107. font-style:normal;
  8108. font-size:16px;
  8109. }
  8110. #u80653 .text {
  8111. position:absolute;
  8112. align-self:flex-start;
  8113. padding:0px 0px 0px 0px;
  8114. box-sizing:border-box;
  8115. width:100%;
  8116. }
  8117. #u80653_text {
  8118. border-width:0px;
  8119. white-space:nowrap;
  8120. text-transform:none;
  8121. }
  8122. #u80654_div {
  8123. border-width:0px;
  8124. position:absolute;
  8125. left:0px;
  8126. top:0px;
  8127. width:65px;
  8128. height:22px;
  8129. background:inherit;
  8130. background-color:rgba(255, 255, 255, 0);
  8131. border:none;
  8132. border-radius:0px;
  8133. -moz-box-shadow:none;
  8134. -webkit-box-shadow:none;
  8135. box-shadow:none;
  8136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8137. font-weight:400;
  8138. font-style:normal;
  8139. font-size:16px;
  8140. }
  8141. #u80654 {
  8142. border-width:0px;
  8143. position:absolute;
  8144. left:30px;
  8145. top:1472px;
  8146. width:65px;
  8147. height:22px;
  8148. display:flex;
  8149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8150. font-weight:400;
  8151. font-style:normal;
  8152. font-size:16px;
  8153. }
  8154. #u80654 .text {
  8155. position:absolute;
  8156. align-self:flex-start;
  8157. padding:0px 0px 0px 0px;
  8158. box-sizing:border-box;
  8159. width:100%;
  8160. }
  8161. #u80654_text {
  8162. border-width:0px;
  8163. white-space:nowrap;
  8164. text-transform:none;
  8165. }
  8166. #u80655_img {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:201px;
  8172. height:2px;
  8173. }
  8174. #u80655 {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:0px;
  8178. top:1514px;
  8179. width:200px;
  8180. height:1px;
  8181. display:flex;
  8182. }
  8183. #u80655 .text {
  8184. position:absolute;
  8185. align-self:center;
  8186. padding:2px 2px 2px 2px;
  8187. box-sizing:border-box;
  8188. width:100%;
  8189. }
  8190. #u80655_text {
  8191. border-width:0px;
  8192. word-wrap:break-word;
  8193. text-transform:none;
  8194. visibility:hidden;
  8195. }
  8196. #u80656_div {
  8197. border-width:0px;
  8198. position:absolute;
  8199. left:0px;
  8200. top:0px;
  8201. width:49px;
  8202. height:22px;
  8203. background:inherit;
  8204. background-color:rgba(255, 255, 255, 0);
  8205. border:none;
  8206. border-radius:0px;
  8207. -moz-box-shadow:none;
  8208. -webkit-box-shadow:none;
  8209. box-shadow:none;
  8210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8211. font-weight:400;
  8212. font-style:normal;
  8213. font-size:16px;
  8214. }
  8215. #u80656 {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:30px;
  8219. top:1571px;
  8220. width:49px;
  8221. height:22px;
  8222. display:flex;
  8223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8224. font-weight:400;
  8225. font-style:normal;
  8226. font-size:16px;
  8227. }
  8228. #u80656 .text {
  8229. position:absolute;
  8230. align-self:flex-start;
  8231. padding:0px 0px 0px 0px;
  8232. box-sizing:border-box;
  8233. width:100%;
  8234. }
  8235. #u80656_text {
  8236. border-width:0px;
  8237. white-space:nowrap;
  8238. text-transform:none;
  8239. }
  8240. #u80657_div {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:0px;
  8244. top:0px;
  8245. width:49px;
  8246. height:17px;
  8247. background:inherit;
  8248. background-color:rgba(255, 255, 255, 0);
  8249. border:none;
  8250. border-radius:0px;
  8251. -moz-box-shadow:none;
  8252. -webkit-box-shadow:none;
  8253. box-shadow:none;
  8254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8255. font-weight:400;
  8256. font-style:normal;
  8257. font-size:12px;
  8258. color:#AAAAAA;
  8259. }
  8260. #u80657 {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:30px;
  8264. top:1535px;
  8265. width:49px;
  8266. height:17px;
  8267. display:flex;
  8268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8269. font-weight:400;
  8270. font-style:normal;
  8271. font-size:12px;
  8272. color:#AAAAAA;
  8273. }
  8274. #u80657 .text {
  8275. position:absolute;
  8276. align-self:flex-start;
  8277. padding:0px 0px 0px 0px;
  8278. box-sizing:border-box;
  8279. width:100%;
  8280. }
  8281. #u80657_text {
  8282. border-width:0px;
  8283. white-space:nowrap;
  8284. text-transform:none;
  8285. }
  8286. #u80658_div {
  8287. border-width:0px;
  8288. position:absolute;
  8289. left:0px;
  8290. top:0px;
  8291. width:49px;
  8292. height:22px;
  8293. background:inherit;
  8294. background-color:rgba(255, 255, 255, 0);
  8295. border:none;
  8296. border-radius:0px;
  8297. -moz-box-shadow:none;
  8298. -webkit-box-shadow:none;
  8299. box-shadow:none;
  8300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8301. font-weight:400;
  8302. font-style:normal;
  8303. font-size:16px;
  8304. }
  8305. #u80658 {
  8306. border-width:0px;
  8307. position:absolute;
  8308. left:30px;
  8309. top:1613px;
  8310. width:49px;
  8311. height:22px;
  8312. display:flex;
  8313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8314. font-weight:400;
  8315. font-style:normal;
  8316. font-size:16px;
  8317. }
  8318. #u80658 .text {
  8319. position:absolute;
  8320. align-self:flex-start;
  8321. padding:0px 0px 0px 0px;
  8322. box-sizing:border-box;
  8323. width:100%;
  8324. }
  8325. #u80658_text {
  8326. border-width:0px;
  8327. white-space:nowrap;
  8328. text-transform:none;
  8329. }
  8330. #u80659_div {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:0px;
  8334. top:0px;
  8335. width:65px;
  8336. height:22px;
  8337. background:inherit;
  8338. background-color:rgba(255, 255, 255, 0);
  8339. border:none;
  8340. border-radius:0px;
  8341. -moz-box-shadow:none;
  8342. -webkit-box-shadow:none;
  8343. box-shadow:none;
  8344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8345. font-weight:400;
  8346. font-style:normal;
  8347. font-size:16px;
  8348. }
  8349. #u80659 {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:30px;
  8353. top:1655px;
  8354. width:65px;
  8355. height:22px;
  8356. display:flex;
  8357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8358. font-weight:400;
  8359. font-style:normal;
  8360. font-size:16px;
  8361. }
  8362. #u80659 .text {
  8363. position:absolute;
  8364. align-self:flex-start;
  8365. padding:0px 0px 0px 0px;
  8366. box-sizing:border-box;
  8367. width:100%;
  8368. }
  8369. #u80659_text {
  8370. border-width:0px;
  8371. white-space:nowrap;
  8372. text-transform:none;
  8373. }
  8374. #u80660_img {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:0px;
  8378. top:0px;
  8379. width:201px;
  8380. height:2px;
  8381. }
  8382. #u80660 {
  8383. border-width:0px;
  8384. position:absolute;
  8385. left:0px;
  8386. top:1697px;
  8387. width:200px;
  8388. height:1px;
  8389. display:flex;
  8390. }
  8391. #u80660 .text {
  8392. position:absolute;
  8393. align-self:center;
  8394. padding:2px 2px 2px 2px;
  8395. box-sizing:border-box;
  8396. width:100%;
  8397. }
  8398. #u80660_text {
  8399. border-width:0px;
  8400. word-wrap:break-word;
  8401. text-transform:none;
  8402. visibility:hidden;
  8403. }
  8404. #u80661_div {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:0px;
  8408. top:0px;
  8409. width:81px;
  8410. height:22px;
  8411. background:inherit;
  8412. background-color:rgba(255, 255, 255, 0);
  8413. border:none;
  8414. border-radius:0px;
  8415. -moz-box-shadow:none;
  8416. -webkit-box-shadow:none;
  8417. box-shadow:none;
  8418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8419. font-weight:400;
  8420. font-style:normal;
  8421. font-size:16px;
  8422. }
  8423. #u80661 {
  8424. border-width:0px;
  8425. position:absolute;
  8426. left:30px;
  8427. top:1754px;
  8428. width:81px;
  8429. height:22px;
  8430. display:flex;
  8431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8432. font-weight:400;
  8433. font-style:normal;
  8434. font-size:16px;
  8435. }
  8436. #u80661 .text {
  8437. position:absolute;
  8438. align-self:flex-start;
  8439. padding:0px 0px 0px 0px;
  8440. box-sizing:border-box;
  8441. width:100%;
  8442. }
  8443. #u80661_text {
  8444. border-width:0px;
  8445. white-space:nowrap;
  8446. text-transform:none;
  8447. }
  8448. #u80662_div {
  8449. border-width:0px;
  8450. position:absolute;
  8451. left:0px;
  8452. top:0px;
  8453. width:49px;
  8454. height:17px;
  8455. background:inherit;
  8456. background-color:rgba(255, 255, 255, 0);
  8457. border:none;
  8458. border-radius:0px;
  8459. -moz-box-shadow:none;
  8460. -webkit-box-shadow:none;
  8461. box-shadow:none;
  8462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8463. font-weight:400;
  8464. font-style:normal;
  8465. font-size:12px;
  8466. color:#AAAAAA;
  8467. }
  8468. #u80662 {
  8469. border-width:0px;
  8470. position:absolute;
  8471. left:30px;
  8472. top:1718px;
  8473. width:49px;
  8474. height:17px;
  8475. display:flex;
  8476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8477. font-weight:400;
  8478. font-style:normal;
  8479. font-size:12px;
  8480. color:#AAAAAA;
  8481. }
  8482. #u80662 .text {
  8483. position:absolute;
  8484. align-self:flex-start;
  8485. padding:0px 0px 0px 0px;
  8486. box-sizing:border-box;
  8487. width:100%;
  8488. }
  8489. #u80662_text {
  8490. border-width:0px;
  8491. white-space:nowrap;
  8492. text-transform:none;
  8493. }
  8494. #u80663_div {
  8495. border-width:0px;
  8496. position:absolute;
  8497. left:0px;
  8498. top:0px;
  8499. width:81px;
  8500. height:22px;
  8501. background:inherit;
  8502. background-color:rgba(255, 255, 255, 0);
  8503. border:none;
  8504. border-radius:0px;
  8505. -moz-box-shadow:none;
  8506. -webkit-box-shadow:none;
  8507. box-shadow:none;
  8508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8509. font-weight:400;
  8510. font-style:normal;
  8511. font-size:16px;
  8512. }
  8513. #u80663 {
  8514. border-width:0px;
  8515. position:absolute;
  8516. left:30px;
  8517. top:1796px;
  8518. width:81px;
  8519. height:22px;
  8520. display:flex;
  8521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8522. font-weight:400;
  8523. font-style:normal;
  8524. font-size:16px;
  8525. }
  8526. #u80663 .text {
  8527. position:absolute;
  8528. align-self:flex-start;
  8529. padding:0px 0px 0px 0px;
  8530. box-sizing:border-box;
  8531. width:100%;
  8532. }
  8533. #u80663_text {
  8534. border-width:0px;
  8535. white-space:nowrap;
  8536. text-transform:none;
  8537. }
  8538. #u80664_div {
  8539. border-width:0px;
  8540. position:absolute;
  8541. left:0px;
  8542. top:0px;
  8543. width:81px;
  8544. height:22px;
  8545. background:inherit;
  8546. background-color:rgba(255, 255, 255, 0);
  8547. border:none;
  8548. border-radius:0px;
  8549. -moz-box-shadow:none;
  8550. -webkit-box-shadow:none;
  8551. box-shadow:none;
  8552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8553. font-weight:400;
  8554. font-style:normal;
  8555. font-size:16px;
  8556. }
  8557. #u80664 {
  8558. border-width:0px;
  8559. position:absolute;
  8560. left:30px;
  8561. top:1838px;
  8562. width:81px;
  8563. height:22px;
  8564. display:flex;
  8565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8566. font-weight:400;
  8567. font-style:normal;
  8568. font-size:16px;
  8569. }
  8570. #u80664 .text {
  8571. position:absolute;
  8572. align-self:flex-start;
  8573. padding:0px 0px 0px 0px;
  8574. box-sizing:border-box;
  8575. width:100%;
  8576. }
  8577. #u80664_text {
  8578. border-width:0px;
  8579. white-space:nowrap;
  8580. text-transform:none;
  8581. }
  8582. #u80665_div {
  8583. border-width:0px;
  8584. position:absolute;
  8585. left:0px;
  8586. top:0px;
  8587. width:65px;
  8588. height:22px;
  8589. background:inherit;
  8590. background-color:rgba(255, 255, 255, 0);
  8591. border:none;
  8592. border-radius:0px;
  8593. -moz-box-shadow:none;
  8594. -webkit-box-shadow:none;
  8595. box-shadow:none;
  8596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8597. font-weight:400;
  8598. font-style:normal;
  8599. font-size:16px;
  8600. }
  8601. #u80665 {
  8602. border-width:0px;
  8603. position:absolute;
  8604. left:30px;
  8605. top:1430px;
  8606. width:65px;
  8607. height:22px;
  8608. display:flex;
  8609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8610. font-weight:400;
  8611. font-style:normal;
  8612. font-size:16px;
  8613. }
  8614. #u80665 .text {
  8615. position:absolute;
  8616. align-self:flex-start;
  8617. padding:0px 0px 0px 0px;
  8618. box-sizing:border-box;
  8619. width:100%;
  8620. }
  8621. #u80665_text {
  8622. border-width:0px;
  8623. white-space:nowrap;
  8624. text-transform:none;
  8625. }
  8626. #u80666_img {
  8627. border-width:0px;
  8628. position:absolute;
  8629. left:0px;
  8630. top:0px;
  8631. width:201px;
  8632. height:2px;
  8633. }
  8634. #u80666 {
  8635. border-width:0px;
  8636. position:absolute;
  8637. left:0px;
  8638. top:669px;
  8639. width:200px;
  8640. height:1px;
  8641. display:flex;
  8642. }
  8643. #u80666 .text {
  8644. position:absolute;
  8645. align-self:center;
  8646. padding:2px 2px 2px 2px;
  8647. box-sizing:border-box;
  8648. width:100%;
  8649. }
  8650. #u80666_text {
  8651. border-width:0px;
  8652. word-wrap:break-word;
  8653. text-transform:none;
  8654. visibility:hidden;
  8655. }
  8656. #u80667_div {
  8657. border-width:0px;
  8658. position:absolute;
  8659. left:0px;
  8660. top:0px;
  8661. width:65px;
  8662. height:22px;
  8663. background:inherit;
  8664. background-color:rgba(255, 255, 255, 0);
  8665. border:none;
  8666. border-radius:0px;
  8667. -moz-box-shadow:none;
  8668. -webkit-box-shadow:none;
  8669. box-shadow:none;
  8670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8671. font-weight:400;
  8672. font-style:normal;
  8673. font-size:16px;
  8674. }
  8675. #u80667 {
  8676. border-width:0px;
  8677. position:absolute;
  8678. left:30px;
  8679. top:726px;
  8680. width:65px;
  8681. height:22px;
  8682. display:flex;
  8683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8684. font-weight:400;
  8685. font-style:normal;
  8686. font-size:16px;
  8687. }
  8688. #u80667 .text {
  8689. position:absolute;
  8690. align-self:flex-start;
  8691. padding:0px 0px 0px 0px;
  8692. box-sizing:border-box;
  8693. width:100%;
  8694. }
  8695. #u80667_text {
  8696. border-width:0px;
  8697. white-space:nowrap;
  8698. text-transform:none;
  8699. }
  8700. #u80668_div {
  8701. border-width:0px;
  8702. position:absolute;
  8703. left:0px;
  8704. top:0px;
  8705. width:49px;
  8706. height:17px;
  8707. background:inherit;
  8708. background-color:rgba(255, 255, 255, 0);
  8709. border:none;
  8710. border-radius:0px;
  8711. -moz-box-shadow:none;
  8712. -webkit-box-shadow:none;
  8713. box-shadow:none;
  8714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8715. font-weight:400;
  8716. font-style:normal;
  8717. font-size:12px;
  8718. color:#AAAAAA;
  8719. }
  8720. #u80668 {
  8721. border-width:0px;
  8722. position:absolute;
  8723. left:30px;
  8724. top:690px;
  8725. width:49px;
  8726. height:17px;
  8727. display:flex;
  8728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8729. font-weight:400;
  8730. font-style:normal;
  8731. font-size:12px;
  8732. color:#AAAAAA;
  8733. }
  8734. #u80668 .text {
  8735. position:absolute;
  8736. align-self:flex-start;
  8737. padding:0px 0px 0px 0px;
  8738. box-sizing:border-box;
  8739. width:100%;
  8740. }
  8741. #u80668_text {
  8742. border-width:0px;
  8743. white-space:nowrap;
  8744. text-transform:none;
  8745. }
  8746. #u80669_div {
  8747. border-width:0px;
  8748. position:absolute;
  8749. left:0px;
  8750. top:0px;
  8751. width:65px;
  8752. height:22px;
  8753. background:inherit;
  8754. background-color:rgba(255, 255, 255, 0);
  8755. border:none;
  8756. border-radius:0px;
  8757. -moz-box-shadow:none;
  8758. -webkit-box-shadow:none;
  8759. box-shadow:none;
  8760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8761. font-weight:400;
  8762. font-style:normal;
  8763. font-size:16px;
  8764. }
  8765. #u80669 {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:30px;
  8769. top:768px;
  8770. width:65px;
  8771. height:22px;
  8772. display:flex;
  8773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8774. font-weight:400;
  8775. font-style:normal;
  8776. font-size:16px;
  8777. }
  8778. #u80669 .text {
  8779. position:absolute;
  8780. align-self:flex-start;
  8781. padding:0px 0px 0px 0px;
  8782. box-sizing:border-box;
  8783. width:100%;
  8784. }
  8785. #u80669_text {
  8786. border-width:0px;
  8787. white-space:nowrap;
  8788. text-transform:none;
  8789. }
  8790. #u80670_div {
  8791. border-width:0px;
  8792. position:absolute;
  8793. left:0px;
  8794. top:0px;
  8795. width:65px;
  8796. height:22px;
  8797. background:inherit;
  8798. background-color:rgba(255, 255, 255, 0);
  8799. border:none;
  8800. border-radius:0px;
  8801. -moz-box-shadow:none;
  8802. -webkit-box-shadow:none;
  8803. box-shadow:none;
  8804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8805. font-weight:400;
  8806. font-style:normal;
  8807. font-size:16px;
  8808. }
  8809. #u80670 {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:30px;
  8813. top:852px;
  8814. width:65px;
  8815. height:22px;
  8816. display:flex;
  8817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8818. font-weight:400;
  8819. font-style:normal;
  8820. font-size:16px;
  8821. }
  8822. #u80670 .text {
  8823. position:absolute;
  8824. align-self:flex-start;
  8825. padding:0px 0px 0px 0px;
  8826. box-sizing:border-box;
  8827. width:100%;
  8828. }
  8829. #u80670_text {
  8830. border-width:0px;
  8831. white-space:nowrap;
  8832. text-transform:none;
  8833. }
  8834. #u80671_div {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:0px;
  8838. top:0px;
  8839. width:65px;
  8840. height:22px;
  8841. background:inherit;
  8842. background-color:rgba(255, 255, 255, 0);
  8843. border:none;
  8844. border-radius:0px;
  8845. -moz-box-shadow:none;
  8846. -webkit-box-shadow:none;
  8847. box-shadow:none;
  8848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8849. font-weight:400;
  8850. font-style:normal;
  8851. font-size:16px;
  8852. }
  8853. #u80671 {
  8854. border-width:0px;
  8855. position:absolute;
  8856. left:30px;
  8857. top:810px;
  8858. width:65px;
  8859. height:22px;
  8860. display:flex;
  8861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8862. font-weight:400;
  8863. font-style:normal;
  8864. font-size:16px;
  8865. }
  8866. #u80671 .text {
  8867. position:absolute;
  8868. align-self:flex-start;
  8869. padding:0px 0px 0px 0px;
  8870. box-sizing:border-box;
  8871. width:100%;
  8872. }
  8873. #u80671_text {
  8874. border-width:0px;
  8875. white-space:nowrap;
  8876. text-transform:none;
  8877. }
  8878. #u80672_div {
  8879. border-width:0px;
  8880. position:absolute;
  8881. left:0px;
  8882. top:0px;
  8883. width:65px;
  8884. height:22px;
  8885. background:inherit;
  8886. background-color:rgba(255, 255, 255, 0);
  8887. border:none;
  8888. border-radius:0px;
  8889. -moz-box-shadow:none;
  8890. -webkit-box-shadow:none;
  8891. box-shadow:none;
  8892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8893. font-weight:400;
  8894. font-style:normal;
  8895. font-size:16px;
  8896. }
  8897. #u80672 {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:30px;
  8901. top:894px;
  8902. width:65px;
  8903. height:22px;
  8904. display:flex;
  8905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8906. font-weight:400;
  8907. font-style:normal;
  8908. font-size:16px;
  8909. }
  8910. #u80672 .text {
  8911. position:absolute;
  8912. align-self:flex-start;
  8913. padding:0px 0px 0px 0px;
  8914. box-sizing:border-box;
  8915. width:100%;
  8916. }
  8917. #u80672_text {
  8918. border-width:0px;
  8919. white-space:nowrap;
  8920. text-transform:none;
  8921. }
  8922. #u80673_div {
  8923. border-width:0px;
  8924. position:absolute;
  8925. left:0px;
  8926. top:0px;
  8927. width:65px;
  8928. height:22px;
  8929. background:inherit;
  8930. background-color:rgba(255, 255, 255, 0);
  8931. border:none;
  8932. border-radius:0px;
  8933. -moz-box-shadow:none;
  8934. -webkit-box-shadow:none;
  8935. box-shadow:none;
  8936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8937. font-weight:400;
  8938. font-style:normal;
  8939. font-size:16px;
  8940. }
  8941. #u80673 {
  8942. border-width:0px;
  8943. position:absolute;
  8944. left:30px;
  8945. top:936px;
  8946. width:65px;
  8947. height:22px;
  8948. display:flex;
  8949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8950. font-weight:400;
  8951. font-style:normal;
  8952. font-size:16px;
  8953. }
  8954. #u80673 .text {
  8955. position:absolute;
  8956. align-self:flex-start;
  8957. padding:0px 0px 0px 0px;
  8958. box-sizing:border-box;
  8959. width:100%;
  8960. }
  8961. #u80673_text {
  8962. border-width:0px;
  8963. white-space:nowrap;
  8964. text-transform:none;
  8965. }
  8966. #u80674_img {
  8967. border-width:0px;
  8968. position:absolute;
  8969. left:0px;
  8970. top:0px;
  8971. width:201px;
  8972. height:2px;
  8973. }
  8974. #u80674 {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:0px;
  8978. top:1018px;
  8979. width:200px;
  8980. height:1px;
  8981. display:flex;
  8982. }
  8983. #u80674 .text {
  8984. position:absolute;
  8985. align-self:center;
  8986. padding:2px 2px 2px 2px;
  8987. box-sizing:border-box;
  8988. width:100%;
  8989. }
  8990. #u80674_text {
  8991. border-width:0px;
  8992. word-wrap:break-word;
  8993. text-transform:none;
  8994. visibility:hidden;
  8995. }
  8996. #u80675_div {
  8997. border-width:0px;
  8998. position:absolute;
  8999. left:0px;
  9000. top:0px;
  9001. width:65px;
  9002. height:22px;
  9003. background:inherit;
  9004. background-color:rgba(255, 255, 255, 0);
  9005. border:none;
  9006. border-radius:0px;
  9007. -moz-box-shadow:none;
  9008. -webkit-box-shadow:none;
  9009. box-shadow:none;
  9010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9011. font-weight:400;
  9012. font-style:normal;
  9013. font-size:16px;
  9014. }
  9015. #u80675 {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:30px;
  9019. top:1075px;
  9020. width:65px;
  9021. height:22px;
  9022. display:flex;
  9023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9024. font-weight:400;
  9025. font-style:normal;
  9026. font-size:16px;
  9027. }
  9028. #u80675 .text {
  9029. position:absolute;
  9030. align-self:flex-start;
  9031. padding:0px 0px 0px 0px;
  9032. box-sizing:border-box;
  9033. width:100%;
  9034. }
  9035. #u80675_text {
  9036. border-width:0px;
  9037. white-space:nowrap;
  9038. text-transform:none;
  9039. }
  9040. #u80676_div {
  9041. border-width:0px;
  9042. position:absolute;
  9043. left:0px;
  9044. top:0px;
  9045. width:49px;
  9046. height:17px;
  9047. background:inherit;
  9048. background-color:rgba(255, 255, 255, 0);
  9049. border:none;
  9050. border-radius:0px;
  9051. -moz-box-shadow:none;
  9052. -webkit-box-shadow:none;
  9053. box-shadow:none;
  9054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9055. font-weight:400;
  9056. font-style:normal;
  9057. font-size:12px;
  9058. color:#AAAAAA;
  9059. }
  9060. #u80676 {
  9061. border-width:0px;
  9062. position:absolute;
  9063. left:30px;
  9064. top:1039px;
  9065. width:49px;
  9066. height:17px;
  9067. display:flex;
  9068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9069. font-weight:400;
  9070. font-style:normal;
  9071. font-size:12px;
  9072. color:#AAAAAA;
  9073. }
  9074. #u80676 .text {
  9075. position:absolute;
  9076. align-self:flex-start;
  9077. padding:0px 0px 0px 0px;
  9078. box-sizing:border-box;
  9079. width:100%;
  9080. }
  9081. #u80676_text {
  9082. border-width:0px;
  9083. white-space:nowrap;
  9084. text-transform:none;
  9085. }
  9086. #u80677_div {
  9087. border-width:0px;
  9088. position:absolute;
  9089. left:0px;
  9090. top:0px;
  9091. width:65px;
  9092. height:22px;
  9093. background:inherit;
  9094. background-color:rgba(255, 255, 255, 0);
  9095. border:none;
  9096. border-radius:0px;
  9097. -moz-box-shadow:none;
  9098. -webkit-box-shadow:none;
  9099. box-shadow:none;
  9100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9101. font-weight:400;
  9102. font-style:normal;
  9103. font-size:16px;
  9104. }
  9105. #u80677 {
  9106. border-width:0px;
  9107. position:absolute;
  9108. left:30px;
  9109. top:1117px;
  9110. width:65px;
  9111. height:22px;
  9112. display:flex;
  9113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9114. font-weight:400;
  9115. font-style:normal;
  9116. font-size:16px;
  9117. }
  9118. #u80677 .text {
  9119. position:absolute;
  9120. align-self:flex-start;
  9121. padding:0px 0px 0px 0px;
  9122. box-sizing:border-box;
  9123. width:100%;
  9124. }
  9125. #u80677_text {
  9126. border-width:0px;
  9127. white-space:nowrap;
  9128. text-transform:none;
  9129. }
  9130. #u80678_div {
  9131. border-width:0px;
  9132. position:absolute;
  9133. left:0px;
  9134. top:0px;
  9135. width:65px;
  9136. height:22px;
  9137. background:inherit;
  9138. background-color:rgba(255, 255, 255, 0);
  9139. border:none;
  9140. border-radius:0px;
  9141. -moz-box-shadow:none;
  9142. -webkit-box-shadow:none;
  9143. box-shadow:none;
  9144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9145. font-weight:400;
  9146. font-style:normal;
  9147. font-size:16px;
  9148. }
  9149. #u80678 {
  9150. border-width:0px;
  9151. position:absolute;
  9152. left:30px;
  9153. top:1201px;
  9154. width:65px;
  9155. height:22px;
  9156. display:flex;
  9157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9158. font-weight:400;
  9159. font-style:normal;
  9160. font-size:16px;
  9161. }
  9162. #u80678 .text {
  9163. position:absolute;
  9164. align-self:flex-start;
  9165. padding:0px 0px 0px 0px;
  9166. box-sizing:border-box;
  9167. width:100%;
  9168. }
  9169. #u80678_text {
  9170. border-width:0px;
  9171. white-space:nowrap;
  9172. text-transform:none;
  9173. }
  9174. #u80679_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. #u80679 {
  9194. border-width:0px;
  9195. position:absolute;
  9196. left:30px;
  9197. top:1159px;
  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. #u80679 .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. #u80679_text {
  9214. border-width:0px;
  9215. white-space:nowrap;
  9216. text-transform:none;
  9217. }
  9218. #u80680_div {
  9219. border-width:0px;
  9220. position:absolute;
  9221. left:0px;
  9222. top:0px;
  9223. width:65px;
  9224. height:22px;
  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:16px;
  9236. }
  9237. #u80680 {
  9238. border-width:0px;
  9239. position:absolute;
  9240. left:30px;
  9241. top:1243px;
  9242. width:65px;
  9243. height:22px;
  9244. display:flex;
  9245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9246. font-weight:400;
  9247. font-style:normal;
  9248. font-size:16px;
  9249. }
  9250. #u80680 .text {
  9251. position:absolute;
  9252. align-self:flex-start;
  9253. padding:0px 0px 0px 0px;
  9254. box-sizing:border-box;
  9255. width:100%;
  9256. }
  9257. #u80680_text {
  9258. border-width:0px;
  9259. white-space:nowrap;
  9260. text-transform:none;
  9261. }
  9262. #u80681_div {
  9263. border-width:0px;
  9264. position:absolute;
  9265. left:0px;
  9266. top:0px;
  9267. width:65px;
  9268. height:22px;
  9269. background:inherit;
  9270. background-color:rgba(255, 255, 255, 0);
  9271. border:none;
  9272. border-radius:0px;
  9273. -moz-box-shadow:none;
  9274. -webkit-box-shadow:none;
  9275. box-shadow:none;
  9276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9277. font-weight:400;
  9278. font-style:normal;
  9279. font-size:16px;
  9280. }
  9281. #u80681 {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:30px;
  9285. top:978px;
  9286. width:65px;
  9287. height:22px;
  9288. display:flex;
  9289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9290. font-weight:400;
  9291. font-style:normal;
  9292. font-size:16px;
  9293. }
  9294. #u80681 .text {
  9295. position:absolute;
  9296. align-self:flex-start;
  9297. padding:0px 0px 0px 0px;
  9298. box-sizing:border-box;
  9299. width:100%;
  9300. }
  9301. #u80681_text {
  9302. border-width:0px;
  9303. white-space:nowrap;
  9304. text-transform:none;
  9305. }
  9306. #u80682_div {
  9307. border-width:0px;
  9308. position:absolute;
  9309. left:0px;
  9310. top:0px;
  9311. width:65px;
  9312. height:22px;
  9313. background:inherit;
  9314. background-color:rgba(255, 255, 255, 0);
  9315. border:none;
  9316. border-radius:0px;
  9317. -moz-box-shadow:none;
  9318. -webkit-box-shadow:none;
  9319. box-shadow:none;
  9320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9321. font-weight:400;
  9322. font-style:normal;
  9323. font-size:16px;
  9324. }
  9325. #u80682 {
  9326. border-width:0px;
  9327. position:absolute;
  9328. left:30px;
  9329. top:622px;
  9330. width:65px;
  9331. height:22px;
  9332. display:flex;
  9333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9334. font-weight:400;
  9335. font-style:normal;
  9336. font-size:16px;
  9337. }
  9338. #u80682 .text {
  9339. position:absolute;
  9340. align-self:flex-start;
  9341. padding:0px 0px 0px 0px;
  9342. box-sizing:border-box;
  9343. width:100%;
  9344. }
  9345. #u80682_text {
  9346. border-width:0px;
  9347. white-space:nowrap;
  9348. text-transform:none;
  9349. }
  9350. #u80683_div {
  9351. border-width:0px;
  9352. position:absolute;
  9353. left:0px;
  9354. top:0px;
  9355. width:38px;
  9356. height:24px;
  9357. background:inherit;
  9358. background-color:rgba(255, 255, 255, 1);
  9359. box-sizing:border-box;
  9360. border-width:1px;
  9361. border-style:solid;
  9362. border-color:rgba(170, 170, 170, 1);
  9363. border-radius:4px;
  9364. -moz-box-shadow:none;
  9365. -webkit-box-shadow:none;
  9366. box-shadow:none;
  9367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9368. font-weight:400;
  9369. font-style:normal;
  9370. font-size:10px;
  9371. color:#555555;
  9372. }
  9373. #u80683 {
  9374. border-width:0px;
  9375. position:absolute;
  9376. left:1273px;
  9377. top:300px;
  9378. width:38px;
  9379. height:24px;
  9380. display:flex;
  9381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9382. font-weight:400;
  9383. font-style:normal;
  9384. font-size:10px;
  9385. color:#555555;
  9386. }
  9387. #u80683 .text {
  9388. position:absolute;
  9389. align-self:center;
  9390. padding:5px 0px 5px 0px;
  9391. box-sizing:border-box;
  9392. width:100%;
  9393. }
  9394. #u80683_text {
  9395. border-width:0px;
  9396. word-wrap:break-word;
  9397. text-transform:none;
  9398. }
  9399. #u80684_div {
  9400. border-width:0px;
  9401. position:absolute;
  9402. left:0px;
  9403. top:0px;
  9404. width:1040px;
  9405. height:200px;
  9406. background:inherit;
  9407. background-color:rgba(255, 255, 255, 0);
  9408. border:none;
  9409. border-radius:0px;
  9410. -moz-box-shadow:none;
  9411. -webkit-box-shadow:none;
  9412. box-shadow:none;
  9413. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9414. font-style:normal;
  9415. font-size:18px;
  9416. line-height:40px;
  9417. }
  9418. #u80684 {
  9419. border-width:0px;
  9420. position:absolute;
  9421. left:379px;
  9422. top:741px;
  9423. width:1040px;
  9424. height:200px;
  9425. display:flex;
  9426. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9427. font-style:normal;
  9428. font-size:18px;
  9429. line-height:40px;
  9430. }
  9431. #u80684 .text {
  9432. position:absolute;
  9433. align-self:flex-start;
  9434. padding:0px 0px 0px 0px;
  9435. box-sizing:border-box;
  9436. width:100%;
  9437. }
  9438. #u80684_text {
  9439. border-width:0px;
  9440. white-space:nowrap;
  9441. text-transform:none;
  9442. }
  9443. #u80685_div {
  9444. border-width:0px;
  9445. position:absolute;
  9446. left:0px;
  9447. top:0px;
  9448. width:908px;
  9449. height:80px;
  9450. background:inherit;
  9451. background-color:rgba(255, 255, 255, 0);
  9452. border:none;
  9453. border-radius:0px;
  9454. -moz-box-shadow:none;
  9455. -webkit-box-shadow:none;
  9456. box-shadow:none;
  9457. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9458. font-style:normal;
  9459. font-size:18px;
  9460. line-height:40px;
  9461. }
  9462. #u80685 {
  9463. border-width:0px;
  9464. position:absolute;
  9465. left:379px;
  9466. top:979px;
  9467. width:908px;
  9468. height:80px;
  9469. display:flex;
  9470. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9471. font-style:normal;
  9472. font-size:18px;
  9473. line-height:40px;
  9474. }
  9475. #u80685 .text {
  9476. position:absolute;
  9477. align-self:flex-start;
  9478. padding:0px 0px 0px 0px;
  9479. box-sizing:border-box;
  9480. width:100%;
  9481. }
  9482. #u80685_text {
  9483. border-width:0px;
  9484. white-space:nowrap;
  9485. text-transform:none;
  9486. }