styles.css 129 KB

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