styles.css 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-93px;
  6. width:3077px;
  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. #u90869 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u90870_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1201px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u90870 {
  53. border-width:0px;
  54. position:absolute;
  55. left:93px;
  56. top:59px;
  57. width:1000px;
  58. height:1201px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u90870 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u90870_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u90871_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:1000px;
  87. height:200px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(215, 215, 215, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u90871 {
  107. border-width:0px;
  108. position:absolute;
  109. left:93px;
  110. top:59px;
  111. width:1000px;
  112. height:200px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u90871 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u90871_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u90872_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:83px;
  141. height:35px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-top:0px;
  146. border-right:0px;
  147. border-bottom:0px;
  148. border-radius:0px;
  149. border-top-left-radius:0px;
  150. border-bottom-left-radius:0px;
  151. -moz-box-shadow:none;
  152. -webkit-box-shadow:none;
  153. box-shadow:none;
  154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  155. font-weight:500;
  156. font-style:normal;
  157. font-size:18px;
  158. }
  159. #u90872 {
  160. border-width:0px;
  161. position:absolute;
  162. left:113px;
  163. top:77px;
  164. width:83px;
  165. height:35px;
  166. display:flex;
  167. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  168. font-weight:500;
  169. font-style:normal;
  170. font-size:18px;
  171. }
  172. #u90872 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:5px 10px 5px 0px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u90872_text {
  180. border-width:0px;
  181. white-space:nowrap;
  182. text-transform:none;
  183. }
  184. #u90873 {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:0px;
  190. height:0px;
  191. }
  192. #u90874_div {
  193. border-width:0px;
  194. position:absolute;
  195. left:0px;
  196. top:0px;
  197. width:40px;
  198. height:40px;
  199. background:inherit;
  200. background-color:rgba(255, 255, 255, 0);
  201. border:none;
  202. border-top:0px;
  203. border-right:0px;
  204. border-bottom:0px;
  205. border-radius:0px;
  206. border-top-left-radius:0px;
  207. border-bottom-left-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  212. font-weight:500;
  213. font-style:normal;
  214. font-size:14px;
  215. text-align:center;
  216. }
  217. #u90874 {
  218. border-width:0px;
  219. position:absolute;
  220. left:1053px;
  221. top:59px;
  222. width:40px;
  223. height:40px;
  224. display:flex;
  225. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  226. font-weight:500;
  227. font-style:normal;
  228. font-size:14px;
  229. text-align:center;
  230. }
  231. #u90874 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:5px 10px 5px 0px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u90874_text {
  239. border-width:0px;
  240. word-wrap:break-word;
  241. text-transform:none;
  242. }
  243. #u90875_img {
  244. border-width:0px;
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:13px;
  249. height:13px;
  250. }
  251. #u90875 {
  252. border-width:0px;
  253. position:absolute;
  254. left:1041px;
  255. top:75px;
  256. width:13px;
  257. height:13px;
  258. display:flex;
  259. font-size:14px;
  260. }
  261. #u90875 .text {
  262. position:absolute;
  263. align-self:center;
  264. padding:2px 2px 2px 2px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u90875_text {
  269. border-width:0px;
  270. word-wrap:break-word;
  271. text-transform:none;
  272. visibility:hidden;
  273. }
  274. #u90876_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:227px;
  280. height:43px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border:none;
  284. border-top:0px;
  285. border-right:0px;
  286. border-bottom:0px;
  287. border-radius:0px;
  288. border-top-left-radius:0px;
  289. border-bottom-left-radius:0px;
  290. -moz-box-shadow:none;
  291. -webkit-box-shadow:none;
  292. box-shadow:none;
  293. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  294. font-weight:500;
  295. font-style:normal;
  296. font-size:24px;
  297. }
  298. #u90876 {
  299. border-width:0px;
  300. position:absolute;
  301. left:123px;
  302. top:128px;
  303. width:227px;
  304. height:43px;
  305. display:flex;
  306. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  307. font-weight:500;
  308. font-style:normal;
  309. font-size:24px;
  310. }
  311. #u90876 .text {
  312. position:absolute;
  313. align-self:center;
  314. padding:5px 10px 5px 0px;
  315. box-sizing:border-box;
  316. width:100%;
  317. }
  318. #u90876_text {
  319. border-width:0px;
  320. white-space:nowrap;
  321. text-transform:none;
  322. }
  323. #u90877_div {
  324. border-width:0px;
  325. position:absolute;
  326. left:0px;
  327. top:0px;
  328. width:325px;
  329. height:60px;
  330. background:inherit;
  331. background-color:rgba(255, 255, 255, 0);
  332. border:none;
  333. border-left:0px;
  334. border-top:0px;
  335. border-right:0px;
  336. border-radius:0px;
  337. border-bottom-right-radius:0px;
  338. border-bottom-left-radius:0px;
  339. -moz-box-shadow:none;
  340. -webkit-box-shadow:none;
  341. box-shadow:none;
  342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  343. font-weight:400;
  344. font-style:normal;
  345. font-size:14px;
  346. line-height:30px;
  347. }
  348. #u90877 {
  349. border-width:0px;
  350. position:absolute;
  351. left:123px;
  352. top:181px;
  353. width:325px;
  354. height:60px;
  355. display:flex;
  356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  357. font-weight:400;
  358. font-style:normal;
  359. font-size:14px;
  360. line-height:30px;
  361. }
  362. #u90877 .text {
  363. position:absolute;
  364. align-self:flex-start;
  365. padding:0px 0px 0px 0px;
  366. box-sizing:border-box;
  367. width:100%;
  368. }
  369. #u90877_text {
  370. border-width:0px;
  371. word-wrap:break-word;
  372. text-transform:none;
  373. }
  374. #u90878_div {
  375. border-width:0px;
  376. position:absolute;
  377. left:0px;
  378. top:0px;
  379. width:97px;
  380. height:25px;
  381. background:inherit;
  382. background-color:rgba(255, 255, 255, 0);
  383. border:none;
  384. border-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  389. font-weight:400;
  390. font-style:normal;
  391. font-size:12px;
  392. color:#B8741A;
  393. line-height:25px;
  394. }
  395. #u90878 {
  396. border-width:0px;
  397. position:absolute;
  398. left:802px;
  399. top:216px;
  400. width:97px;
  401. height:25px;
  402. display:flex;
  403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  404. font-weight:400;
  405. font-style:normal;
  406. font-size:12px;
  407. color:#B8741A;
  408. line-height:25px;
  409. }
  410. #u90878 .text {
  411. position:absolute;
  412. align-self:flex-start;
  413. padding:0px 0px 0px 0px;
  414. box-sizing:border-box;
  415. width:100%;
  416. }
  417. #u90878_text {
  418. border-width:0px;
  419. white-space:nowrap;
  420. text-transform:none;
  421. }
  422. #u90879_div {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:1000px;
  428. height:336px;
  429. background:inherit;
  430. background-color:rgba(255, 255, 255, 1);
  431. box-sizing:border-box;
  432. border-width:1px;
  433. border-style:solid;
  434. border-color:rgba(215, 215, 215, 1);
  435. border-radius:0px;
  436. -moz-box-shadow:none;
  437. -webkit-box-shadow:none;
  438. box-shadow:none;
  439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  440. font-weight:400;
  441. font-style:normal;
  442. font-size:14px;
  443. color:#AAAAAA;
  444. text-align:center;
  445. line-height:30px;
  446. }
  447. #u90879 {
  448. border-width:0px;
  449. position:absolute;
  450. left:93px;
  451. top:269px;
  452. width:1000px;
  453. height:336px;
  454. display:flex;
  455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  456. font-weight:400;
  457. font-style:normal;
  458. font-size:14px;
  459. color:#AAAAAA;
  460. text-align:center;
  461. line-height:30px;
  462. }
  463. #u90879 .text {
  464. position:absolute;
  465. align-self:center;
  466. padding:5px 10px 5px 10px;
  467. box-sizing:border-box;
  468. width:100%;
  469. }
  470. #u90879_text {
  471. border-width:0px;
  472. word-wrap:break-word;
  473. text-transform:none;
  474. visibility:hidden;
  475. }
  476. #u90880_div {
  477. border-width:0px;
  478. position:absolute;
  479. left:0px;
  480. top:0px;
  481. width:320px;
  482. height:90px;
  483. background:inherit;
  484. background-color:rgba(255, 255, 255, 0);
  485. border:none;
  486. border-left:0px;
  487. border-top:0px;
  488. border-right:0px;
  489. border-radius:0px;
  490. border-bottom-right-radius:0px;
  491. border-bottom-left-radius:0px;
  492. -moz-box-shadow:none;
  493. -webkit-box-shadow:none;
  494. box-shadow:none;
  495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  496. font-weight:400;
  497. font-style:normal;
  498. font-size:14px;
  499. line-height:30px;
  500. }
  501. #u90880 {
  502. border-width:0px;
  503. position:absolute;
  504. left:123px;
  505. top:302px;
  506. width:320px;
  507. height:90px;
  508. display:flex;
  509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  510. font-weight:400;
  511. font-style:normal;
  512. font-size:14px;
  513. line-height:30px;
  514. }
  515. #u90880 .text {
  516. position:absolute;
  517. align-self:flex-start;
  518. padding:0px 0px 0px 0px;
  519. box-sizing:border-box;
  520. width:100%;
  521. }
  522. #u90880_text {
  523. border-width:0px;
  524. word-wrap:break-word;
  525. text-transform:none;
  526. }
  527. #u90881 {
  528. border-width:0px;
  529. position:absolute;
  530. left:0px;
  531. top:0px;
  532. width:0px;
  533. height:0px;
  534. }
  535. #u90882_div {
  536. border-width:0px;
  537. position:absolute;
  538. left:0px;
  539. top:0px;
  540. width:1000px;
  541. height:645px;
  542. background:inherit;
  543. background-color:rgba(255, 255, 255, 1);
  544. box-sizing:border-box;
  545. border-width:1px;
  546. border-style:solid;
  547. border-color:rgba(215, 215, 215, 1);
  548. border-radius:0px;
  549. -moz-box-shadow:none;
  550. -webkit-box-shadow:none;
  551. box-shadow:none;
  552. }
  553. #u90882 {
  554. border-width:0px;
  555. position:absolute;
  556. left:93px;
  557. top:615px;
  558. width:1000px;
  559. height:645px;
  560. display:flex;
  561. }
  562. #u90882 .text {
  563. position:absolute;
  564. align-self:center;
  565. padding:2px 2px 2px 2px;
  566. box-sizing:border-box;
  567. width:100%;
  568. }
  569. #u90882_text {
  570. border-width:0px;
  571. word-wrap:break-word;
  572. text-transform:none;
  573. visibility:hidden;
  574. }
  575. #u90883_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:103px;
  581. height:24px;
  582. background:inherit;
  583. background-color:rgba(255, 255, 255, 0);
  584. border:none;
  585. border-top:0px;
  586. border-right:0px;
  587. border-bottom:0px;
  588. border-radius:0px;
  589. border-top-left-radius:0px;
  590. border-bottom-left-radius:0px;
  591. -moz-box-shadow:none;
  592. -webkit-box-shadow:none;
  593. box-shadow:none;
  594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  595. font-weight:400;
  596. font-style:normal;
  597. font-size:10px;
  598. color:#AAAAAA;
  599. }
  600. #u90883 {
  601. border-width:0px;
  602. position:absolute;
  603. left:348px;
  604. top:688px;
  605. width:103px;
  606. height:24px;
  607. display:flex;
  608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  609. font-weight:400;
  610. font-style:normal;
  611. font-size:10px;
  612. color:#AAAAAA;
  613. }
  614. #u90883 .text {
  615. position:absolute;
  616. align-self:flex-start;
  617. padding:5px 0px 5px 0px;
  618. box-sizing:border-box;
  619. width:100%;
  620. }
  621. #u90883_text {
  622. border-width:0px;
  623. white-space:nowrap;
  624. text-transform:none;
  625. }
  626. #u90884 {
  627. border-width:0px;
  628. position:absolute;
  629. left:0px;
  630. top:0px;
  631. width:0px;
  632. height:0px;
  633. }
  634. #u90885_div {
  635. border-width:0px;
  636. position:absolute;
  637. left:0px;
  638. top:0px;
  639. width:43px;
  640. height:30px;
  641. background:inherit;
  642. background-color:rgba(255, 255, 255, 0);
  643. border:none;
  644. border-top:0px;
  645. border-right:0px;
  646. border-bottom:0px;
  647. border-radius:0px;
  648. border-top-left-radius:0px;
  649. border-bottom-left-radius:0px;
  650. -moz-box-shadow:none;
  651. -webkit-box-shadow:none;
  652. box-shadow:none;
  653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  654. font-weight:400;
  655. font-style:normal;
  656. font-size:14px;
  657. }
  658. #u90885 {
  659. border-width:0px;
  660. position:absolute;
  661. left:181px;
  662. top:690px;
  663. width:43px;
  664. height:30px;
  665. display:flex;
  666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  667. font-weight:400;
  668. font-style:normal;
  669. font-size:14px;
  670. }
  671. #u90885 .text {
  672. position:absolute;
  673. align-self:flex-start;
  674. padding:0px 0px 0px 0px;
  675. box-sizing:border-box;
  676. width:100%;
  677. }
  678. #u90885_text {
  679. border-width:0px;
  680. white-space:nowrap;
  681. text-transform:none;
  682. }
  683. #u90886_div {
  684. border-width:0px;
  685. position:absolute;
  686. left:0px;
  687. top:0px;
  688. width:12px;
  689. height:16px;
  690. background:inherit;
  691. background-color:rgba(255, 255, 255, 0);
  692. border:none;
  693. border-top:0px;
  694. border-right:0px;
  695. border-bottom:0px;
  696. border-radius:0px;
  697. border-top-left-radius:0px;
  698. border-bottom-left-radius:0px;
  699. -moz-box-shadow:none;
  700. -webkit-box-shadow:none;
  701. box-shadow:none;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:11px;
  706. color:#AAAAAA;
  707. }
  708. #u90886 {
  709. border-width:0px;
  710. position:absolute;
  711. left:181px;
  712. top:718px;
  713. width:12px;
  714. height:16px;
  715. display:flex;
  716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  717. font-weight:400;
  718. font-style:normal;
  719. font-size:11px;
  720. color:#AAAAAA;
  721. }
  722. #u90886 .text {
  723. position:absolute;
  724. align-self:flex-start;
  725. padding:0px 0px 0px 0px;
  726. box-sizing:border-box;
  727. width:100%;
  728. }
  729. #u90886_text {
  730. border-width:0px;
  731. white-space:nowrap;
  732. text-transform:none;
  733. }
  734. #u90887_div {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:43px;
  740. height:20px;
  741. background:inherit;
  742. background-color:rgba(255, 255, 255, 0);
  743. border:none;
  744. border-top:0px;
  745. border-right:0px;
  746. border-bottom:0px;
  747. border-radius:0px;
  748. border-top-left-radius:0px;
  749. border-bottom-left-radius:0px;
  750. -moz-box-shadow:none;
  751. -webkit-box-shadow:none;
  752. box-shadow:none;
  753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  754. font-weight:400;
  755. font-style:normal;
  756. font-size:14px;
  757. }
  758. #u90887 {
  759. border-width:0px;
  760. position:absolute;
  761. left:181px;
  762. top:760px;
  763. width:43px;
  764. height:20px;
  765. display:flex;
  766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  767. font-weight:400;
  768. font-style:normal;
  769. font-size:14px;
  770. }
  771. #u90887 .text {
  772. position:absolute;
  773. align-self:flex-start;
  774. padding:0px 0px 0px 0px;
  775. box-sizing:border-box;
  776. width:100%;
  777. }
  778. #u90887_text {
  779. border-width:0px;
  780. white-space:nowrap;
  781. text-transform:none;
  782. }
  783. #u90888_div {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:91px;
  789. height:16px;
  790. background:inherit;
  791. background-color:rgba(255, 255, 255, 0);
  792. border:none;
  793. border-top:0px;
  794. border-right:0px;
  795. border-bottom:0px;
  796. border-radius:0px;
  797. border-top-left-radius:0px;
  798. border-bottom-left-radius:0px;
  799. -moz-box-shadow:none;
  800. -webkit-box-shadow:none;
  801. box-shadow:none;
  802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  803. font-weight:400;
  804. font-style:normal;
  805. font-size:11px;
  806. color:#AAAAAA;
  807. }
  808. #u90888 {
  809. border-width:0px;
  810. position:absolute;
  811. left:181px;
  812. top:788px;
  813. width:91px;
  814. height:16px;
  815. display:flex;
  816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  817. font-weight:400;
  818. font-style:normal;
  819. font-size:11px;
  820. color:#AAAAAA;
  821. }
  822. #u90888 .text {
  823. position:absolute;
  824. align-self:flex-start;
  825. padding:0px 0px 0px 0px;
  826. box-sizing:border-box;
  827. width:100%;
  828. }
  829. #u90888_text {
  830. border-width:0px;
  831. white-space:nowrap;
  832. text-transform:none;
  833. }
  834. #u90889_div {
  835. border-width:0px;
  836. position:absolute;
  837. left:0px;
  838. top:0px;
  839. width:37px;
  840. height:35px;
  841. background:inherit;
  842. background-color:rgba(255, 255, 255, 0);
  843. border:none;
  844. border-top:0px;
  845. border-right:0px;
  846. border-bottom:0px;
  847. border-radius:0px;
  848. border-top-left-radius:0px;
  849. border-bottom-left-radius:0px;
  850. -moz-box-shadow:none;
  851. -webkit-box-shadow:none;
  852. box-shadow:none;
  853. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  854. font-weight:500;
  855. font-style:normal;
  856. font-size:18px;
  857. }
  858. #u90889 {
  859. border-width:0px;
  860. position:absolute;
  861. left:119px;
  862. top:633px;
  863. width:37px;
  864. height:35px;
  865. display:flex;
  866. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  867. font-weight:500;
  868. font-style:normal;
  869. font-size:18px;
  870. }
  871. #u90889 .text {
  872. position:absolute;
  873. align-self:flex-start;
  874. padding:5px 0px 5px 0px;
  875. box-sizing:border-box;
  876. width:100%;
  877. }
  878. #u90889_text {
  879. border-width:0px;
  880. white-space:nowrap;
  881. text-transform:none;
  882. }
  883. #u90890 {
  884. border-width:0px;
  885. position:absolute;
  886. left:0px;
  887. top:0px;
  888. width:0px;
  889. height:0px;
  890. }
  891. #u90891_img {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:2px;
  897. height:32px;
  898. }
  899. #u90891 {
  900. border-width:0px;
  901. position:absolute;
  902. left:158px;
  903. top:724px;
  904. width:1px;
  905. height:31px;
  906. display:flex;
  907. }
  908. #u90891 .text {
  909. position:absolute;
  910. align-self:center;
  911. padding:2px 2px 2px 2px;
  912. box-sizing:border-box;
  913. width:100%;
  914. }
  915. #u90891_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. visibility:hidden;
  920. }
  921. #u90892 {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:0px;
  927. height:0px;
  928. }
  929. #u90893_div {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:30px;
  935. height:30px;
  936. background:inherit;
  937. background-color:rgba(24, 144, 255, 1);
  938. border:none;
  939. border-radius:4px;
  940. -moz-box-shadow:none;
  941. -webkit-box-shadow:none;
  942. box-shadow:none;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:10px;
  947. color:#FFFFFF;
  948. }
  949. #u90893 {
  950. border-width:0px;
  951. position:absolute;
  952. left:143px;
  953. top:760px;
  954. width:30px;
  955. height:30px;
  956. display:flex;
  957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  958. font-weight:400;
  959. font-style:normal;
  960. font-size:10px;
  961. color:#FFFFFF;
  962. }
  963. #u90893 .text {
  964. position:absolute;
  965. align-self:center;
  966. padding:2px 2px 2px 2px;
  967. box-sizing:border-box;
  968. width:100%;
  969. }
  970. #u90893_text {
  971. border-width:0px;
  972. word-wrap:break-word;
  973. text-transform:none;
  974. }
  975. #u90894 {
  976. border-width:0px;
  977. position:absolute;
  978. left:0px;
  979. top:0px;
  980. width:0px;
  981. height:0px;
  982. }
  983. #u90895_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:9px;
  989. height:9px;
  990. }
  991. #u90895 {
  992. border-width:0px;
  993. position:absolute;
  994. left:165px;
  995. top:782px;
  996. width:9px;
  997. height:9px;
  998. display:flex;
  999. }
  1000. #u90895 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u90895_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u90896_img {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:5px;
  1019. height:1px;
  1020. }
  1021. #u90896 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:167px;
  1025. top:786px;
  1026. width:5px;
  1027. height:1px;
  1028. display:flex;
  1029. }
  1030. #u90896 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u90896_text {
  1038. border-width:0px;
  1039. word-wrap:break-word;
  1040. text-transform:none;
  1041. visibility:hidden;
  1042. }
  1043. #u90897 {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:0px;
  1049. height:0px;
  1050. }
  1051. #u90898_div {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:30px;
  1057. height:30px;
  1058. background:inherit;
  1059. background-color:rgba(24, 144, 255, 1);
  1060. border:none;
  1061. border-radius:4px;
  1062. -moz-box-shadow:none;
  1063. -webkit-box-shadow:none;
  1064. box-shadow:none;
  1065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1066. font-weight:400;
  1067. font-style:normal;
  1068. font-size:12px;
  1069. color:#FFFFFF;
  1070. }
  1071. #u90898 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:143px;
  1075. top:690px;
  1076. width:30px;
  1077. height:30px;
  1078. display:flex;
  1079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1080. font-weight:400;
  1081. font-style:normal;
  1082. font-size:12px;
  1083. color:#FFFFFF;
  1084. }
  1085. #u90898 .text {
  1086. position:absolute;
  1087. align-self:center;
  1088. padding:2px 2px 2px 2px;
  1089. box-sizing:border-box;
  1090. width:100%;
  1091. }
  1092. #u90898_text {
  1093. border-width:0px;
  1094. word-wrap:break-word;
  1095. text-transform:none;
  1096. }
  1097. #u90899 {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:0px;
  1101. top:0px;
  1102. width:0px;
  1103. height:0px;
  1104. }
  1105. #u90900_img {
  1106. border-width:0px;
  1107. position:absolute;
  1108. left:0px;
  1109. top:0px;
  1110. width:9px;
  1111. height:9px;
  1112. }
  1113. #u90900 {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:165px;
  1117. top:712px;
  1118. width:9px;
  1119. height:9px;
  1120. display:flex;
  1121. }
  1122. #u90900 .text {
  1123. position:absolute;
  1124. align-self:center;
  1125. padding:2px 2px 2px 2px;
  1126. box-sizing:border-box;
  1127. width:100%;
  1128. }
  1129. #u90900_text {
  1130. border-width:0px;
  1131. word-wrap:break-word;
  1132. text-transform:none;
  1133. visibility:hidden;
  1134. }
  1135. #u90901_img {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:5px;
  1141. height:4px;
  1142. }
  1143. #u90901 {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:167px;
  1147. top:715px;
  1148. width:5px;
  1149. height:4px;
  1150. display:flex;
  1151. }
  1152. #u90901 .text {
  1153. position:absolute;
  1154. align-self:center;
  1155. padding:2px 2px 2px 2px;
  1156. box-sizing:border-box;
  1157. width:100%;
  1158. }
  1159. #u90901_text {
  1160. border-width:0px;
  1161. word-wrap:break-word;
  1162. text-transform:none;
  1163. visibility:hidden;
  1164. }
  1165. #u90902_div {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:0px;
  1169. top:0px;
  1170. width:320px;
  1171. height:60px;
  1172. background:inherit;
  1173. background-color:rgba(255, 255, 255, 0);
  1174. border:none;
  1175. border-left:0px;
  1176. border-top:0px;
  1177. border-right:0px;
  1178. border-radius:0px;
  1179. border-bottom-right-radius:0px;
  1180. border-bottom-left-radius:0px;
  1181. -moz-box-shadow:none;
  1182. -webkit-box-shadow:none;
  1183. box-shadow:none;
  1184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1185. font-weight:400;
  1186. font-style:normal;
  1187. font-size:14px;
  1188. line-height:30px;
  1189. }
  1190. #u90902 {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:443px;
  1194. top:302px;
  1195. width:320px;
  1196. height:60px;
  1197. display:flex;
  1198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1199. font-weight:400;
  1200. font-style:normal;
  1201. font-size:14px;
  1202. line-height:30px;
  1203. }
  1204. #u90902 .text {
  1205. position:absolute;
  1206. align-self:flex-start;
  1207. padding:0px 0px 0px 0px;
  1208. box-sizing:border-box;
  1209. width:100%;
  1210. }
  1211. #u90902_text {
  1212. border-width:0px;
  1213. word-wrap:break-word;
  1214. text-transform:none;
  1215. }
  1216. #u90903_div {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:0px;
  1220. top:0px;
  1221. width:320px;
  1222. height:60px;
  1223. background:inherit;
  1224. background-color:rgba(255, 255, 255, 0);
  1225. border:none;
  1226. border-left:0px;
  1227. border-top:0px;
  1228. border-right:0px;
  1229. border-radius:0px;
  1230. border-bottom-right-radius:0px;
  1231. border-bottom-left-radius:0px;
  1232. -moz-box-shadow:none;
  1233. -webkit-box-shadow:none;
  1234. box-shadow:none;
  1235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1236. font-weight:400;
  1237. font-style:normal;
  1238. font-size:14px;
  1239. line-height:30px;
  1240. }
  1241. #u90903 {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:763px;
  1245. top:302px;
  1246. width:320px;
  1247. height:60px;
  1248. display:flex;
  1249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1250. font-weight:400;
  1251. font-style:normal;
  1252. font-size:14px;
  1253. line-height:30px;
  1254. }
  1255. #u90903 .text {
  1256. position:absolute;
  1257. align-self:flex-start;
  1258. padding:0px 0px 0px 0px;
  1259. box-sizing:border-box;
  1260. width:100%;
  1261. }
  1262. #u90903_text {
  1263. border-width:0px;
  1264. word-wrap:break-word;
  1265. text-transform:none;
  1266. }
  1267. #u90904_div {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:0px;
  1271. top:0px;
  1272. width:320px;
  1273. height:30px;
  1274. background:inherit;
  1275. background-color:rgba(255, 255, 255, 0);
  1276. border:none;
  1277. border-left:0px;
  1278. border-top:0px;
  1279. border-right:0px;
  1280. border-radius:0px;
  1281. border-bottom-right-radius:0px;
  1282. border-bottom-left-radius:0px;
  1283. -moz-box-shadow:none;
  1284. -webkit-box-shadow:none;
  1285. box-shadow:none;
  1286. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1287. font-weight:500;
  1288. font-style:normal;
  1289. font-size:18px;
  1290. line-height:30px;
  1291. }
  1292. #u90904 {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:123px;
  1296. top:412px;
  1297. width:320px;
  1298. height:30px;
  1299. display:flex;
  1300. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1301. font-weight:500;
  1302. font-style:normal;
  1303. font-size:18px;
  1304. line-height:30px;
  1305. }
  1306. #u90904 .text {
  1307. position:absolute;
  1308. align-self:flex-start;
  1309. padding:0px 0px 0px 0px;
  1310. box-sizing:border-box;
  1311. width:100%;
  1312. }
  1313. #u90904_text {
  1314. border-width:0px;
  1315. word-wrap:break-word;
  1316. text-transform:none;
  1317. }
  1318. #u90905_img {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:0px;
  1322. top:0px;
  1323. width:108px;
  1324. height:108px;
  1325. }
  1326. #u90905 {
  1327. border-width:0px;
  1328. position:absolute;
  1329. left:943px;
  1330. top:129px;
  1331. width:108px;
  1332. height:108px;
  1333. display:flex;
  1334. -webkit-transform:rotate(315deg);
  1335. -moz-transform:rotate(315deg);
  1336. -ms-transform:rotate(315deg);
  1337. transform:rotate(315deg);
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:28px;
  1342. color:#F59A23;
  1343. }
  1344. #u90905 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:2px 2px 2px 2px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u90905_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u90906 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:123px;
  1360. top:452px;
  1361. width:944px;
  1362. height:118px;
  1363. }
  1364. #u90907_img {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:0px;
  1368. top:0px;
  1369. width:86px;
  1370. height:38px;
  1371. }
  1372. #u90907 {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:0px;
  1376. top:0px;
  1377. width:86px;
  1378. height:38px;
  1379. display:flex;
  1380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1381. font-weight:400;
  1382. font-style:normal;
  1383. font-size:12px;
  1384. color:#FFFFFF;
  1385. }
  1386. #u90907 .text {
  1387. position:absolute;
  1388. align-self:center;
  1389. padding:2px 2px 2px 0px;
  1390. box-sizing:border-box;
  1391. width:100%;
  1392. }
  1393. #u90907_text {
  1394. border-width:0px;
  1395. word-wrap:break-word;
  1396. text-transform:none;
  1397. }
  1398. #u90908_img {
  1399. border-width:0px;
  1400. position:absolute;
  1401. left:0px;
  1402. top:0px;
  1403. width:86px;
  1404. height:38px;
  1405. }
  1406. #u90908 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:86px;
  1410. top:0px;
  1411. width:86px;
  1412. height:38px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:12px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u90908 .text {
  1421. position:absolute;
  1422. align-self:center;
  1423. padding:2px 2px 2px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u90908_text {
  1428. border-width:0px;
  1429. word-wrap:break-word;
  1430. text-transform:none;
  1431. }
  1432. #u90909_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:86px;
  1438. height:38px;
  1439. }
  1440. #u90909 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:172px;
  1444. top:0px;
  1445. width:86px;
  1446. height:38px;
  1447. display:flex;
  1448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1449. font-weight:400;
  1450. font-style:normal;
  1451. font-size:12px;
  1452. color:#FFFFFF;
  1453. }
  1454. #u90909 .text {
  1455. position:absolute;
  1456. align-self:center;
  1457. padding:2px 2px 2px 0px;
  1458. box-sizing:border-box;
  1459. width:100%;
  1460. }
  1461. #u90909_text {
  1462. border-width:0px;
  1463. word-wrap:break-word;
  1464. text-transform:none;
  1465. }
  1466. #u90910_img {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:0px;
  1470. top:0px;
  1471. width:86px;
  1472. height:38px;
  1473. }
  1474. #u90910 {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:258px;
  1478. top:0px;
  1479. width:86px;
  1480. height:38px;
  1481. display:flex;
  1482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1483. font-weight:400;
  1484. font-style:normal;
  1485. font-size:12px;
  1486. color:#FFFFFF;
  1487. }
  1488. #u90910 .text {
  1489. position:absolute;
  1490. align-self:center;
  1491. padding:2px 2px 2px 0px;
  1492. box-sizing:border-box;
  1493. width:100%;
  1494. }
  1495. #u90910_text {
  1496. border-width:0px;
  1497. word-wrap:break-word;
  1498. text-transform:none;
  1499. }
  1500. #u90911_img {
  1501. border-width:0px;
  1502. position:absolute;
  1503. left:0px;
  1504. top:0px;
  1505. width:86px;
  1506. height:38px;
  1507. }
  1508. #u90911 {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:344px;
  1512. top:0px;
  1513. width:86px;
  1514. height:38px;
  1515. display:flex;
  1516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1517. font-weight:400;
  1518. font-style:normal;
  1519. font-size:12px;
  1520. color:#FFFFFF;
  1521. }
  1522. #u90911 .text {
  1523. position:absolute;
  1524. align-self:center;
  1525. padding:2px 2px 2px 0px;
  1526. box-sizing:border-box;
  1527. width:100%;
  1528. }
  1529. #u90911_text {
  1530. border-width:0px;
  1531. word-wrap:break-word;
  1532. text-transform:none;
  1533. }
  1534. #u90912_img {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:86px;
  1540. height:38px;
  1541. }
  1542. #u90912 {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:430px;
  1546. top:0px;
  1547. width:86px;
  1548. height:38px;
  1549. display:flex;
  1550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1551. font-weight:400;
  1552. font-style:normal;
  1553. font-size:12px;
  1554. color:#FFFFFF;
  1555. }
  1556. #u90912 .text {
  1557. position:absolute;
  1558. align-self:center;
  1559. padding:2px 2px 2px 0px;
  1560. box-sizing:border-box;
  1561. width:100%;
  1562. }
  1563. #u90912_text {
  1564. border-width:0px;
  1565. word-wrap:break-word;
  1566. text-transform:none;
  1567. visibility:hidden;
  1568. }
  1569. #u90913_img {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:0px;
  1573. top:0px;
  1574. width:86px;
  1575. height:38px;
  1576. }
  1577. #u90913 {
  1578. border-width:0px;
  1579. position:absolute;
  1580. left:516px;
  1581. top:0px;
  1582. width:86px;
  1583. height:38px;
  1584. display:flex;
  1585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1586. font-weight:400;
  1587. font-style:normal;
  1588. font-size:12px;
  1589. color:#FFFFFF;
  1590. }
  1591. #u90913 .text {
  1592. position:absolute;
  1593. align-self:center;
  1594. padding:2px 2px 2px 0px;
  1595. box-sizing:border-box;
  1596. width:100%;
  1597. }
  1598. #u90913_text {
  1599. border-width:0px;
  1600. word-wrap:break-word;
  1601. text-transform:none;
  1602. visibility:hidden;
  1603. }
  1604. #u90914_img {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:0px;
  1608. top:0px;
  1609. width:86px;
  1610. height:38px;
  1611. }
  1612. #u90914 {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:602px;
  1616. top:0px;
  1617. width:86px;
  1618. height:38px;
  1619. display:flex;
  1620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1621. font-weight:400;
  1622. font-style:normal;
  1623. font-size:12px;
  1624. color:#FFFFFF;
  1625. }
  1626. #u90914 .text {
  1627. position:absolute;
  1628. align-self:center;
  1629. padding:2px 2px 2px 0px;
  1630. box-sizing:border-box;
  1631. width:100%;
  1632. }
  1633. #u90914_text {
  1634. border-width:0px;
  1635. word-wrap:break-word;
  1636. text-transform:none;
  1637. visibility:hidden;
  1638. }
  1639. #u90915_img {
  1640. border-width:0px;
  1641. position:absolute;
  1642. left:0px;
  1643. top:0px;
  1644. width:86px;
  1645. height:38px;
  1646. }
  1647. #u90915 {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:688px;
  1651. top:0px;
  1652. width:86px;
  1653. height:38px;
  1654. display:flex;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:12px;
  1659. color:#FFFFFF;
  1660. }
  1661. #u90915 .text {
  1662. position:absolute;
  1663. align-self:center;
  1664. padding:2px 2px 2px 0px;
  1665. box-sizing:border-box;
  1666. width:100%;
  1667. }
  1668. #u90915_text {
  1669. border-width:0px;
  1670. word-wrap:break-word;
  1671. text-transform:none;
  1672. visibility:hidden;
  1673. }
  1674. #u90916_img {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:86px;
  1680. height:38px;
  1681. }
  1682. #u90916 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:774px;
  1686. top:0px;
  1687. width:86px;
  1688. height:38px;
  1689. display:flex;
  1690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1691. font-weight:400;
  1692. font-style:normal;
  1693. font-size:12px;
  1694. color:#FFFFFF;
  1695. }
  1696. #u90916 .text {
  1697. position:absolute;
  1698. align-self:center;
  1699. padding:2px 2px 2px 0px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u90916_text {
  1704. border-width:0px;
  1705. word-wrap:break-word;
  1706. text-transform:none;
  1707. visibility:hidden;
  1708. }
  1709. #u90917_img {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:84px;
  1715. height:38px;
  1716. }
  1717. #u90917 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:860px;
  1721. top:0px;
  1722. width:84px;
  1723. height:38px;
  1724. display:flex;
  1725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1726. font-weight:400;
  1727. font-style:normal;
  1728. font-size:12px;
  1729. color:#FFFFFF;
  1730. }
  1731. #u90917 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:2px 2px 2px 0px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u90917_text {
  1739. border-width:0px;
  1740. word-wrap:break-word;
  1741. text-transform:none;
  1742. visibility:hidden;
  1743. }
  1744. #u90918_img {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:0px;
  1748. top:0px;
  1749. width:86px;
  1750. height:40px;
  1751. }
  1752. #u90918 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:0px;
  1756. top:38px;
  1757. width:86px;
  1758. height:40px;
  1759. display:flex;
  1760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1761. font-weight:400;
  1762. font-style:normal;
  1763. font-size:12px;
  1764. color:#333333;
  1765. }
  1766. #u90918 .text {
  1767. position:absolute;
  1768. align-self:center;
  1769. padding:2px 2px 2px 0px;
  1770. box-sizing:border-box;
  1771. width:100%;
  1772. }
  1773. #u90918_text {
  1774. border-width:0px;
  1775. word-wrap:break-word;
  1776. text-transform:none;
  1777. visibility:hidden;
  1778. }
  1779. #u90919_img {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:86px;
  1785. height:40px;
  1786. }
  1787. #u90919 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:86px;
  1791. top:38px;
  1792. width:86px;
  1793. height:40px;
  1794. display:flex;
  1795. font-family:'ArialMT', 'Arial', sans-serif;
  1796. font-weight:400;
  1797. font-style:normal;
  1798. font-size:12px;
  1799. color:#AAAAAA;
  1800. text-align:left;
  1801. }
  1802. #u90919 .text {
  1803. position:absolute;
  1804. align-self:center;
  1805. padding:2px 2px 2px 0px;
  1806. box-sizing:border-box;
  1807. width:100%;
  1808. }
  1809. #u90919_text {
  1810. border-width:0px;
  1811. word-wrap:break-word;
  1812. text-transform:none;
  1813. visibility:hidden;
  1814. }
  1815. #u90920_img {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:86px;
  1821. height:40px;
  1822. }
  1823. #u90920 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:172px;
  1827. top:38px;
  1828. width:86px;
  1829. height:40px;
  1830. display:flex;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:12px;
  1835. color:#333333;
  1836. }
  1837. #u90920 .text {
  1838. position:absolute;
  1839. align-self:center;
  1840. padding:2px 2px 2px 0px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u90920_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. visibility:hidden;
  1849. }
  1850. #u90921_img {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:86px;
  1856. height:40px;
  1857. }
  1858. #u90921 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:258px;
  1862. top:38px;
  1863. width:86px;
  1864. height:40px;
  1865. display:flex;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:12px;
  1870. color:#333333;
  1871. }
  1872. #u90921 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:2px 2px 2px 0px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u90921_text {
  1880. border-width:0px;
  1881. word-wrap:break-word;
  1882. text-transform:none;
  1883. visibility:hidden;
  1884. }
  1885. #u90922_img {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:86px;
  1891. height:40px;
  1892. }
  1893. #u90922 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:344px;
  1897. top:38px;
  1898. width:86px;
  1899. height:40px;
  1900. display:flex;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:12px;
  1905. color:#333333;
  1906. }
  1907. #u90922 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:2px 2px 2px 0px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u90922_text {
  1915. border-width:0px;
  1916. word-wrap:break-word;
  1917. text-transform:none;
  1918. visibility:hidden;
  1919. }
  1920. #u90923_img {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:86px;
  1926. height:40px;
  1927. }
  1928. #u90923 {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:430px;
  1932. top:38px;
  1933. width:86px;
  1934. height:40px;
  1935. display:flex;
  1936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1937. font-weight:400;
  1938. font-style:normal;
  1939. font-size:12px;
  1940. color:#333333;
  1941. }
  1942. #u90923 .text {
  1943. position:absolute;
  1944. align-self:center;
  1945. padding:2px 2px 2px 0px;
  1946. box-sizing:border-box;
  1947. width:100%;
  1948. }
  1949. #u90923_text {
  1950. border-width:0px;
  1951. word-wrap:break-word;
  1952. text-transform:none;
  1953. visibility:hidden;
  1954. }
  1955. #u90924_img {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:86px;
  1961. height:40px;
  1962. }
  1963. #u90924 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:516px;
  1967. top:38px;
  1968. width:86px;
  1969. height:40px;
  1970. display:flex;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:12px;
  1975. color:#333333;
  1976. }
  1977. #u90924 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:2px 2px 2px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u90924_text {
  1985. border-width:0px;
  1986. word-wrap:break-word;
  1987. text-transform:none;
  1988. visibility:hidden;
  1989. }
  1990. #u90925_img {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:86px;
  1996. height:40px;
  1997. }
  1998. #u90925 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:602px;
  2002. top:38px;
  2003. width:86px;
  2004. height:40px;
  2005. display:flex;
  2006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2007. font-weight:400;
  2008. font-style:normal;
  2009. font-size:12px;
  2010. color:#333333;
  2011. }
  2012. #u90925 .text {
  2013. position:absolute;
  2014. align-self:center;
  2015. padding:2px 2px 2px 0px;
  2016. box-sizing:border-box;
  2017. width:100%;
  2018. }
  2019. #u90925_text {
  2020. border-width:0px;
  2021. word-wrap:break-word;
  2022. text-transform:none;
  2023. visibility:hidden;
  2024. }
  2025. #u90926_img {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:86px;
  2031. height:40px;
  2032. }
  2033. #u90926 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:688px;
  2037. top:38px;
  2038. width:86px;
  2039. height:40px;
  2040. display:flex;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:12px;
  2045. color:#333333;
  2046. }
  2047. #u90926 .text {
  2048. position:absolute;
  2049. align-self:center;
  2050. padding:2px 2px 2px 0px;
  2051. box-sizing:border-box;
  2052. width:100%;
  2053. }
  2054. #u90926_text {
  2055. border-width:0px;
  2056. word-wrap:break-word;
  2057. text-transform:none;
  2058. visibility:hidden;
  2059. }
  2060. #u90927_img {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:86px;
  2066. height:40px;
  2067. }
  2068. #u90927 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:774px;
  2072. top:38px;
  2073. width:86px;
  2074. height:40px;
  2075. display:flex;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:12px;
  2080. color:#333333;
  2081. }
  2082. #u90927 .text {
  2083. position:absolute;
  2084. align-self:center;
  2085. padding:2px 2px 2px 0px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u90927_text {
  2090. border-width:0px;
  2091. word-wrap:break-word;
  2092. text-transform:none;
  2093. visibility:hidden;
  2094. }
  2095. #u90928_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:84px;
  2101. height:40px;
  2102. }
  2103. #u90928 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:860px;
  2107. top:38px;
  2108. width:84px;
  2109. height:40px;
  2110. display:flex;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:12px;
  2115. color:#333333;
  2116. }
  2117. #u90928 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 0px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u90928_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. visibility:hidden;
  2129. }
  2130. #u90929_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:86px;
  2136. height:40px;
  2137. }
  2138. #u90929 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:78px;
  2143. width:86px;
  2144. height:40px;
  2145. display:flex;
  2146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:12px;
  2150. color:#333333;
  2151. }
  2152. #u90929 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:2px 2px 2px 0px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u90929_text {
  2160. border-width:0px;
  2161. word-wrap:break-word;
  2162. text-transform:none;
  2163. visibility:hidden;
  2164. }
  2165. #u90930_img {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:0px;
  2169. top:0px;
  2170. width:86px;
  2171. height:40px;
  2172. }
  2173. #u90930 {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:86px;
  2177. top:78px;
  2178. width:86px;
  2179. height:40px;
  2180. display:flex;
  2181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2182. font-weight:400;
  2183. font-style:normal;
  2184. font-size:12px;
  2185. color:#333333;
  2186. }
  2187. #u90930 .text {
  2188. position:absolute;
  2189. align-self:center;
  2190. padding:2px 2px 2px 0px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u90930_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. visibility:hidden;
  2199. }
  2200. #u90931_img {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:86px;
  2206. height:40px;
  2207. }
  2208. #u90931 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:172px;
  2212. top:78px;
  2213. width:86px;
  2214. height:40px;
  2215. display:flex;
  2216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2217. font-weight:400;
  2218. font-style:normal;
  2219. font-size:12px;
  2220. color:#333333;
  2221. }
  2222. #u90931 .text {
  2223. position:absolute;
  2224. align-self:center;
  2225. padding:2px 2px 2px 0px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u90931_text {
  2230. border-width:0px;
  2231. word-wrap:break-word;
  2232. text-transform:none;
  2233. visibility:hidden;
  2234. }
  2235. #u90932_img {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:86px;
  2241. height:40px;
  2242. }
  2243. #u90932 {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:258px;
  2247. top:78px;
  2248. width:86px;
  2249. height:40px;
  2250. display:flex;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:12px;
  2255. color:#333333;
  2256. }
  2257. #u90932 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:2px 2px 2px 0px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u90932_text {
  2265. border-width:0px;
  2266. word-wrap:break-word;
  2267. text-transform:none;
  2268. visibility:hidden;
  2269. }
  2270. #u90933_img {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:86px;
  2276. height:40px;
  2277. }
  2278. #u90933 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:344px;
  2282. top:78px;
  2283. width:86px;
  2284. height:40px;
  2285. display:flex;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:12px;
  2290. color:#333333;
  2291. }
  2292. #u90933 .text {
  2293. position:absolute;
  2294. align-self:center;
  2295. padding:2px 2px 2px 0px;
  2296. box-sizing:border-box;
  2297. width:100%;
  2298. }
  2299. #u90933_text {
  2300. border-width:0px;
  2301. word-wrap:break-word;
  2302. text-transform:none;
  2303. visibility:hidden;
  2304. }
  2305. #u90934_img {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:86px;
  2311. height:40px;
  2312. }
  2313. #u90934 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:430px;
  2317. top:78px;
  2318. width:86px;
  2319. height:40px;
  2320. display:flex;
  2321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2322. font-weight:400;
  2323. font-style:normal;
  2324. font-size:12px;
  2325. color:#333333;
  2326. }
  2327. #u90934 .text {
  2328. position:absolute;
  2329. align-self:center;
  2330. padding:2px 2px 2px 0px;
  2331. box-sizing:border-box;
  2332. width:100%;
  2333. }
  2334. #u90934_text {
  2335. border-width:0px;
  2336. word-wrap:break-word;
  2337. text-transform:none;
  2338. visibility:hidden;
  2339. }
  2340. #u90935_img {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:86px;
  2346. height:40px;
  2347. }
  2348. #u90935 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:516px;
  2352. top:78px;
  2353. width:86px;
  2354. height:40px;
  2355. display:flex;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:12px;
  2360. color:#333333;
  2361. }
  2362. #u90935 .text {
  2363. position:absolute;
  2364. align-self:center;
  2365. padding:2px 2px 2px 0px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u90935_text {
  2370. border-width:0px;
  2371. word-wrap:break-word;
  2372. text-transform:none;
  2373. visibility:hidden;
  2374. }
  2375. #u90936_img {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:86px;
  2381. height:40px;
  2382. }
  2383. #u90936 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:602px;
  2387. top:78px;
  2388. width:86px;
  2389. height:40px;
  2390. display:flex;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:12px;
  2395. color:#333333;
  2396. }
  2397. #u90936 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 0px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u90936_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u90937_img {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:86px;
  2416. height:40px;
  2417. }
  2418. #u90937 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:688px;
  2422. top:78px;
  2423. width:86px;
  2424. height:40px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:12px;
  2430. color:#333333;
  2431. }
  2432. #u90937 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:2px 2px 2px 0px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u90937_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. visibility:hidden;
  2444. }
  2445. #u90938_img {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:86px;
  2451. height:40px;
  2452. }
  2453. #u90938 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:774px;
  2457. top:78px;
  2458. width:86px;
  2459. height:40px;
  2460. display:flex;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:12px;
  2465. color:#333333;
  2466. }
  2467. #u90938 .text {
  2468. position:absolute;
  2469. align-self:center;
  2470. padding:2px 2px 2px 0px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u90938_text {
  2475. border-width:0px;
  2476. word-wrap:break-word;
  2477. text-transform:none;
  2478. visibility:hidden;
  2479. }
  2480. #u90939_img {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:84px;
  2486. height:40px;
  2487. }
  2488. #u90939 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:860px;
  2492. top:78px;
  2493. width:84px;
  2494. height:40px;
  2495. display:flex;
  2496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2497. font-weight:400;
  2498. font-style:normal;
  2499. font-size:12px;
  2500. color:#333333;
  2501. }
  2502. #u90939 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:2px 2px 2px 0px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u90939_text {
  2510. border-width:0px;
  2511. word-wrap:break-word;
  2512. text-transform:none;
  2513. visibility:hidden;
  2514. }
  2515. #u90940 {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:0px;
  2521. height:0px;
  2522. }
  2523. #u90941_div {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:1000px;
  2529. height:60px;
  2530. background:inherit;
  2531. background-color:rgba(255, 255, 255, 1);
  2532. box-sizing:border-box;
  2533. border-width:1px;
  2534. border-style:solid;
  2535. border-color:rgba(215, 215, 215, 1);
  2536. border-radius:0px;
  2537. -moz-box-shadow:none;
  2538. -webkit-box-shadow:none;
  2539. box-shadow:none;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:14px;
  2544. color:#AAAAAA;
  2545. text-align:center;
  2546. line-height:30px;
  2547. }
  2548. #u90941 {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:93px;
  2552. top:1200px;
  2553. width:1000px;
  2554. height:60px;
  2555. display:flex;
  2556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2557. font-weight:400;
  2558. font-style:normal;
  2559. font-size:14px;
  2560. color:#AAAAAA;
  2561. text-align:center;
  2562. line-height:30px;
  2563. }
  2564. #u90941 .text {
  2565. position:absolute;
  2566. align-self:center;
  2567. padding:5px 10px 5px 10px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u90941_text {
  2572. border-width:0px;
  2573. word-wrap:break-word;
  2574. text-transform:none;
  2575. visibility:hidden;
  2576. }
  2577. #u90942_div {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:80px;
  2583. height:30px;
  2584. background:inherit;
  2585. background-color:rgba(255, 255, 255, 1);
  2586. box-sizing:border-box;
  2587. border-width:1px;
  2588. border-style:solid;
  2589. border-color:rgba(170, 170, 170, 1);
  2590. border-radius:4px;
  2591. -moz-box-shadow:none;
  2592. -webkit-box-shadow:none;
  2593. box-shadow:none;
  2594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2595. font-weight:400;
  2596. font-style:normal;
  2597. font-size:14px;
  2598. }
  2599. #u90942 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:987px;
  2603. top:1215px;
  2604. width:80px;
  2605. height:30px;
  2606. display:flex;
  2607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2608. font-weight:400;
  2609. font-style:normal;
  2610. font-size:14px;
  2611. }
  2612. #u90942 .text {
  2613. position:absolute;
  2614. align-self:center;
  2615. padding:2px 2px 2px 2px;
  2616. box-sizing:border-box;
  2617. width:100%;
  2618. }
  2619. #u90942_text {
  2620. border-width:0px;
  2621. word-wrap:break-word;
  2622. text-transform:none;
  2623. }
  2624. #u90943 {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:0px;
  2630. height:0px;
  2631. }
  2632. #u90944_div {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:1000px;
  2638. height:1201px;
  2639. background:inherit;
  2640. background-color:rgba(242, 242, 242, 1);
  2641. box-sizing:border-box;
  2642. border-width:1px;
  2643. border-style:solid;
  2644. border-color:rgba(215, 215, 215, 1);
  2645. border-radius:0px;
  2646. -moz-box-shadow:none;
  2647. -webkit-box-shadow:none;
  2648. box-shadow:none;
  2649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2650. font-weight:400;
  2651. font-style:normal;
  2652. font-size:14px;
  2653. color:#AAAAAA;
  2654. text-align:center;
  2655. line-height:30px;
  2656. }
  2657. #u90944 {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:2170px;
  2661. top:59px;
  2662. width:1000px;
  2663. height:1201px;
  2664. display:flex;
  2665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2666. font-weight:400;
  2667. font-style:normal;
  2668. font-size:14px;
  2669. color:#AAAAAA;
  2670. text-align:center;
  2671. line-height:30px;
  2672. }
  2673. #u90944 .text {
  2674. position:absolute;
  2675. align-self:center;
  2676. padding:5px 10px 5px 10px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u90944_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. visibility:hidden;
  2685. }
  2686. #u90945_div {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:1000px;
  2692. height:200px;
  2693. background:inherit;
  2694. background-color:rgba(255, 255, 255, 1);
  2695. box-sizing:border-box;
  2696. border-width:1px;
  2697. border-style:solid;
  2698. border-color:rgba(215, 215, 215, 1);
  2699. border-radius:0px;
  2700. -moz-box-shadow:none;
  2701. -webkit-box-shadow:none;
  2702. box-shadow:none;
  2703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2704. font-weight:400;
  2705. font-style:normal;
  2706. font-size:14px;
  2707. color:#AAAAAA;
  2708. text-align:center;
  2709. line-height:30px;
  2710. }
  2711. #u90945 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:2170px;
  2715. top:59px;
  2716. width:1000px;
  2717. height:200px;
  2718. display:flex;
  2719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:14px;
  2723. color:#AAAAAA;
  2724. text-align:center;
  2725. line-height:30px;
  2726. }
  2727. #u90945 .text {
  2728. position:absolute;
  2729. align-self:center;
  2730. padding:5px 10px 5px 10px;
  2731. box-sizing:border-box;
  2732. width:100%;
  2733. }
  2734. #u90945_text {
  2735. border-width:0px;
  2736. word-wrap:break-word;
  2737. text-transform:none;
  2738. visibility:hidden;
  2739. }
  2740. #u90946_div {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:83px;
  2746. height:35px;
  2747. background:inherit;
  2748. background-color:rgba(255, 255, 255, 0);
  2749. border:none;
  2750. border-top:0px;
  2751. border-right:0px;
  2752. border-bottom:0px;
  2753. border-radius:0px;
  2754. border-top-left-radius:0px;
  2755. border-bottom-left-radius:0px;
  2756. -moz-box-shadow:none;
  2757. -webkit-box-shadow:none;
  2758. box-shadow:none;
  2759. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2760. font-weight:500;
  2761. font-style:normal;
  2762. font-size:18px;
  2763. }
  2764. #u90946 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:2190px;
  2768. top:77px;
  2769. width:83px;
  2770. height:35px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2773. font-weight:500;
  2774. font-style:normal;
  2775. font-size:18px;
  2776. }
  2777. #u90946 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:5px 10px 5px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u90946_text {
  2785. border-width:0px;
  2786. white-space:nowrap;
  2787. text-transform:none;
  2788. }
  2789. #u90947 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:0px;
  2795. height:0px;
  2796. }
  2797. #u90948_div {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:40px;
  2803. height:40px;
  2804. background:inherit;
  2805. background-color:rgba(255, 255, 255, 0);
  2806. border:none;
  2807. border-top:0px;
  2808. border-right:0px;
  2809. border-bottom:0px;
  2810. border-radius:0px;
  2811. border-top-left-radius:0px;
  2812. border-bottom-left-radius:0px;
  2813. -moz-box-shadow:none;
  2814. -webkit-box-shadow:none;
  2815. box-shadow:none;
  2816. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2817. font-weight:500;
  2818. font-style:normal;
  2819. font-size:14px;
  2820. text-align:center;
  2821. }
  2822. #u90948 {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:3130px;
  2826. top:59px;
  2827. width:40px;
  2828. height:40px;
  2829. display:flex;
  2830. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2831. font-weight:500;
  2832. font-style:normal;
  2833. font-size:14px;
  2834. text-align:center;
  2835. }
  2836. #u90948 .text {
  2837. position:absolute;
  2838. align-self:center;
  2839. padding:5px 10px 5px 0px;
  2840. box-sizing:border-box;
  2841. width:100%;
  2842. }
  2843. #u90948_text {
  2844. border-width:0px;
  2845. word-wrap:break-word;
  2846. text-transform:none;
  2847. }
  2848. #u90949_img {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:13px;
  2854. height:13px;
  2855. }
  2856. #u90949 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:3118px;
  2860. top:75px;
  2861. width:13px;
  2862. height:13px;
  2863. display:flex;
  2864. font-size:14px;
  2865. }
  2866. #u90949 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 2px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u90949_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u90950 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:0px;
  2885. height:0px;
  2886. }
  2887. #u90951_div {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:1000px;
  2893. height:645px;
  2894. background:inherit;
  2895. background-color:rgba(255, 255, 255, 1);
  2896. box-sizing:border-box;
  2897. border-width:1px;
  2898. border-style:solid;
  2899. border-color:rgba(215, 215, 215, 1);
  2900. border-radius:0px;
  2901. -moz-box-shadow:none;
  2902. -webkit-box-shadow:none;
  2903. box-shadow:none;
  2904. }
  2905. #u90951 {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:2170px;
  2909. top:615px;
  2910. width:1000px;
  2911. height:645px;
  2912. display:flex;
  2913. }
  2914. #u90951 .text {
  2915. position:absolute;
  2916. align-self:center;
  2917. padding:2px 2px 2px 2px;
  2918. box-sizing:border-box;
  2919. width:100%;
  2920. }
  2921. #u90951_text {
  2922. border-width:0px;
  2923. word-wrap:break-word;
  2924. text-transform:none;
  2925. visibility:hidden;
  2926. }
  2927. #u90952_div {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:103px;
  2933. height:24px;
  2934. background:inherit;
  2935. background-color:rgba(255, 255, 255, 0);
  2936. border:none;
  2937. border-top:0px;
  2938. border-right:0px;
  2939. border-bottom:0px;
  2940. border-radius:0px;
  2941. border-top-left-radius:0px;
  2942. border-bottom-left-radius:0px;
  2943. -moz-box-shadow:none;
  2944. -webkit-box-shadow:none;
  2945. box-shadow:none;
  2946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:10px;
  2950. color:#AAAAAA;
  2951. }
  2952. #u90952 {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:2425px;
  2956. top:688px;
  2957. width:103px;
  2958. height:24px;
  2959. display:flex;
  2960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2961. font-weight:400;
  2962. font-style:normal;
  2963. font-size:10px;
  2964. color:#AAAAAA;
  2965. }
  2966. #u90952 .text {
  2967. position:absolute;
  2968. align-self:flex-start;
  2969. padding:5px 0px 5px 0px;
  2970. box-sizing:border-box;
  2971. width:100%;
  2972. }
  2973. #u90952_text {
  2974. border-width:0px;
  2975. white-space:nowrap;
  2976. text-transform:none;
  2977. }
  2978. #u90953 {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:0px;
  2982. top:0px;
  2983. width:0px;
  2984. height:0px;
  2985. }
  2986. #u90954_div {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:43px;
  2992. height:30px;
  2993. background:inherit;
  2994. background-color:rgba(255, 255, 255, 0);
  2995. border:none;
  2996. border-top:0px;
  2997. border-right:0px;
  2998. border-bottom:0px;
  2999. border-radius:0px;
  3000. border-top-left-radius:0px;
  3001. border-bottom-left-radius:0px;
  3002. -moz-box-shadow:none;
  3003. -webkit-box-shadow:none;
  3004. box-shadow:none;
  3005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3006. font-weight:400;
  3007. font-style:normal;
  3008. font-size:14px;
  3009. }
  3010. #u90954 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:2258px;
  3014. top:690px;
  3015. width:43px;
  3016. height:30px;
  3017. display:flex;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. font-size:14px;
  3022. }
  3023. #u90954 .text {
  3024. position:absolute;
  3025. align-self:flex-start;
  3026. padding:0px 0px 0px 0px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u90954_text {
  3031. border-width:0px;
  3032. white-space:nowrap;
  3033. text-transform:none;
  3034. }
  3035. #u90955_div {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:23px;
  3041. height:16px;
  3042. background:inherit;
  3043. background-color:rgba(255, 255, 255, 0);
  3044. border:none;
  3045. border-top:0px;
  3046. border-right:0px;
  3047. border-bottom:0px;
  3048. border-radius:0px;
  3049. border-top-left-radius:0px;
  3050. border-bottom-left-radius:0px;
  3051. -moz-box-shadow:none;
  3052. -webkit-box-shadow:none;
  3053. box-shadow:none;
  3054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3055. font-weight:400;
  3056. font-style:normal;
  3057. font-size:11px;
  3058. color:#AAAAAA;
  3059. }
  3060. #u90955 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:2258px;
  3064. top:718px;
  3065. width:23px;
  3066. height:16px;
  3067. display:flex;
  3068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3069. font-weight:400;
  3070. font-style:normal;
  3071. font-size:11px;
  3072. color:#AAAAAA;
  3073. }
  3074. #u90955 .text {
  3075. position:absolute;
  3076. align-self:flex-start;
  3077. padding:0px 0px 0px 0px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u90955_text {
  3082. border-width:0px;
  3083. white-space:nowrap;
  3084. text-transform:none;
  3085. }
  3086. #u90956_div {
  3087. border-width:0px;
  3088. position:absolute;
  3089. left:0px;
  3090. top:0px;
  3091. width:43px;
  3092. height:20px;
  3093. background:inherit;
  3094. background-color:rgba(255, 255, 255, 0);
  3095. border:none;
  3096. border-top:0px;
  3097. border-right:0px;
  3098. border-bottom:0px;
  3099. border-radius:0px;
  3100. border-top-left-radius:0px;
  3101. border-bottom-left-radius:0px;
  3102. -moz-box-shadow:none;
  3103. -webkit-box-shadow:none;
  3104. box-shadow:none;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:14px;
  3109. }
  3110. #u90956 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:2258px;
  3114. top:760px;
  3115. width:43px;
  3116. height:20px;
  3117. display:flex;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. font-size:14px;
  3122. }
  3123. #u90956 .text {
  3124. position:absolute;
  3125. align-self:flex-start;
  3126. padding:0px 0px 0px 0px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u90956_text {
  3131. border-width:0px;
  3132. white-space:nowrap;
  3133. text-transform:none;
  3134. }
  3135. #u90957_div {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:63px;
  3141. height:16px;
  3142. background:inherit;
  3143. background-color:rgba(255, 255, 255, 0);
  3144. border:none;
  3145. border-top:0px;
  3146. border-right:0px;
  3147. border-bottom:0px;
  3148. border-radius:0px;
  3149. border-top-left-radius:0px;
  3150. border-bottom-left-radius:0px;
  3151. -moz-box-shadow:none;
  3152. -webkit-box-shadow:none;
  3153. box-shadow:none;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:11px;
  3158. color:#AAAAAA;
  3159. }
  3160. #u90957 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:2258px;
  3164. top:788px;
  3165. width:63px;
  3166. height:16px;
  3167. display:flex;
  3168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3169. font-weight:400;
  3170. font-style:normal;
  3171. font-size:11px;
  3172. color:#AAAAAA;
  3173. }
  3174. #u90957 .text {
  3175. position:absolute;
  3176. align-self:flex-start;
  3177. padding:0px 0px 0px 0px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u90957_text {
  3182. border-width:0px;
  3183. white-space:nowrap;
  3184. text-transform:none;
  3185. }
  3186. #u90958_div {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:0px;
  3190. top:0px;
  3191. width:37px;
  3192. height:35px;
  3193. background:inherit;
  3194. background-color:rgba(255, 255, 255, 0);
  3195. border:none;
  3196. border-top:0px;
  3197. border-right:0px;
  3198. border-bottom:0px;
  3199. border-radius:0px;
  3200. border-top-left-radius:0px;
  3201. border-bottom-left-radius:0px;
  3202. -moz-box-shadow:none;
  3203. -webkit-box-shadow:none;
  3204. box-shadow:none;
  3205. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3206. font-weight:500;
  3207. font-style:normal;
  3208. font-size:18px;
  3209. }
  3210. #u90958 {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:2196px;
  3214. top:633px;
  3215. width:37px;
  3216. height:35px;
  3217. display:flex;
  3218. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3219. font-weight:500;
  3220. font-style:normal;
  3221. font-size:18px;
  3222. }
  3223. #u90958 .text {
  3224. position:absolute;
  3225. align-self:flex-start;
  3226. padding:5px 0px 5px 0px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u90958_text {
  3231. border-width:0px;
  3232. white-space:nowrap;
  3233. text-transform:none;
  3234. }
  3235. #u90959 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:0px;
  3241. height:0px;
  3242. }
  3243. #u90960_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:2px;
  3249. height:32px;
  3250. }
  3251. #u90960 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:2235px;
  3255. top:724px;
  3256. width:1px;
  3257. height:31px;
  3258. display:flex;
  3259. }
  3260. #u90960 .text {
  3261. position:absolute;
  3262. align-self:center;
  3263. padding:2px 2px 2px 2px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u90960_text {
  3268. border-width:0px;
  3269. word-wrap:break-word;
  3270. text-transform:none;
  3271. visibility:hidden;
  3272. }
  3273. #u90961 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:0px;
  3279. height:0px;
  3280. }
  3281. #u90962_div {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:0px;
  3285. top:0px;
  3286. width:30px;
  3287. height:30px;
  3288. background:inherit;
  3289. background-color:rgba(24, 144, 255, 1);
  3290. border:none;
  3291. border-radius:4px;
  3292. -moz-box-shadow:none;
  3293. -webkit-box-shadow:none;
  3294. box-shadow:none;
  3295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3296. font-weight:400;
  3297. font-style:normal;
  3298. font-size:10px;
  3299. color:#FFFFFF;
  3300. }
  3301. #u90962 {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:2220px;
  3305. top:760px;
  3306. width:30px;
  3307. height:30px;
  3308. display:flex;
  3309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3310. font-weight:400;
  3311. font-style:normal;
  3312. font-size:10px;
  3313. color:#FFFFFF;
  3314. }
  3315. #u90962 .text {
  3316. position:absolute;
  3317. align-self:center;
  3318. padding:2px 2px 2px 2px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u90962_text {
  3323. border-width:0px;
  3324. word-wrap:break-word;
  3325. text-transform:none;
  3326. }
  3327. #u90963 {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:0px;
  3331. top:0px;
  3332. width:0px;
  3333. height:0px;
  3334. }
  3335. #u90964_img {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:9px;
  3341. height:9px;
  3342. }
  3343. #u90964 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:2241px;
  3347. top:782px;
  3348. width:9px;
  3349. height:9px;
  3350. display:flex;
  3351. }
  3352. #u90964 .text {
  3353. position:absolute;
  3354. align-self:center;
  3355. padding:2px 2px 2px 2px;
  3356. box-sizing:border-box;
  3357. width:100%;
  3358. }
  3359. #u90964_text {
  3360. border-width:0px;
  3361. word-wrap:break-word;
  3362. text-transform:none;
  3363. visibility:hidden;
  3364. }
  3365. #u90965_img {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:3px;
  3371. height:3px;
  3372. }
  3373. #u90965 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:2244px;
  3377. top:785px;
  3378. width:3px;
  3379. height:3px;
  3380. display:flex;
  3381. }
  3382. #u90965 .text {
  3383. position:absolute;
  3384. align-self:center;
  3385. padding:2px 2px 2px 2px;
  3386. box-sizing:border-box;
  3387. width:100%;
  3388. }
  3389. #u90965_text {
  3390. border-width:0px;
  3391. word-wrap:break-word;
  3392. text-transform:none;
  3393. visibility:hidden;
  3394. }
  3395. #u90966 {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:0px;
  3399. top:0px;
  3400. width:0px;
  3401. height:0px;
  3402. }
  3403. #u90967_div {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:30px;
  3409. height:30px;
  3410. background:inherit;
  3411. background-color:rgba(24, 144, 255, 1);
  3412. border:none;
  3413. border-radius:4px;
  3414. -moz-box-shadow:none;
  3415. -webkit-box-shadow:none;
  3416. box-shadow:none;
  3417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3418. font-weight:400;
  3419. font-style:normal;
  3420. font-size:12px;
  3421. color:#FFFFFF;
  3422. }
  3423. #u90967 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:2220px;
  3427. top:690px;
  3428. width:30px;
  3429. height:30px;
  3430. display:flex;
  3431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. font-size:12px;
  3435. color:#FFFFFF;
  3436. }
  3437. #u90967 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 2px 2px 2px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u90967_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. }
  3449. #u90968 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:0px;
  3455. height:0px;
  3456. }
  3457. #u90969_img {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:0px;
  3461. top:0px;
  3462. width:9px;
  3463. height:9px;
  3464. }
  3465. #u90969 {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:2242px;
  3469. top:712px;
  3470. width:9px;
  3471. height:9px;
  3472. display:flex;
  3473. }
  3474. #u90969 .text {
  3475. position:absolute;
  3476. align-self:center;
  3477. padding:2px 2px 2px 2px;
  3478. box-sizing:border-box;
  3479. width:100%;
  3480. }
  3481. #u90969_text {
  3482. border-width:0px;
  3483. word-wrap:break-word;
  3484. text-transform:none;
  3485. visibility:hidden;
  3486. }
  3487. #u90970_img {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:0px;
  3491. top:0px;
  3492. width:5px;
  3493. height:4px;
  3494. }
  3495. #u90970 {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:2244px;
  3499. top:715px;
  3500. width:5px;
  3501. height:4px;
  3502. display:flex;
  3503. }
  3504. #u90970 .text {
  3505. position:absolute;
  3506. align-self:center;
  3507. padding:2px 2px 2px 2px;
  3508. box-sizing:border-box;
  3509. width:100%;
  3510. }
  3511. #u90970_text {
  3512. border-width:0px;
  3513. word-wrap:break-word;
  3514. text-transform:none;
  3515. visibility:hidden;
  3516. }
  3517. #u90971_div {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:103px;
  3523. height:24px;
  3524. background:inherit;
  3525. background-color:rgba(255, 255, 255, 0);
  3526. border:none;
  3527. border-top:0px;
  3528. border-right:0px;
  3529. border-bottom:0px;
  3530. border-radius:0px;
  3531. border-top-left-radius:0px;
  3532. border-bottom-left-radius:0px;
  3533. -moz-box-shadow:none;
  3534. -webkit-box-shadow:none;
  3535. box-shadow:none;
  3536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3537. font-weight:400;
  3538. font-style:normal;
  3539. font-size:10px;
  3540. color:#AAAAAA;
  3541. }
  3542. #u90971 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:2425px;
  3546. top:758px;
  3547. width:103px;
  3548. height:24px;
  3549. display:flex;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:10px;
  3554. color:#AAAAAA;
  3555. }
  3556. #u90971 .text {
  3557. position:absolute;
  3558. align-self:flex-start;
  3559. padding:5px 0px 5px 0px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u90971_text {
  3564. border-width:0px;
  3565. white-space:nowrap;
  3566. text-transform:none;
  3567. }
  3568. #u90972_img {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:108px;
  3574. height:108px;
  3575. }
  3576. #u90972 {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:3014px;
  3580. top:129px;
  3581. width:108px;
  3582. height:108px;
  3583. display:flex;
  3584. -webkit-transform:rotate(315deg);
  3585. -moz-transform:rotate(315deg);
  3586. -ms-transform:rotate(315deg);
  3587. transform:rotate(315deg);
  3588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3589. font-weight:400;
  3590. font-style:normal;
  3591. font-size:28px;
  3592. color:#D9001B;
  3593. }
  3594. #u90972 .text {
  3595. position:absolute;
  3596. align-self:center;
  3597. padding:2px 2px 2px 2px;
  3598. box-sizing:border-box;
  3599. width:100%;
  3600. }
  3601. #u90972_text {
  3602. border-width:0px;
  3603. word-wrap:break-word;
  3604. text-transform:none;
  3605. }
  3606. #u90973 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:0px;
  3612. height:0px;
  3613. }
  3614. #u90974_div {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:1000px;
  3620. height:60px;
  3621. background:inherit;
  3622. background-color:rgba(255, 255, 255, 1);
  3623. box-sizing:border-box;
  3624. border-width:1px;
  3625. border-style:solid;
  3626. border-color:rgba(215, 215, 215, 1);
  3627. border-radius:0px;
  3628. -moz-box-shadow:none;
  3629. -webkit-box-shadow:none;
  3630. box-shadow:none;
  3631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3632. font-weight:400;
  3633. font-style:normal;
  3634. font-size:14px;
  3635. color:#AAAAAA;
  3636. text-align:center;
  3637. line-height:30px;
  3638. }
  3639. #u90974 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:2170px;
  3643. top:1200px;
  3644. width:1000px;
  3645. height:60px;
  3646. display:flex;
  3647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3648. font-weight:400;
  3649. font-style:normal;
  3650. font-size:14px;
  3651. color:#AAAAAA;
  3652. text-align:center;
  3653. line-height:30px;
  3654. }
  3655. #u90974 .text {
  3656. position:absolute;
  3657. align-self:center;
  3658. padding:5px 10px 5px 10px;
  3659. box-sizing:border-box;
  3660. width:100%;
  3661. }
  3662. #u90974_text {
  3663. border-width:0px;
  3664. word-wrap:break-word;
  3665. text-transform:none;
  3666. visibility:hidden;
  3667. }
  3668. #u90975_div {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:80px;
  3674. height:30px;
  3675. background:inherit;
  3676. background-color:rgba(255, 255, 255, 1);
  3677. box-sizing:border-box;
  3678. border-width:1px;
  3679. border-style:solid;
  3680. border-color:rgba(170, 170, 170, 1);
  3681. border-radius:4px;
  3682. -moz-box-shadow:none;
  3683. -webkit-box-shadow:none;
  3684. box-shadow:none;
  3685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:14px;
  3689. }
  3690. #u90975 {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:3064px;
  3694. top:1215px;
  3695. width:80px;
  3696. height:30px;
  3697. display:flex;
  3698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3699. font-weight:400;
  3700. font-style:normal;
  3701. font-size:14px;
  3702. }
  3703. #u90975 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 2px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u90975_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. }
  3715. #u90976_div {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:1000px;
  3721. height:336px;
  3722. background:inherit;
  3723. background-color:rgba(255, 255, 255, 1);
  3724. box-sizing:border-box;
  3725. border-width:1px;
  3726. border-style:solid;
  3727. border-color:rgba(215, 215, 215, 1);
  3728. border-radius:0px;
  3729. -moz-box-shadow:none;
  3730. -webkit-box-shadow:none;
  3731. box-shadow:none;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:14px;
  3736. color:#AAAAAA;
  3737. text-align:center;
  3738. line-height:30px;
  3739. }
  3740. #u90976 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:2170px;
  3744. top:269px;
  3745. width:1000px;
  3746. height:336px;
  3747. display:flex;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:14px;
  3752. color:#AAAAAA;
  3753. text-align:center;
  3754. line-height:30px;
  3755. }
  3756. #u90976 .text {
  3757. position:absolute;
  3758. align-self:center;
  3759. padding:5px 10px 5px 10px;
  3760. box-sizing:border-box;
  3761. width:100%;
  3762. }
  3763. #u90976_text {
  3764. border-width:0px;
  3765. word-wrap:break-word;
  3766. text-transform:none;
  3767. visibility:hidden;
  3768. }
  3769. #u90977_div {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:320px;
  3775. height:90px;
  3776. background:inherit;
  3777. background-color:rgba(255, 255, 255, 0);
  3778. border:none;
  3779. border-left:0px;
  3780. border-top:0px;
  3781. border-right:0px;
  3782. border-radius:0px;
  3783. border-bottom-right-radius:0px;
  3784. border-bottom-left-radius:0px;
  3785. -moz-box-shadow:none;
  3786. -webkit-box-shadow:none;
  3787. box-shadow:none;
  3788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3789. font-weight:400;
  3790. font-style:normal;
  3791. font-size:14px;
  3792. line-height:30px;
  3793. }
  3794. #u90977 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:2200px;
  3798. top:302px;
  3799. width:320px;
  3800. height:90px;
  3801. display:flex;
  3802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3803. font-weight:400;
  3804. font-style:normal;
  3805. font-size:14px;
  3806. line-height:30px;
  3807. }
  3808. #u90977 .text {
  3809. position:absolute;
  3810. align-self:flex-start;
  3811. padding:0px 0px 0px 0px;
  3812. box-sizing:border-box;
  3813. width:100%;
  3814. }
  3815. #u90977_text {
  3816. border-width:0px;
  3817. word-wrap:break-word;
  3818. text-transform:none;
  3819. }
  3820. #u90978_div {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:0px;
  3824. top:0px;
  3825. width:320px;
  3826. height:60px;
  3827. background:inherit;
  3828. background-color:rgba(255, 255, 255, 0);
  3829. border:none;
  3830. border-left:0px;
  3831. border-top:0px;
  3832. border-right:0px;
  3833. border-radius:0px;
  3834. border-bottom-right-radius:0px;
  3835. border-bottom-left-radius:0px;
  3836. -moz-box-shadow:none;
  3837. -webkit-box-shadow:none;
  3838. box-shadow:none;
  3839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3840. font-weight:400;
  3841. font-style:normal;
  3842. font-size:14px;
  3843. line-height:30px;
  3844. }
  3845. #u90978 {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:2520px;
  3849. top:302px;
  3850. width:320px;
  3851. height:60px;
  3852. display:flex;
  3853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3854. font-weight:400;
  3855. font-style:normal;
  3856. font-size:14px;
  3857. line-height:30px;
  3858. }
  3859. #u90978 .text {
  3860. position:absolute;
  3861. align-self:flex-start;
  3862. padding:0px 0px 0px 0px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u90978_text {
  3867. border-width:0px;
  3868. word-wrap:break-word;
  3869. text-transform:none;
  3870. }
  3871. #u90979_div {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:320px;
  3877. height:60px;
  3878. background:inherit;
  3879. background-color:rgba(255, 255, 255, 0);
  3880. border:none;
  3881. border-left:0px;
  3882. border-top:0px;
  3883. border-right:0px;
  3884. border-radius:0px;
  3885. border-bottom-right-radius:0px;
  3886. border-bottom-left-radius:0px;
  3887. -moz-box-shadow:none;
  3888. -webkit-box-shadow:none;
  3889. box-shadow:none;
  3890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3891. font-weight:400;
  3892. font-style:normal;
  3893. font-size:14px;
  3894. line-height:30px;
  3895. }
  3896. #u90979 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:2840px;
  3900. top:302px;
  3901. width:320px;
  3902. height:60px;
  3903. display:flex;
  3904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:14px;
  3908. line-height:30px;
  3909. }
  3910. #u90979 .text {
  3911. position:absolute;
  3912. align-self:flex-start;
  3913. padding:0px 0px 0px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u90979_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. }
  3922. #u90980_div {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:320px;
  3928. height:30px;
  3929. background:inherit;
  3930. background-color:rgba(255, 255, 255, 0);
  3931. border:none;
  3932. border-left:0px;
  3933. border-top:0px;
  3934. border-right:0px;
  3935. border-radius:0px;
  3936. border-bottom-right-radius:0px;
  3937. border-bottom-left-radius:0px;
  3938. -moz-box-shadow:none;
  3939. -webkit-box-shadow:none;
  3940. box-shadow:none;
  3941. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3942. font-weight:500;
  3943. font-style:normal;
  3944. font-size:18px;
  3945. line-height:30px;
  3946. }
  3947. #u90980 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:2200px;
  3951. top:412px;
  3952. width:320px;
  3953. height:30px;
  3954. display:flex;
  3955. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3956. font-weight:500;
  3957. font-style:normal;
  3958. font-size:18px;
  3959. line-height:30px;
  3960. }
  3961. #u90980 .text {
  3962. position:absolute;
  3963. align-self:flex-start;
  3964. padding:0px 0px 0px 0px;
  3965. box-sizing:border-box;
  3966. width:100%;
  3967. }
  3968. #u90980_text {
  3969. border-width:0px;
  3970. word-wrap:break-word;
  3971. text-transform:none;
  3972. }
  3973. #u90981 {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:2200px;
  3977. top:452px;
  3978. width:944px;
  3979. height:118px;
  3980. }
  3981. #u90982_img {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:0px;
  3986. width:86px;
  3987. height:38px;
  3988. }
  3989. #u90982 {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:86px;
  3995. height:38px;
  3996. display:flex;
  3997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3998. font-weight:400;
  3999. font-style:normal;
  4000. font-size:12px;
  4001. color:#FFFFFF;
  4002. }
  4003. #u90982 .text {
  4004. position:absolute;
  4005. align-self:center;
  4006. padding:2px 2px 2px 0px;
  4007. box-sizing:border-box;
  4008. width:100%;
  4009. }
  4010. #u90982_text {
  4011. border-width:0px;
  4012. word-wrap:break-word;
  4013. text-transform:none;
  4014. }
  4015. #u90983_img {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:86px;
  4021. height:38px;
  4022. }
  4023. #u90983 {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:86px;
  4027. top:0px;
  4028. width:86px;
  4029. height:38px;
  4030. display:flex;
  4031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4032. font-weight:400;
  4033. font-style:normal;
  4034. font-size:12px;
  4035. color:#FFFFFF;
  4036. }
  4037. #u90983 .text {
  4038. position:absolute;
  4039. align-self:center;
  4040. padding:2px 2px 2px 0px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u90983_text {
  4045. border-width:0px;
  4046. word-wrap:break-word;
  4047. text-transform:none;
  4048. }
  4049. #u90984_img {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:86px;
  4055. height:38px;
  4056. }
  4057. #u90984 {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:172px;
  4061. top:0px;
  4062. width:86px;
  4063. height:38px;
  4064. display:flex;
  4065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4066. font-weight:400;
  4067. font-style:normal;
  4068. font-size:12px;
  4069. color:#FFFFFF;
  4070. }
  4071. #u90984 .text {
  4072. position:absolute;
  4073. align-self:center;
  4074. padding:2px 2px 2px 0px;
  4075. box-sizing:border-box;
  4076. width:100%;
  4077. }
  4078. #u90984_text {
  4079. border-width:0px;
  4080. word-wrap:break-word;
  4081. text-transform:none;
  4082. }
  4083. #u90985_img {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:86px;
  4089. height:38px;
  4090. }
  4091. #u90985 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:258px;
  4095. top:0px;
  4096. width:86px;
  4097. height:38px;
  4098. display:flex;
  4099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. font-size:12px;
  4103. color:#FFFFFF;
  4104. }
  4105. #u90985 .text {
  4106. position:absolute;
  4107. align-self:center;
  4108. padding:2px 2px 2px 0px;
  4109. box-sizing:border-box;
  4110. width:100%;
  4111. }
  4112. #u90985_text {
  4113. border-width:0px;
  4114. word-wrap:break-word;
  4115. text-transform:none;
  4116. }
  4117. #u90986_img {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:86px;
  4123. height:38px;
  4124. }
  4125. #u90986 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:344px;
  4129. top:0px;
  4130. width:86px;
  4131. height:38px;
  4132. display:flex;
  4133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4134. font-weight:400;
  4135. font-style:normal;
  4136. font-size:12px;
  4137. color:#FFFFFF;
  4138. }
  4139. #u90986 .text {
  4140. position:absolute;
  4141. align-self:center;
  4142. padding:2px 2px 2px 0px;
  4143. box-sizing:border-box;
  4144. width:100%;
  4145. }
  4146. #u90986_text {
  4147. border-width:0px;
  4148. word-wrap:break-word;
  4149. text-transform:none;
  4150. }
  4151. #u90987_img {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:0px;
  4155. top:0px;
  4156. width:86px;
  4157. height:38px;
  4158. }
  4159. #u90987 {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:430px;
  4163. top:0px;
  4164. width:86px;
  4165. height:38px;
  4166. display:flex;
  4167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4168. font-weight:400;
  4169. font-style:normal;
  4170. font-size:12px;
  4171. color:#FFFFFF;
  4172. }
  4173. #u90987 .text {
  4174. position:absolute;
  4175. align-self:center;
  4176. padding:2px 2px 2px 0px;
  4177. box-sizing:border-box;
  4178. width:100%;
  4179. }
  4180. #u90987_text {
  4181. border-width:0px;
  4182. word-wrap:break-word;
  4183. text-transform:none;
  4184. visibility:hidden;
  4185. }
  4186. #u90988_img {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:0px;
  4190. top:0px;
  4191. width:86px;
  4192. height:38px;
  4193. }
  4194. #u90988 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:516px;
  4198. top:0px;
  4199. width:86px;
  4200. height:38px;
  4201. display:flex;
  4202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4203. font-weight:400;
  4204. font-style:normal;
  4205. font-size:12px;
  4206. color:#FFFFFF;
  4207. }
  4208. #u90988 .text {
  4209. position:absolute;
  4210. align-self:center;
  4211. padding:2px 2px 2px 0px;
  4212. box-sizing:border-box;
  4213. width:100%;
  4214. }
  4215. #u90988_text {
  4216. border-width:0px;
  4217. word-wrap:break-word;
  4218. text-transform:none;
  4219. visibility:hidden;
  4220. }
  4221. #u90989_img {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:86px;
  4227. height:38px;
  4228. }
  4229. #u90989 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:602px;
  4233. top:0px;
  4234. width:86px;
  4235. height:38px;
  4236. display:flex;
  4237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:12px;
  4241. color:#FFFFFF;
  4242. }
  4243. #u90989 .text {
  4244. position:absolute;
  4245. align-self:center;
  4246. padding:2px 2px 2px 0px;
  4247. box-sizing:border-box;
  4248. width:100%;
  4249. }
  4250. #u90989_text {
  4251. border-width:0px;
  4252. word-wrap:break-word;
  4253. text-transform:none;
  4254. visibility:hidden;
  4255. }
  4256. #u90990_img {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:0px;
  4260. top:0px;
  4261. width:86px;
  4262. height:38px;
  4263. }
  4264. #u90990 {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:688px;
  4268. top:0px;
  4269. width:86px;
  4270. height:38px;
  4271. display:flex;
  4272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4273. font-weight:400;
  4274. font-style:normal;
  4275. font-size:12px;
  4276. color:#FFFFFF;
  4277. }
  4278. #u90990 .text {
  4279. position:absolute;
  4280. align-self:center;
  4281. padding:2px 2px 2px 0px;
  4282. box-sizing:border-box;
  4283. width:100%;
  4284. }
  4285. #u90990_text {
  4286. border-width:0px;
  4287. word-wrap:break-word;
  4288. text-transform:none;
  4289. visibility:hidden;
  4290. }
  4291. #u90991_img {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:86px;
  4297. height:38px;
  4298. }
  4299. #u90991 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:774px;
  4303. top:0px;
  4304. width:86px;
  4305. height:38px;
  4306. display:flex;
  4307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4308. font-weight:400;
  4309. font-style:normal;
  4310. font-size:12px;
  4311. color:#FFFFFF;
  4312. }
  4313. #u90991 .text {
  4314. position:absolute;
  4315. align-self:center;
  4316. padding:2px 2px 2px 0px;
  4317. box-sizing:border-box;
  4318. width:100%;
  4319. }
  4320. #u90991_text {
  4321. border-width:0px;
  4322. word-wrap:break-word;
  4323. text-transform:none;
  4324. visibility:hidden;
  4325. }
  4326. #u90992_img {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:0px;
  4330. top:0px;
  4331. width:84px;
  4332. height:38px;
  4333. }
  4334. #u90992 {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:860px;
  4338. top:0px;
  4339. width:84px;
  4340. height:38px;
  4341. display:flex;
  4342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4343. font-weight:400;
  4344. font-style:normal;
  4345. font-size:12px;
  4346. color:#FFFFFF;
  4347. }
  4348. #u90992 .text {
  4349. position:absolute;
  4350. align-self:center;
  4351. padding:2px 2px 2px 0px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u90992_text {
  4356. border-width:0px;
  4357. word-wrap:break-word;
  4358. text-transform:none;
  4359. visibility:hidden;
  4360. }
  4361. #u90993_img {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:86px;
  4367. height:40px;
  4368. }
  4369. #u90993 {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:38px;
  4374. width:86px;
  4375. height:40px;
  4376. display:flex;
  4377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4378. font-weight:400;
  4379. font-style:normal;
  4380. font-size:12px;
  4381. color:#333333;
  4382. }
  4383. #u90993 .text {
  4384. position:absolute;
  4385. align-self:center;
  4386. padding:2px 2px 2px 0px;
  4387. box-sizing:border-box;
  4388. width:100%;
  4389. }
  4390. #u90993_text {
  4391. border-width:0px;
  4392. word-wrap:break-word;
  4393. text-transform:none;
  4394. visibility:hidden;
  4395. }
  4396. #u90994_img {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:0px;
  4400. top:0px;
  4401. width:86px;
  4402. height:40px;
  4403. }
  4404. #u90994 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:86px;
  4408. top:38px;
  4409. width:86px;
  4410. height:40px;
  4411. display:flex;
  4412. font-family:'ArialMT', 'Arial', sans-serif;
  4413. font-weight:400;
  4414. font-style:normal;
  4415. font-size:12px;
  4416. color:#AAAAAA;
  4417. text-align:left;
  4418. }
  4419. #u90994 .text {
  4420. position:absolute;
  4421. align-self:center;
  4422. padding:2px 2px 2px 0px;
  4423. box-sizing:border-box;
  4424. width:100%;
  4425. }
  4426. #u90994_text {
  4427. border-width:0px;
  4428. word-wrap:break-word;
  4429. text-transform:none;
  4430. visibility:hidden;
  4431. }
  4432. #u90995_img {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:0px;
  4437. width:86px;
  4438. height:40px;
  4439. }
  4440. #u90995 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:172px;
  4444. top:38px;
  4445. width:86px;
  4446. height:40px;
  4447. display:flex;
  4448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4449. font-weight:400;
  4450. font-style:normal;
  4451. font-size:12px;
  4452. color:#333333;
  4453. }
  4454. #u90995 .text {
  4455. position:absolute;
  4456. align-self:center;
  4457. padding:2px 2px 2px 0px;
  4458. box-sizing:border-box;
  4459. width:100%;
  4460. }
  4461. #u90995_text {
  4462. border-width:0px;
  4463. word-wrap:break-word;
  4464. text-transform:none;
  4465. visibility:hidden;
  4466. }
  4467. #u90996_img {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:0px;
  4471. top:0px;
  4472. width:86px;
  4473. height:40px;
  4474. }
  4475. #u90996 {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:258px;
  4479. top:38px;
  4480. width:86px;
  4481. height:40px;
  4482. display:flex;
  4483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4484. font-weight:400;
  4485. font-style:normal;
  4486. font-size:12px;
  4487. color:#333333;
  4488. }
  4489. #u90996 .text {
  4490. position:absolute;
  4491. align-self:center;
  4492. padding:2px 2px 2px 0px;
  4493. box-sizing:border-box;
  4494. width:100%;
  4495. }
  4496. #u90996_text {
  4497. border-width:0px;
  4498. word-wrap:break-word;
  4499. text-transform:none;
  4500. visibility:hidden;
  4501. }
  4502. #u90997_img {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:0px;
  4506. top:0px;
  4507. width:86px;
  4508. height:40px;
  4509. }
  4510. #u90997 {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:344px;
  4514. top:38px;
  4515. width:86px;
  4516. height:40px;
  4517. display:flex;
  4518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4519. font-weight:400;
  4520. font-style:normal;
  4521. font-size:12px;
  4522. color:#333333;
  4523. }
  4524. #u90997 .text {
  4525. position:absolute;
  4526. align-self:center;
  4527. padding:2px 2px 2px 0px;
  4528. box-sizing:border-box;
  4529. width:100%;
  4530. }
  4531. #u90997_text {
  4532. border-width:0px;
  4533. word-wrap:break-word;
  4534. text-transform:none;
  4535. visibility:hidden;
  4536. }
  4537. #u90998_img {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:0px;
  4541. top:0px;
  4542. width:86px;
  4543. height:40px;
  4544. }
  4545. #u90998 {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:430px;
  4549. top:38px;
  4550. width:86px;
  4551. height:40px;
  4552. display:flex;
  4553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4554. font-weight:400;
  4555. font-style:normal;
  4556. font-size:12px;
  4557. color:#333333;
  4558. }
  4559. #u90998 .text {
  4560. position:absolute;
  4561. align-self:center;
  4562. padding:2px 2px 2px 0px;
  4563. box-sizing:border-box;
  4564. width:100%;
  4565. }
  4566. #u90998_text {
  4567. border-width:0px;
  4568. word-wrap:break-word;
  4569. text-transform:none;
  4570. visibility:hidden;
  4571. }
  4572. #u90999_img {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:0px;
  4576. top:0px;
  4577. width:86px;
  4578. height:40px;
  4579. }
  4580. #u90999 {
  4581. border-width:0px;
  4582. position:absolute;
  4583. left:516px;
  4584. top:38px;
  4585. width:86px;
  4586. height:40px;
  4587. display:flex;
  4588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4589. font-weight:400;
  4590. font-style:normal;
  4591. font-size:12px;
  4592. color:#333333;
  4593. }
  4594. #u90999 .text {
  4595. position:absolute;
  4596. align-self:center;
  4597. padding:2px 2px 2px 0px;
  4598. box-sizing:border-box;
  4599. width:100%;
  4600. }
  4601. #u90999_text {
  4602. border-width:0px;
  4603. word-wrap:break-word;
  4604. text-transform:none;
  4605. visibility:hidden;
  4606. }
  4607. #u91000_img {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:86px;
  4613. height:40px;
  4614. }
  4615. #u91000 {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:602px;
  4619. top:38px;
  4620. width:86px;
  4621. height:40px;
  4622. display:flex;
  4623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4624. font-weight:400;
  4625. font-style:normal;
  4626. font-size:12px;
  4627. color:#333333;
  4628. }
  4629. #u91000 .text {
  4630. position:absolute;
  4631. align-self:center;
  4632. padding:2px 2px 2px 0px;
  4633. box-sizing:border-box;
  4634. width:100%;
  4635. }
  4636. #u91000_text {
  4637. border-width:0px;
  4638. word-wrap:break-word;
  4639. text-transform:none;
  4640. visibility:hidden;
  4641. }
  4642. #u91001_img {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:86px;
  4648. height:40px;
  4649. }
  4650. #u91001 {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:688px;
  4654. top:38px;
  4655. width:86px;
  4656. height:40px;
  4657. display:flex;
  4658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4659. font-weight:400;
  4660. font-style:normal;
  4661. font-size:12px;
  4662. color:#333333;
  4663. }
  4664. #u91001 .text {
  4665. position:absolute;
  4666. align-self:center;
  4667. padding:2px 2px 2px 0px;
  4668. box-sizing:border-box;
  4669. width:100%;
  4670. }
  4671. #u91001_text {
  4672. border-width:0px;
  4673. word-wrap:break-word;
  4674. text-transform:none;
  4675. visibility:hidden;
  4676. }
  4677. #u91002_img {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:0px;
  4681. top:0px;
  4682. width:86px;
  4683. height:40px;
  4684. }
  4685. #u91002 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:774px;
  4689. top:38px;
  4690. width:86px;
  4691. height:40px;
  4692. display:flex;
  4693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4694. font-weight:400;
  4695. font-style:normal;
  4696. font-size:12px;
  4697. color:#333333;
  4698. }
  4699. #u91002 .text {
  4700. position:absolute;
  4701. align-self:center;
  4702. padding:2px 2px 2px 0px;
  4703. box-sizing:border-box;
  4704. width:100%;
  4705. }
  4706. #u91002_text {
  4707. border-width:0px;
  4708. word-wrap:break-word;
  4709. text-transform:none;
  4710. visibility:hidden;
  4711. }
  4712. #u91003_img {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:0px;
  4716. top:0px;
  4717. width:84px;
  4718. height:40px;
  4719. }
  4720. #u91003 {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:860px;
  4724. top:38px;
  4725. width:84px;
  4726. height:40px;
  4727. display:flex;
  4728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4729. font-weight:400;
  4730. font-style:normal;
  4731. font-size:12px;
  4732. color:#333333;
  4733. }
  4734. #u91003 .text {
  4735. position:absolute;
  4736. align-self:center;
  4737. padding:2px 2px 2px 0px;
  4738. box-sizing:border-box;
  4739. width:100%;
  4740. }
  4741. #u91003_text {
  4742. border-width:0px;
  4743. word-wrap:break-word;
  4744. text-transform:none;
  4745. visibility:hidden;
  4746. }
  4747. #u91004_img {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:86px;
  4753. height:40px;
  4754. }
  4755. #u91004 {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:0px;
  4759. top:78px;
  4760. width:86px;
  4761. height:40px;
  4762. display:flex;
  4763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4764. font-weight:400;
  4765. font-style:normal;
  4766. font-size:12px;
  4767. color:#333333;
  4768. }
  4769. #u91004 .text {
  4770. position:absolute;
  4771. align-self:center;
  4772. padding:2px 2px 2px 0px;
  4773. box-sizing:border-box;
  4774. width:100%;
  4775. }
  4776. #u91004_text {
  4777. border-width:0px;
  4778. word-wrap:break-word;
  4779. text-transform:none;
  4780. visibility:hidden;
  4781. }
  4782. #u91005_img {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:0px;
  4786. top:0px;
  4787. width:86px;
  4788. height:40px;
  4789. }
  4790. #u91005 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:86px;
  4794. top:78px;
  4795. width:86px;
  4796. height:40px;
  4797. display:flex;
  4798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4799. font-weight:400;
  4800. font-style:normal;
  4801. font-size:12px;
  4802. color:#333333;
  4803. }
  4804. #u91005 .text {
  4805. position:absolute;
  4806. align-self:center;
  4807. padding:2px 2px 2px 0px;
  4808. box-sizing:border-box;
  4809. width:100%;
  4810. }
  4811. #u91005_text {
  4812. border-width:0px;
  4813. word-wrap:break-word;
  4814. text-transform:none;
  4815. visibility:hidden;
  4816. }
  4817. #u91006_img {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:86px;
  4823. height:40px;
  4824. }
  4825. #u91006 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:172px;
  4829. top:78px;
  4830. width:86px;
  4831. height:40px;
  4832. display:flex;
  4833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4834. font-weight:400;
  4835. font-style:normal;
  4836. font-size:12px;
  4837. color:#333333;
  4838. }
  4839. #u91006 .text {
  4840. position:absolute;
  4841. align-self:center;
  4842. padding:2px 2px 2px 0px;
  4843. box-sizing:border-box;
  4844. width:100%;
  4845. }
  4846. #u91006_text {
  4847. border-width:0px;
  4848. word-wrap:break-word;
  4849. text-transform:none;
  4850. visibility:hidden;
  4851. }
  4852. #u91007_img {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:86px;
  4858. height:40px;
  4859. }
  4860. #u91007 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:258px;
  4864. top:78px;
  4865. width:86px;
  4866. height:40px;
  4867. display:flex;
  4868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:12px;
  4872. color:#333333;
  4873. }
  4874. #u91007 .text {
  4875. position:absolute;
  4876. align-self:center;
  4877. padding:2px 2px 2px 0px;
  4878. box-sizing:border-box;
  4879. width:100%;
  4880. }
  4881. #u91007_text {
  4882. border-width:0px;
  4883. word-wrap:break-word;
  4884. text-transform:none;
  4885. visibility:hidden;
  4886. }
  4887. #u91008_img {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:0px;
  4891. top:0px;
  4892. width:86px;
  4893. height:40px;
  4894. }
  4895. #u91008 {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:344px;
  4899. top:78px;
  4900. width:86px;
  4901. height:40px;
  4902. display:flex;
  4903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4904. font-weight:400;
  4905. font-style:normal;
  4906. font-size:12px;
  4907. color:#333333;
  4908. }
  4909. #u91008 .text {
  4910. position:absolute;
  4911. align-self:center;
  4912. padding:2px 2px 2px 0px;
  4913. box-sizing:border-box;
  4914. width:100%;
  4915. }
  4916. #u91008_text {
  4917. border-width:0px;
  4918. word-wrap:break-word;
  4919. text-transform:none;
  4920. visibility:hidden;
  4921. }
  4922. #u91009_img {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:0px;
  4926. top:0px;
  4927. width:86px;
  4928. height:40px;
  4929. }
  4930. #u91009 {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:430px;
  4934. top:78px;
  4935. width:86px;
  4936. height:40px;
  4937. display:flex;
  4938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4939. font-weight:400;
  4940. font-style:normal;
  4941. font-size:12px;
  4942. color:#333333;
  4943. }
  4944. #u91009 .text {
  4945. position:absolute;
  4946. align-self:center;
  4947. padding:2px 2px 2px 0px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u91009_text {
  4952. border-width:0px;
  4953. word-wrap:break-word;
  4954. text-transform:none;
  4955. visibility:hidden;
  4956. }
  4957. #u91010_img {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:86px;
  4963. height:40px;
  4964. }
  4965. #u91010 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:516px;
  4969. top:78px;
  4970. width:86px;
  4971. height:40px;
  4972. display:flex;
  4973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4974. font-weight:400;
  4975. font-style:normal;
  4976. font-size:12px;
  4977. color:#333333;
  4978. }
  4979. #u91010 .text {
  4980. position:absolute;
  4981. align-self:center;
  4982. padding:2px 2px 2px 0px;
  4983. box-sizing:border-box;
  4984. width:100%;
  4985. }
  4986. #u91010_text {
  4987. border-width:0px;
  4988. word-wrap:break-word;
  4989. text-transform:none;
  4990. visibility:hidden;
  4991. }
  4992. #u91011_img {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:0px;
  4996. top:0px;
  4997. width:86px;
  4998. height:40px;
  4999. }
  5000. #u91011 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:602px;
  5004. top:78px;
  5005. width:86px;
  5006. height:40px;
  5007. display:flex;
  5008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5009. font-weight:400;
  5010. font-style:normal;
  5011. font-size:12px;
  5012. color:#333333;
  5013. }
  5014. #u91011 .text {
  5015. position:absolute;
  5016. align-self:center;
  5017. padding:2px 2px 2px 0px;
  5018. box-sizing:border-box;
  5019. width:100%;
  5020. }
  5021. #u91011_text {
  5022. border-width:0px;
  5023. word-wrap:break-word;
  5024. text-transform:none;
  5025. visibility:hidden;
  5026. }
  5027. #u91012_img {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:0px;
  5031. top:0px;
  5032. width:86px;
  5033. height:40px;
  5034. }
  5035. #u91012 {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:688px;
  5039. top:78px;
  5040. width:86px;
  5041. height:40px;
  5042. display:flex;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:12px;
  5047. color:#333333;
  5048. }
  5049. #u91012 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 2px 2px 0px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u91012_text {
  5057. border-width:0px;
  5058. word-wrap:break-word;
  5059. text-transform:none;
  5060. visibility:hidden;
  5061. }
  5062. #u91013_img {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:86px;
  5068. height:40px;
  5069. }
  5070. #u91013 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:774px;
  5074. top:78px;
  5075. width:86px;
  5076. height:40px;
  5077. display:flex;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:12px;
  5082. color:#333333;
  5083. }
  5084. #u91013 .text {
  5085. position:absolute;
  5086. align-self:center;
  5087. padding:2px 2px 2px 0px;
  5088. box-sizing:border-box;
  5089. width:100%;
  5090. }
  5091. #u91013_text {
  5092. border-width:0px;
  5093. word-wrap:break-word;
  5094. text-transform:none;
  5095. visibility:hidden;
  5096. }
  5097. #u91014_img {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:0px;
  5101. top:0px;
  5102. width:84px;
  5103. height:40px;
  5104. }
  5105. #u91014 {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:860px;
  5109. top:78px;
  5110. width:84px;
  5111. height:40px;
  5112. display:flex;
  5113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5114. font-weight:400;
  5115. font-style:normal;
  5116. font-size:12px;
  5117. color:#333333;
  5118. }
  5119. #u91014 .text {
  5120. position:absolute;
  5121. align-self:center;
  5122. padding:2px 2px 2px 0px;
  5123. box-sizing:border-box;
  5124. width:100%;
  5125. }
  5126. #u91014_text {
  5127. border-width:0px;
  5128. word-wrap:break-word;
  5129. text-transform:none;
  5130. visibility:hidden;
  5131. }
  5132. #u91015_div {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:0px;
  5136. top:0px;
  5137. width:227px;
  5138. height:43px;
  5139. background:inherit;
  5140. background-color:rgba(255, 255, 255, 0);
  5141. border:none;
  5142. border-top:0px;
  5143. border-right:0px;
  5144. border-bottom:0px;
  5145. border-radius:0px;
  5146. border-top-left-radius:0px;
  5147. border-bottom-left-radius:0px;
  5148. -moz-box-shadow:none;
  5149. -webkit-box-shadow:none;
  5150. box-shadow:none;
  5151. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5152. font-weight:500;
  5153. font-style:normal;
  5154. font-size:24px;
  5155. }
  5156. #u91015 {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:2210px;
  5160. top:126px;
  5161. width:227px;
  5162. height:43px;
  5163. display:flex;
  5164. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5165. font-weight:500;
  5166. font-style:normal;
  5167. font-size:24px;
  5168. }
  5169. #u91015 .text {
  5170. position:absolute;
  5171. align-self:center;
  5172. padding:5px 10px 5px 0px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u91015_text {
  5177. border-width:0px;
  5178. white-space:nowrap;
  5179. text-transform:none;
  5180. }
  5181. #u91016_div {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:325px;
  5187. height:60px;
  5188. background:inherit;
  5189. background-color:rgba(255, 255, 255, 0);
  5190. border:none;
  5191. border-left:0px;
  5192. border-top:0px;
  5193. border-right:0px;
  5194. border-radius:0px;
  5195. border-bottom-right-radius:0px;
  5196. border-bottom-left-radius:0px;
  5197. -moz-box-shadow:none;
  5198. -webkit-box-shadow:none;
  5199. box-shadow:none;
  5200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5201. font-weight:400;
  5202. font-style:normal;
  5203. font-size:14px;
  5204. line-height:30px;
  5205. }
  5206. #u91016 {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:2210px;
  5210. top:179px;
  5211. width:325px;
  5212. height:60px;
  5213. display:flex;
  5214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5215. font-weight:400;
  5216. font-style:normal;
  5217. font-size:14px;
  5218. line-height:30px;
  5219. }
  5220. #u91016 .text {
  5221. position:absolute;
  5222. align-self:flex-start;
  5223. padding:0px 0px 0px 0px;
  5224. box-sizing:border-box;
  5225. width:100%;
  5226. }
  5227. #u91016_text {
  5228. border-width:0px;
  5229. word-wrap:break-word;
  5230. text-transform:none;
  5231. }
  5232. #u91017 {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:0px;
  5236. top:0px;
  5237. width:0px;
  5238. height:0px;
  5239. }
  5240. #u91018_div {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:1000px;
  5246. height:1201px;
  5247. background:inherit;
  5248. background-color:rgba(242, 242, 242, 1);
  5249. box-sizing:border-box;
  5250. border-width:1px;
  5251. border-style:solid;
  5252. border-color:rgba(215, 215, 215, 1);
  5253. border-radius:0px;
  5254. -moz-box-shadow:none;
  5255. -webkit-box-shadow:none;
  5256. box-shadow:none;
  5257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:14px;
  5261. color:#AAAAAA;
  5262. text-align:center;
  5263. line-height:30px;
  5264. }
  5265. #u91018 {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:1133px;
  5269. top:59px;
  5270. width:1000px;
  5271. height:1201px;
  5272. display:flex;
  5273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5274. font-weight:400;
  5275. font-style:normal;
  5276. font-size:14px;
  5277. color:#AAAAAA;
  5278. text-align:center;
  5279. line-height:30px;
  5280. }
  5281. #u91018 .text {
  5282. position:absolute;
  5283. align-self:center;
  5284. padding:5px 10px 5px 10px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u91018_text {
  5289. border-width:0px;
  5290. word-wrap:break-word;
  5291. text-transform:none;
  5292. visibility:hidden;
  5293. }
  5294. #u91019_div {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:1000px;
  5300. height:200px;
  5301. background:inherit;
  5302. background-color:rgba(255, 255, 255, 1);
  5303. box-sizing:border-box;
  5304. border-width:1px;
  5305. border-style:solid;
  5306. border-color:rgba(215, 215, 215, 1);
  5307. border-radius:0px;
  5308. -moz-box-shadow:none;
  5309. -webkit-box-shadow:none;
  5310. box-shadow:none;
  5311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5312. font-weight:400;
  5313. font-style:normal;
  5314. font-size:14px;
  5315. color:#AAAAAA;
  5316. text-align:center;
  5317. line-height:30px;
  5318. }
  5319. #u91019 {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:1133px;
  5323. top:59px;
  5324. width:1000px;
  5325. height:200px;
  5326. display:flex;
  5327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5328. font-weight:400;
  5329. font-style:normal;
  5330. font-size:14px;
  5331. color:#AAAAAA;
  5332. text-align:center;
  5333. line-height:30px;
  5334. }
  5335. #u91019 .text {
  5336. position:absolute;
  5337. align-self:center;
  5338. padding:5px 10px 5px 10px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u91019_text {
  5343. border-width:0px;
  5344. word-wrap:break-word;
  5345. text-transform:none;
  5346. visibility:hidden;
  5347. }
  5348. #u91020_div {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:0px;
  5352. top:0px;
  5353. width:83px;
  5354. height:35px;
  5355. background:inherit;
  5356. background-color:rgba(255, 255, 255, 0);
  5357. border:none;
  5358. border-top:0px;
  5359. border-right:0px;
  5360. border-bottom:0px;
  5361. border-radius:0px;
  5362. border-top-left-radius:0px;
  5363. border-bottom-left-radius:0px;
  5364. -moz-box-shadow:none;
  5365. -webkit-box-shadow:none;
  5366. box-shadow:none;
  5367. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5368. font-weight:500;
  5369. font-style:normal;
  5370. font-size:18px;
  5371. }
  5372. #u91020 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:1153px;
  5376. top:77px;
  5377. width:83px;
  5378. height:35px;
  5379. display:flex;
  5380. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5381. font-weight:500;
  5382. font-style:normal;
  5383. font-size:18px;
  5384. }
  5385. #u91020 .text {
  5386. position:absolute;
  5387. align-self:center;
  5388. padding:5px 10px 5px 0px;
  5389. box-sizing:border-box;
  5390. width:100%;
  5391. }
  5392. #u91020_text {
  5393. border-width:0px;
  5394. white-space:nowrap;
  5395. text-transform:none;
  5396. }
  5397. #u91021 {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:0px;
  5403. height:0px;
  5404. }
  5405. #u91022_div {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:40px;
  5411. height:40px;
  5412. background:inherit;
  5413. background-color:rgba(255, 255, 255, 0);
  5414. border:none;
  5415. border-top:0px;
  5416. border-right:0px;
  5417. border-bottom:0px;
  5418. border-radius:0px;
  5419. border-top-left-radius:0px;
  5420. border-bottom-left-radius:0px;
  5421. -moz-box-shadow:none;
  5422. -webkit-box-shadow:none;
  5423. box-shadow:none;
  5424. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5425. font-weight:500;
  5426. font-style:normal;
  5427. font-size:14px;
  5428. text-align:center;
  5429. }
  5430. #u91022 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:2093px;
  5434. top:59px;
  5435. width:40px;
  5436. height:40px;
  5437. display:flex;
  5438. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5439. font-weight:500;
  5440. font-style:normal;
  5441. font-size:14px;
  5442. text-align:center;
  5443. }
  5444. #u91022 .text {
  5445. position:absolute;
  5446. align-self:center;
  5447. padding:5px 10px 5px 0px;
  5448. box-sizing:border-box;
  5449. width:100%;
  5450. }
  5451. #u91022_text {
  5452. border-width:0px;
  5453. word-wrap:break-word;
  5454. text-transform:none;
  5455. }
  5456. #u91023_img {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:13px;
  5462. height:13px;
  5463. }
  5464. #u91023 {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:2081px;
  5468. top:75px;
  5469. width:13px;
  5470. height:13px;
  5471. display:flex;
  5472. font-size:14px;
  5473. }
  5474. #u91023 .text {
  5475. position:absolute;
  5476. align-self:center;
  5477. padding:2px 2px 2px 2px;
  5478. box-sizing:border-box;
  5479. width:100%;
  5480. }
  5481. #u91023_text {
  5482. border-width:0px;
  5483. word-wrap:break-word;
  5484. text-transform:none;
  5485. visibility:hidden;
  5486. }
  5487. #u91024 {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:0px;
  5492. width:0px;
  5493. height:0px;
  5494. }
  5495. #u91025_div {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:0px;
  5499. top:0px;
  5500. width:1000px;
  5501. height:645px;
  5502. background:inherit;
  5503. background-color:rgba(255, 255, 255, 1);
  5504. box-sizing:border-box;
  5505. border-width:1px;
  5506. border-style:solid;
  5507. border-color:rgba(215, 215, 215, 1);
  5508. border-radius:0px;
  5509. -moz-box-shadow:none;
  5510. -webkit-box-shadow:none;
  5511. box-shadow:none;
  5512. }
  5513. #u91025 {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:1133px;
  5517. top:615px;
  5518. width:1000px;
  5519. height:645px;
  5520. display:flex;
  5521. }
  5522. #u91025 .text {
  5523. position:absolute;
  5524. align-self:center;
  5525. padding:2px 2px 2px 2px;
  5526. box-sizing:border-box;
  5527. width:100%;
  5528. }
  5529. #u91025_text {
  5530. border-width:0px;
  5531. word-wrap:break-word;
  5532. text-transform:none;
  5533. visibility:hidden;
  5534. }
  5535. #u91026_div {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:0px;
  5539. top:0px;
  5540. width:103px;
  5541. height:24px;
  5542. background:inherit;
  5543. background-color:rgba(255, 255, 255, 0);
  5544. border:none;
  5545. border-top:0px;
  5546. border-right:0px;
  5547. border-bottom:0px;
  5548. border-radius:0px;
  5549. border-top-left-radius:0px;
  5550. border-bottom-left-radius:0px;
  5551. -moz-box-shadow:none;
  5552. -webkit-box-shadow:none;
  5553. box-shadow:none;
  5554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5555. font-weight:400;
  5556. font-style:normal;
  5557. font-size:10px;
  5558. color:#AAAAAA;
  5559. }
  5560. #u91026 {
  5561. border-width:0px;
  5562. position:absolute;
  5563. left:1388px;
  5564. top:688px;
  5565. width:103px;
  5566. height:24px;
  5567. display:flex;
  5568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5569. font-weight:400;
  5570. font-style:normal;
  5571. font-size:10px;
  5572. color:#AAAAAA;
  5573. }
  5574. #u91026 .text {
  5575. position:absolute;
  5576. align-self:flex-start;
  5577. padding:5px 0px 5px 0px;
  5578. box-sizing:border-box;
  5579. width:100%;
  5580. }
  5581. #u91026_text {
  5582. border-width:0px;
  5583. white-space:nowrap;
  5584. text-transform:none;
  5585. }
  5586. #u91027 {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:0px;
  5592. height:0px;
  5593. }
  5594. #u91028_div {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:0px;
  5598. top:0px;
  5599. width:43px;
  5600. height:30px;
  5601. background:inherit;
  5602. background-color:rgba(255, 255, 255, 0);
  5603. border:none;
  5604. border-top:0px;
  5605. border-right:0px;
  5606. border-bottom:0px;
  5607. border-radius:0px;
  5608. border-top-left-radius:0px;
  5609. border-bottom-left-radius:0px;
  5610. -moz-box-shadow:none;
  5611. -webkit-box-shadow:none;
  5612. box-shadow:none;
  5613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5614. font-weight:400;
  5615. font-style:normal;
  5616. font-size:14px;
  5617. }
  5618. #u91028 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:1221px;
  5622. top:690px;
  5623. width:43px;
  5624. height:30px;
  5625. display:flex;
  5626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5627. font-weight:400;
  5628. font-style:normal;
  5629. font-size:14px;
  5630. }
  5631. #u91028 .text {
  5632. position:absolute;
  5633. align-self:flex-start;
  5634. padding:0px 0px 0px 0px;
  5635. box-sizing:border-box;
  5636. width:100%;
  5637. }
  5638. #u91028_text {
  5639. border-width:0px;
  5640. white-space:nowrap;
  5641. text-transform:none;
  5642. }
  5643. #u91029_div {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:0px;
  5647. top:0px;
  5648. width:23px;
  5649. height:16px;
  5650. background:inherit;
  5651. background-color:rgba(255, 255, 255, 0);
  5652. border:none;
  5653. border-top:0px;
  5654. border-right:0px;
  5655. border-bottom:0px;
  5656. border-radius:0px;
  5657. border-top-left-radius:0px;
  5658. border-bottom-left-radius:0px;
  5659. -moz-box-shadow:none;
  5660. -webkit-box-shadow:none;
  5661. box-shadow:none;
  5662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5663. font-weight:400;
  5664. font-style:normal;
  5665. font-size:11px;
  5666. color:#AAAAAA;
  5667. }
  5668. #u91029 {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:1221px;
  5672. top:718px;
  5673. width:23px;
  5674. height:16px;
  5675. display:flex;
  5676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5677. font-weight:400;
  5678. font-style:normal;
  5679. font-size:11px;
  5680. color:#AAAAAA;
  5681. }
  5682. #u91029 .text {
  5683. position:absolute;
  5684. align-self:flex-start;
  5685. padding:0px 0px 0px 0px;
  5686. box-sizing:border-box;
  5687. width:100%;
  5688. }
  5689. #u91029_text {
  5690. border-width:0px;
  5691. white-space:nowrap;
  5692. text-transform:none;
  5693. }
  5694. #u91030_div {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:0px;
  5698. top:0px;
  5699. width:43px;
  5700. height:20px;
  5701. background:inherit;
  5702. background-color:rgba(255, 255, 255, 0);
  5703. border:none;
  5704. border-top:0px;
  5705. border-right:0px;
  5706. border-bottom:0px;
  5707. border-radius:0px;
  5708. border-top-left-radius:0px;
  5709. border-bottom-left-radius:0px;
  5710. -moz-box-shadow:none;
  5711. -webkit-box-shadow:none;
  5712. box-shadow:none;
  5713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5714. font-weight:400;
  5715. font-style:normal;
  5716. font-size:14px;
  5717. }
  5718. #u91030 {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:1221px;
  5722. top:760px;
  5723. width:43px;
  5724. height:20px;
  5725. display:flex;
  5726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:14px;
  5730. }
  5731. #u91030 .text {
  5732. position:absolute;
  5733. align-self:flex-start;
  5734. padding:0px 0px 0px 0px;
  5735. box-sizing:border-box;
  5736. width:100%;
  5737. }
  5738. #u91030_text {
  5739. border-width:0px;
  5740. white-space:nowrap;
  5741. text-transform:none;
  5742. }
  5743. #u91031_div {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:63px;
  5749. height:16px;
  5750. background:inherit;
  5751. background-color:rgba(255, 255, 255, 0);
  5752. border:none;
  5753. border-top:0px;
  5754. border-right:0px;
  5755. border-bottom:0px;
  5756. border-radius:0px;
  5757. border-top-left-radius:0px;
  5758. border-bottom-left-radius:0px;
  5759. -moz-box-shadow:none;
  5760. -webkit-box-shadow:none;
  5761. box-shadow:none;
  5762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5763. font-weight:400;
  5764. font-style:normal;
  5765. font-size:11px;
  5766. color:#AAAAAA;
  5767. }
  5768. #u91031 {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:1221px;
  5772. top:788px;
  5773. width:63px;
  5774. height:16px;
  5775. display:flex;
  5776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:11px;
  5780. color:#AAAAAA;
  5781. }
  5782. #u91031 .text {
  5783. position:absolute;
  5784. align-self:flex-start;
  5785. padding:0px 0px 0px 0px;
  5786. box-sizing:border-box;
  5787. width:100%;
  5788. }
  5789. #u91031_text {
  5790. border-width:0px;
  5791. white-space:nowrap;
  5792. text-transform:none;
  5793. }
  5794. #u91032_div {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:0px;
  5798. top:0px;
  5799. width:37px;
  5800. height:35px;
  5801. background:inherit;
  5802. background-color:rgba(255, 255, 255, 0);
  5803. border:none;
  5804. border-top:0px;
  5805. border-right:0px;
  5806. border-bottom:0px;
  5807. border-radius:0px;
  5808. border-top-left-radius:0px;
  5809. border-bottom-left-radius:0px;
  5810. -moz-box-shadow:none;
  5811. -webkit-box-shadow:none;
  5812. box-shadow:none;
  5813. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5814. font-weight:500;
  5815. font-style:normal;
  5816. font-size:18px;
  5817. }
  5818. #u91032 {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:1159px;
  5822. top:633px;
  5823. width:37px;
  5824. height:35px;
  5825. display:flex;
  5826. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5827. font-weight:500;
  5828. font-style:normal;
  5829. font-size:18px;
  5830. }
  5831. #u91032 .text {
  5832. position:absolute;
  5833. align-self:flex-start;
  5834. padding:5px 0px 5px 0px;
  5835. box-sizing:border-box;
  5836. width:100%;
  5837. }
  5838. #u91032_text {
  5839. border-width:0px;
  5840. white-space:nowrap;
  5841. text-transform:none;
  5842. }
  5843. #u91033 {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:0px;
  5849. height:0px;
  5850. }
  5851. #u91034_img {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:0px;
  5855. top:0px;
  5856. width:2px;
  5857. height:32px;
  5858. }
  5859. #u91034 {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:1198px;
  5863. top:724px;
  5864. width:1px;
  5865. height:31px;
  5866. display:flex;
  5867. }
  5868. #u91034 .text {
  5869. position:absolute;
  5870. align-self:center;
  5871. padding:2px 2px 2px 2px;
  5872. box-sizing:border-box;
  5873. width:100%;
  5874. }
  5875. #u91034_text {
  5876. border-width:0px;
  5877. word-wrap:break-word;
  5878. text-transform:none;
  5879. visibility:hidden;
  5880. }
  5881. #u91035 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:0px;
  5887. height:0px;
  5888. }
  5889. #u91036_div {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:30px;
  5895. height:30px;
  5896. background:inherit;
  5897. background-color:rgba(24, 144, 255, 1);
  5898. border:none;
  5899. border-radius:4px;
  5900. -moz-box-shadow:none;
  5901. -webkit-box-shadow:none;
  5902. box-shadow:none;
  5903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5904. font-weight:400;
  5905. font-style:normal;
  5906. font-size:10px;
  5907. color:#FFFFFF;
  5908. }
  5909. #u91036 {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:1183px;
  5913. top:760px;
  5914. width:30px;
  5915. height:30px;
  5916. display:flex;
  5917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5918. font-weight:400;
  5919. font-style:normal;
  5920. font-size:10px;
  5921. color:#FFFFFF;
  5922. }
  5923. #u91036 .text {
  5924. position:absolute;
  5925. align-self:center;
  5926. padding:2px 2px 2px 2px;
  5927. box-sizing:border-box;
  5928. width:100%;
  5929. }
  5930. #u91036_text {
  5931. border-width:0px;
  5932. word-wrap:break-word;
  5933. text-transform:none;
  5934. }
  5935. #u91037 {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:0px;
  5941. height:0px;
  5942. }
  5943. #u91038_img {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:9px;
  5949. height:9px;
  5950. }
  5951. #u91038 {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:1204px;
  5955. top:782px;
  5956. width:9px;
  5957. height:9px;
  5958. display:flex;
  5959. }
  5960. #u91038 .text {
  5961. position:absolute;
  5962. align-self:center;
  5963. padding:2px 2px 2px 2px;
  5964. box-sizing:border-box;
  5965. width:100%;
  5966. }
  5967. #u91038_text {
  5968. border-width:0px;
  5969. word-wrap:break-word;
  5970. text-transform:none;
  5971. visibility:hidden;
  5972. }
  5973. #u91039_img {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:5px;
  5979. height:4px;
  5980. }
  5981. #u91039 {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:1206px;
  5985. top:785px;
  5986. width:5px;
  5987. height:4px;
  5988. display:flex;
  5989. }
  5990. #u91039 .text {
  5991. position:absolute;
  5992. align-self:center;
  5993. padding:2px 2px 2px 2px;
  5994. box-sizing:border-box;
  5995. width:100%;
  5996. }
  5997. #u91039_text {
  5998. border-width:0px;
  5999. word-wrap:break-word;
  6000. text-transform:none;
  6001. visibility:hidden;
  6002. }
  6003. #u91040 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:0px;
  6009. height:0px;
  6010. }
  6011. #u91041_div {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:30px;
  6017. height:30px;
  6018. background:inherit;
  6019. background-color:rgba(24, 144, 255, 1);
  6020. border:none;
  6021. border-radius:4px;
  6022. -moz-box-shadow:none;
  6023. -webkit-box-shadow:none;
  6024. box-shadow:none;
  6025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6026. font-weight:400;
  6027. font-style:normal;
  6028. font-size:12px;
  6029. color:#FFFFFF;
  6030. }
  6031. #u91041 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:1183px;
  6035. top:690px;
  6036. width:30px;
  6037. height:30px;
  6038. display:flex;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:12px;
  6043. color:#FFFFFF;
  6044. }
  6045. #u91041 .text {
  6046. position:absolute;
  6047. align-self:center;
  6048. padding:2px 2px 2px 2px;
  6049. box-sizing:border-box;
  6050. width:100%;
  6051. }
  6052. #u91041_text {
  6053. border-width:0px;
  6054. word-wrap:break-word;
  6055. text-transform:none;
  6056. }
  6057. #u91042 {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:0px;
  6061. top:0px;
  6062. width:0px;
  6063. height:0px;
  6064. }
  6065. #u91043_img {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:9px;
  6071. height:9px;
  6072. }
  6073. #u91043 {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:1205px;
  6077. top:712px;
  6078. width:9px;
  6079. height:9px;
  6080. display:flex;
  6081. }
  6082. #u91043 .text {
  6083. position:absolute;
  6084. align-self:center;
  6085. padding:2px 2px 2px 2px;
  6086. box-sizing:border-box;
  6087. width:100%;
  6088. }
  6089. #u91043_text {
  6090. border-width:0px;
  6091. word-wrap:break-word;
  6092. text-transform:none;
  6093. visibility:hidden;
  6094. }
  6095. #u91044_img {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:0px;
  6099. top:0px;
  6100. width:5px;
  6101. height:4px;
  6102. }
  6103. #u91044 {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:1207px;
  6107. top:715px;
  6108. width:5px;
  6109. height:4px;
  6110. display:flex;
  6111. }
  6112. #u91044 .text {
  6113. position:absolute;
  6114. align-self:center;
  6115. padding:2px 2px 2px 2px;
  6116. box-sizing:border-box;
  6117. width:100%;
  6118. }
  6119. #u91044_text {
  6120. border-width:0px;
  6121. word-wrap:break-word;
  6122. text-transform:none;
  6123. visibility:hidden;
  6124. }
  6125. #u91045_div {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:103px;
  6131. height:24px;
  6132. background:inherit;
  6133. background-color:rgba(255, 255, 255, 0);
  6134. border:none;
  6135. border-top:0px;
  6136. border-right:0px;
  6137. border-bottom:0px;
  6138. border-radius:0px;
  6139. border-top-left-radius:0px;
  6140. border-bottom-left-radius:0px;
  6141. -moz-box-shadow:none;
  6142. -webkit-box-shadow:none;
  6143. box-shadow:none;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:10px;
  6148. color:#AAAAAA;
  6149. }
  6150. #u91045 {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:1388px;
  6154. top:758px;
  6155. width:103px;
  6156. height:24px;
  6157. display:flex;
  6158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6159. font-weight:400;
  6160. font-style:normal;
  6161. font-size:10px;
  6162. color:#AAAAAA;
  6163. }
  6164. #u91045 .text {
  6165. position:absolute;
  6166. align-self:flex-start;
  6167. padding:5px 0px 5px 0px;
  6168. box-sizing:border-box;
  6169. width:100%;
  6170. }
  6171. #u91045_text {
  6172. border-width:0px;
  6173. white-space:nowrap;
  6174. text-transform:none;
  6175. }
  6176. #u91046_img {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:108px;
  6182. height:108px;
  6183. }
  6184. #u91046 {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:1977px;
  6188. top:129px;
  6189. width:108px;
  6190. height:108px;
  6191. display:flex;
  6192. -webkit-transform:rotate(315deg);
  6193. -moz-transform:rotate(315deg);
  6194. -ms-transform:rotate(315deg);
  6195. transform:rotate(315deg);
  6196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. font-size:28px;
  6200. color:#00BFBF;
  6201. }
  6202. #u91046 .text {
  6203. position:absolute;
  6204. align-self:center;
  6205. padding:2px 2px 2px 2px;
  6206. box-sizing:border-box;
  6207. width:100%;
  6208. }
  6209. #u91046_text {
  6210. border-width:0px;
  6211. word-wrap:break-word;
  6212. text-transform:none;
  6213. }
  6214. #u91047 {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:0px;
  6218. top:0px;
  6219. width:0px;
  6220. height:0px;
  6221. }
  6222. #u91048_div {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:0px;
  6226. top:0px;
  6227. width:1000px;
  6228. height:60px;
  6229. background:inherit;
  6230. background-color:rgba(255, 255, 255, 1);
  6231. box-sizing:border-box;
  6232. border-width:1px;
  6233. border-style:solid;
  6234. border-color:rgba(215, 215, 215, 1);
  6235. border-radius:0px;
  6236. -moz-box-shadow:none;
  6237. -webkit-box-shadow:none;
  6238. box-shadow:none;
  6239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6240. font-weight:400;
  6241. font-style:normal;
  6242. font-size:14px;
  6243. color:#AAAAAA;
  6244. text-align:center;
  6245. line-height:30px;
  6246. }
  6247. #u91048 {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:1133px;
  6251. top:1200px;
  6252. width:1000px;
  6253. height:60px;
  6254. display:flex;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:14px;
  6259. color:#AAAAAA;
  6260. text-align:center;
  6261. line-height:30px;
  6262. }
  6263. #u91048 .text {
  6264. position:absolute;
  6265. align-self:center;
  6266. padding:5px 10px 5px 10px;
  6267. box-sizing:border-box;
  6268. width:100%;
  6269. }
  6270. #u91048_text {
  6271. border-width:0px;
  6272. word-wrap:break-word;
  6273. text-transform:none;
  6274. visibility:hidden;
  6275. }
  6276. #u91049_div {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:80px;
  6282. height:30px;
  6283. background:inherit;
  6284. background-color:rgba(255, 255, 255, 1);
  6285. box-sizing:border-box;
  6286. border-width:1px;
  6287. border-style:solid;
  6288. border-color:rgba(170, 170, 170, 1);
  6289. border-radius:4px;
  6290. -moz-box-shadow:none;
  6291. -webkit-box-shadow:none;
  6292. box-shadow:none;
  6293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6294. font-weight:400;
  6295. font-style:normal;
  6296. font-size:14px;
  6297. }
  6298. #u91049 {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:2027px;
  6302. top:1215px;
  6303. width:80px;
  6304. height:30px;
  6305. display:flex;
  6306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6307. font-weight:400;
  6308. font-style:normal;
  6309. font-size:14px;
  6310. }
  6311. #u91049 .text {
  6312. position:absolute;
  6313. align-self:center;
  6314. padding:2px 2px 2px 2px;
  6315. box-sizing:border-box;
  6316. width:100%;
  6317. }
  6318. #u91049_text {
  6319. border-width:0px;
  6320. word-wrap:break-word;
  6321. text-transform:none;
  6322. }
  6323. #u91050_div {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:0px;
  6327. top:0px;
  6328. width:1000px;
  6329. height:336px;
  6330. background:inherit;
  6331. background-color:rgba(255, 255, 255, 1);
  6332. box-sizing:border-box;
  6333. border-width:1px;
  6334. border-style:solid;
  6335. border-color:rgba(215, 215, 215, 1);
  6336. border-radius:0px;
  6337. -moz-box-shadow:none;
  6338. -webkit-box-shadow:none;
  6339. box-shadow:none;
  6340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6341. font-weight:400;
  6342. font-style:normal;
  6343. font-size:14px;
  6344. color:#AAAAAA;
  6345. text-align:center;
  6346. line-height:30px;
  6347. }
  6348. #u91050 {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:1133px;
  6352. top:269px;
  6353. width:1000px;
  6354. height:336px;
  6355. display:flex;
  6356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6357. font-weight:400;
  6358. font-style:normal;
  6359. font-size:14px;
  6360. color:#AAAAAA;
  6361. text-align:center;
  6362. line-height:30px;
  6363. }
  6364. #u91050 .text {
  6365. position:absolute;
  6366. align-self:center;
  6367. padding:5px 10px 5px 10px;
  6368. box-sizing:border-box;
  6369. width:100%;
  6370. }
  6371. #u91050_text {
  6372. border-width:0px;
  6373. word-wrap:break-word;
  6374. text-transform:none;
  6375. visibility:hidden;
  6376. }
  6377. #u91051_div {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:320px;
  6383. height:90px;
  6384. background:inherit;
  6385. background-color:rgba(255, 255, 255, 0);
  6386. border:none;
  6387. border-left:0px;
  6388. border-top:0px;
  6389. border-right:0px;
  6390. border-radius:0px;
  6391. border-bottom-right-radius:0px;
  6392. border-bottom-left-radius:0px;
  6393. -moz-box-shadow:none;
  6394. -webkit-box-shadow:none;
  6395. box-shadow:none;
  6396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6397. font-weight:400;
  6398. font-style:normal;
  6399. font-size:14px;
  6400. line-height:30px;
  6401. }
  6402. #u91051 {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:1163px;
  6406. top:302px;
  6407. width:320px;
  6408. height:90px;
  6409. display:flex;
  6410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6411. font-weight:400;
  6412. font-style:normal;
  6413. font-size:14px;
  6414. line-height:30px;
  6415. }
  6416. #u91051 .text {
  6417. position:absolute;
  6418. align-self:flex-start;
  6419. padding:0px 0px 0px 0px;
  6420. box-sizing:border-box;
  6421. width:100%;
  6422. }
  6423. #u91051_text {
  6424. border-width:0px;
  6425. word-wrap:break-word;
  6426. text-transform:none;
  6427. }
  6428. #u91052_div {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:0px;
  6432. top:0px;
  6433. width:320px;
  6434. height:60px;
  6435. background:inherit;
  6436. background-color:rgba(255, 255, 255, 0);
  6437. border:none;
  6438. border-left:0px;
  6439. border-top:0px;
  6440. border-right:0px;
  6441. border-radius:0px;
  6442. border-bottom-right-radius:0px;
  6443. border-bottom-left-radius:0px;
  6444. -moz-box-shadow:none;
  6445. -webkit-box-shadow:none;
  6446. box-shadow:none;
  6447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6448. font-weight:400;
  6449. font-style:normal;
  6450. font-size:14px;
  6451. line-height:30px;
  6452. }
  6453. #u91052 {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:1483px;
  6457. top:302px;
  6458. width:320px;
  6459. height:60px;
  6460. display:flex;
  6461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6462. font-weight:400;
  6463. font-style:normal;
  6464. font-size:14px;
  6465. line-height:30px;
  6466. }
  6467. #u91052 .text {
  6468. position:absolute;
  6469. align-self:flex-start;
  6470. padding:0px 0px 0px 0px;
  6471. box-sizing:border-box;
  6472. width:100%;
  6473. }
  6474. #u91052_text {
  6475. border-width:0px;
  6476. word-wrap:break-word;
  6477. text-transform:none;
  6478. }
  6479. #u91053_div {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:320px;
  6485. height:60px;
  6486. background:inherit;
  6487. background-color:rgba(255, 255, 255, 0);
  6488. border:none;
  6489. border-left:0px;
  6490. border-top:0px;
  6491. border-right:0px;
  6492. border-radius:0px;
  6493. border-bottom-right-radius:0px;
  6494. border-bottom-left-radius:0px;
  6495. -moz-box-shadow:none;
  6496. -webkit-box-shadow:none;
  6497. box-shadow:none;
  6498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6499. font-weight:400;
  6500. font-style:normal;
  6501. font-size:14px;
  6502. line-height:30px;
  6503. }
  6504. #u91053 {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:1803px;
  6508. top:302px;
  6509. width:320px;
  6510. height:60px;
  6511. display:flex;
  6512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6513. font-weight:400;
  6514. font-style:normal;
  6515. font-size:14px;
  6516. line-height:30px;
  6517. }
  6518. #u91053 .text {
  6519. position:absolute;
  6520. align-self:flex-start;
  6521. padding:0px 0px 0px 0px;
  6522. box-sizing:border-box;
  6523. width:100%;
  6524. }
  6525. #u91053_text {
  6526. border-width:0px;
  6527. word-wrap:break-word;
  6528. text-transform:none;
  6529. }
  6530. #u91054_div {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:320px;
  6536. height:30px;
  6537. background:inherit;
  6538. background-color:rgba(255, 255, 255, 0);
  6539. border:none;
  6540. border-left:0px;
  6541. border-top:0px;
  6542. border-right:0px;
  6543. border-radius:0px;
  6544. border-bottom-right-radius:0px;
  6545. border-bottom-left-radius:0px;
  6546. -moz-box-shadow:none;
  6547. -webkit-box-shadow:none;
  6548. box-shadow:none;
  6549. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6550. font-weight:500;
  6551. font-style:normal;
  6552. font-size:18px;
  6553. line-height:30px;
  6554. }
  6555. #u91054 {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:1163px;
  6559. top:412px;
  6560. width:320px;
  6561. height:30px;
  6562. display:flex;
  6563. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6564. font-weight:500;
  6565. font-style:normal;
  6566. font-size:18px;
  6567. line-height:30px;
  6568. }
  6569. #u91054 .text {
  6570. position:absolute;
  6571. align-self:flex-start;
  6572. padding:0px 0px 0px 0px;
  6573. box-sizing:border-box;
  6574. width:100%;
  6575. }
  6576. #u91054_text {
  6577. border-width:0px;
  6578. word-wrap:break-word;
  6579. text-transform:none;
  6580. }
  6581. #u91055 {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:1163px;
  6585. top:452px;
  6586. width:944px;
  6587. height:118px;
  6588. }
  6589. #u91056_img {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:86px;
  6595. height:38px;
  6596. }
  6597. #u91056 {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:0px;
  6601. top:0px;
  6602. width:86px;
  6603. height:38px;
  6604. display:flex;
  6605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6606. font-weight:400;
  6607. font-style:normal;
  6608. font-size:12px;
  6609. color:#FFFFFF;
  6610. }
  6611. #u91056 .text {
  6612. position:absolute;
  6613. align-self:center;
  6614. padding:2px 2px 2px 0px;
  6615. box-sizing:border-box;
  6616. width:100%;
  6617. }
  6618. #u91056_text {
  6619. border-width:0px;
  6620. word-wrap:break-word;
  6621. text-transform:none;
  6622. }
  6623. #u91057_img {
  6624. border-width:0px;
  6625. position:absolute;
  6626. left:0px;
  6627. top:0px;
  6628. width:86px;
  6629. height:38px;
  6630. }
  6631. #u91057 {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:86px;
  6635. top:0px;
  6636. width:86px;
  6637. height:38px;
  6638. display:flex;
  6639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6640. font-weight:400;
  6641. font-style:normal;
  6642. font-size:12px;
  6643. color:#FFFFFF;
  6644. }
  6645. #u91057 .text {
  6646. position:absolute;
  6647. align-self:center;
  6648. padding:2px 2px 2px 0px;
  6649. box-sizing:border-box;
  6650. width:100%;
  6651. }
  6652. #u91057_text {
  6653. border-width:0px;
  6654. word-wrap:break-word;
  6655. text-transform:none;
  6656. }
  6657. #u91058_img {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:0px;
  6661. top:0px;
  6662. width:86px;
  6663. height:38px;
  6664. }
  6665. #u91058 {
  6666. border-width:0px;
  6667. position:absolute;
  6668. left:172px;
  6669. top:0px;
  6670. width:86px;
  6671. height:38px;
  6672. display:flex;
  6673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6674. font-weight:400;
  6675. font-style:normal;
  6676. font-size:12px;
  6677. color:#FFFFFF;
  6678. }
  6679. #u91058 .text {
  6680. position:absolute;
  6681. align-self:center;
  6682. padding:2px 2px 2px 0px;
  6683. box-sizing:border-box;
  6684. width:100%;
  6685. }
  6686. #u91058_text {
  6687. border-width:0px;
  6688. word-wrap:break-word;
  6689. text-transform:none;
  6690. }
  6691. #u91059_img {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:0px;
  6695. top:0px;
  6696. width:86px;
  6697. height:38px;
  6698. }
  6699. #u91059 {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:258px;
  6703. top:0px;
  6704. width:86px;
  6705. height:38px;
  6706. display:flex;
  6707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. font-size:12px;
  6711. color:#FFFFFF;
  6712. }
  6713. #u91059 .text {
  6714. position:absolute;
  6715. align-self:center;
  6716. padding:2px 2px 2px 0px;
  6717. box-sizing:border-box;
  6718. width:100%;
  6719. }
  6720. #u91059_text {
  6721. border-width:0px;
  6722. word-wrap:break-word;
  6723. text-transform:none;
  6724. }
  6725. #u91060_img {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:86px;
  6731. height:38px;
  6732. }
  6733. #u91060 {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:344px;
  6737. top:0px;
  6738. width:86px;
  6739. height:38px;
  6740. display:flex;
  6741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6742. font-weight:400;
  6743. font-style:normal;
  6744. font-size:12px;
  6745. color:#FFFFFF;
  6746. }
  6747. #u91060 .text {
  6748. position:absolute;
  6749. align-self:center;
  6750. padding:2px 2px 2px 0px;
  6751. box-sizing:border-box;
  6752. width:100%;
  6753. }
  6754. #u91060_text {
  6755. border-width:0px;
  6756. word-wrap:break-word;
  6757. text-transform:none;
  6758. }
  6759. #u91061_img {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:0px;
  6763. top:0px;
  6764. width:86px;
  6765. height:38px;
  6766. }
  6767. #u91061 {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:430px;
  6771. top:0px;
  6772. width:86px;
  6773. height:38px;
  6774. display:flex;
  6775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6776. font-weight:400;
  6777. font-style:normal;
  6778. font-size:12px;
  6779. color:#FFFFFF;
  6780. }
  6781. #u91061 .text {
  6782. position:absolute;
  6783. align-self:center;
  6784. padding:2px 2px 2px 0px;
  6785. box-sizing:border-box;
  6786. width:100%;
  6787. }
  6788. #u91061_text {
  6789. border-width:0px;
  6790. word-wrap:break-word;
  6791. text-transform:none;
  6792. visibility:hidden;
  6793. }
  6794. #u91062_img {
  6795. border-width:0px;
  6796. position:absolute;
  6797. left:0px;
  6798. top:0px;
  6799. width:86px;
  6800. height:38px;
  6801. }
  6802. #u91062 {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:516px;
  6806. top:0px;
  6807. width:86px;
  6808. height:38px;
  6809. display:flex;
  6810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6811. font-weight:400;
  6812. font-style:normal;
  6813. font-size:12px;
  6814. color:#FFFFFF;
  6815. }
  6816. #u91062 .text {
  6817. position:absolute;
  6818. align-self:center;
  6819. padding:2px 2px 2px 0px;
  6820. box-sizing:border-box;
  6821. width:100%;
  6822. }
  6823. #u91062_text {
  6824. border-width:0px;
  6825. word-wrap:break-word;
  6826. text-transform:none;
  6827. visibility:hidden;
  6828. }
  6829. #u91063_img {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:0px;
  6833. top:0px;
  6834. width:86px;
  6835. height:38px;
  6836. }
  6837. #u91063 {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:602px;
  6841. top:0px;
  6842. width:86px;
  6843. height:38px;
  6844. display:flex;
  6845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6846. font-weight:400;
  6847. font-style:normal;
  6848. font-size:12px;
  6849. color:#FFFFFF;
  6850. }
  6851. #u91063 .text {
  6852. position:absolute;
  6853. align-self:center;
  6854. padding:2px 2px 2px 0px;
  6855. box-sizing:border-box;
  6856. width:100%;
  6857. }
  6858. #u91063_text {
  6859. border-width:0px;
  6860. word-wrap:break-word;
  6861. text-transform:none;
  6862. visibility:hidden;
  6863. }
  6864. #u91064_img {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:0px;
  6868. top:0px;
  6869. width:86px;
  6870. height:38px;
  6871. }
  6872. #u91064 {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:688px;
  6876. top:0px;
  6877. width:86px;
  6878. height:38px;
  6879. display:flex;
  6880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6881. font-weight:400;
  6882. font-style:normal;
  6883. font-size:12px;
  6884. color:#FFFFFF;
  6885. }
  6886. #u91064 .text {
  6887. position:absolute;
  6888. align-self:center;
  6889. padding:2px 2px 2px 0px;
  6890. box-sizing:border-box;
  6891. width:100%;
  6892. }
  6893. #u91064_text {
  6894. border-width:0px;
  6895. word-wrap:break-word;
  6896. text-transform:none;
  6897. visibility:hidden;
  6898. }
  6899. #u91065_img {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:0px;
  6903. top:0px;
  6904. width:86px;
  6905. height:38px;
  6906. }
  6907. #u91065 {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:774px;
  6911. top:0px;
  6912. width:86px;
  6913. height:38px;
  6914. display:flex;
  6915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6916. font-weight:400;
  6917. font-style:normal;
  6918. font-size:12px;
  6919. color:#FFFFFF;
  6920. }
  6921. #u91065 .text {
  6922. position:absolute;
  6923. align-self:center;
  6924. padding:2px 2px 2px 0px;
  6925. box-sizing:border-box;
  6926. width:100%;
  6927. }
  6928. #u91065_text {
  6929. border-width:0px;
  6930. word-wrap:break-word;
  6931. text-transform:none;
  6932. visibility:hidden;
  6933. }
  6934. #u91066_img {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:84px;
  6940. height:38px;
  6941. }
  6942. #u91066 {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:860px;
  6946. top:0px;
  6947. width:84px;
  6948. height:38px;
  6949. display:flex;
  6950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6951. font-weight:400;
  6952. font-style:normal;
  6953. font-size:12px;
  6954. color:#FFFFFF;
  6955. }
  6956. #u91066 .text {
  6957. position:absolute;
  6958. align-self:center;
  6959. padding:2px 2px 2px 0px;
  6960. box-sizing:border-box;
  6961. width:100%;
  6962. }
  6963. #u91066_text {
  6964. border-width:0px;
  6965. word-wrap:break-word;
  6966. text-transform:none;
  6967. visibility:hidden;
  6968. }
  6969. #u91067_img {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:0px;
  6973. top:0px;
  6974. width:86px;
  6975. height:40px;
  6976. }
  6977. #u91067 {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:0px;
  6981. top:38px;
  6982. width:86px;
  6983. height:40px;
  6984. display:flex;
  6985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6986. font-weight:400;
  6987. font-style:normal;
  6988. font-size:12px;
  6989. color:#333333;
  6990. }
  6991. #u91067 .text {
  6992. position:absolute;
  6993. align-self:center;
  6994. padding:2px 2px 2px 0px;
  6995. box-sizing:border-box;
  6996. width:100%;
  6997. }
  6998. #u91067_text {
  6999. border-width:0px;
  7000. word-wrap:break-word;
  7001. text-transform:none;
  7002. visibility:hidden;
  7003. }
  7004. #u91068_img {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:0px;
  7008. top:0px;
  7009. width:86px;
  7010. height:40px;
  7011. }
  7012. #u91068 {
  7013. border-width:0px;
  7014. position:absolute;
  7015. left:86px;
  7016. top:38px;
  7017. width:86px;
  7018. height:40px;
  7019. display:flex;
  7020. font-family:'ArialMT', 'Arial', sans-serif;
  7021. font-weight:400;
  7022. font-style:normal;
  7023. font-size:12px;
  7024. color:#AAAAAA;
  7025. text-align:left;
  7026. }
  7027. #u91068 .text {
  7028. position:absolute;
  7029. align-self:center;
  7030. padding:2px 2px 2px 0px;
  7031. box-sizing:border-box;
  7032. width:100%;
  7033. }
  7034. #u91068_text {
  7035. border-width:0px;
  7036. word-wrap:break-word;
  7037. text-transform:none;
  7038. visibility:hidden;
  7039. }
  7040. #u91069_img {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:86px;
  7046. height:40px;
  7047. }
  7048. #u91069 {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:172px;
  7052. top:38px;
  7053. width:86px;
  7054. height:40px;
  7055. display:flex;
  7056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7057. font-weight:400;
  7058. font-style:normal;
  7059. font-size:12px;
  7060. color:#333333;
  7061. }
  7062. #u91069 .text {
  7063. position:absolute;
  7064. align-self:center;
  7065. padding:2px 2px 2px 0px;
  7066. box-sizing:border-box;
  7067. width:100%;
  7068. }
  7069. #u91069_text {
  7070. border-width:0px;
  7071. word-wrap:break-word;
  7072. text-transform:none;
  7073. visibility:hidden;
  7074. }
  7075. #u91070_img {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:0px;
  7079. top:0px;
  7080. width:86px;
  7081. height:40px;
  7082. }
  7083. #u91070 {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:258px;
  7087. top:38px;
  7088. width:86px;
  7089. height:40px;
  7090. display:flex;
  7091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7092. font-weight:400;
  7093. font-style:normal;
  7094. font-size:12px;
  7095. color:#333333;
  7096. }
  7097. #u91070 .text {
  7098. position:absolute;
  7099. align-self:center;
  7100. padding:2px 2px 2px 0px;
  7101. box-sizing:border-box;
  7102. width:100%;
  7103. }
  7104. #u91070_text {
  7105. border-width:0px;
  7106. word-wrap:break-word;
  7107. text-transform:none;
  7108. visibility:hidden;
  7109. }
  7110. #u91071_img {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:0px;
  7114. top:0px;
  7115. width:86px;
  7116. height:40px;
  7117. }
  7118. #u91071 {
  7119. border-width:0px;
  7120. position:absolute;
  7121. left:344px;
  7122. top:38px;
  7123. width:86px;
  7124. height:40px;
  7125. display:flex;
  7126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7127. font-weight:400;
  7128. font-style:normal;
  7129. font-size:12px;
  7130. color:#333333;
  7131. }
  7132. #u91071 .text {
  7133. position:absolute;
  7134. align-self:center;
  7135. padding:2px 2px 2px 0px;
  7136. box-sizing:border-box;
  7137. width:100%;
  7138. }
  7139. #u91071_text {
  7140. border-width:0px;
  7141. word-wrap:break-word;
  7142. text-transform:none;
  7143. visibility:hidden;
  7144. }
  7145. #u91072_img {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:0px;
  7149. top:0px;
  7150. width:86px;
  7151. height:40px;
  7152. }
  7153. #u91072 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:430px;
  7157. top:38px;
  7158. width:86px;
  7159. height:40px;
  7160. display:flex;
  7161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:12px;
  7165. color:#333333;
  7166. }
  7167. #u91072 .text {
  7168. position:absolute;
  7169. align-self:center;
  7170. padding:2px 2px 2px 0px;
  7171. box-sizing:border-box;
  7172. width:100%;
  7173. }
  7174. #u91072_text {
  7175. border-width:0px;
  7176. word-wrap:break-word;
  7177. text-transform:none;
  7178. visibility:hidden;
  7179. }
  7180. #u91073_img {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:0px;
  7184. top:0px;
  7185. width:86px;
  7186. height:40px;
  7187. }
  7188. #u91073 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:516px;
  7192. top:38px;
  7193. width:86px;
  7194. height:40px;
  7195. display:flex;
  7196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7197. font-weight:400;
  7198. font-style:normal;
  7199. font-size:12px;
  7200. color:#333333;
  7201. }
  7202. #u91073 .text {
  7203. position:absolute;
  7204. align-self:center;
  7205. padding:2px 2px 2px 0px;
  7206. box-sizing:border-box;
  7207. width:100%;
  7208. }
  7209. #u91073_text {
  7210. border-width:0px;
  7211. word-wrap:break-word;
  7212. text-transform:none;
  7213. visibility:hidden;
  7214. }
  7215. #u91074_img {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:0px;
  7219. top:0px;
  7220. width:86px;
  7221. height:40px;
  7222. }
  7223. #u91074 {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:602px;
  7227. top:38px;
  7228. width:86px;
  7229. height:40px;
  7230. display:flex;
  7231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7232. font-weight:400;
  7233. font-style:normal;
  7234. font-size:12px;
  7235. color:#333333;
  7236. }
  7237. #u91074 .text {
  7238. position:absolute;
  7239. align-self:center;
  7240. padding:2px 2px 2px 0px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u91074_text {
  7245. border-width:0px;
  7246. word-wrap:break-word;
  7247. text-transform:none;
  7248. visibility:hidden;
  7249. }
  7250. #u91075_img {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:0px;
  7254. top:0px;
  7255. width:86px;
  7256. height:40px;
  7257. }
  7258. #u91075 {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:688px;
  7262. top:38px;
  7263. width:86px;
  7264. height:40px;
  7265. display:flex;
  7266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7267. font-weight:400;
  7268. font-style:normal;
  7269. font-size:12px;
  7270. color:#333333;
  7271. }
  7272. #u91075 .text {
  7273. position:absolute;
  7274. align-self:center;
  7275. padding:2px 2px 2px 0px;
  7276. box-sizing:border-box;
  7277. width:100%;
  7278. }
  7279. #u91075_text {
  7280. border-width:0px;
  7281. word-wrap:break-word;
  7282. text-transform:none;
  7283. visibility:hidden;
  7284. }
  7285. #u91076_img {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:0px;
  7289. top:0px;
  7290. width:86px;
  7291. height:40px;
  7292. }
  7293. #u91076 {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:774px;
  7297. top:38px;
  7298. width:86px;
  7299. height:40px;
  7300. display:flex;
  7301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7302. font-weight:400;
  7303. font-style:normal;
  7304. font-size:12px;
  7305. color:#333333;
  7306. }
  7307. #u91076 .text {
  7308. position:absolute;
  7309. align-self:center;
  7310. padding:2px 2px 2px 0px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u91076_text {
  7315. border-width:0px;
  7316. word-wrap:break-word;
  7317. text-transform:none;
  7318. visibility:hidden;
  7319. }
  7320. #u91077_img {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:84px;
  7326. height:40px;
  7327. }
  7328. #u91077 {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:860px;
  7332. top:38px;
  7333. width:84px;
  7334. height:40px;
  7335. display:flex;
  7336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7337. font-weight:400;
  7338. font-style:normal;
  7339. font-size:12px;
  7340. color:#333333;
  7341. }
  7342. #u91077 .text {
  7343. position:absolute;
  7344. align-self:center;
  7345. padding:2px 2px 2px 0px;
  7346. box-sizing:border-box;
  7347. width:100%;
  7348. }
  7349. #u91077_text {
  7350. border-width:0px;
  7351. word-wrap:break-word;
  7352. text-transform:none;
  7353. visibility:hidden;
  7354. }
  7355. #u91078_img {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:86px;
  7361. height:40px;
  7362. }
  7363. #u91078 {
  7364. border-width:0px;
  7365. position:absolute;
  7366. left:0px;
  7367. top:78px;
  7368. width:86px;
  7369. height:40px;
  7370. display:flex;
  7371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7372. font-weight:400;
  7373. font-style:normal;
  7374. font-size:12px;
  7375. color:#333333;
  7376. }
  7377. #u91078 .text {
  7378. position:absolute;
  7379. align-self:center;
  7380. padding:2px 2px 2px 0px;
  7381. box-sizing:border-box;
  7382. width:100%;
  7383. }
  7384. #u91078_text {
  7385. border-width:0px;
  7386. word-wrap:break-word;
  7387. text-transform:none;
  7388. visibility:hidden;
  7389. }
  7390. #u91079_img {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:0px;
  7394. top:0px;
  7395. width:86px;
  7396. height:40px;
  7397. }
  7398. #u91079 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:86px;
  7402. top:78px;
  7403. width:86px;
  7404. height:40px;
  7405. display:flex;
  7406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:12px;
  7410. color:#333333;
  7411. }
  7412. #u91079 .text {
  7413. position:absolute;
  7414. align-self:center;
  7415. padding:2px 2px 2px 0px;
  7416. box-sizing:border-box;
  7417. width:100%;
  7418. }
  7419. #u91079_text {
  7420. border-width:0px;
  7421. word-wrap:break-word;
  7422. text-transform:none;
  7423. visibility:hidden;
  7424. }
  7425. #u91080_img {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:86px;
  7431. height:40px;
  7432. }
  7433. #u91080 {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:172px;
  7437. top:78px;
  7438. width:86px;
  7439. height:40px;
  7440. display:flex;
  7441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7442. font-weight:400;
  7443. font-style:normal;
  7444. font-size:12px;
  7445. color:#333333;
  7446. }
  7447. #u91080 .text {
  7448. position:absolute;
  7449. align-self:center;
  7450. padding:2px 2px 2px 0px;
  7451. box-sizing:border-box;
  7452. width:100%;
  7453. }
  7454. #u91080_text {
  7455. border-width:0px;
  7456. word-wrap:break-word;
  7457. text-transform:none;
  7458. visibility:hidden;
  7459. }
  7460. #u91081_img {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:0px;
  7464. top:0px;
  7465. width:86px;
  7466. height:40px;
  7467. }
  7468. #u91081 {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:258px;
  7472. top:78px;
  7473. width:86px;
  7474. height:40px;
  7475. display:flex;
  7476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7477. font-weight:400;
  7478. font-style:normal;
  7479. font-size:12px;
  7480. color:#333333;
  7481. }
  7482. #u91081 .text {
  7483. position:absolute;
  7484. align-self:center;
  7485. padding:2px 2px 2px 0px;
  7486. box-sizing:border-box;
  7487. width:100%;
  7488. }
  7489. #u91081_text {
  7490. border-width:0px;
  7491. word-wrap:break-word;
  7492. text-transform:none;
  7493. visibility:hidden;
  7494. }
  7495. #u91082_img {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:0px;
  7499. top:0px;
  7500. width:86px;
  7501. height:40px;
  7502. }
  7503. #u91082 {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:344px;
  7507. top:78px;
  7508. width:86px;
  7509. height:40px;
  7510. display:flex;
  7511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7512. font-weight:400;
  7513. font-style:normal;
  7514. font-size:12px;
  7515. color:#333333;
  7516. }
  7517. #u91082 .text {
  7518. position:absolute;
  7519. align-self:center;
  7520. padding:2px 2px 2px 0px;
  7521. box-sizing:border-box;
  7522. width:100%;
  7523. }
  7524. #u91082_text {
  7525. border-width:0px;
  7526. word-wrap:break-word;
  7527. text-transform:none;
  7528. visibility:hidden;
  7529. }
  7530. #u91083_img {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:0px;
  7534. top:0px;
  7535. width:86px;
  7536. height:40px;
  7537. }
  7538. #u91083 {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:430px;
  7542. top:78px;
  7543. width:86px;
  7544. height:40px;
  7545. display:flex;
  7546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7547. font-weight:400;
  7548. font-style:normal;
  7549. font-size:12px;
  7550. color:#333333;
  7551. }
  7552. #u91083 .text {
  7553. position:absolute;
  7554. align-self:center;
  7555. padding:2px 2px 2px 0px;
  7556. box-sizing:border-box;
  7557. width:100%;
  7558. }
  7559. #u91083_text {
  7560. border-width:0px;
  7561. word-wrap:break-word;
  7562. text-transform:none;
  7563. visibility:hidden;
  7564. }
  7565. #u91084_img {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:0px;
  7569. top:0px;
  7570. width:86px;
  7571. height:40px;
  7572. }
  7573. #u91084 {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:516px;
  7577. top:78px;
  7578. width:86px;
  7579. height:40px;
  7580. display:flex;
  7581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7582. font-weight:400;
  7583. font-style:normal;
  7584. font-size:12px;
  7585. color:#333333;
  7586. }
  7587. #u91084 .text {
  7588. position:absolute;
  7589. align-self:center;
  7590. padding:2px 2px 2px 0px;
  7591. box-sizing:border-box;
  7592. width:100%;
  7593. }
  7594. #u91084_text {
  7595. border-width:0px;
  7596. word-wrap:break-word;
  7597. text-transform:none;
  7598. visibility:hidden;
  7599. }
  7600. #u91085_img {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:0px;
  7604. top:0px;
  7605. width:86px;
  7606. height:40px;
  7607. }
  7608. #u91085 {
  7609. border-width:0px;
  7610. position:absolute;
  7611. left:602px;
  7612. top:78px;
  7613. width:86px;
  7614. height:40px;
  7615. display:flex;
  7616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7617. font-weight:400;
  7618. font-style:normal;
  7619. font-size:12px;
  7620. color:#333333;
  7621. }
  7622. #u91085 .text {
  7623. position:absolute;
  7624. align-self:center;
  7625. padding:2px 2px 2px 0px;
  7626. box-sizing:border-box;
  7627. width:100%;
  7628. }
  7629. #u91085_text {
  7630. border-width:0px;
  7631. word-wrap:break-word;
  7632. text-transform:none;
  7633. visibility:hidden;
  7634. }
  7635. #u91086_img {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:0px;
  7639. top:0px;
  7640. width:86px;
  7641. height:40px;
  7642. }
  7643. #u91086 {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:688px;
  7647. top:78px;
  7648. width:86px;
  7649. height:40px;
  7650. display:flex;
  7651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:12px;
  7655. color:#333333;
  7656. }
  7657. #u91086 .text {
  7658. position:absolute;
  7659. align-self:center;
  7660. padding:2px 2px 2px 0px;
  7661. box-sizing:border-box;
  7662. width:100%;
  7663. }
  7664. #u91086_text {
  7665. border-width:0px;
  7666. word-wrap:break-word;
  7667. text-transform:none;
  7668. visibility:hidden;
  7669. }
  7670. #u91087_img {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:0px;
  7674. top:0px;
  7675. width:86px;
  7676. height:40px;
  7677. }
  7678. #u91087 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:774px;
  7682. top:78px;
  7683. width:86px;
  7684. height:40px;
  7685. display:flex;
  7686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7687. font-weight:400;
  7688. font-style:normal;
  7689. font-size:12px;
  7690. color:#333333;
  7691. }
  7692. #u91087 .text {
  7693. position:absolute;
  7694. align-self:center;
  7695. padding:2px 2px 2px 0px;
  7696. box-sizing:border-box;
  7697. width:100%;
  7698. }
  7699. #u91087_text {
  7700. border-width:0px;
  7701. word-wrap:break-word;
  7702. text-transform:none;
  7703. visibility:hidden;
  7704. }
  7705. #u91088_img {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:0px;
  7709. top:0px;
  7710. width:84px;
  7711. height:40px;
  7712. }
  7713. #u91088 {
  7714. border-width:0px;
  7715. position:absolute;
  7716. left:860px;
  7717. top:78px;
  7718. width:84px;
  7719. height:40px;
  7720. display:flex;
  7721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7722. font-weight:400;
  7723. font-style:normal;
  7724. font-size:12px;
  7725. color:#333333;
  7726. }
  7727. #u91088 .text {
  7728. position:absolute;
  7729. align-self:center;
  7730. padding:2px 2px 2px 0px;
  7731. box-sizing:border-box;
  7732. width:100%;
  7733. }
  7734. #u91088_text {
  7735. border-width:0px;
  7736. word-wrap:break-word;
  7737. text-transform:none;
  7738. visibility:hidden;
  7739. }
  7740. #u91089_div {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:0px;
  7744. top:0px;
  7745. width:227px;
  7746. height:43px;
  7747. background:inherit;
  7748. background-color:rgba(255, 255, 255, 0);
  7749. border:none;
  7750. border-top:0px;
  7751. border-right:0px;
  7752. border-bottom:0px;
  7753. border-radius:0px;
  7754. border-top-left-radius:0px;
  7755. border-bottom-left-radius:0px;
  7756. -moz-box-shadow:none;
  7757. -webkit-box-shadow:none;
  7758. box-shadow:none;
  7759. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7760. font-weight:500;
  7761. font-style:normal;
  7762. font-size:24px;
  7763. }
  7764. #u91089 {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:1163px;
  7768. top:128px;
  7769. width:227px;
  7770. height:43px;
  7771. display:flex;
  7772. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7773. font-weight:500;
  7774. font-style:normal;
  7775. font-size:24px;
  7776. }
  7777. #u91089 .text {
  7778. position:absolute;
  7779. align-self:center;
  7780. padding:5px 10px 5px 0px;
  7781. box-sizing:border-box;
  7782. width:100%;
  7783. }
  7784. #u91089_text {
  7785. border-width:0px;
  7786. white-space:nowrap;
  7787. text-transform:none;
  7788. }
  7789. #u91090_div {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:0px;
  7793. top:0px;
  7794. width:325px;
  7795. height:60px;
  7796. background:inherit;
  7797. background-color:rgba(255, 255, 255, 0);
  7798. border:none;
  7799. border-left:0px;
  7800. border-top:0px;
  7801. border-right:0px;
  7802. border-radius:0px;
  7803. border-bottom-right-radius:0px;
  7804. border-bottom-left-radius:0px;
  7805. -moz-box-shadow:none;
  7806. -webkit-box-shadow:none;
  7807. box-shadow:none;
  7808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7809. font-weight:400;
  7810. font-style:normal;
  7811. font-size:14px;
  7812. line-height:30px;
  7813. }
  7814. #u91090 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:1163px;
  7818. top:181px;
  7819. width:325px;
  7820. height:60px;
  7821. display:flex;
  7822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7823. font-weight:400;
  7824. font-style:normal;
  7825. font-size:14px;
  7826. line-height:30px;
  7827. }
  7828. #u91090 .text {
  7829. position:absolute;
  7830. align-self:flex-start;
  7831. padding:0px 0px 0px 0px;
  7832. box-sizing:border-box;
  7833. width:100%;
  7834. }
  7835. #u91090_text {
  7836. border-width:0px;
  7837. word-wrap:break-word;
  7838. text-transform:none;
  7839. }