styles.css 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3272px;
  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. #u88922_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. #u88922 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u88922 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u88922_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u88923_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. #u88923 {
  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. #u88923 .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. #u88923_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u88924_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. #u88924 {
  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. #u88924 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u88924_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u88925 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u88926_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u88926 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u88926 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u88926_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u88927_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. #u88927 {
  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. #u88927 .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. #u88927_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u88928_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. #u88928 {
  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. #u88928 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u88928_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u88929 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u88930_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. #u88930_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. #u88930_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. #u88930 {
  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. #u88930 .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. #u88930_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. #u88930.disabled {
  356. }
  357. .u88930_input_option {
  358. font-size:14px;
  359. }
  360. #u88931_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u88931 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u88931 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u88931_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u88932_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. #u88932 {
  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. #u88932 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u88932_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u88933_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. #u88933 {
  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. #u88933 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u88933_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u88934 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u88935_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. #u88935 {
  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. #u88935 .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. #u88935_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u88936_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u88936 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u88936 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u88936_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u88937 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u88938_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. #u88938 {
  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. #u88938 .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. #u88938_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u88939_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u88939 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u88939 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u88939_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u88940 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u88941_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. #u88941 {
  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. #u88941 .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. #u88941_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u88942_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u88942 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u88942 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u88942_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u88943 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u88944_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. #u88944 {
  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. #u88944 .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. #u88944_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u88945_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u88945 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u88945 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u88945_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u88946 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u88947_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. #u88947 {
  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. #u88947 .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. #u88947_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u88948_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u88948 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u88948 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u88948_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u88949 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u88950_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. #u88950 {
  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. #u88950 .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. #u88950_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u88951_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u88951 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u88951 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u88951_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u88952 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u88953_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. #u88953 {
  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. #u88953 .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. #u88953_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u88954_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u88954 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u88954 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u88954_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u88955 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u88956_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. #u88956 {
  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. #u88956 .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. #u88956_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u88957_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u88957 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u88957 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u88957_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u88958 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u88959_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. #u88959 {
  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. #u88959 .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. #u88959_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u88960_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u88960 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u88960 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u88960_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u88961 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u88962_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. #u88962 {
  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. #u88962 .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. #u88962_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u88963_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u88963 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u88963 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u88963_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u88964_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. #u88964 {
  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. #u88964 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u88964_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u88965_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u88965 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u88965 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u88965_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u88966_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. #u88966 {
  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. #u88966 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u88966_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u88967_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u88967 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u88967 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u88967_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u88968 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u88969_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. #u88969 {
  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. #u88969 .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. #u88969_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u88970_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u88970 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u88970 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u88970_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u88971 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u88972_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. #u88972 {
  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. #u88972 .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. #u88972_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u88973_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u88973 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u88973 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u88973_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u88974_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1262px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:12px;
  1656. color:#FFFFFF;
  1657. text-align:left;
  1658. }
  1659. #u88974 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:330px;
  1663. top:50px;
  1664. width:1262px;
  1665. height:1180px;
  1666. display:flex;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. color:#FFFFFF;
  1672. text-align:left;
  1673. }
  1674. #u88974 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:2px 2px 2px 50px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u88974_text {
  1682. border-width:0px;
  1683. word-wrap:break-word;
  1684. text-transform:none;
  1685. visibility:hidden;
  1686. }
  1687. #u88975_div {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:109px;
  1693. height:50px;
  1694. background:inherit;
  1695. background-color:rgba(255, 255, 255, 0);
  1696. border:none;
  1697. border-left:0px;
  1698. border-top:0px;
  1699. border-right:0px;
  1700. border-radius:0px;
  1701. border-bottom-right-radius:0px;
  1702. border-bottom-left-radius:0px;
  1703. -moz-box-shadow:none;
  1704. -webkit-box-shadow:none;
  1705. box-shadow:none;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:18px;
  1710. }
  1711. #u88975 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:-1393px;
  1715. top:-12px;
  1716. width:109px;
  1717. height:50px;
  1718. display:flex;
  1719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1720. font-weight:400;
  1721. font-style:normal;
  1722. font-size:18px;
  1723. }
  1724. #u88975 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:0px 0px 0px 0px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u88975_text {
  1732. border-width:0px;
  1733. white-space:nowrap;
  1734. text-transform:none;
  1735. }
  1736. #u88976_img {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:42px;
  1742. height:26px;
  1743. }
  1744. #u88976 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:-852px;
  1748. top:120px;
  1749. width:42px;
  1750. height:26px;
  1751. display:flex;
  1752. }
  1753. #u88976 .text {
  1754. position:absolute;
  1755. align-self:center;
  1756. padding:2px 2px 2px 2px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u88976_text {
  1761. border-width:0px;
  1762. word-wrap:break-word;
  1763. text-transform:none;
  1764. visibility:hidden;
  1765. }
  1766. #u88977_img {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:0px;
  1770. top:0px;
  1771. width:42px;
  1772. height:26px;
  1773. }
  1774. #u88977 {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:-852px;
  1778. top:310px;
  1779. width:42px;
  1780. height:26px;
  1781. display:flex;
  1782. }
  1783. #u88977 .text {
  1784. position:absolute;
  1785. align-self:center;
  1786. padding:2px 2px 2px 2px;
  1787. box-sizing:border-box;
  1788. width:100%;
  1789. }
  1790. #u88977_text {
  1791. border-width:0px;
  1792. word-wrap:break-word;
  1793. text-transform:none;
  1794. visibility:hidden;
  1795. }
  1796. #u88978_img {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:0px;
  1800. top:0px;
  1801. width:42px;
  1802. height:26px;
  1803. }
  1804. #u88978 {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:-852px;
  1808. top:272px;
  1809. width:42px;
  1810. height:26px;
  1811. display:flex;
  1812. }
  1813. #u88978 .text {
  1814. position:absolute;
  1815. align-self:center;
  1816. padding:2px 2px 2px 2px;
  1817. box-sizing:border-box;
  1818. width:100%;
  1819. }
  1820. #u88978_text {
  1821. border-width:0px;
  1822. word-wrap:break-word;
  1823. text-transform:none;
  1824. visibility:hidden;
  1825. }
  1826. #u88979_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:42px;
  1832. height:26px;
  1833. }
  1834. #u88979 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:-852px;
  1838. top:196px;
  1839. width:42px;
  1840. height:26px;
  1841. display:flex;
  1842. }
  1843. #u88979 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 2px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u88979_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. visibility:hidden;
  1855. }
  1856. #u88980_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:42px;
  1862. height:26px;
  1863. }
  1864. #u88980 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:-852px;
  1868. top:158px;
  1869. width:42px;
  1870. height:26px;
  1871. display:flex;
  1872. }
  1873. #u88980 .text {
  1874. position:absolute;
  1875. align-self:center;
  1876. padding:2px 2px 2px 2px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u88980_text {
  1881. border-width:0px;
  1882. word-wrap:break-word;
  1883. text-transform:none;
  1884. visibility:hidden;
  1885. }
  1886. #u88981_img {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:42px;
  1892. height:26px;
  1893. }
  1894. #u88981 {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:-852px;
  1898. top:234px;
  1899. width:42px;
  1900. height:26px;
  1901. display:flex;
  1902. }
  1903. #u88981 .text {
  1904. position:absolute;
  1905. align-self:center;
  1906. padding:2px 2px 2px 2px;
  1907. box-sizing:border-box;
  1908. width:100%;
  1909. }
  1910. #u88981_text {
  1911. border-width:0px;
  1912. word-wrap:break-word;
  1913. text-transform:none;
  1914. visibility:hidden;
  1915. }
  1916. #u88982_img {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:0px;
  1920. top:0px;
  1921. width:42px;
  1922. height:26px;
  1923. }
  1924. #u88982 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:-852px;
  1928. top:348px;
  1929. width:42px;
  1930. height:26px;
  1931. display:flex;
  1932. }
  1933. #u88982 .text {
  1934. position:absolute;
  1935. align-self:center;
  1936. padding:2px 2px 2px 2px;
  1937. box-sizing:border-box;
  1938. width:100%;
  1939. }
  1940. #u88982_text {
  1941. border-width:0px;
  1942. word-wrap:break-word;
  1943. text-transform:none;
  1944. visibility:hidden;
  1945. }
  1946. #u88983_img {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:0px;
  1950. top:0px;
  1951. width:42px;
  1952. height:26px;
  1953. }
  1954. #u88983 {
  1955. border-width:0px;
  1956. position:absolute;
  1957. left:-852px;
  1958. top:386px;
  1959. width:42px;
  1960. height:26px;
  1961. display:flex;
  1962. }
  1963. #u88983 .text {
  1964. position:absolute;
  1965. align-self:center;
  1966. padding:2px 2px 2px 2px;
  1967. box-sizing:border-box;
  1968. width:100%;
  1969. }
  1970. #u88983_text {
  1971. border-width:0px;
  1972. word-wrap:break-word;
  1973. text-transform:none;
  1974. visibility:hidden;
  1975. }
  1976. #u88984_img {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:42px;
  1982. height:26px;
  1983. }
  1984. #u88984 {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:-852px;
  1988. top:425px;
  1989. width:42px;
  1990. height:26px;
  1991. display:flex;
  1992. }
  1993. #u88984 .text {
  1994. position:absolute;
  1995. align-self:center;
  1996. padding:2px 2px 2px 2px;
  1997. box-sizing:border-box;
  1998. width:100%;
  1999. }
  2000. #u88984_text {
  2001. border-width:0px;
  2002. word-wrap:break-word;
  2003. text-transform:none;
  2004. visibility:hidden;
  2005. }
  2006. #u88985_img {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:0px;
  2010. top:0px;
  2011. width:42px;
  2012. height:26px;
  2013. }
  2014. #u88985 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:-852px;
  2018. top:463px;
  2019. width:42px;
  2020. height:26px;
  2021. display:flex;
  2022. }
  2023. #u88985 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:2px 2px 2px 2px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u88985_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. visibility:hidden;
  2035. }
  2036. #u88986_img {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:0px;
  2040. top:0px;
  2041. width:42px;
  2042. height:26px;
  2043. }
  2044. #u88986 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:-928px;
  2048. top:673px;
  2049. width:42px;
  2050. height:26px;
  2051. display:flex;
  2052. }
  2053. #u88986 .text {
  2054. position:absolute;
  2055. align-self:center;
  2056. padding:2px 2px 2px 2px;
  2057. box-sizing:border-box;
  2058. width:100%;
  2059. }
  2060. #u88986_text {
  2061. border-width:0px;
  2062. word-wrap:break-word;
  2063. text-transform:none;
  2064. visibility:hidden;
  2065. }
  2066. #u88987_img {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:0px;
  2070. top:0px;
  2071. width:42px;
  2072. height:26px;
  2073. }
  2074. #u88987 {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:-928px;
  2078. top:828px;
  2079. width:42px;
  2080. height:26px;
  2081. display:flex;
  2082. }
  2083. #u88987 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 2px 2px 2px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u88987_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. visibility:hidden;
  2095. }
  2096. #u88988_img {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:42px;
  2102. height:26px;
  2103. }
  2104. #u88988 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:-742px;
  2108. top:673px;
  2109. width:42px;
  2110. height:26px;
  2111. display:flex;
  2112. }
  2113. #u88988 .text {
  2114. position:absolute;
  2115. align-self:center;
  2116. padding:2px 2px 2px 2px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u88988_text {
  2121. border-width:0px;
  2122. word-wrap:break-word;
  2123. text-transform:none;
  2124. visibility:hidden;
  2125. }
  2126. #u88989_img {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:0px;
  2130. top:0px;
  2131. width:42px;
  2132. height:26px;
  2133. }
  2134. #u88989 {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:-742px;
  2138. top:825px;
  2139. width:42px;
  2140. height:26px;
  2141. display:flex;
  2142. }
  2143. #u88989 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:2px 2px 2px 2px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u88989_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. visibility:hidden;
  2155. }
  2156. #u88990_img {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:42px;
  2162. height:26px;
  2163. }
  2164. #u88990 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:-742px;
  2168. top:749px;
  2169. width:42px;
  2170. height:26px;
  2171. display:flex;
  2172. }
  2173. #u88990 .text {
  2174. position:absolute;
  2175. align-self:center;
  2176. padding:2px 2px 2px 2px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u88990_text {
  2181. border-width:0px;
  2182. word-wrap:break-word;
  2183. text-transform:none;
  2184. visibility:hidden;
  2185. }
  2186. #u88991_img {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:42px;
  2192. height:26px;
  2193. }
  2194. #u88991 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:-742px;
  2198. top:711px;
  2199. width:42px;
  2200. height:26px;
  2201. display:flex;
  2202. }
  2203. #u88991 .text {
  2204. position:absolute;
  2205. align-self:center;
  2206. padding:2px 2px 2px 2px;
  2207. box-sizing:border-box;
  2208. width:100%;
  2209. }
  2210. #u88991_text {
  2211. border-width:0px;
  2212. word-wrap:break-word;
  2213. text-transform:none;
  2214. visibility:hidden;
  2215. }
  2216. #u88992_img {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:42px;
  2222. height:26px;
  2223. }
  2224. #u88992 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:-742px;
  2228. top:787px;
  2229. width:42px;
  2230. height:26px;
  2231. display:flex;
  2232. }
  2233. #u88992 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:2px 2px 2px 2px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u88992_text {
  2241. border-width:0px;
  2242. word-wrap:break-word;
  2243. text-transform:none;
  2244. visibility:hidden;
  2245. }
  2246. #u88993_img {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:42px;
  2252. height:26px;
  2253. }
  2254. #u88993 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:-928px;
  2258. top:790px;
  2259. width:42px;
  2260. height:26px;
  2261. display:flex;
  2262. }
  2263. #u88993 .text {
  2264. position:absolute;
  2265. align-self:center;
  2266. padding:2px 2px 2px 2px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u88993_text {
  2271. border-width:0px;
  2272. word-wrap:break-word;
  2273. text-transform:none;
  2274. visibility:hidden;
  2275. }
  2276. #u88994_img {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:42px;
  2282. height:26px;
  2283. }
  2284. #u88994 {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:-928px;
  2288. top:752px;
  2289. width:42px;
  2290. height:26px;
  2291. display:flex;
  2292. }
  2293. #u88994 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 2px 2px 2px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u88994_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. visibility:hidden;
  2305. }
  2306. #u88995_img {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:42px;
  2312. height:26px;
  2313. }
  2314. #u88995 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:-928px;
  2318. top:712px;
  2319. width:42px;
  2320. height:26px;
  2321. display:flex;
  2322. }
  2323. #u88995 .text {
  2324. position:absolute;
  2325. align-self:center;
  2326. padding:2px 2px 2px 2px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u88995_text {
  2331. border-width:0px;
  2332. word-wrap:break-word;
  2333. text-transform:none;
  2334. visibility:hidden;
  2335. }
  2336. #u88996_img {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:42px;
  2342. height:26px;
  2343. }
  2344. #u88996 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:-928px;
  2348. top:865px;
  2349. width:42px;
  2350. height:26px;
  2351. display:flex;
  2352. }
  2353. #u88996 .text {
  2354. position:absolute;
  2355. align-self:center;
  2356. padding:2px 2px 2px 2px;
  2357. box-sizing:border-box;
  2358. width:100%;
  2359. }
  2360. #u88996_text {
  2361. border-width:0px;
  2362. word-wrap:break-word;
  2363. text-transform:none;
  2364. visibility:hidden;
  2365. }
  2366. #u88997_img {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:42px;
  2372. height:26px;
  2373. }
  2374. #u88997 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:-852px;
  2378. top:503px;
  2379. width:42px;
  2380. height:26px;
  2381. display:flex;
  2382. }
  2383. #u88997 .text {
  2384. position:absolute;
  2385. align-self:center;
  2386. padding:2px 2px 2px 2px;
  2387. box-sizing:border-box;
  2388. width:100%;
  2389. }
  2390. #u88997_text {
  2391. border-width:0px;
  2392. word-wrap:break-word;
  2393. text-transform:none;
  2394. visibility:hidden;
  2395. }
  2396. #u88998_div {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:73px;
  2402. height:50px;
  2403. background:inherit;
  2404. background-color:rgba(255, 255, 255, 0);
  2405. border:none;
  2406. border-left:0px;
  2407. border-top:0px;
  2408. border-right:0px;
  2409. border-radius:0px;
  2410. border-bottom-right-radius:0px;
  2411. border-bottom-left-radius:0px;
  2412. -moz-box-shadow:none;
  2413. -webkit-box-shadow:none;
  2414. box-shadow:none;
  2415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2416. font-weight:400;
  2417. font-style:normal;
  2418. font-size:18px;
  2419. }
  2420. #u88998 {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:346px;
  2424. top:51px;
  2425. width:73px;
  2426. height:50px;
  2427. display:flex;
  2428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2429. font-weight:400;
  2430. font-style:normal;
  2431. font-size:18px;
  2432. }
  2433. #u88998 .text {
  2434. position:absolute;
  2435. align-self:center;
  2436. padding:0px 0px 0px 0px;
  2437. box-sizing:border-box;
  2438. width:100%;
  2439. }
  2440. #u88998_text {
  2441. border-width:0px;
  2442. white-space:nowrap;
  2443. text-transform:none;
  2444. }
  2445. #u88999 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:346px;
  2449. top:101px;
  2450. width:1230px;
  2451. height:190px;
  2452. }
  2453. #u89000_img {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:248px;
  2459. height:38px;
  2460. }
  2461. #u89000 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:248px;
  2467. height:38px;
  2468. display:flex;
  2469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2470. font-weight:400;
  2471. font-style:normal;
  2472. font-size:12px;
  2473. color:#FFFFFF;
  2474. }
  2475. #u89000 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 0px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u89000_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. }
  2487. #u89001_img {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:247px;
  2493. height:38px;
  2494. }
  2495. #u89001 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:248px;
  2499. top:0px;
  2500. width:247px;
  2501. height:38px;
  2502. display:flex;
  2503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2504. font-weight:400;
  2505. font-style:normal;
  2506. font-size:12px;
  2507. color:#FFFFFF;
  2508. }
  2509. #u89001 .text {
  2510. position:absolute;
  2511. align-self:center;
  2512. padding:2px 2px 2px 0px;
  2513. box-sizing:border-box;
  2514. width:100%;
  2515. }
  2516. #u89001_text {
  2517. border-width:0px;
  2518. word-wrap:break-word;
  2519. text-transform:none;
  2520. }
  2521. #u89002_img {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:0px;
  2525. top:0px;
  2526. width:246px;
  2527. height:38px;
  2528. }
  2529. #u89002 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:495px;
  2533. top:0px;
  2534. width:246px;
  2535. height:38px;
  2536. display:flex;
  2537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2538. font-weight:400;
  2539. font-style:normal;
  2540. font-size:12px;
  2541. color:#FFFFFF;
  2542. }
  2543. #u89002 .text {
  2544. position:absolute;
  2545. align-self:center;
  2546. padding:2px 2px 2px 0px;
  2547. box-sizing:border-box;
  2548. width:100%;
  2549. }
  2550. #u89002_text {
  2551. border-width:0px;
  2552. word-wrap:break-word;
  2553. text-transform:none;
  2554. }
  2555. #u89003_img {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:248px;
  2561. height:38px;
  2562. }
  2563. #u89003 {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:741px;
  2567. top:0px;
  2568. width:248px;
  2569. height:38px;
  2570. display:flex;
  2571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:12px;
  2575. color:#FFFFFF;
  2576. }
  2577. #u89003 .text {
  2578. position:absolute;
  2579. align-self:center;
  2580. padding:2px 2px 2px 0px;
  2581. box-sizing:border-box;
  2582. width:100%;
  2583. }
  2584. #u89003_text {
  2585. border-width:0px;
  2586. word-wrap:break-word;
  2587. text-transform:none;
  2588. }
  2589. #u89004_img {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:0px;
  2593. top:0px;
  2594. width:241px;
  2595. height:38px;
  2596. }
  2597. #u89004 {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:989px;
  2601. top:0px;
  2602. width:241px;
  2603. height:38px;
  2604. display:flex;
  2605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2606. font-weight:400;
  2607. font-style:normal;
  2608. font-size:12px;
  2609. color:#FFFFFF;
  2610. }
  2611. #u89004 .text {
  2612. position:absolute;
  2613. align-self:center;
  2614. padding:2px 2px 2px 0px;
  2615. box-sizing:border-box;
  2616. width:100%;
  2617. }
  2618. #u89004_text {
  2619. border-width:0px;
  2620. word-wrap:break-word;
  2621. text-transform:none;
  2622. }
  2623. #u89005_img {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:248px;
  2629. height:38px;
  2630. }
  2631. #u89005 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:38px;
  2636. width:248px;
  2637. height:38px;
  2638. display:flex;
  2639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2640. font-weight:400;
  2641. font-style:normal;
  2642. font-size:12px;
  2643. color:#333333;
  2644. }
  2645. #u89005 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 0px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u89005_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. }
  2657. #u89006_img {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:247px;
  2663. height:38px;
  2664. }
  2665. #u89006 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:248px;
  2669. top:38px;
  2670. width:247px;
  2671. height:38px;
  2672. display:flex;
  2673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:12px;
  2677. color:#333333;
  2678. }
  2679. #u89006 .text {
  2680. position:absolute;
  2681. align-self:center;
  2682. padding:2px 2px 2px 0px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u89006_text {
  2687. border-width:0px;
  2688. word-wrap:break-word;
  2689. text-transform:none;
  2690. visibility:hidden;
  2691. }
  2692. #u89007_img {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:246px;
  2698. height:38px;
  2699. }
  2700. #u89007 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:495px;
  2704. top:38px;
  2705. width:246px;
  2706. height:38px;
  2707. display:flex;
  2708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:12px;
  2712. color:#333333;
  2713. }
  2714. #u89007 .text {
  2715. position:absolute;
  2716. align-self:center;
  2717. padding:2px 2px 2px 0px;
  2718. box-sizing:border-box;
  2719. width:100%;
  2720. }
  2721. #u89007_text {
  2722. border-width:0px;
  2723. word-wrap:break-word;
  2724. text-transform:none;
  2725. }
  2726. #u89008_img {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:248px;
  2732. height:38px;
  2733. }
  2734. #u89008 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:741px;
  2738. top:38px;
  2739. width:248px;
  2740. height:38px;
  2741. display:flex;
  2742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2743. font-weight:400;
  2744. font-style:normal;
  2745. font-size:12px;
  2746. color:#333333;
  2747. }
  2748. #u89008 .text {
  2749. position:absolute;
  2750. align-self:center;
  2751. padding:2px 2px 2px 0px;
  2752. box-sizing:border-box;
  2753. width:100%;
  2754. }
  2755. #u89008_text {
  2756. border-width:0px;
  2757. word-wrap:break-word;
  2758. text-transform:none;
  2759. }
  2760. #u89009_img {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:241px;
  2766. height:38px;
  2767. }
  2768. #u89009 {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:989px;
  2772. top:38px;
  2773. width:241px;
  2774. height:38px;
  2775. display:flex;
  2776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2777. font-weight:400;
  2778. font-style:normal;
  2779. font-size:12px;
  2780. color:#0089FE;
  2781. }
  2782. #u89009 .text {
  2783. position:absolute;
  2784. align-self:center;
  2785. padding:2px 2px 2px 0px;
  2786. box-sizing:border-box;
  2787. width:100%;
  2788. }
  2789. #u89009_text {
  2790. border-width:0px;
  2791. word-wrap:break-word;
  2792. text-transform:none;
  2793. }
  2794. #u89010_img {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:248px;
  2800. height:38px;
  2801. }
  2802. #u89010 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:76px;
  2807. width:248px;
  2808. height:38px;
  2809. display:flex;
  2810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2811. font-weight:400;
  2812. font-style:normal;
  2813. font-size:12px;
  2814. color:#333333;
  2815. }
  2816. #u89010 .text {
  2817. position:absolute;
  2818. align-self:center;
  2819. padding:2px 2px 2px 0px;
  2820. box-sizing:border-box;
  2821. width:100%;
  2822. }
  2823. #u89010_text {
  2824. border-width:0px;
  2825. word-wrap:break-word;
  2826. text-transform:none;
  2827. }
  2828. #u89011_img {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:247px;
  2834. height:38px;
  2835. }
  2836. #u89011 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:248px;
  2840. top:76px;
  2841. width:247px;
  2842. height:38px;
  2843. display:flex;
  2844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2845. font-weight:400;
  2846. font-style:normal;
  2847. font-size:12px;
  2848. color:#333333;
  2849. }
  2850. #u89011 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:2px 2px 2px 0px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u89011_text {
  2858. border-width:0px;
  2859. word-wrap:break-word;
  2860. text-transform:none;
  2861. visibility:hidden;
  2862. }
  2863. #u89012_img {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:246px;
  2869. height:38px;
  2870. }
  2871. #u89012 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:495px;
  2875. top:76px;
  2876. width:246px;
  2877. height:38px;
  2878. display:flex;
  2879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:12px;
  2883. color:#333333;
  2884. }
  2885. #u89012 .text {
  2886. position:absolute;
  2887. align-self:center;
  2888. padding:2px 2px 2px 0px;
  2889. box-sizing:border-box;
  2890. width:100%;
  2891. }
  2892. #u89012_text {
  2893. border-width:0px;
  2894. word-wrap:break-word;
  2895. text-transform:none;
  2896. }
  2897. #u89013_img {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:0px;
  2901. top:0px;
  2902. width:248px;
  2903. height:38px;
  2904. }
  2905. #u89013 {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:741px;
  2909. top:76px;
  2910. width:248px;
  2911. height:38px;
  2912. display:flex;
  2913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2914. font-weight:400;
  2915. font-style:normal;
  2916. font-size:12px;
  2917. color:#333333;
  2918. }
  2919. #u89013 .text {
  2920. position:absolute;
  2921. align-self:center;
  2922. padding:2px 2px 2px 0px;
  2923. box-sizing:border-box;
  2924. width:100%;
  2925. }
  2926. #u89013_text {
  2927. border-width:0px;
  2928. word-wrap:break-word;
  2929. text-transform:none;
  2930. }
  2931. #u89014_img {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:0px;
  2935. top:0px;
  2936. width:241px;
  2937. height:38px;
  2938. }
  2939. #u89014 {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:989px;
  2943. top:76px;
  2944. width:241px;
  2945. height:38px;
  2946. display:flex;
  2947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2948. font-weight:400;
  2949. font-style:normal;
  2950. font-size:12px;
  2951. color:#0089FE;
  2952. }
  2953. #u89014 .text {
  2954. position:absolute;
  2955. align-self:center;
  2956. padding:2px 2px 2px 0px;
  2957. box-sizing:border-box;
  2958. width:100%;
  2959. }
  2960. #u89014_text {
  2961. border-width:0px;
  2962. word-wrap:break-word;
  2963. text-transform:none;
  2964. }
  2965. #u89015_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:248px;
  2971. height:38px;
  2972. }
  2973. #u89015 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:114px;
  2978. width:248px;
  2979. height:38px;
  2980. display:flex;
  2981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. font-size:12px;
  2985. color:#333333;
  2986. }
  2987. #u89015 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 0px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u89015_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. }
  2999. #u89016_img {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:247px;
  3005. height:38px;
  3006. }
  3007. #u89016 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:248px;
  3011. top:114px;
  3012. width:247px;
  3013. height:38px;
  3014. display:flex;
  3015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3016. font-weight:400;
  3017. font-style:normal;
  3018. font-size:12px;
  3019. color:#333333;
  3020. }
  3021. #u89016 .text {
  3022. position:absolute;
  3023. align-self:center;
  3024. padding:2px 2px 2px 0px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u89016_text {
  3029. border-width:0px;
  3030. word-wrap:break-word;
  3031. text-transform:none;
  3032. visibility:hidden;
  3033. }
  3034. #u89017_img {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:246px;
  3040. height:38px;
  3041. }
  3042. #u89017 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:495px;
  3046. top:114px;
  3047. width:246px;
  3048. height:38px;
  3049. display:flex;
  3050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:12px;
  3054. color:#333333;
  3055. }
  3056. #u89017 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 0px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u89017_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. }
  3068. #u89018_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:248px;
  3074. height:38px;
  3075. }
  3076. #u89018 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:741px;
  3080. top:114px;
  3081. width:248px;
  3082. height:38px;
  3083. display:flex;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:12px;
  3088. color:#333333;
  3089. }
  3090. #u89018 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 2px 2px 0px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u89018_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. }
  3102. #u89019_img {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:241px;
  3108. height:38px;
  3109. }
  3110. #u89019 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:989px;
  3114. top:114px;
  3115. width:241px;
  3116. height:38px;
  3117. display:flex;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. font-size:12px;
  3122. color:#0089FE;
  3123. }
  3124. #u89019 .text {
  3125. position:absolute;
  3126. align-self:center;
  3127. padding:2px 2px 2px 0px;
  3128. box-sizing:border-box;
  3129. width:100%;
  3130. }
  3131. #u89019_text {
  3132. border-width:0px;
  3133. word-wrap:break-word;
  3134. text-transform:none;
  3135. }
  3136. #u89020_img {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:248px;
  3142. height:38px;
  3143. }
  3144. #u89020 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:152px;
  3149. width:248px;
  3150. height:38px;
  3151. display:flex;
  3152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3153. font-weight:400;
  3154. font-style:normal;
  3155. font-size:12px;
  3156. color:#333333;
  3157. }
  3158. #u89020 .text {
  3159. position:absolute;
  3160. align-self:center;
  3161. padding:2px 2px 2px 0px;
  3162. box-sizing:border-box;
  3163. width:100%;
  3164. }
  3165. #u89020_text {
  3166. border-width:0px;
  3167. word-wrap:break-word;
  3168. text-transform:none;
  3169. }
  3170. #u89021_img {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:247px;
  3176. height:38px;
  3177. }
  3178. #u89021 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:248px;
  3182. top:152px;
  3183. width:247px;
  3184. height:38px;
  3185. display:flex;
  3186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. font-size:12px;
  3190. color:#333333;
  3191. }
  3192. #u89021 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:2px 2px 2px 0px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u89021_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. visibility:hidden;
  3204. }
  3205. #u89022_img {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:246px;
  3211. height:38px;
  3212. }
  3213. #u89022 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:495px;
  3217. top:152px;
  3218. width:246px;
  3219. height:38px;
  3220. display:flex;
  3221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:12px;
  3225. color:#333333;
  3226. }
  3227. #u89022 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 0px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u89022_text {
  3235. border-width:0px;
  3236. word-wrap:break-word;
  3237. text-transform:none;
  3238. }
  3239. #u89023_img {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:248px;
  3245. height:38px;
  3246. }
  3247. #u89023 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:741px;
  3251. top:152px;
  3252. width:248px;
  3253. height:38px;
  3254. display:flex;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:12px;
  3259. color:#333333;
  3260. }
  3261. #u89023 .text {
  3262. position:absolute;
  3263. align-self:center;
  3264. padding:2px 2px 2px 0px;
  3265. box-sizing:border-box;
  3266. width:100%;
  3267. }
  3268. #u89023_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. }
  3273. #u89024_img {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:241px;
  3279. height:38px;
  3280. }
  3281. #u89024 {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:989px;
  3285. top:152px;
  3286. width:241px;
  3287. height:38px;
  3288. display:flex;
  3289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3290. font-weight:400;
  3291. font-style:normal;
  3292. font-size:12px;
  3293. color:#0089FE;
  3294. }
  3295. #u89024 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 0px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u89024_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. }
  3307. #u89025_img {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:42px;
  3313. height:26px;
  3314. }
  3315. #u89025 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:697px;
  3319. top:144px;
  3320. width:42px;
  3321. height:26px;
  3322. display:flex;
  3323. }
  3324. #u89025 .text {
  3325. position:absolute;
  3326. align-self:center;
  3327. padding:2px 2px 2px 2px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u89025_text {
  3332. border-width:0px;
  3333. word-wrap:break-word;
  3334. text-transform:none;
  3335. visibility:hidden;
  3336. }
  3337. #u89026_img {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:42px;
  3343. height:26px;
  3344. }
  3345. #u89026 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:697px;
  3349. top:220px;
  3350. width:42px;
  3351. height:26px;
  3352. display:flex;
  3353. }
  3354. #u89026 .text {
  3355. position:absolute;
  3356. align-self:center;
  3357. padding:2px 2px 2px 2px;
  3358. box-sizing:border-box;
  3359. width:100%;
  3360. }
  3361. #u89026_text {
  3362. border-width:0px;
  3363. word-wrap:break-word;
  3364. text-transform:none;
  3365. visibility:hidden;
  3366. }
  3367. #u89027_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:42px;
  3373. height:26px;
  3374. }
  3375. #u89027 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:697px;
  3379. top:182px;
  3380. width:42px;
  3381. height:26px;
  3382. display:flex;
  3383. }
  3384. #u89027 .text {
  3385. position:absolute;
  3386. align-self:center;
  3387. padding:2px 2px 2px 2px;
  3388. box-sizing:border-box;
  3389. width:100%;
  3390. }
  3391. #u89027_text {
  3392. border-width:0px;
  3393. word-wrap:break-word;
  3394. text-transform:none;
  3395. visibility:hidden;
  3396. }
  3397. #u89028_img {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:42px;
  3403. height:26px;
  3404. }
  3405. #u89028 {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:697px;
  3409. top:258px;
  3410. width:42px;
  3411. height:26px;
  3412. display:flex;
  3413. }
  3414. #u89028 .text {
  3415. position:absolute;
  3416. align-self:center;
  3417. padding:2px 2px 2px 2px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u89028_text {
  3422. border-width:0px;
  3423. word-wrap:break-word;
  3424. text-transform:none;
  3425. visibility:hidden;
  3426. }
  3427. #u89030_div {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:1480px;
  3433. height:1200px;
  3434. background:inherit;
  3435. background-color:rgba(242, 242, 242, 1);
  3436. border:none;
  3437. border-radius:0px;
  3438. -moz-box-shadow:none;
  3439. -webkit-box-shadow:none;
  3440. box-shadow:none;
  3441. }
  3442. #u89030 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:1792px;
  3446. top:50px;
  3447. width:1480px;
  3448. height:1200px;
  3449. display:flex;
  3450. }
  3451. #u89030 .text {
  3452. position:absolute;
  3453. align-self:center;
  3454. padding:2px 2px 2px 2px;
  3455. box-sizing:border-box;
  3456. width:100%;
  3457. }
  3458. #u89030_text {
  3459. border-width:0px;
  3460. word-wrap:break-word;
  3461. text-transform:none;
  3462. visibility:hidden;
  3463. }
  3464. #u89031_div {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:0px;
  3468. top:0px;
  3469. width:129px;
  3470. height:22px;
  3471. background:inherit;
  3472. background-color:rgba(255, 255, 255, 0);
  3473. border:none;
  3474. border-radius:0px;
  3475. -moz-box-shadow:none;
  3476. -webkit-box-shadow:none;
  3477. box-shadow:none;
  3478. font-size:16px;
  3479. color:#FFFFFF;
  3480. }
  3481. #u89031 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:1721px;
  3485. top:14px;
  3486. width:129px;
  3487. height:22px;
  3488. display:flex;
  3489. font-size:16px;
  3490. color:#FFFFFF;
  3491. }
  3492. #u89031 .text {
  3493. position:absolute;
  3494. align-self:flex-start;
  3495. padding:0px 0px 0px 0px;
  3496. box-sizing:border-box;
  3497. width:100%;
  3498. }
  3499. #u89031_text {
  3500. border-width:0px;
  3501. white-space:nowrap;
  3502. text-transform:none;
  3503. }
  3504. #u89032_div {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:1600px;
  3510. height:50px;
  3511. background:inherit;
  3512. background-color:rgba(30, 42, 68, 1);
  3513. border:none;
  3514. border-radius:0px;
  3515. -moz-box-shadow:none;
  3516. -webkit-box-shadow:none;
  3517. box-shadow:none;
  3518. color:#AFB3B6;
  3519. }
  3520. #u89032 {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:1672px;
  3524. top:0px;
  3525. width:1600px;
  3526. height:50px;
  3527. display:flex;
  3528. color:#AFB3B6;
  3529. }
  3530. #u89032 .text {
  3531. position:absolute;
  3532. align-self:center;
  3533. padding:2px 2px 2px 2px;
  3534. box-sizing:border-box;
  3535. width:100%;
  3536. }
  3537. #u89032_text {
  3538. border-width:0px;
  3539. word-wrap:break-word;
  3540. text-transform:none;
  3541. visibility:hidden;
  3542. }
  3543. #u89033 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:0px;
  3549. height:0px;
  3550. }
  3551. #u89034_img {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:31px;
  3557. height:31px;
  3558. }
  3559. #u89034 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:1691px;
  3563. top:10px;
  3564. width:31px;
  3565. height:31px;
  3566. display:flex;
  3567. }
  3568. #u89034 .text {
  3569. position:absolute;
  3570. align-self:center;
  3571. padding:2px 2px 2px 2px;
  3572. box-sizing:border-box;
  3573. width:100%;
  3574. }
  3575. #u89034_text {
  3576. border-width:0px;
  3577. word-wrap:break-word;
  3578. text-transform:none;
  3579. }
  3580. #u89035_div {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:0px;
  3584. top:0px;
  3585. width:161px;
  3586. height:22px;
  3587. background:inherit;
  3588. background-color:rgba(255, 255, 255, 0);
  3589. border:none;
  3590. border-radius:0px;
  3591. -moz-box-shadow:none;
  3592. -webkit-box-shadow:none;
  3593. box-shadow:none;
  3594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:16px;
  3598. color:#FFFFFF;
  3599. }
  3600. #u89035 {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:1734px;
  3604. top:14px;
  3605. width:161px;
  3606. height:22px;
  3607. display:flex;
  3608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3609. font-weight:400;
  3610. font-style:normal;
  3611. font-size:16px;
  3612. color:#FFFFFF;
  3613. }
  3614. #u89035 .text {
  3615. position:absolute;
  3616. align-self:flex-start;
  3617. padding:0px 0px 0px 0px;
  3618. box-sizing:border-box;
  3619. width:100%;
  3620. }
  3621. #u89035_text {
  3622. border-width:0px;
  3623. white-space:nowrap;
  3624. text-transform:none;
  3625. }
  3626. #u89036_div {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:0px;
  3630. top:0px;
  3631. width:120px;
  3632. height:1200px;
  3633. background:inherit;
  3634. background-color:rgba(30, 42, 68, 1);
  3635. border:none;
  3636. border-radius:0px;
  3637. -moz-box-shadow:none;
  3638. -webkit-box-shadow:none;
  3639. box-shadow:none;
  3640. color:#AFB3B6;
  3641. }
  3642. #u89036 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:1672px;
  3646. top:47px;
  3647. width:120px;
  3648. height:1200px;
  3649. display:flex;
  3650. color:#AFB3B6;
  3651. }
  3652. #u89036 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:2px 2px 2px 2px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. #u89036_text {
  3660. border-width:0px;
  3661. word-wrap:break-word;
  3662. text-transform:none;
  3663. visibility:hidden;
  3664. }
  3665. #u89037 {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:0px;
  3671. height:0px;
  3672. }
  3673. #u89038_input {
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:214px;
  3678. height:27px;
  3679. padding:2px 2px 2px 2px;
  3680. font-family:'ArialMT', 'Arial', sans-serif;
  3681. font-weight:400;
  3682. font-style:normal;
  3683. font-size:14px;
  3684. letter-spacing:normal;
  3685. color:#FFFFFF;
  3686. vertical-align:none;
  3687. text-align:left;
  3688. text-transform:none;
  3689. background-color:transparent;
  3690. border-color:transparent;
  3691. }
  3692. #u89038_input.disabled {
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:214px;
  3697. height:27px;
  3698. padding:2px 2px 2px 2px;
  3699. font-family:'ArialMT', 'Arial', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:14px;
  3703. letter-spacing:normal;
  3704. color:#FFFFFF;
  3705. vertical-align:none;
  3706. text-align:left;
  3707. text-transform:none;
  3708. background-color:transparent;
  3709. border-color:transparent;
  3710. }
  3711. #u89038_div {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:0px;
  3715. top:0px;
  3716. width:214px;
  3717. height:27px;
  3718. background:inherit;
  3719. background-color:rgba(255, 255, 255, 0);
  3720. border:none;
  3721. border-radius:0px;
  3722. -moz-box-shadow:none;
  3723. -webkit-box-shadow:none;
  3724. box-shadow:none;
  3725. font-size:14px;
  3726. color:#FFFFFF;
  3727. }
  3728. #u89038 {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:2761px;
  3732. top:10px;
  3733. width:214px;
  3734. height:27px;
  3735. display:flex;
  3736. font-size:14px;
  3737. color:#FFFFFF;
  3738. }
  3739. #u89038 .text {
  3740. position:absolute;
  3741. align-self:flex-start;
  3742. padding:2px 2px 2px 2px;
  3743. box-sizing:border-box;
  3744. width:100%;
  3745. }
  3746. #u89038_div.disabled {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:214px;
  3752. height:27px;
  3753. background:inherit;
  3754. background-color:rgba(240, 240, 240, 1);
  3755. border:none;
  3756. border-radius:0px;
  3757. -moz-box-shadow:none;
  3758. -webkit-box-shadow:none;
  3759. box-shadow:none;
  3760. font-size:14px;
  3761. color:#FFFFFF;
  3762. }
  3763. #u89038.disabled {
  3764. }
  3765. .u89038_input_option {
  3766. font-size:14px;
  3767. }
  3768. #u89039_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:22px;
  3774. height:22px;
  3775. }
  3776. #u89039 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:2734px;
  3780. top:15px;
  3781. width:22px;
  3782. height:22px;
  3783. display:flex;
  3784. }
  3785. #u89039 .text {
  3786. position:absolute;
  3787. align-self:center;
  3788. padding:2px 2px 2px 2px;
  3789. box-sizing:border-box;
  3790. width:100%;
  3791. }
  3792. #u89039_text {
  3793. border-width:0px;
  3794. word-wrap:break-word;
  3795. text-transform:none;
  3796. visibility:hidden;
  3797. }
  3798. #u89040_div {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:100px;
  3804. height:24px;
  3805. background:inherit;
  3806. background-color:rgba(242, 242, 242, 0.2);
  3807. border:none;
  3808. border-radius:25px;
  3809. -moz-box-shadow:none;
  3810. -webkit-box-shadow:none;
  3811. box-shadow:none;
  3812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3813. font-weight:400;
  3814. font-style:normal;
  3815. color:#FFFFFF;
  3816. text-align:center;
  3817. }
  3818. #u89040 {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:3022px;
  3822. top:12px;
  3823. width:100px;
  3824. height:24px;
  3825. display:flex;
  3826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3827. font-weight:400;
  3828. font-style:normal;
  3829. color:#FFFFFF;
  3830. text-align:center;
  3831. }
  3832. #u89040 .text {
  3833. position:absolute;
  3834. align-self:center;
  3835. padding:0px 0px 0px 0px;
  3836. box-sizing:border-box;
  3837. width:100%;
  3838. }
  3839. #u89040_text {
  3840. border-width:0px;
  3841. word-wrap:break-word;
  3842. text-transform:none;
  3843. }
  3844. #u89041_div {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:0px;
  3848. top:0px;
  3849. width:120px;
  3850. height:24px;
  3851. background:inherit;
  3852. background-color:rgba(242, 242, 242, 0.2);
  3853. border:none;
  3854. border-radius:25px;
  3855. -moz-box-shadow:none;
  3856. -webkit-box-shadow:none;
  3857. box-shadow:none;
  3858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. color:#FFFFFF;
  3862. text-align:center;
  3863. }
  3864. #u89041 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:3132px;
  3868. top:12px;
  3869. width:120px;
  3870. height:24px;
  3871. display:flex;
  3872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. color:#FFFFFF;
  3876. text-align:center;
  3877. }
  3878. #u89041 .text {
  3879. position:absolute;
  3880. align-self:center;
  3881. padding:0px 0px 0px 0px;
  3882. box-sizing:border-box;
  3883. width:100%;
  3884. }
  3885. #u89041_text {
  3886. border-width:0px;
  3887. word-wrap:break-word;
  3888. text-transform:none;
  3889. }
  3890. #u89042 {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:0px;
  3896. height:0px;
  3897. }
  3898. #u89043_div {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:0px;
  3903. width:33px;
  3904. height:22px;
  3905. background:inherit;
  3906. background-color:rgba(255, 255, 255, 0);
  3907. border:none;
  3908. border-radius:0px;
  3909. -moz-box-shadow:none;
  3910. -webkit-box-shadow:none;
  3911. box-shadow:none;
  3912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3913. font-weight:400;
  3914. font-style:normal;
  3915. font-size:16px;
  3916. color:#FFFFFF;
  3917. }
  3918. #u89043 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:1711px;
  3922. top:71px;
  3923. width:33px;
  3924. height:22px;
  3925. display:flex;
  3926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3927. font-weight:400;
  3928. font-style:normal;
  3929. font-size:16px;
  3930. color:#FFFFFF;
  3931. }
  3932. #u89043 .text {
  3933. position:absolute;
  3934. align-self:flex-start;
  3935. padding:0px 0px 0px 0px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u89043_text {
  3940. border-width:0px;
  3941. white-space:nowrap;
  3942. text-transform:none;
  3943. }
  3944. #u89044_img {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:0px;
  3948. top:0px;
  3949. width:14px;
  3950. height:14px;
  3951. }
  3952. #u89044 {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:1692px;
  3956. top:75px;
  3957. width:14px;
  3958. height:14px;
  3959. display:flex;
  3960. }
  3961. #u89044 .text {
  3962. position:absolute;
  3963. align-self:center;
  3964. padding:2px 2px 2px 2px;
  3965. box-sizing:border-box;
  3966. width:100%;
  3967. }
  3968. #u89044_text {
  3969. border-width:0px;
  3970. word-wrap:break-word;
  3971. text-transform:none;
  3972. visibility:hidden;
  3973. }
  3974. #u89045 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:0px;
  3980. height:0px;
  3981. }
  3982. #u89046_div {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:33px;
  3988. height:22px;
  3989. background:inherit;
  3990. background-color:rgba(255, 255, 255, 0);
  3991. border:none;
  3992. border-radius:0px;
  3993. -moz-box-shadow:none;
  3994. -webkit-box-shadow:none;
  3995. box-shadow:none;
  3996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3997. font-weight:400;
  3998. font-style:normal;
  3999. font-size:16px;
  4000. color:#FFFFFF;
  4001. }
  4002. #u89046 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:1711px;
  4006. top:147px;
  4007. width:33px;
  4008. height:22px;
  4009. display:flex;
  4010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4011. font-weight:400;
  4012. font-style:normal;
  4013. font-size:16px;
  4014. color:#FFFFFF;
  4015. }
  4016. #u89046 .text {
  4017. position:absolute;
  4018. align-self:flex-start;
  4019. padding:0px 0px 0px 0px;
  4020. box-sizing:border-box;
  4021. width:100%;
  4022. }
  4023. #u89046_text {
  4024. border-width:0px;
  4025. white-space:nowrap;
  4026. text-transform:none;
  4027. }
  4028. #u89047_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:14px;
  4034. height:14px;
  4035. }
  4036. #u89047 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:1692px;
  4040. top:151px;
  4041. width:14px;
  4042. height:14px;
  4043. display:flex;
  4044. }
  4045. #u89047 .text {
  4046. position:absolute;
  4047. align-self:center;
  4048. padding:2px 2px 2px 2px;
  4049. box-sizing:border-box;
  4050. width:100%;
  4051. }
  4052. #u89047_text {
  4053. border-width:0px;
  4054. word-wrap:break-word;
  4055. text-transform:none;
  4056. visibility:hidden;
  4057. }
  4058. #u89048 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:0px;
  4064. height:0px;
  4065. }
  4066. #u89049_div {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:33px;
  4072. height:22px;
  4073. background:inherit;
  4074. background-color:rgba(255, 255, 255, 0);
  4075. border:none;
  4076. border-radius:0px;
  4077. -moz-box-shadow:none;
  4078. -webkit-box-shadow:none;
  4079. box-shadow:none;
  4080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4081. font-weight:400;
  4082. font-style:normal;
  4083. font-size:16px;
  4084. color:#FFFFFF;
  4085. }
  4086. #u89049 {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:1711px;
  4090. top:399px;
  4091. width:33px;
  4092. height:22px;
  4093. display:flex;
  4094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4095. font-weight:400;
  4096. font-style:normal;
  4097. font-size:16px;
  4098. color:#FFFFFF;
  4099. }
  4100. #u89049 .text {
  4101. position:absolute;
  4102. align-self:flex-start;
  4103. padding:0px 0px 0px 0px;
  4104. box-sizing:border-box;
  4105. width:100%;
  4106. }
  4107. #u89049_text {
  4108. border-width:0px;
  4109. white-space:nowrap;
  4110. text-transform:none;
  4111. }
  4112. #u89050_img {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:0px;
  4116. top:0px;
  4117. width:14px;
  4118. height:14px;
  4119. }
  4120. #u89050 {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:1692px;
  4124. top:403px;
  4125. width:14px;
  4126. height:14px;
  4127. display:flex;
  4128. }
  4129. #u89050 .text {
  4130. position:absolute;
  4131. align-self:center;
  4132. padding:2px 2px 2px 2px;
  4133. box-sizing:border-box;
  4134. width:100%;
  4135. }
  4136. #u89050_text {
  4137. border-width:0px;
  4138. word-wrap:break-word;
  4139. text-transform:none;
  4140. visibility:hidden;
  4141. }
  4142. #u89051 {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:0px;
  4146. top:0px;
  4147. width:0px;
  4148. height:0px;
  4149. }
  4150. #u89052_div {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:0px;
  4154. top:0px;
  4155. width:49px;
  4156. height:22px;
  4157. background:inherit;
  4158. background-color:rgba(255, 255, 255, 0);
  4159. border:none;
  4160. border-radius:0px;
  4161. -moz-box-shadow:none;
  4162. -webkit-box-shadow:none;
  4163. box-shadow:none;
  4164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4165. font-weight:400;
  4166. font-style:normal;
  4167. font-size:16px;
  4168. color:#FFFFFF;
  4169. }
  4170. #u89052 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:1711px;
  4174. top:109px;
  4175. width:49px;
  4176. height:22px;
  4177. display:flex;
  4178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4179. font-weight:400;
  4180. font-style:normal;
  4181. font-size:16px;
  4182. color:#FFFFFF;
  4183. }
  4184. #u89052 .text {
  4185. position:absolute;
  4186. align-self:flex-start;
  4187. padding:0px 0px 0px 0px;
  4188. box-sizing:border-box;
  4189. width:100%;
  4190. }
  4191. #u89052_text {
  4192. border-width:0px;
  4193. white-space:nowrap;
  4194. text-transform:none;
  4195. }
  4196. #u89053_img {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:14px;
  4202. height:14px;
  4203. }
  4204. #u89053 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:1692px;
  4208. top:113px;
  4209. width:14px;
  4210. height:14px;
  4211. display:flex;
  4212. }
  4213. #u89053 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:2px 2px 2px 2px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u89053_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. visibility:hidden;
  4225. }
  4226. #u89054 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:0px;
  4232. height:0px;
  4233. }
  4234. #u89055_div {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:0px;
  4238. top:0px;
  4239. width:33px;
  4240. height:22px;
  4241. background:inherit;
  4242. background-color:rgba(255, 255, 255, 0);
  4243. border:none;
  4244. border-radius:0px;
  4245. -moz-box-shadow:none;
  4246. -webkit-box-shadow:none;
  4247. box-shadow:none;
  4248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4249. font-weight:400;
  4250. font-style:normal;
  4251. font-size:16px;
  4252. color:#FFFFFF;
  4253. }
  4254. #u89055 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:1711px;
  4258. top:441px;
  4259. width:33px;
  4260. height:22px;
  4261. display:flex;
  4262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4263. font-weight:400;
  4264. font-style:normal;
  4265. font-size:16px;
  4266. color:#FFFFFF;
  4267. }
  4268. #u89055 .text {
  4269. position:absolute;
  4270. align-self:flex-start;
  4271. padding:0px 0px 0px 0px;
  4272. box-sizing:border-box;
  4273. width:100%;
  4274. }
  4275. #u89055_text {
  4276. border-width:0px;
  4277. white-space:nowrap;
  4278. text-transform:none;
  4279. }
  4280. #u89056_img {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:14px;
  4286. height:14px;
  4287. }
  4288. #u89056 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:1692px;
  4292. top:445px;
  4293. width:14px;
  4294. height:14px;
  4295. display:flex;
  4296. }
  4297. #u89056 .text {
  4298. position:absolute;
  4299. align-self:center;
  4300. padding:2px 2px 2px 2px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u89056_text {
  4305. border-width:0px;
  4306. word-wrap:break-word;
  4307. text-transform:none;
  4308. visibility:hidden;
  4309. }
  4310. #u89057 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:0px;
  4314. top:0px;
  4315. width:0px;
  4316. height:0px;
  4317. }
  4318. #u89058_div {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:33px;
  4324. height:22px;
  4325. background:inherit;
  4326. background-color:rgba(255, 255, 255, 0);
  4327. border:none;
  4328. border-radius:0px;
  4329. -moz-box-shadow:none;
  4330. -webkit-box-shadow:none;
  4331. box-shadow:none;
  4332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4333. font-weight:400;
  4334. font-style:normal;
  4335. font-size:16px;
  4336. color:#FFFFFF;
  4337. }
  4338. #u89058 {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:1711px;
  4342. top:315px;
  4343. width:33px;
  4344. height:22px;
  4345. display:flex;
  4346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4347. font-weight:400;
  4348. font-style:normal;
  4349. font-size:16px;
  4350. color:#FFFFFF;
  4351. }
  4352. #u89058 .text {
  4353. position:absolute;
  4354. align-self:flex-start;
  4355. padding:0px 0px 0px 0px;
  4356. box-sizing:border-box;
  4357. width:100%;
  4358. }
  4359. #u89058_text {
  4360. border-width:0px;
  4361. white-space:nowrap;
  4362. text-transform:none;
  4363. }
  4364. #u89059_img {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:14px;
  4370. height:14px;
  4371. }
  4372. #u89059 {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:1692px;
  4376. top:319px;
  4377. width:14px;
  4378. height:14px;
  4379. display:flex;
  4380. }
  4381. #u89059 .text {
  4382. position:absolute;
  4383. align-self:center;
  4384. padding:2px 2px 2px 2px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u89059_text {
  4389. border-width:0px;
  4390. word-wrap:break-word;
  4391. text-transform:none;
  4392. visibility:hidden;
  4393. }
  4394. #u89060 {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:0px;
  4398. top:0px;
  4399. width:0px;
  4400. height:0px;
  4401. }
  4402. #u89061_div {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:0px;
  4406. top:0px;
  4407. width:33px;
  4408. height:22px;
  4409. background:inherit;
  4410. background-color:rgba(255, 255, 255, 0);
  4411. border:none;
  4412. border-radius:0px;
  4413. -moz-box-shadow:none;
  4414. -webkit-box-shadow:none;
  4415. box-shadow:none;
  4416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4417. font-weight:400;
  4418. font-style:normal;
  4419. font-size:16px;
  4420. color:#FFFFFF;
  4421. }
  4422. #u89061 {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:1711px;
  4426. top:189px;
  4427. width:33px;
  4428. height:22px;
  4429. display:flex;
  4430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. font-size:16px;
  4434. color:#FFFFFF;
  4435. }
  4436. #u89061 .text {
  4437. position:absolute;
  4438. align-self:flex-start;
  4439. padding:0px 0px 0px 0px;
  4440. box-sizing:border-box;
  4441. width:100%;
  4442. }
  4443. #u89061_text {
  4444. border-width:0px;
  4445. white-space:nowrap;
  4446. text-transform:none;
  4447. }
  4448. #u89062_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:14px;
  4454. height:14px;
  4455. }
  4456. #u89062 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:1692px;
  4460. top:193px;
  4461. width:14px;
  4462. height:14px;
  4463. display:flex;
  4464. }
  4465. #u89062 .text {
  4466. position:absolute;
  4467. align-self:center;
  4468. padding:2px 2px 2px 2px;
  4469. box-sizing:border-box;
  4470. width:100%;
  4471. }
  4472. #u89062_text {
  4473. border-width:0px;
  4474. word-wrap:break-word;
  4475. text-transform:none;
  4476. visibility:hidden;
  4477. }
  4478. #u89063 {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:0px;
  4482. top:0px;
  4483. width:0px;
  4484. height:0px;
  4485. }
  4486. #u89064_div {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:33px;
  4492. height:22px;
  4493. background:inherit;
  4494. background-color:rgba(255, 255, 255, 0);
  4495. border:none;
  4496. border-radius:0px;
  4497. -moz-box-shadow:none;
  4498. -webkit-box-shadow:none;
  4499. box-shadow:none;
  4500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. font-size:16px;
  4504. color:#FFFFFF;
  4505. }
  4506. #u89064 {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:1711px;
  4510. top:357px;
  4511. width:33px;
  4512. height:22px;
  4513. display:flex;
  4514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4515. font-weight:400;
  4516. font-style:normal;
  4517. font-size:16px;
  4518. color:#FFFFFF;
  4519. }
  4520. #u89064 .text {
  4521. position:absolute;
  4522. align-self:flex-start;
  4523. padding:0px 0px 0px 0px;
  4524. box-sizing:border-box;
  4525. width:100%;
  4526. }
  4527. #u89064_text {
  4528. border-width:0px;
  4529. white-space:nowrap;
  4530. text-transform:none;
  4531. }
  4532. #u89065_img {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:0px;
  4536. top:0px;
  4537. width:14px;
  4538. height:14px;
  4539. }
  4540. #u89065 {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:1692px;
  4544. top:361px;
  4545. width:14px;
  4546. height:14px;
  4547. display:flex;
  4548. }
  4549. #u89065 .text {
  4550. position:absolute;
  4551. align-self:center;
  4552. padding:2px 2px 2px 2px;
  4553. box-sizing:border-box;
  4554. width:100%;
  4555. }
  4556. #u89065_text {
  4557. border-width:0px;
  4558. word-wrap:break-word;
  4559. text-transform:none;
  4560. visibility:hidden;
  4561. }
  4562. #u89066 {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:0px;
  4566. top:0px;
  4567. width:0px;
  4568. height:0px;
  4569. }
  4570. #u89067_div {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:0px;
  4575. width:33px;
  4576. height:22px;
  4577. background:inherit;
  4578. background-color:rgba(255, 255, 255, 0);
  4579. border:none;
  4580. border-radius:0px;
  4581. -moz-box-shadow:none;
  4582. -webkit-box-shadow:none;
  4583. box-shadow:none;
  4584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:16px;
  4588. color:#FFFFFF;
  4589. }
  4590. #u89067 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:1711px;
  4594. top:483px;
  4595. width:33px;
  4596. height:22px;
  4597. display:flex;
  4598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4599. font-weight:400;
  4600. font-style:normal;
  4601. font-size:16px;
  4602. color:#FFFFFF;
  4603. }
  4604. #u89067 .text {
  4605. position:absolute;
  4606. align-self:flex-start;
  4607. padding:0px 0px 0px 0px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u89067_text {
  4612. border-width:0px;
  4613. white-space:nowrap;
  4614. text-transform:none;
  4615. }
  4616. #u89068_img {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:14px;
  4622. height:14px;
  4623. }
  4624. #u89068 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:1692px;
  4628. top:487px;
  4629. width:14px;
  4630. height:14px;
  4631. display:flex;
  4632. }
  4633. #u89068 .text {
  4634. position:absolute;
  4635. align-self:center;
  4636. padding:2px 2px 2px 2px;
  4637. box-sizing:border-box;
  4638. width:100%;
  4639. }
  4640. #u89068_text {
  4641. border-width:0px;
  4642. word-wrap:break-word;
  4643. text-transform:none;
  4644. visibility:hidden;
  4645. }
  4646. #u89069 {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:0px;
  4651. width:0px;
  4652. height:0px;
  4653. }
  4654. #u89070_div {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:33px;
  4660. height:22px;
  4661. background:inherit;
  4662. background-color:rgba(255, 255, 255, 0);
  4663. border:none;
  4664. border-radius:0px;
  4665. -moz-box-shadow:none;
  4666. -webkit-box-shadow:none;
  4667. box-shadow:none;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:16px;
  4672. color:#FFFFFF;
  4673. }
  4674. #u89070 {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:1711px;
  4678. top:525px;
  4679. width:33px;
  4680. height:22px;
  4681. display:flex;
  4682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. font-size:16px;
  4686. color:#FFFFFF;
  4687. }
  4688. #u89070 .text {
  4689. position:absolute;
  4690. align-self:flex-start;
  4691. padding:0px 0px 0px 0px;
  4692. box-sizing:border-box;
  4693. width:100%;
  4694. }
  4695. #u89070_text {
  4696. border-width:0px;
  4697. white-space:nowrap;
  4698. text-transform:none;
  4699. }
  4700. #u89071_img {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:14px;
  4706. height:14px;
  4707. }
  4708. #u89071 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:1692px;
  4712. top:529px;
  4713. width:14px;
  4714. height:14px;
  4715. display:flex;
  4716. }
  4717. #u89071 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 2px 2px 2px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u89071_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u89072_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:29px;
  4736. height:20px;
  4737. background:inherit;
  4738. background-color:rgba(255, 255, 255, 0);
  4739. border:none;
  4740. border-radius:25px;
  4741. -moz-box-shadow:none;
  4742. -webkit-box-shadow:none;
  4743. box-shadow:none;
  4744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. color:#FFFFFF;
  4748. }
  4749. #u89072 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:1724px;
  4753. top:1145px;
  4754. width:29px;
  4755. height:20px;
  4756. display:flex;
  4757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4758. font-weight:400;
  4759. font-style:normal;
  4760. color:#FFFFFF;
  4761. }
  4762. #u89072 .text {
  4763. position:absolute;
  4764. align-self:center;
  4765. padding:0px 0px 0px 0px;
  4766. box-sizing:border-box;
  4767. width:100%;
  4768. }
  4769. #u89072_text {
  4770. border-width:0px;
  4771. white-space:nowrap;
  4772. text-transform:none;
  4773. }
  4774. #u89073_img {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:22px;
  4780. height:22px;
  4781. }
  4782. #u89073 {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:1692px;
  4786. top:1144px;
  4787. width:22px;
  4788. height:22px;
  4789. display:flex;
  4790. }
  4791. #u89073 .text {
  4792. position:absolute;
  4793. align-self:center;
  4794. padding:2px 2px 2px 2px;
  4795. box-sizing:border-box;
  4796. width:100%;
  4797. }
  4798. #u89073_text {
  4799. border-width:0px;
  4800. word-wrap:break-word;
  4801. text-transform:none;
  4802. visibility:hidden;
  4803. }
  4804. #u89074_div {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:0px;
  4808. top:0px;
  4809. width:29px;
  4810. height:20px;
  4811. background:inherit;
  4812. background-color:rgba(255, 255, 255, 0);
  4813. border:none;
  4814. border-radius:25px;
  4815. -moz-box-shadow:none;
  4816. -webkit-box-shadow:none;
  4817. box-shadow:none;
  4818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4819. font-weight:400;
  4820. font-style:normal;
  4821. color:#FFFFFF;
  4822. }
  4823. #u89074 {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:1724px;
  4827. top:1187px;
  4828. width:29px;
  4829. height:20px;
  4830. display:flex;
  4831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4832. font-weight:400;
  4833. font-style:normal;
  4834. color:#FFFFFF;
  4835. }
  4836. #u89074 .text {
  4837. position:absolute;
  4838. align-self:center;
  4839. padding:0px 0px 0px 0px;
  4840. box-sizing:border-box;
  4841. width:100%;
  4842. }
  4843. #u89074_text {
  4844. border-width:0px;
  4845. white-space:nowrap;
  4846. text-transform:none;
  4847. }
  4848. #u89075_img {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:0px;
  4852. top:0px;
  4853. width:22px;
  4854. height:22px;
  4855. }
  4856. #u89075 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:1692px;
  4860. top:1186px;
  4861. width:22px;
  4862. height:22px;
  4863. display:flex;
  4864. }
  4865. #u89075 .text {
  4866. position:absolute;
  4867. align-self:center;
  4868. padding:2px 2px 2px 2px;
  4869. box-sizing:border-box;
  4870. width:100%;
  4871. }
  4872. #u89075_text {
  4873. border-width:0px;
  4874. word-wrap:break-word;
  4875. text-transform:none;
  4876. visibility:hidden;
  4877. }
  4878. #u89076 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:0px;
  4882. top:0px;
  4883. width:0px;
  4884. height:0px;
  4885. }
  4886. #u89077_div {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:0px;
  4890. top:0px;
  4891. width:33px;
  4892. height:22px;
  4893. background:inherit;
  4894. background-color:rgba(255, 255, 255, 0);
  4895. border:none;
  4896. border-radius:0px;
  4897. -moz-box-shadow:none;
  4898. -webkit-box-shadow:none;
  4899. box-shadow:none;
  4900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:16px;
  4904. color:#FFFFFF;
  4905. }
  4906. #u89077 {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:1711px;
  4910. top:231px;
  4911. width:33px;
  4912. height:22px;
  4913. display:flex;
  4914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4915. font-weight:400;
  4916. font-style:normal;
  4917. font-size:16px;
  4918. color:#FFFFFF;
  4919. }
  4920. #u89077 .text {
  4921. position:absolute;
  4922. align-self:flex-start;
  4923. padding:0px 0px 0px 0px;
  4924. box-sizing:border-box;
  4925. width:100%;
  4926. }
  4927. #u89077_text {
  4928. border-width:0px;
  4929. white-space:nowrap;
  4930. text-transform:none;
  4931. }
  4932. #u89078_img {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:14px;
  4938. height:14px;
  4939. }
  4940. #u89078 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:1692px;
  4944. top:235px;
  4945. width:14px;
  4946. height:14px;
  4947. display:flex;
  4948. }
  4949. #u89078 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 2px 2px 2px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u89078_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u89079 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:0px;
  4968. height:0px;
  4969. }
  4970. #u89080_div {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:33px;
  4976. height:22px;
  4977. background:inherit;
  4978. background-color:rgba(255, 255, 255, 0);
  4979. border:none;
  4980. border-radius:0px;
  4981. -moz-box-shadow:none;
  4982. -webkit-box-shadow:none;
  4983. box-shadow:none;
  4984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4985. font-weight:400;
  4986. font-style:normal;
  4987. font-size:16px;
  4988. color:#FFFFFF;
  4989. }
  4990. #u89080 {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:1711px;
  4994. top:273px;
  4995. width:33px;
  4996. height:22px;
  4997. display:flex;
  4998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4999. font-weight:400;
  5000. font-style:normal;
  5001. font-size:16px;
  5002. color:#FFFFFF;
  5003. }
  5004. #u89080 .text {
  5005. position:absolute;
  5006. align-self:flex-start;
  5007. padding:0px 0px 0px 0px;
  5008. box-sizing:border-box;
  5009. width:100%;
  5010. }
  5011. #u89080_text {
  5012. border-width:0px;
  5013. white-space:nowrap;
  5014. text-transform:none;
  5015. }
  5016. #u89081_img {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:14px;
  5022. height:14px;
  5023. }
  5024. #u89081 {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:1692px;
  5028. top:277px;
  5029. width:14px;
  5030. height:14px;
  5031. display:flex;
  5032. }
  5033. #u89081 .text {
  5034. position:absolute;
  5035. align-self:center;
  5036. padding:2px 2px 2px 2px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u89081_text {
  5041. border-width:0px;
  5042. word-wrap:break-word;
  5043. text-transform:none;
  5044. visibility:hidden;
  5045. }
  5046. #u89082 {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:0px;
  5050. top:0px;
  5051. width:0px;
  5052. height:0px;
  5053. }
  5054. #u89083_div {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:200px;
  5060. height:1180px;
  5061. background:inherit;
  5062. background-color:rgba(255, 255, 255, 1);
  5063. border:none;
  5064. border-radius:0px;
  5065. -moz-box-shadow:none;
  5066. -webkit-box-shadow:none;
  5067. box-shadow:none;
  5068. }
  5069. #u89083 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:1792px;
  5073. top:50px;
  5074. width:200px;
  5075. height:1180px;
  5076. display:flex;
  5077. }
  5078. #u89083 .text {
  5079. position:absolute;
  5080. align-self:center;
  5081. padding:2px 2px 2px 2px;
  5082. box-sizing:border-box;
  5083. width:100%;
  5084. }
  5085. #u89083_text {
  5086. border-width:0px;
  5087. word-wrap:break-word;
  5088. text-transform:none;
  5089. visibility:hidden;
  5090. }
  5091. #u89084_div {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:200px;
  5097. height:60px;
  5098. background:inherit;
  5099. background-color:rgba(224, 231, 247, 1);
  5100. border:none;
  5101. border-radius:0px;
  5102. -moz-box-shadow:none;
  5103. -webkit-box-shadow:none;
  5104. box-shadow:none;
  5105. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5106. font-weight:500;
  5107. font-style:normal;
  5108. font-size:18px;
  5109. }
  5110. #u89084 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:1792px;
  5114. top:50px;
  5115. width:200px;
  5116. height:60px;
  5117. display:flex;
  5118. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5119. font-weight:500;
  5120. font-style:normal;
  5121. font-size:18px;
  5122. }
  5123. #u89084 .text {
  5124. position:absolute;
  5125. align-self:center;
  5126. padding:0px 0px 0px 20px;
  5127. box-sizing:border-box;
  5128. width:100%;
  5129. }
  5130. #u89084_text {
  5131. border-width:0px;
  5132. word-wrap:break-word;
  5133. text-transform:none;
  5134. }
  5135. #u89085_div {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:0px;
  5139. top:0px;
  5140. width:97px;
  5141. height:22px;
  5142. background:inherit;
  5143. background-color:rgba(255, 255, 255, 0);
  5144. border:none;
  5145. border-radius:0px;
  5146. -moz-box-shadow:none;
  5147. -webkit-box-shadow:none;
  5148. box-shadow:none;
  5149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5150. font-weight:400;
  5151. font-style:normal;
  5152. font-size:16px;
  5153. }
  5154. #u89085 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:1819px;
  5158. top:409px;
  5159. width:97px;
  5160. height:22px;
  5161. display:flex;
  5162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. font-size:16px;
  5166. }
  5167. #u89085 .text {
  5168. position:absolute;
  5169. align-self:flex-start;
  5170. padding:0px 0px 0px 0px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u89085_text {
  5175. border-width:0px;
  5176. word-wrap:break-word;
  5177. text-transform:none;
  5178. }
  5179. #u89086_div {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:97px;
  5185. height:22px;
  5186. background:inherit;
  5187. background-color:rgba(255, 255, 255, 0);
  5188. border:none;
  5189. border-radius:0px;
  5190. -moz-box-shadow:none;
  5191. -webkit-box-shadow:none;
  5192. box-shadow:none;
  5193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:16px;
  5197. }
  5198. #u89086 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:1819px;
  5202. top:637px;
  5203. width:97px;
  5204. height:22px;
  5205. display:flex;
  5206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5207. font-weight:400;
  5208. font-style:normal;
  5209. font-size:16px;
  5210. }
  5211. #u89086 .text {
  5212. position:absolute;
  5213. align-self:flex-start;
  5214. padding:0px 0px 0px 0px;
  5215. box-sizing:border-box;
  5216. width:100%;
  5217. }
  5218. #u89086_text {
  5219. border-width:0px;
  5220. word-wrap:break-word;
  5221. text-transform:none;
  5222. }
  5223. #u89087_div {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:0px;
  5227. top:0px;
  5228. width:49px;
  5229. height:17px;
  5230. background:inherit;
  5231. background-color:rgba(255, 255, 255, 0);
  5232. border:none;
  5233. border-radius:0px;
  5234. -moz-box-shadow:none;
  5235. -webkit-box-shadow:none;
  5236. box-shadow:none;
  5237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5238. font-weight:400;
  5239. font-style:normal;
  5240. font-size:12px;
  5241. color:#AAAAAA;
  5242. }
  5243. #u89087 {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:1819px;
  5247. top:558px;
  5248. width:49px;
  5249. height:17px;
  5250. display:flex;
  5251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. font-size:12px;
  5255. color:#AAAAAA;
  5256. }
  5257. #u89087 .text {
  5258. position:absolute;
  5259. align-self:flex-start;
  5260. padding:0px 0px 0px 0px;
  5261. box-sizing:border-box;
  5262. width:100%;
  5263. }
  5264. #u89087_text {
  5265. border-width:0px;
  5266. white-space:nowrap;
  5267. text-transform:none;
  5268. }
  5269. #u89088_div {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:0px;
  5273. top:0px;
  5274. width:65px;
  5275. height:22px;
  5276. background:inherit;
  5277. background-color:rgba(255, 255, 255, 0);
  5278. border:none;
  5279. border-radius:0px;
  5280. -moz-box-shadow:none;
  5281. -webkit-box-shadow:none;
  5282. box-shadow:none;
  5283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5284. font-weight:400;
  5285. font-style:normal;
  5286. font-size:16px;
  5287. }
  5288. #u89088 {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:1819px;
  5292. top:495px;
  5293. width:65px;
  5294. height:22px;
  5295. display:flex;
  5296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5297. font-weight:400;
  5298. font-style:normal;
  5299. font-size:16px;
  5300. }
  5301. #u89088 .text {
  5302. position:absolute;
  5303. align-self:flex-start;
  5304. padding:0px 0px 0px 0px;
  5305. box-sizing:border-box;
  5306. width:100%;
  5307. }
  5308. #u89088_text {
  5309. border-width:0px;
  5310. white-space:nowrap;
  5311. text-transform:none;
  5312. }
  5313. #u89089_img {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:201px;
  5319. height:2px;
  5320. }
  5321. #u89089 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:1792px;
  5325. top:537px;
  5326. width:200px;
  5327. height:1px;
  5328. display:flex;
  5329. }
  5330. #u89089 .text {
  5331. position:absolute;
  5332. align-self:center;
  5333. padding:2px 2px 2px 2px;
  5334. box-sizing:border-box;
  5335. width:100%;
  5336. }
  5337. #u89089_text {
  5338. border-width:0px;
  5339. word-wrap:break-word;
  5340. text-transform:none;
  5341. visibility:hidden;
  5342. }
  5343. #u89090_div {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:0px;
  5347. top:0px;
  5348. width:49px;
  5349. height:17px;
  5350. background:inherit;
  5351. background-color:rgba(255, 255, 255, 0);
  5352. border:none;
  5353. border-radius:0px;
  5354. -moz-box-shadow:none;
  5355. -webkit-box-shadow:none;
  5356. box-shadow:none;
  5357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5358. font-weight:400;
  5359. font-style:normal;
  5360. font-size:12px;
  5361. color:#AAAAAA;
  5362. }
  5363. #u89090 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:1819px;
  5367. top:372px;
  5368. width:49px;
  5369. height:17px;
  5370. display:flex;
  5371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5372. font-weight:400;
  5373. font-style:normal;
  5374. font-size:12px;
  5375. color:#AAAAAA;
  5376. }
  5377. #u89090 .text {
  5378. position:absolute;
  5379. align-self:flex-start;
  5380. padding:0px 0px 0px 0px;
  5381. box-sizing:border-box;
  5382. width:100%;
  5383. }
  5384. #u89090_text {
  5385. border-width:0px;
  5386. white-space:nowrap;
  5387. text-transform:none;
  5388. }
  5389. #u89091_div {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:0px;
  5393. top:0px;
  5394. width:97px;
  5395. height:22px;
  5396. background:inherit;
  5397. background-color:rgba(255, 255, 255, 0);
  5398. border:none;
  5399. border-radius:0px;
  5400. -moz-box-shadow:none;
  5401. -webkit-box-shadow:none;
  5402. box-shadow:none;
  5403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5404. font-weight:400;
  5405. font-style:normal;
  5406. font-size:16px;
  5407. }
  5408. #u89091 {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:1819px;
  5412. top:679px;
  5413. width:97px;
  5414. height:22px;
  5415. display:flex;
  5416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5417. font-weight:400;
  5418. font-style:normal;
  5419. font-size:16px;
  5420. }
  5421. #u89091 .text {
  5422. position:absolute;
  5423. align-self:flex-start;
  5424. padding:0px 0px 0px 0px;
  5425. box-sizing:border-box;
  5426. width:100%;
  5427. }
  5428. #u89091_text {
  5429. border-width:0px;
  5430. word-wrap:break-word;
  5431. text-transform:none;
  5432. }
  5433. #u89092_div {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:0px;
  5437. top:0px;
  5438. width:97px;
  5439. height:22px;
  5440. background:inherit;
  5441. background-color:rgba(255, 255, 255, 0);
  5442. border:none;
  5443. border-radius:0px;
  5444. -moz-box-shadow:none;
  5445. -webkit-box-shadow:none;
  5446. box-shadow:none;
  5447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5448. font-weight:400;
  5449. font-style:normal;
  5450. font-size:16px;
  5451. }
  5452. #u89092 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:1819px;
  5456. top:293px;
  5457. width:97px;
  5458. height:22px;
  5459. display:flex;
  5460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5461. font-weight:400;
  5462. font-style:normal;
  5463. font-size:16px;
  5464. }
  5465. #u89092 .text {
  5466. position:absolute;
  5467. align-self:flex-start;
  5468. padding:0px 0px 0px 0px;
  5469. box-sizing:border-box;
  5470. width:100%;
  5471. }
  5472. #u89092_text {
  5473. border-width:0px;
  5474. word-wrap:break-word;
  5475. text-transform:none;
  5476. }
  5477. #u89093_div {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:0px;
  5481. top:0px;
  5482. width:97px;
  5483. height:22px;
  5484. background:inherit;
  5485. background-color:rgba(255, 255, 255, 0);
  5486. border:none;
  5487. border-radius:0px;
  5488. -moz-box-shadow:none;
  5489. -webkit-box-shadow:none;
  5490. box-shadow:none;
  5491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5492. font-weight:400;
  5493. font-style:normal;
  5494. font-size:16px;
  5495. }
  5496. #u89093 {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:1819px;
  5500. top:453px;
  5501. width:97px;
  5502. height:22px;
  5503. display:flex;
  5504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5505. font-weight:400;
  5506. font-style:normal;
  5507. font-size:16px;
  5508. }
  5509. #u89093 .text {
  5510. position:absolute;
  5511. align-self:flex-start;
  5512. padding:0px 0px 0px 0px;
  5513. box-sizing:border-box;
  5514. width:100%;
  5515. }
  5516. #u89093_text {
  5517. border-width:0px;
  5518. word-wrap:break-word;
  5519. text-transform:none;
  5520. }
  5521. #u89094_div {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:97px;
  5527. height:22px;
  5528. background:inherit;
  5529. background-color:rgba(255, 255, 255, 0);
  5530. border:none;
  5531. border-radius:0px;
  5532. -moz-box-shadow:none;
  5533. -webkit-box-shadow:none;
  5534. box-shadow:none;
  5535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5536. font-weight:400;
  5537. font-style:normal;
  5538. font-size:16px;
  5539. }
  5540. #u89094 {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:1819px;
  5544. top:595px;
  5545. width:97px;
  5546. height:22px;
  5547. display:flex;
  5548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5549. font-weight:400;
  5550. font-style:normal;
  5551. font-size:16px;
  5552. }
  5553. #u89094 .text {
  5554. position:absolute;
  5555. align-self:flex-start;
  5556. padding:0px 0px 0px 0px;
  5557. box-sizing:border-box;
  5558. width:100%;
  5559. }
  5560. #u89094_text {
  5561. border-width:0px;
  5562. word-wrap:break-word;
  5563. text-transform:none;
  5564. }
  5565. #u89095_div {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:97px;
  5571. height:22px;
  5572. background:inherit;
  5573. background-color:rgba(255, 255, 255, 0);
  5574. border:none;
  5575. border-radius:0px;
  5576. -moz-box-shadow:none;
  5577. -webkit-box-shadow:none;
  5578. box-shadow:none;
  5579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5580. font-weight:400;
  5581. font-style:normal;
  5582. font-size:16px;
  5583. }
  5584. #u89095 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:1819px;
  5588. top:167px;
  5589. width:97px;
  5590. height:22px;
  5591. display:flex;
  5592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5593. font-weight:400;
  5594. font-style:normal;
  5595. font-size:16px;
  5596. }
  5597. #u89095 .text {
  5598. position:absolute;
  5599. align-self:flex-start;
  5600. padding:0px 0px 0px 0px;
  5601. box-sizing:border-box;
  5602. width:100%;
  5603. }
  5604. #u89095_text {
  5605. border-width:0px;
  5606. word-wrap:break-word;
  5607. text-transform:none;
  5608. }
  5609. #u89096_img {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:0px;
  5613. top:0px;
  5614. width:201px;
  5615. height:2px;
  5616. }
  5617. #u89096 {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:1792px;
  5621. top:342px;
  5622. width:200px;
  5623. height:1px;
  5624. display:flex;
  5625. }
  5626. #u89096 .text {
  5627. position:absolute;
  5628. align-self:center;
  5629. padding:2px 2px 2px 2px;
  5630. box-sizing:border-box;
  5631. width:100%;
  5632. }
  5633. #u89096_text {
  5634. border-width:0px;
  5635. word-wrap:break-word;
  5636. text-transform:none;
  5637. visibility:hidden;
  5638. }
  5639. #u89097_div {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:0px;
  5643. top:0px;
  5644. width:49px;
  5645. height:17px;
  5646. background:inherit;
  5647. background-color:rgba(255, 255, 255, 0);
  5648. border:none;
  5649. border-radius:0px;
  5650. -moz-box-shadow:none;
  5651. -webkit-box-shadow:none;
  5652. box-shadow:none;
  5653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5654. font-weight:400;
  5655. font-style:normal;
  5656. font-size:12px;
  5657. color:#AAAAAA;
  5658. }
  5659. #u89097 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:1819px;
  5663. top:130px;
  5664. width:49px;
  5665. height:17px;
  5666. display:flex;
  5667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. font-size:12px;
  5671. color:#AAAAAA;
  5672. }
  5673. #u89097 .text {
  5674. position:absolute;
  5675. align-self:flex-start;
  5676. padding:0px 0px 0px 0px;
  5677. box-sizing:border-box;
  5678. width:100%;
  5679. }
  5680. #u89097_text {
  5681. border-width:0px;
  5682. white-space:nowrap;
  5683. text-transform:none;
  5684. }
  5685. #u89098_div {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:97px;
  5691. height:22px;
  5692. background:inherit;
  5693. background-color:rgba(255, 255, 255, 0);
  5694. border:none;
  5695. border-radius:0px;
  5696. -moz-box-shadow:none;
  5697. -webkit-box-shadow:none;
  5698. box-shadow:none;
  5699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. font-size:16px;
  5703. }
  5704. #u89098 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:1819px;
  5708. top:209px;
  5709. width:97px;
  5710. height:22px;
  5711. display:flex;
  5712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:16px;
  5716. }
  5717. #u89098 .text {
  5718. position:absolute;
  5719. align-self:flex-start;
  5720. padding:0px 0px 0px 0px;
  5721. box-sizing:border-box;
  5722. width:100%;
  5723. }
  5724. #u89098_text {
  5725. border-width:0px;
  5726. word-wrap:break-word;
  5727. text-transform:none;
  5728. }
  5729. #u89099_div {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:0px;
  5733. top:0px;
  5734. width:97px;
  5735. height:22px;
  5736. background:inherit;
  5737. background-color:rgba(255, 255, 255, 0);
  5738. border:none;
  5739. border-radius:0px;
  5740. -moz-box-shadow:none;
  5741. -webkit-box-shadow:none;
  5742. box-shadow:none;
  5743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5744. font-weight:400;
  5745. font-style:normal;
  5746. font-size:16px;
  5747. }
  5748. #u89099 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:1819px;
  5752. top:251px;
  5753. width:97px;
  5754. height:22px;
  5755. display:flex;
  5756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5757. font-weight:400;
  5758. font-style:normal;
  5759. font-size:16px;
  5760. }
  5761. #u89099 .text {
  5762. position:absolute;
  5763. align-self:flex-start;
  5764. padding:0px 0px 0px 0px;
  5765. box-sizing:border-box;
  5766. width:100%;
  5767. }
  5768. #u89099_text {
  5769. border-width:0px;
  5770. word-wrap:break-word;
  5771. text-transform:none;
  5772. }
  5773. #u89100_div {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:1262px;
  5779. height:1180px;
  5780. background:inherit;
  5781. background-color:rgba(255, 255, 255, 1);
  5782. border:none;
  5783. border-radius:0px;
  5784. -moz-box-shadow:none;
  5785. -webkit-box-shadow:none;
  5786. box-shadow:none;
  5787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:12px;
  5791. color:#FFFFFF;
  5792. text-align:left;
  5793. }
  5794. #u89100 {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:2002px;
  5798. top:50px;
  5799. width:1262px;
  5800. height:1180px;
  5801. display:flex;
  5802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5803. font-weight:400;
  5804. font-style:normal;
  5805. font-size:12px;
  5806. color:#FFFFFF;
  5807. text-align:left;
  5808. }
  5809. #u89100 .text {
  5810. position:absolute;
  5811. align-self:center;
  5812. padding:2px 2px 2px 50px;
  5813. box-sizing:border-box;
  5814. width:100%;
  5815. }
  5816. #u89100_text {
  5817. border-width:0px;
  5818. word-wrap:break-word;
  5819. text-transform:none;
  5820. visibility:hidden;
  5821. }
  5822. #u89101_div {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:234px;
  5828. height:50px;
  5829. background:inherit;
  5830. background-color:rgba(255, 255, 255, 0);
  5831. border:none;
  5832. border-left:0px;
  5833. border-top:0px;
  5834. border-right:0px;
  5835. border-radius:0px;
  5836. border-bottom-right-radius:0px;
  5837. border-bottom-left-radius:0px;
  5838. -moz-box-shadow:none;
  5839. -webkit-box-shadow:none;
  5840. box-shadow:none;
  5841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5842. font-weight:400;
  5843. font-style:normal;
  5844. }
  5845. #u89101 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:2018px;
  5849. top:51px;
  5850. width:234px;
  5851. height:50px;
  5852. display:flex;
  5853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. }
  5857. #u89101 .text {
  5858. position:absolute;
  5859. align-self:center;
  5860. padding:0px 0px 0px 0px;
  5861. box-sizing:border-box;
  5862. width:100%;
  5863. }
  5864. #u89101_text {
  5865. border-width:0px;
  5866. white-space:nowrap;
  5867. text-transform:none;
  5868. }
  5869. #u89102 {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:0px;
  5873. top:0px;
  5874. width:0px;
  5875. height:0px;
  5876. }
  5877. #u89103_div {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:360px;
  5883. height:100px;
  5884. background:inherit;
  5885. background-color:rgba(255, 255, 255, 1);
  5886. box-sizing:border-box;
  5887. border-width:1px;
  5888. border-style:solid;
  5889. border-color:rgba(215, 215, 215, 1);
  5890. border-radius:4px;
  5891. -moz-box-shadow:none;
  5892. -webkit-box-shadow:none;
  5893. box-shadow:none;
  5894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:14px;
  5898. color:#AAAAAA;
  5899. }
  5900. #u89103 {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:2499px;
  5904. top:188px;
  5905. width:360px;
  5906. height:100px;
  5907. display:flex;
  5908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5909. font-weight:400;
  5910. font-style:normal;
  5911. font-size:14px;
  5912. color:#AAAAAA;
  5913. }
  5914. #u89103 .text {
  5915. position:absolute;
  5916. align-self:center;
  5917. padding:2px 2px 2px 2px;
  5918. box-sizing:border-box;
  5919. width:100%;
  5920. }
  5921. #u89103_text {
  5922. border-width:0px;
  5923. word-wrap:break-word;
  5924. text-transform:none;
  5925. visibility:hidden;
  5926. }
  5927. #u89104_div {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:360px;
  5933. height:47px;
  5934. background:inherit;
  5935. background-color:rgba(0, 0, 191, 1);
  5936. border:none;
  5937. border-radius:4px;
  5938. border-bottom-right-radius:0px;
  5939. border-bottom-left-radius:0px;
  5940. -moz-box-shadow:none;
  5941. -webkit-box-shadow:none;
  5942. box-shadow:none;
  5943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5944. font-weight:400;
  5945. font-style:normal;
  5946. font-size:14px;
  5947. color:#02A7F0;
  5948. }
  5949. #u89104 {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:2499px;
  5953. top:188px;
  5954. width:360px;
  5955. height:47px;
  5956. display:flex;
  5957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:14px;
  5961. color:#02A7F0;
  5962. }
  5963. #u89104 .text {
  5964. position:absolute;
  5965. align-self:center;
  5966. padding:2px 2px 2px 2px;
  5967. box-sizing:border-box;
  5968. width:100%;
  5969. }
  5970. #u89104_text {
  5971. border-width:0px;
  5972. word-wrap:break-word;
  5973. text-transform:none;
  5974. visibility:hidden;
  5975. }
  5976. #u89105_div {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:65px;
  5982. height:35px;
  5983. background:inherit;
  5984. background-color:rgba(255, 255, 255, 0);
  5985. border:none;
  5986. border-left:0px;
  5987. border-top:0px;
  5988. border-right:0px;
  5989. border-radius:0px;
  5990. border-bottom-right-radius:0px;
  5991. border-bottom-left-radius:0px;
  5992. -moz-box-shadow:none;
  5993. -webkit-box-shadow:none;
  5994. box-shadow:none;
  5995. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5996. font-weight:500;
  5997. font-style:normal;
  5998. font-size:18px;
  5999. color:#FFFFFF;
  6000. }
  6001. #u89105 {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:2519px;
  6005. top:195px;
  6006. width:65px;
  6007. height:35px;
  6008. display:flex;
  6009. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6010. font-weight:500;
  6011. font-style:normal;
  6012. font-size:18px;
  6013. color:#FFFFFF;
  6014. }
  6015. #u89105 .text {
  6016. position:absolute;
  6017. align-self:center;
  6018. padding:5px 10px 5px 0px;
  6019. box-sizing:border-box;
  6020. width:100%;
  6021. }
  6022. #u89105_text {
  6023. border-width:0px;
  6024. white-space:nowrap;
  6025. text-transform:none;
  6026. }
  6027. #u89106_div {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:0px;
  6031. top:0px;
  6032. width:39px;
  6033. height:30px;
  6034. background:inherit;
  6035. background-color:rgba(255, 255, 255, 0);
  6036. border:none;
  6037. border-left:0px;
  6038. border-top:0px;
  6039. border-right:0px;
  6040. border-radius:0px;
  6041. border-bottom-right-radius:0px;
  6042. border-bottom-left-radius:0px;
  6043. -moz-box-shadow:none;
  6044. -webkit-box-shadow:none;
  6045. box-shadow:none;
  6046. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6047. font-weight:500;
  6048. font-style:normal;
  6049. font-size:14px;
  6050. color:#555555;
  6051. }
  6052. #u89106 {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:2519px;
  6056. top:242px;
  6057. width:39px;
  6058. height:30px;
  6059. display:flex;
  6060. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6061. font-weight:500;
  6062. font-style:normal;
  6063. font-size:14px;
  6064. color:#555555;
  6065. }
  6066. #u89106 .text {
  6067. position:absolute;
  6068. align-self:center;
  6069. padding:5px 10px 5px 0px;
  6070. box-sizing:border-box;
  6071. width:100%;
  6072. }
  6073. #u89106_text {
  6074. border-width:0px;
  6075. white-space:nowrap;
  6076. text-transform:none;
  6077. }
  6078. #u89107_img {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:-5px;
  6082. top:-5px;
  6083. width:90px;
  6084. height:90px;
  6085. }
  6086. #u89107 {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:2639px;
  6090. top:733px;
  6091. width:80px;
  6092. height:80px;
  6093. display:flex;
  6094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:14px;
  6098. }
  6099. #u89107 .text {
  6100. position:absolute;
  6101. align-self:center;
  6102. padding:2px 2px 2px 2px;
  6103. box-sizing:border-box;
  6104. width:100%;
  6105. }
  6106. #u89107_text {
  6107. border-width:0px;
  6108. word-wrap:break-word;
  6109. text-transform:none;
  6110. }
  6111. #u89108 {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:0px;
  6117. height:0px;
  6118. }
  6119. #u89109_div {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:360px;
  6125. height:100px;
  6126. background:inherit;
  6127. background-color:rgba(255, 255, 255, 1);
  6128. border:none;
  6129. border-radius:4px;
  6130. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  6131. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  6132. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  6133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:14px;
  6137. color:#AAAAAA;
  6138. }
  6139. #u89109 {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:2499px;
  6143. top:373px;
  6144. width:360px;
  6145. height:100px;
  6146. display:flex;
  6147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6148. font-weight:400;
  6149. font-style:normal;
  6150. font-size:14px;
  6151. color:#AAAAAA;
  6152. }
  6153. #u89109 .text {
  6154. position:absolute;
  6155. align-self:center;
  6156. padding:2px 2px 2px 2px;
  6157. box-sizing:border-box;
  6158. width:100%;
  6159. }
  6160. #u89109_text {
  6161. border-width:0px;
  6162. word-wrap:break-word;
  6163. text-transform:none;
  6164. visibility:hidden;
  6165. }
  6166. #u89110_div {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:360px;
  6172. height:47px;
  6173. background:inherit;
  6174. background-color:rgba(245, 154, 35, 1);
  6175. border:none;
  6176. border-radius:4px;
  6177. border-bottom-right-radius:0px;
  6178. border-bottom-left-radius:0px;
  6179. -moz-box-shadow:none;
  6180. -webkit-box-shadow:none;
  6181. box-shadow:none;
  6182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6183. font-weight:400;
  6184. font-style:normal;
  6185. font-size:14px;
  6186. color:#02A7F0;
  6187. }
  6188. #u89110 {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:2499px;
  6192. top:373px;
  6193. width:360px;
  6194. height:47px;
  6195. display:flex;
  6196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. font-size:14px;
  6200. color:#02A7F0;
  6201. }
  6202. #u89110 .text {
  6203. position:absolute;
  6204. align-self:center;
  6205. padding:2px 2px 2px 2px;
  6206. box-sizing:border-box;
  6207. width:100%;
  6208. }
  6209. #u89110_text {
  6210. border-width:0px;
  6211. word-wrap:break-word;
  6212. text-transform:none;
  6213. visibility:hidden;
  6214. }
  6215. #u89111_div {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:65px;
  6221. height:35px;
  6222. background:inherit;
  6223. background-color:rgba(255, 255, 255, 0);
  6224. border:none;
  6225. border-left:0px;
  6226. border-top:0px;
  6227. border-right:0px;
  6228. border-radius:0px;
  6229. border-bottom-right-radius:0px;
  6230. border-bottom-left-radius:0px;
  6231. -moz-box-shadow:none;
  6232. -webkit-box-shadow:none;
  6233. box-shadow:none;
  6234. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6235. font-weight:500;
  6236. font-style:normal;
  6237. font-size:18px;
  6238. color:#FFFFFF;
  6239. }
  6240. #u89111 {
  6241. border-width:0px;
  6242. position:absolute;
  6243. left:2519px;
  6244. top:380px;
  6245. width:65px;
  6246. height:35px;
  6247. display:flex;
  6248. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6249. font-weight:500;
  6250. font-style:normal;
  6251. font-size:18px;
  6252. color:#FFFFFF;
  6253. }
  6254. #u89111 .text {
  6255. position:absolute;
  6256. align-self:center;
  6257. padding:5px 10px 5px 0px;
  6258. box-sizing:border-box;
  6259. width:100%;
  6260. }
  6261. #u89111_text {
  6262. border-width:0px;
  6263. white-space:nowrap;
  6264. text-transform:none;
  6265. }
  6266. #u89112_div {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:0px;
  6270. top:0px;
  6271. width:114px;
  6272. height:30px;
  6273. background:inherit;
  6274. background-color:rgba(255, 255, 255, 0);
  6275. border:none;
  6276. border-left:0px;
  6277. border-top:0px;
  6278. border-right:0px;
  6279. border-radius:0px;
  6280. border-bottom-right-radius:0px;
  6281. border-bottom-left-radius:0px;
  6282. -moz-box-shadow:none;
  6283. -webkit-box-shadow:none;
  6284. box-shadow:none;
  6285. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6286. font-weight:500;
  6287. font-style:normal;
  6288. font-size:14px;
  6289. color:#555555;
  6290. }
  6291. #u89112 {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:2519px;
  6295. top:430px;
  6296. width:114px;
  6297. height:30px;
  6298. display:flex;
  6299. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6300. font-weight:500;
  6301. font-style:normal;
  6302. font-size:14px;
  6303. color:#555555;
  6304. }
  6305. #u89112 .text {
  6306. position:absolute;
  6307. align-self:center;
  6308. padding:5px 10px 5px 0px;
  6309. box-sizing:border-box;
  6310. width:100%;
  6311. }
  6312. #u89112_text {
  6313. border-width:0px;
  6314. white-space:nowrap;
  6315. text-transform:none;
  6316. }
  6317. #u89113_div {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:0px;
  6321. top:0px;
  6322. width:21px;
  6323. height:35px;
  6324. background:inherit;
  6325. background-color:rgba(255, 255, 255, 0);
  6326. border:none;
  6327. border-left:0px;
  6328. border-top:0px;
  6329. border-right:0px;
  6330. border-radius:0px;
  6331. border-bottom-right-radius:0px;
  6332. border-bottom-left-radius:0px;
  6333. -moz-box-shadow:none;
  6334. -webkit-box-shadow:none;
  6335. box-shadow:none;
  6336. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6337. font-weight:500;
  6338. font-style:normal;
  6339. font-size:18px;
  6340. color:#FFFFFF;
  6341. }
  6342. #u89113 {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:2838px;
  6346. top:380px;
  6347. width:21px;
  6348. height:35px;
  6349. display:flex;
  6350. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6351. font-weight:500;
  6352. font-style:normal;
  6353. font-size:18px;
  6354. color:#FFFFFF;
  6355. }
  6356. #u89113 .text {
  6357. position:absolute;
  6358. align-self:center;
  6359. padding:5px 10px 5px 0px;
  6360. box-sizing:border-box;
  6361. width:100%;
  6362. }
  6363. #u89113_text {
  6364. border-width:0px;
  6365. white-space:nowrap;
  6366. text-transform:none;
  6367. }
  6368. #u89114_div {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:0px;
  6372. top:0px;
  6373. width:19px;
  6374. height:30px;
  6375. background:inherit;
  6376. background-color:rgba(255, 255, 255, 0);
  6377. border:none;
  6378. border-left:0px;
  6379. border-top:0px;
  6380. border-right:0px;
  6381. border-radius:0px;
  6382. border-bottom-right-radius:0px;
  6383. border-bottom-left-radius:0px;
  6384. -moz-box-shadow:none;
  6385. -webkit-box-shadow:none;
  6386. box-shadow:none;
  6387. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6388. font-weight:500;
  6389. font-style:normal;
  6390. font-size:14px;
  6391. color:#555555;
  6392. }
  6393. #u89114 {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:2833px;
  6397. top:430px;
  6398. width:19px;
  6399. height:30px;
  6400. display:flex;
  6401. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6402. font-weight:500;
  6403. font-style:normal;
  6404. font-size:14px;
  6405. color:#555555;
  6406. }
  6407. #u89114 .text {
  6408. position:absolute;
  6409. align-self:center;
  6410. padding:5px 10px 5px 0px;
  6411. box-sizing:border-box;
  6412. width:100%;
  6413. }
  6414. #u89114_text {
  6415. border-width:0px;
  6416. white-space:nowrap;
  6417. text-transform:none;
  6418. }
  6419. #u89115 {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:0px;
  6423. top:0px;
  6424. width:0px;
  6425. height:0px;
  6426. }
  6427. #u89116_div {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:0px;
  6431. top:0px;
  6432. width:360px;
  6433. height:100px;
  6434. background:inherit;
  6435. background-color:rgba(255, 255, 255, 1);
  6436. border:none;
  6437. border-radius:4px;
  6438. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  6439. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  6440. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  6441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6442. font-weight:400;
  6443. font-style:normal;
  6444. font-size:14px;
  6445. color:#AAAAAA;
  6446. }
  6447. #u89116 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:2499px;
  6451. top:543px;
  6452. width:360px;
  6453. height:100px;
  6454. display:flex;
  6455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6456. font-weight:400;
  6457. font-style:normal;
  6458. font-size:14px;
  6459. color:#AAAAAA;
  6460. }
  6461. #u89116 .text {
  6462. position:absolute;
  6463. align-self:center;
  6464. padding:2px 2px 2px 2px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u89116_text {
  6469. border-width:0px;
  6470. word-wrap:break-word;
  6471. text-transform:none;
  6472. visibility:hidden;
  6473. }
  6474. #u89117_div {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:360px;
  6480. height:47px;
  6481. background:inherit;
  6482. background-color:rgba(2, 167, 240, 1);
  6483. border:none;
  6484. border-radius:4px;
  6485. border-bottom-right-radius:0px;
  6486. border-bottom-left-radius:0px;
  6487. -moz-box-shadow:none;
  6488. -webkit-box-shadow:none;
  6489. box-shadow:none;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:14px;
  6494. color:#02A7F0;
  6495. }
  6496. #u89117 {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:2499px;
  6500. top:543px;
  6501. width:360px;
  6502. height:47px;
  6503. display:flex;
  6504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6505. font-weight:400;
  6506. font-style:normal;
  6507. font-size:14px;
  6508. color:#02A7F0;
  6509. }
  6510. #u89117 .text {
  6511. position:absolute;
  6512. align-self:center;
  6513. padding:2px 2px 2px 2px;
  6514. box-sizing:border-box;
  6515. width:100%;
  6516. }
  6517. #u89117_text {
  6518. border-width:0px;
  6519. word-wrap:break-word;
  6520. text-transform:none;
  6521. visibility:hidden;
  6522. }
  6523. #u89118_div {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:0px;
  6527. top:0px;
  6528. width:65px;
  6529. height:35px;
  6530. background:inherit;
  6531. background-color:rgba(255, 255, 255, 0);
  6532. border:none;
  6533. border-left:0px;
  6534. border-top:0px;
  6535. border-right:0px;
  6536. border-radius:0px;
  6537. border-bottom-right-radius:0px;
  6538. border-bottom-left-radius:0px;
  6539. -moz-box-shadow:none;
  6540. -webkit-box-shadow:none;
  6541. box-shadow:none;
  6542. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6543. font-weight:500;
  6544. font-style:normal;
  6545. font-size:18px;
  6546. color:#FFFFFF;
  6547. }
  6548. #u89118 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:2519px;
  6552. top:550px;
  6553. width:65px;
  6554. height:35px;
  6555. display:flex;
  6556. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6557. font-weight:500;
  6558. font-style:normal;
  6559. font-size:18px;
  6560. color:#FFFFFF;
  6561. }
  6562. #u89118 .text {
  6563. position:absolute;
  6564. align-self:center;
  6565. padding:5px 10px 5px 0px;
  6566. box-sizing:border-box;
  6567. width:100%;
  6568. }
  6569. #u89118_text {
  6570. border-width:0px;
  6571. white-space:nowrap;
  6572. text-transform:none;
  6573. }
  6574. #u89119_div {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:109px;
  6580. height:30px;
  6581. background:inherit;
  6582. background-color:rgba(255, 255, 255, 0);
  6583. border:none;
  6584. border-left:0px;
  6585. border-top:0px;
  6586. border-right:0px;
  6587. border-radius:0px;
  6588. border-bottom-right-radius:0px;
  6589. border-bottom-left-radius:0px;
  6590. -moz-box-shadow:none;
  6591. -webkit-box-shadow:none;
  6592. box-shadow:none;
  6593. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6594. font-weight:500;
  6595. font-style:normal;
  6596. font-size:14px;
  6597. color:#555555;
  6598. }
  6599. #u89119 {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:2519px;
  6603. top:600px;
  6604. width:109px;
  6605. height:30px;
  6606. display:flex;
  6607. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6608. font-weight:500;
  6609. font-style:normal;
  6610. font-size:14px;
  6611. color:#555555;
  6612. }
  6613. #u89119 .text {
  6614. position:absolute;
  6615. align-self:center;
  6616. padding:5px 10px 5px 0px;
  6617. box-sizing:border-box;
  6618. width:100%;
  6619. }
  6620. #u89119_text {
  6621. border-width:0px;
  6622. white-space:nowrap;
  6623. text-transform:none;
  6624. }
  6625. #u89120_div {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:0px;
  6629. top:0px;
  6630. width:21px;
  6631. height:35px;
  6632. background:inherit;
  6633. background-color:rgba(255, 255, 255, 0);
  6634. border:none;
  6635. border-left:0px;
  6636. border-top:0px;
  6637. border-right:0px;
  6638. border-radius:0px;
  6639. border-bottom-right-radius:0px;
  6640. border-bottom-left-radius:0px;
  6641. -moz-box-shadow:none;
  6642. -webkit-box-shadow:none;
  6643. box-shadow:none;
  6644. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6645. font-weight:500;
  6646. font-style:normal;
  6647. font-size:18px;
  6648. color:#FFFFFF;
  6649. }
  6650. #u89120 {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:2838px;
  6654. top:550px;
  6655. width:21px;
  6656. height:35px;
  6657. display:flex;
  6658. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6659. font-weight:500;
  6660. font-style:normal;
  6661. font-size:18px;
  6662. color:#FFFFFF;
  6663. }
  6664. #u89120 .text {
  6665. position:absolute;
  6666. align-self:center;
  6667. padding:5px 10px 5px 0px;
  6668. box-sizing:border-box;
  6669. width:100%;
  6670. }
  6671. #u89120_text {
  6672. border-width:0px;
  6673. white-space:nowrap;
  6674. text-transform:none;
  6675. }
  6676. #u89121_div {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:19px;
  6682. height:30px;
  6683. background:inherit;
  6684. background-color:rgba(255, 255, 255, 0);
  6685. border:none;
  6686. border-left:0px;
  6687. border-top:0px;
  6688. border-right:0px;
  6689. border-radius:0px;
  6690. border-bottom-right-radius:0px;
  6691. border-bottom-left-radius:0px;
  6692. -moz-box-shadow:none;
  6693. -webkit-box-shadow:none;
  6694. box-shadow:none;
  6695. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6696. font-weight:500;
  6697. font-style:normal;
  6698. font-size:14px;
  6699. color:#555555;
  6700. }
  6701. #u89121 {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:2833px;
  6705. top:600px;
  6706. width:19px;
  6707. height:30px;
  6708. display:flex;
  6709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6710. font-weight:500;
  6711. font-style:normal;
  6712. font-size:14px;
  6713. color:#555555;
  6714. }
  6715. #u89121 .text {
  6716. position:absolute;
  6717. align-self:center;
  6718. padding:5px 10px 5px 0px;
  6719. box-sizing:border-box;
  6720. width:100%;
  6721. }
  6722. #u89121_text {
  6723. border-width:0px;
  6724. white-space:nowrap;
  6725. text-transform:none;
  6726. }
  6727. #u89122 {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:2679px;
  6731. top:288px;
  6732. width:0px;
  6733. height:0px;
  6734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. color:#0089FE;
  6738. }
  6739. #u89122_seg0 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:-5px;
  6743. top:0px;
  6744. width:10px;
  6745. height:90px;
  6746. }
  6747. #u89122_seg1 {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:-9px;
  6751. top:-6px;
  6752. width:18px;
  6753. height:18px;
  6754. }
  6755. #u89122_seg2 {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:-16px;
  6759. top:68px;
  6760. width:32px;
  6761. height:32px;
  6762. }
  6763. #u89122_text {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:-50px;
  6767. top:34px;
  6768. width:100px;
  6769. word-wrap:break-word;
  6770. text-transform:none;
  6771. visibility:hidden;
  6772. }
  6773. #u89123 {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:2679px;
  6777. top:643px;
  6778. width:0px;
  6779. height:0px;
  6780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6781. font-weight:400;
  6782. font-style:normal;
  6783. color:#0089FE;
  6784. }
  6785. #u89123_seg0 {
  6786. border-width:0px;
  6787. position:absolute;
  6788. left:-5px;
  6789. top:0px;
  6790. width:10px;
  6791. height:95px;
  6792. }
  6793. #u89123_seg1 {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:-9px;
  6797. top:-6px;
  6798. width:18px;
  6799. height:18px;
  6800. }
  6801. #u89123_seg2 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:-16px;
  6805. top:73px;
  6806. width:32px;
  6807. height:32px;
  6808. }
  6809. #u89123_text {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:-50px;
  6813. top:37px;
  6814. width:100px;
  6815. word-wrap:break-word;
  6816. text-transform:none;
  6817. visibility:hidden;
  6818. }
  6819. #u89124_img {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:-5px;
  6823. top:-5px;
  6824. width:50px;
  6825. height:50px;
  6826. }
  6827. #u89124 {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:2659px;
  6831. top:312px;
  6832. width:40px;
  6833. height:40px;
  6834. display:flex;
  6835. font-size:20px;
  6836. }
  6837. #u89124 .text {
  6838. position:absolute;
  6839. align-self:center;
  6840. padding:2px 2px 2px 2px;
  6841. box-sizing:border-box;
  6842. width:100%;
  6843. }
  6844. #u89124_text {
  6845. border-width:0px;
  6846. word-wrap:break-word;
  6847. text-transform:none;
  6848. }
  6849. #u89125_img {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:-5px;
  6853. top:-5px;
  6854. width:50px;
  6855. height:50px;
  6856. }
  6857. #u89125 {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:2659px;
  6861. top:667px;
  6862. width:40px;
  6863. height:40px;
  6864. display:flex;
  6865. font-size:20px;
  6866. }
  6867. #u89125 .text {
  6868. position:absolute;
  6869. align-self:center;
  6870. padding:2px 2px 2px 2px;
  6871. box-sizing:border-box;
  6872. width:100%;
  6873. }
  6874. #u89125_text {
  6875. border-width:0px;
  6876. word-wrap:break-word;
  6877. text-transform:none;
  6878. }
  6879. #u89126 {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:0px;
  6883. top:0px;
  6884. width:0px;
  6885. height:0px;
  6886. }
  6887. #u89127_div {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:0px;
  6891. top:0px;
  6892. width:175px;
  6893. height:100px;
  6894. background:inherit;
  6895. background-color:rgba(255, 255, 255, 1);
  6896. box-sizing:border-box;
  6897. border-width:1px;
  6898. border-style:solid;
  6899. border-color:rgba(215, 215, 215, 1);
  6900. border-radius:4px;
  6901. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  6902. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  6903. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  6904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6905. font-weight:400;
  6906. font-style:normal;
  6907. font-size:14px;
  6908. color:#AAAAAA;
  6909. }
  6910. #u89127 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:2716px;
  6914. top:167px;
  6915. width:175px;
  6916. height:100px;
  6917. display:flex;
  6918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6919. font-weight:400;
  6920. font-style:normal;
  6921. font-size:14px;
  6922. color:#AAAAAA;
  6923. }
  6924. #u89127 .text {
  6925. position:absolute;
  6926. align-self:center;
  6927. padding:2px 2px 2px 2px;
  6928. box-sizing:border-box;
  6929. width:100%;
  6930. }
  6931. #u89127_text {
  6932. border-width:0px;
  6933. word-wrap:break-word;
  6934. text-transform:none;
  6935. visibility:hidden;
  6936. }
  6937. #u89128_div {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:0px;
  6941. top:0px;
  6942. width:135px;
  6943. height:40px;
  6944. background:inherit;
  6945. background-color:rgba(255, 255, 255, 0);
  6946. border:none;
  6947. border-left:0px;
  6948. border-top:0px;
  6949. border-right:0px;
  6950. border-radius:0px;
  6951. border-bottom-right-radius:0px;
  6952. border-bottom-left-radius:0px;
  6953. -moz-box-shadow:none;
  6954. -webkit-box-shadow:none;
  6955. box-shadow:none;
  6956. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6957. font-weight:500;
  6958. font-style:normal;
  6959. font-size:14px;
  6960. color:#555555;
  6961. }
  6962. #u89128 {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:2736px;
  6966. top:177px;
  6967. width:135px;
  6968. height:40px;
  6969. display:flex;
  6970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6971. font-weight:500;
  6972. font-style:normal;
  6973. font-size:14px;
  6974. color:#555555;
  6975. }
  6976. #u89128 .text {
  6977. position:absolute;
  6978. align-self:center;
  6979. padding:5px 10px 5px 10px;
  6980. box-sizing:border-box;
  6981. width:100%;
  6982. }
  6983. #u89128_text {
  6984. border-width:0px;
  6985. word-wrap:break-word;
  6986. text-transform:none;
  6987. }
  6988. #u89129_div {
  6989. border-width:0px;
  6990. position:absolute;
  6991. left:0px;
  6992. top:0px;
  6993. width:135px;
  6994. height:40px;
  6995. background:inherit;
  6996. background-color:rgba(255, 255, 255, 0);
  6997. border:none;
  6998. border-left:0px;
  6999. border-top:0px;
  7000. border-right:0px;
  7001. border-radius:0px;
  7002. border-bottom-right-radius:0px;
  7003. border-bottom-left-radius:0px;
  7004. -moz-box-shadow:none;
  7005. -webkit-box-shadow:none;
  7006. box-shadow:none;
  7007. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7008. font-weight:500;
  7009. font-style:normal;
  7010. font-size:14px;
  7011. color:#555555;
  7012. }
  7013. #u89129 {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:2736px;
  7017. top:217px;
  7018. width:135px;
  7019. height:40px;
  7020. display:flex;
  7021. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7022. font-weight:500;
  7023. font-style:normal;
  7024. font-size:14px;
  7025. color:#555555;
  7026. }
  7027. #u89129 .text {
  7028. position:absolute;
  7029. align-self:center;
  7030. padding:5px 10px 5px 10px;
  7031. box-sizing:border-box;
  7032. width:100%;
  7033. }
  7034. #u89129_text {
  7035. border-width:0px;
  7036. word-wrap:break-word;
  7037. text-transform:none;
  7038. }
  7039. #u89130 {
  7040. border-width:0px;
  7041. position:absolute;
  7042. left:2679px;
  7043. top:473px;
  7044. width:0px;
  7045. height:0px;
  7046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7047. font-weight:400;
  7048. font-style:normal;
  7049. color:#0089FE;
  7050. }
  7051. #u89130_seg0 {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:-5px;
  7055. top:0px;
  7056. width:10px;
  7057. height:75px;
  7058. }
  7059. #u89130_seg1 {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:-9px;
  7063. top:-6px;
  7064. width:18px;
  7065. height:18px;
  7066. }
  7067. #u89130_seg2 {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:-16px;
  7071. top:53px;
  7072. width:32px;
  7073. height:32px;
  7074. }
  7075. #u89130_text {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:-50px;
  7079. top:27px;
  7080. width:100px;
  7081. word-wrap:break-word;
  7082. text-transform:none;
  7083. visibility:hidden;
  7084. }
  7085. #u89131 {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:0px;
  7091. height:0px;
  7092. }
  7093. #u89132_div {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:200px;
  7099. height:1180px;
  7100. background:inherit;
  7101. background-color:rgba(255, 255, 255, 1);
  7102. border:none;
  7103. border-radius:0px;
  7104. -moz-box-shadow:none;
  7105. -webkit-box-shadow:none;
  7106. box-shadow:none;
  7107. }
  7108. #u89132 {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:121px;
  7112. top:50px;
  7113. width:200px;
  7114. height:1180px;
  7115. display:flex;
  7116. }
  7117. #u89132 .text {
  7118. position:absolute;
  7119. align-self:center;
  7120. padding:2px 2px 2px 2px;
  7121. box-sizing:border-box;
  7122. width:100%;
  7123. }
  7124. #u89132_text {
  7125. border-width:0px;
  7126. word-wrap:break-word;
  7127. text-transform:none;
  7128. visibility:hidden;
  7129. }
  7130. #u89133_div {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:0px;
  7134. top:0px;
  7135. width:200px;
  7136. height:60px;
  7137. background:inherit;
  7138. background-color:rgba(224, 231, 247, 1);
  7139. border:none;
  7140. border-radius:0px;
  7141. -moz-box-shadow:none;
  7142. -webkit-box-shadow:none;
  7143. box-shadow:none;
  7144. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7145. font-weight:500;
  7146. font-style:normal;
  7147. font-size:18px;
  7148. }
  7149. #u89133 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:121px;
  7153. top:50px;
  7154. width:200px;
  7155. height:60px;
  7156. display:flex;
  7157. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7158. font-weight:500;
  7159. font-style:normal;
  7160. font-size:18px;
  7161. }
  7162. #u89133 .text {
  7163. position:absolute;
  7164. align-self:center;
  7165. padding:0px 0px 0px 20px;
  7166. box-sizing:border-box;
  7167. width:100%;
  7168. }
  7169. #u89133_text {
  7170. border-width:0px;
  7171. word-wrap:break-word;
  7172. text-transform:none;
  7173. }
  7174. #u89134_div {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:0px;
  7178. top:0px;
  7179. width:97px;
  7180. height:22px;
  7181. background:inherit;
  7182. background-color:rgba(255, 255, 255, 0);
  7183. border:none;
  7184. border-radius:0px;
  7185. -moz-box-shadow:none;
  7186. -webkit-box-shadow:none;
  7187. box-shadow:none;
  7188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7189. font-weight:400;
  7190. font-style:normal;
  7191. font-size:16px;
  7192. }
  7193. #u89134 {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:148px;
  7197. top:369px;
  7198. width:97px;
  7199. height:22px;
  7200. display:flex;
  7201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7202. font-weight:400;
  7203. font-style:normal;
  7204. font-size:16px;
  7205. }
  7206. #u89134 .text {
  7207. position:absolute;
  7208. align-self:flex-start;
  7209. padding:0px 0px 0px 0px;
  7210. box-sizing:border-box;
  7211. width:100%;
  7212. }
  7213. #u89134_text {
  7214. border-width:0px;
  7215. word-wrap:break-word;
  7216. text-transform:none;
  7217. }
  7218. #u89135_div {
  7219. border-width:0px;
  7220. position:absolute;
  7221. left:0px;
  7222. top:0px;
  7223. width:97px;
  7224. height:22px;
  7225. background:inherit;
  7226. background-color:rgba(255, 255, 255, 0);
  7227. border:none;
  7228. border-radius:0px;
  7229. -moz-box-shadow:none;
  7230. -webkit-box-shadow:none;
  7231. box-shadow:none;
  7232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7233. font-weight:400;
  7234. font-style:normal;
  7235. font-size:16px;
  7236. }
  7237. #u89135 {
  7238. border-width:0px;
  7239. position:absolute;
  7240. left:148px;
  7241. top:597px;
  7242. width:97px;
  7243. height:22px;
  7244. display:flex;
  7245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7246. font-weight:400;
  7247. font-style:normal;
  7248. font-size:16px;
  7249. }
  7250. #u89135 .text {
  7251. position:absolute;
  7252. align-self:flex-start;
  7253. padding:0px 0px 0px 0px;
  7254. box-sizing:border-box;
  7255. width:100%;
  7256. }
  7257. #u89135_text {
  7258. border-width:0px;
  7259. word-wrap:break-word;
  7260. text-transform:none;
  7261. }
  7262. #u89136_div {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:0px;
  7266. top:0px;
  7267. width:49px;
  7268. height:17px;
  7269. background:inherit;
  7270. background-color:rgba(255, 255, 255, 0);
  7271. border:none;
  7272. border-radius:0px;
  7273. -moz-box-shadow:none;
  7274. -webkit-box-shadow:none;
  7275. box-shadow:none;
  7276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7277. font-weight:400;
  7278. font-style:normal;
  7279. font-size:12px;
  7280. color:#AAAAAA;
  7281. }
  7282. #u89136 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:148px;
  7286. top:518px;
  7287. width:49px;
  7288. height:17px;
  7289. display:flex;
  7290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7291. font-weight:400;
  7292. font-style:normal;
  7293. font-size:12px;
  7294. color:#AAAAAA;
  7295. }
  7296. #u89136 .text {
  7297. position:absolute;
  7298. align-self:flex-start;
  7299. padding:0px 0px 0px 0px;
  7300. box-sizing:border-box;
  7301. width:100%;
  7302. }
  7303. #u89136_text {
  7304. border-width:0px;
  7305. white-space:nowrap;
  7306. text-transform:none;
  7307. }
  7308. #u89137_div {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:65px;
  7314. height:22px;
  7315. background:inherit;
  7316. background-color:rgba(255, 255, 255, 0);
  7317. border:none;
  7318. border-radius:0px;
  7319. -moz-box-shadow:none;
  7320. -webkit-box-shadow:none;
  7321. box-shadow:none;
  7322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7323. font-weight:400;
  7324. font-style:normal;
  7325. font-size:16px;
  7326. }
  7327. #u89137 {
  7328. border-width:0px;
  7329. position:absolute;
  7330. left:148px;
  7331. top:455px;
  7332. width:65px;
  7333. height:22px;
  7334. display:flex;
  7335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7336. font-weight:400;
  7337. font-style:normal;
  7338. font-size:16px;
  7339. }
  7340. #u89137 .text {
  7341. position:absolute;
  7342. align-self:flex-start;
  7343. padding:0px 0px 0px 0px;
  7344. box-sizing:border-box;
  7345. width:100%;
  7346. }
  7347. #u89137_text {
  7348. border-width:0px;
  7349. white-space:nowrap;
  7350. text-transform:none;
  7351. }
  7352. #u89138_img {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:0px;
  7356. top:0px;
  7357. width:201px;
  7358. height:2px;
  7359. }
  7360. #u89138 {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:121px;
  7364. top:497px;
  7365. width:200px;
  7366. height:1px;
  7367. display:flex;
  7368. }
  7369. #u89138 .text {
  7370. position:absolute;
  7371. align-self:center;
  7372. padding:2px 2px 2px 2px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u89138_text {
  7377. border-width:0px;
  7378. word-wrap:break-word;
  7379. text-transform:none;
  7380. visibility:hidden;
  7381. }
  7382. #u89139_div {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:49px;
  7388. height:17px;
  7389. background:inherit;
  7390. background-color:rgba(255, 255, 255, 0);
  7391. border:none;
  7392. border-radius:0px;
  7393. -moz-box-shadow:none;
  7394. -webkit-box-shadow:none;
  7395. box-shadow:none;
  7396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7397. font-weight:400;
  7398. font-style:normal;
  7399. font-size:12px;
  7400. color:#AAAAAA;
  7401. }
  7402. #u89139 {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:148px;
  7406. top:332px;
  7407. width:49px;
  7408. height:17px;
  7409. display:flex;
  7410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7411. font-weight:400;
  7412. font-style:normal;
  7413. font-size:12px;
  7414. color:#AAAAAA;
  7415. }
  7416. #u89139 .text {
  7417. position:absolute;
  7418. align-self:flex-start;
  7419. padding:0px 0px 0px 0px;
  7420. box-sizing:border-box;
  7421. width:100%;
  7422. }
  7423. #u89139_text {
  7424. border-width:0px;
  7425. white-space:nowrap;
  7426. text-transform:none;
  7427. }
  7428. #u89140_div {
  7429. border-width:0px;
  7430. position:absolute;
  7431. left:0px;
  7432. top:0px;
  7433. width:97px;
  7434. height:22px;
  7435. background:inherit;
  7436. background-color:rgba(255, 255, 255, 0);
  7437. border:none;
  7438. border-radius:0px;
  7439. -moz-box-shadow:none;
  7440. -webkit-box-shadow:none;
  7441. box-shadow:none;
  7442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. font-size:16px;
  7446. }
  7447. #u89140 {
  7448. border-width:0px;
  7449. position:absolute;
  7450. left:148px;
  7451. top:639px;
  7452. width:97px;
  7453. height:22px;
  7454. display:flex;
  7455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7456. font-weight:400;
  7457. font-style:normal;
  7458. font-size:16px;
  7459. }
  7460. #u89140 .text {
  7461. position:absolute;
  7462. align-self:flex-start;
  7463. padding:0px 0px 0px 0px;
  7464. box-sizing:border-box;
  7465. width:100%;
  7466. }
  7467. #u89140_text {
  7468. border-width:0px;
  7469. word-wrap:break-word;
  7470. text-transform:none;
  7471. }
  7472. #u89141_div {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:0px;
  7476. top:0px;
  7477. width:97px;
  7478. height:22px;
  7479. background:inherit;
  7480. background-color:rgba(255, 255, 255, 0);
  7481. border:none;
  7482. border-radius:0px;
  7483. -moz-box-shadow:none;
  7484. -webkit-box-shadow:none;
  7485. box-shadow:none;
  7486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7487. font-weight:400;
  7488. font-style:normal;
  7489. font-size:16px;
  7490. }
  7491. #u89141 {
  7492. border-width:0px;
  7493. position:absolute;
  7494. left:148px;
  7495. top:253px;
  7496. width:97px;
  7497. height:22px;
  7498. display:flex;
  7499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7500. font-weight:400;
  7501. font-style:normal;
  7502. font-size:16px;
  7503. }
  7504. #u89141 .text {
  7505. position:absolute;
  7506. align-self:flex-start;
  7507. padding:0px 0px 0px 0px;
  7508. box-sizing:border-box;
  7509. width:100%;
  7510. }
  7511. #u89141_text {
  7512. border-width:0px;
  7513. word-wrap:break-word;
  7514. text-transform:none;
  7515. }
  7516. #u89142_div {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:0px;
  7520. top:0px;
  7521. width:97px;
  7522. height:22px;
  7523. background:inherit;
  7524. background-color:rgba(255, 255, 255, 0);
  7525. border:none;
  7526. border-radius:0px;
  7527. -moz-box-shadow:none;
  7528. -webkit-box-shadow:none;
  7529. box-shadow:none;
  7530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7531. font-weight:400;
  7532. font-style:normal;
  7533. font-size:16px;
  7534. }
  7535. #u89142 {
  7536. border-width:0px;
  7537. position:absolute;
  7538. left:148px;
  7539. top:413px;
  7540. width:97px;
  7541. height:22px;
  7542. display:flex;
  7543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. font-size:16px;
  7547. }
  7548. #u89142 .text {
  7549. position:absolute;
  7550. align-self:flex-start;
  7551. padding:0px 0px 0px 0px;
  7552. box-sizing:border-box;
  7553. width:100%;
  7554. }
  7555. #u89142_text {
  7556. border-width:0px;
  7557. word-wrap:break-word;
  7558. text-transform:none;
  7559. }
  7560. #u89143_div {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:0px;
  7564. top:0px;
  7565. width:97px;
  7566. height:22px;
  7567. background:inherit;
  7568. background-color:rgba(255, 255, 255, 0);
  7569. border:none;
  7570. border-radius:0px;
  7571. -moz-box-shadow:none;
  7572. -webkit-box-shadow:none;
  7573. box-shadow:none;
  7574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7575. font-weight:400;
  7576. font-style:normal;
  7577. font-size:16px;
  7578. }
  7579. #u89143 {
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:148px;
  7583. top:555px;
  7584. width:97px;
  7585. height:22px;
  7586. display:flex;
  7587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7588. font-weight:400;
  7589. font-style:normal;
  7590. font-size:16px;
  7591. }
  7592. #u89143 .text {
  7593. position:absolute;
  7594. align-self:flex-start;
  7595. padding:0px 0px 0px 0px;
  7596. box-sizing:border-box;
  7597. width:100%;
  7598. }
  7599. #u89143_text {
  7600. border-width:0px;
  7601. word-wrap:break-word;
  7602. text-transform:none;
  7603. }
  7604. #u89144_div {
  7605. border-width:0px;
  7606. position:absolute;
  7607. left:0px;
  7608. top:0px;
  7609. width:97px;
  7610. height:22px;
  7611. background:inherit;
  7612. background-color:rgba(255, 255, 255, 0);
  7613. border:none;
  7614. border-radius:0px;
  7615. -moz-box-shadow:none;
  7616. -webkit-box-shadow:none;
  7617. box-shadow:none;
  7618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7619. font-weight:400;
  7620. font-style:normal;
  7621. font-size:16px;
  7622. }
  7623. #u89144 {
  7624. border-width:0px;
  7625. position:absolute;
  7626. left:148px;
  7627. top:167px;
  7628. width:97px;
  7629. height:22px;
  7630. display:flex;
  7631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7632. font-weight:400;
  7633. font-style:normal;
  7634. font-size:16px;
  7635. }
  7636. #u89144 .text {
  7637. position:absolute;
  7638. align-self:flex-start;
  7639. padding:0px 0px 0px 0px;
  7640. box-sizing:border-box;
  7641. width:100%;
  7642. }
  7643. #u89144_text {
  7644. border-width:0px;
  7645. word-wrap:break-word;
  7646. text-transform:none;
  7647. }
  7648. #u89145_img {
  7649. border-width:0px;
  7650. position:absolute;
  7651. left:0px;
  7652. top:0px;
  7653. width:201px;
  7654. height:2px;
  7655. }
  7656. #u89145 {
  7657. border-width:0px;
  7658. position:absolute;
  7659. left:121px;
  7660. top:302px;
  7661. width:200px;
  7662. height:1px;
  7663. display:flex;
  7664. }
  7665. #u89145 .text {
  7666. position:absolute;
  7667. align-self:center;
  7668. padding:2px 2px 2px 2px;
  7669. box-sizing:border-box;
  7670. width:100%;
  7671. }
  7672. #u89145_text {
  7673. border-width:0px;
  7674. word-wrap:break-word;
  7675. text-transform:none;
  7676. visibility:hidden;
  7677. }
  7678. #u89146_div {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:0px;
  7682. top:0px;
  7683. width:49px;
  7684. height:17px;
  7685. background:inherit;
  7686. background-color:rgba(255, 255, 255, 0);
  7687. border:none;
  7688. border-radius:0px;
  7689. -moz-box-shadow:none;
  7690. -webkit-box-shadow:none;
  7691. box-shadow:none;
  7692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7693. font-weight:400;
  7694. font-style:normal;
  7695. font-size:12px;
  7696. color:#AAAAAA;
  7697. }
  7698. #u89146 {
  7699. border-width:0px;
  7700. position:absolute;
  7701. left:148px;
  7702. top:130px;
  7703. width:49px;
  7704. height:17px;
  7705. display:flex;
  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. #u89146 .text {
  7713. position:absolute;
  7714. align-self:flex-start;
  7715. padding:0px 0px 0px 0px;
  7716. box-sizing:border-box;
  7717. width:100%;
  7718. }
  7719. #u89146_text {
  7720. border-width:0px;
  7721. white-space:nowrap;
  7722. text-transform:none;
  7723. }
  7724. #u89147_div {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:0px;
  7728. top:0px;
  7729. width:97px;
  7730. height:22px;
  7731. background:inherit;
  7732. background-color:rgba(255, 255, 255, 0);
  7733. border:none;
  7734. border-radius:0px;
  7735. -moz-box-shadow:none;
  7736. -webkit-box-shadow:none;
  7737. box-shadow:none;
  7738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7739. font-weight:400;
  7740. font-style:normal;
  7741. font-size:16px;
  7742. }
  7743. #u89147 {
  7744. border-width:0px;
  7745. position:absolute;
  7746. left:148px;
  7747. top:209px;
  7748. width:97px;
  7749. height:22px;
  7750. display:flex;
  7751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7752. font-weight:400;
  7753. font-style:normal;
  7754. font-size:16px;
  7755. }
  7756. #u89147 .text {
  7757. position:absolute;
  7758. align-self:flex-start;
  7759. padding:0px 0px 0px 0px;
  7760. box-sizing:border-box;
  7761. width:100%;
  7762. }
  7763. #u89147_text {
  7764. border-width:0px;
  7765. word-wrap:break-word;
  7766. text-transform:none;
  7767. }