styles.css 137 KB

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