styles.css 183 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:886px;
  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. #u173915_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u173915 {
  28. border-width:0px;
  29. position:absolute;
  30. left:453px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u173915 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u173915_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u173916_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. #u173916 {
  73. border-width:0px;
  74. position:absolute;
  75. left:482px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u173916 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u173916_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u173917 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u173918_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. #u173918 {
  121. border-width:0px;
  122. position:absolute;
  123. left:762px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u173918 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u173918_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u173919 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u173920_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u173920 {
  159. border-width:0px;
  160. position:absolute;
  161. left:825px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u173920 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u173920_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u173921_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u173921 {
  189. border-width:0px;
  190. position:absolute;
  191. left:831px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u173921 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u173921_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u173922 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u173923_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u173923 {
  227. border-width:0px;
  228. position:absolute;
  229. left:776px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u173923 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u173923_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u173924_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u173924 {
  257. border-width:0px;
  258. position:absolute;
  259. left:792px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u173924 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u173924_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u173925_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u173925 {
  287. border-width:0px;
  288. position:absolute;
  289. left:783px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u173925 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u173925_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u173926_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u173926 {
  317. border-width:0px;
  318. position:absolute;
  319. left:800px;
  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. #u173926 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u173926_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u173927_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u173927 {
  351. border-width:0px;
  352. position:absolute;
  353. left:482px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u173927 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u173927_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u173928_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. #u173928 {
  393. border-width:0px;
  394. position:absolute;
  395. left:482px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u173928 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u173928_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u173929 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u173930_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u173930 {
  431. border-width:0px;
  432. position:absolute;
  433. left:522px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u173930 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u173930_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u173931_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. #u173931 {
  472. border-width:0px;
  473. position:absolute;
  474. left:522px;
  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. #u173931 .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. #u173931_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u173932 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u173933_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u173933 {
  513. border-width:0px;
  514. position:absolute;
  515. left:792px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u173933 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u173933_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u173934_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. #u173934 {
  554. border-width:0px;
  555. position:absolute;
  556. left:792px;
  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. #u173934 .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. #u173934_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u173935_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. #u173935 {
  594. border-width:0px;
  595. position:absolute;
  596. left:482px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u173935 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u173935_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u173936 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u173937_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u173937 {
  632. border-width:0px;
  633. position:absolute;
  634. left:704px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u173937 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u173937_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u173938_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. #u173938 {
  673. border-width:0px;
  674. position:absolute;
  675. left:698px;
  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. #u173938 .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. #u173938_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u173939 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u173940_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u173940 {
  714. border-width:0px;
  715. position:absolute;
  716. left:610px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u173940 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u173940_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u173941_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. #u173941 {
  755. border-width:0px;
  756. position:absolute;
  757. left:604px;
  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. #u173941 .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. #u173941_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u173942_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:734px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(242, 242, 242, 1);
  792. border-radius:26px;
  793. border-top-left-radius:0px;
  794. border-top-right-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. }
  799. #u173942 {
  800. border-width:0px;
  801. position:absolute;
  802. left:482px;
  803. top:105px;
  804. width:375px;
  805. height:734px;
  806. display:flex;
  807. }
  808. #u173942 .text {
  809. position:absolute;
  810. align-self:center;
  811. padding:2px 2px 2px 2px;
  812. box-sizing:border-box;
  813. width:100%;
  814. }
  815. #u173942_text {
  816. border-width:0px;
  817. word-wrap:break-word;
  818. text-transform:none;
  819. visibility:hidden;
  820. }
  821. #u173943 {
  822. border-width:0px;
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:0px;
  827. height:0px;
  828. }
  829. #u173944_div {
  830. border-width:0px;
  831. position:absolute;
  832. left:0px;
  833. top:0px;
  834. width:197px;
  835. height:20px;
  836. background:inherit;
  837. background-color:rgba(255, 255, 255, 0);
  838. border:none;
  839. border-radius:0px;
  840. -moz-box-shadow:none;
  841. -webkit-box-shadow:none;
  842. box-shadow:none;
  843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  844. font-weight:400;
  845. font-style:normal;
  846. }
  847. #u173944 {
  848. border-width:0px;
  849. position:absolute;
  850. left:498px;
  851. top:74px;
  852. width:197px;
  853. height:20px;
  854. display:flex;
  855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  856. font-weight:400;
  857. font-style:normal;
  858. }
  859. #u173944 .text {
  860. position:absolute;
  861. align-self:flex-start;
  862. padding:0px 0px 0px 0px;
  863. box-sizing:border-box;
  864. width:100%;
  865. }
  866. #u173944_text {
  867. border-width:0px;
  868. white-space:nowrap;
  869. text-transform:none;
  870. }
  871. #u173945_img {
  872. border-width:0px;
  873. position:absolute;
  874. left:0px;
  875. top:0px;
  876. width:18px;
  877. height:14px;
  878. }
  879. #u173945 {
  880. border-width:0px;
  881. position:absolute;
  882. left:717px;
  883. top:78px;
  884. width:18px;
  885. height:14px;
  886. display:flex;
  887. }
  888. #u173945 .text {
  889. position:absolute;
  890. align-self:center;
  891. padding:2px 2px 2px 2px;
  892. box-sizing:border-box;
  893. width:100%;
  894. }
  895. #u173945_text {
  896. border-width:0px;
  897. word-wrap:break-word;
  898. text-transform:none;
  899. visibility:hidden;
  900. }
  901. #u173946_div {
  902. border-width:0px;
  903. position:absolute;
  904. left:0px;
  905. top:0px;
  906. width:29px;
  907. height:30px;
  908. background:inherit;
  909. background-color:rgba(255, 255, 255, 0);
  910. border:none;
  911. border-left:0px;
  912. border-top:0px;
  913. border-right:0px;
  914. border-radius:0px;
  915. border-bottom-right-radius:0px;
  916. border-bottom-left-radius:0px;
  917. -moz-box-shadow:none;
  918. -webkit-box-shadow:none;
  919. box-shadow:none;
  920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  921. font-weight:400;
  922. font-style:normal;
  923. }
  924. #u173946 {
  925. border-width:0px;
  926. position:absolute;
  927. left:502px;
  928. top:105px;
  929. width:29px;
  930. height:30px;
  931. display:flex;
  932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  933. font-weight:400;
  934. font-style:normal;
  935. }
  936. #u173946 .text {
  937. position:absolute;
  938. align-self:center;
  939. padding:0px 0px 0px 0px;
  940. box-sizing:border-box;
  941. width:100%;
  942. }
  943. #u173946_text {
  944. border-width:0px;
  945. white-space:nowrap;
  946. text-transform:none;
  947. }
  948. #u173947_div {
  949. border-width:0px;
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:43px;
  954. height:30px;
  955. background:inherit;
  956. background-color:rgba(255, 255, 255, 0);
  957. box-sizing:border-box;
  958. border-width:2px;
  959. border-style:solid;
  960. border-color:rgba(25, 140, 251, 1);
  961. border-left:0px;
  962. border-top:0px;
  963. border-right:0px;
  964. border-radius:0px;
  965. border-bottom-right-radius:0px;
  966. border-bottom-left-radius:0px;
  967. -moz-box-shadow:none;
  968. -webkit-box-shadow:none;
  969. box-shadow:none;
  970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  971. font-weight:400;
  972. font-style:normal;
  973. color:#1890FF;
  974. }
  975. #u173947 {
  976. border-width:0px;
  977. position:absolute;
  978. left:556px;
  979. top:105px;
  980. width:43px;
  981. height:30px;
  982. display:flex;
  983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  984. font-weight:400;
  985. font-style:normal;
  986. color:#1890FF;
  987. }
  988. #u173947 .text {
  989. position:absolute;
  990. align-self:center;
  991. padding:0px 0px 0px 0px;
  992. box-sizing:border-box;
  993. width:100%;
  994. }
  995. #u173947_text {
  996. border-width:0px;
  997. white-space:nowrap;
  998. text-transform:none;
  999. }
  1000. #u173948_div {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:0px;
  1004. top:0px;
  1005. width:375px;
  1006. height:42px;
  1007. background:inherit;
  1008. background-color:rgba(255, 255, 255, 1);
  1009. border:none;
  1010. border-bottom:0px;
  1011. border-radius:0px;
  1012. border-bottom-right-radius:0px;
  1013. border-bottom-left-radius:0px;
  1014. -moz-box-shadow:none;
  1015. -webkit-box-shadow:none;
  1016. box-shadow:none;
  1017. }
  1018. #u173948 {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:482px;
  1022. top:136px;
  1023. width:375px;
  1024. height:42px;
  1025. display:flex;
  1026. }
  1027. #u173948 .text {
  1028. position:absolute;
  1029. align-self:center;
  1030. padding:2px 2px 2px 2px;
  1031. box-sizing:border-box;
  1032. width:100%;
  1033. }
  1034. #u173948_text {
  1035. border-width:0px;
  1036. word-wrap:break-word;
  1037. text-transform:none;
  1038. visibility:hidden;
  1039. }
  1040. #u173949_div {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:29px;
  1046. height:30px;
  1047. background:inherit;
  1048. background-color:rgba(255, 255, 255, 0);
  1049. border:none;
  1050. border-left:0px;
  1051. border-top:0px;
  1052. border-right:0px;
  1053. border-radius:0px;
  1054. border-bottom-right-radius:0px;
  1055. border-bottom-left-radius:0px;
  1056. -moz-box-shadow:none;
  1057. -webkit-box-shadow:none;
  1058. box-shadow:none;
  1059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1060. font-weight:400;
  1061. font-style:normal;
  1062. }
  1063. #u173949 {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:502px;
  1067. top:142px;
  1068. width:29px;
  1069. height:30px;
  1070. display:flex;
  1071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1072. font-weight:400;
  1073. font-style:normal;
  1074. }
  1075. #u173949 .text {
  1076. position:absolute;
  1077. align-self:center;
  1078. padding:0px 0px 0px 0px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u173949_text {
  1083. border-width:0px;
  1084. white-space:nowrap;
  1085. text-transform:none;
  1086. }
  1087. #u173950_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:30px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-left:0px;
  1098. border-top:0px;
  1099. border-right:0px;
  1100. border-radius:0px;
  1101. border-bottom-right-radius:0px;
  1102. border-bottom-left-radius:0px;
  1103. -moz-box-shadow:none;
  1104. -webkit-box-shadow:none;
  1105. box-shadow:none;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. color:#1890FF;
  1110. }
  1111. #u173950 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:551px;
  1115. top:142px;
  1116. width:29px;
  1117. height:30px;
  1118. display:flex;
  1119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. color:#1890FF;
  1123. }
  1124. #u173950 .text {
  1125. position:absolute;
  1126. align-self:center;
  1127. padding:0px 0px 0px 0px;
  1128. box-sizing:border-box;
  1129. width:100%;
  1130. }
  1131. #u173950_text {
  1132. border-width:0px;
  1133. white-space:nowrap;
  1134. text-transform:none;
  1135. }
  1136. #u173951_div {
  1137. border-width:0px;
  1138. position:absolute;
  1139. left:0px;
  1140. top:0px;
  1141. width:375px;
  1142. height:610px;
  1143. background:inherit;
  1144. background-color:rgba(255, 255, 255, 1);
  1145. border:none;
  1146. border-bottom:0px;
  1147. border-radius:0px;
  1148. border-bottom-right-radius:0px;
  1149. border-bottom-left-radius:0px;
  1150. -moz-box-shadow:none;
  1151. -webkit-box-shadow:none;
  1152. box-shadow:none;
  1153. }
  1154. #u173951 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:482px;
  1158. top:179px;
  1159. width:375px;
  1160. height:610px;
  1161. display:flex;
  1162. }
  1163. #u173951 .text {
  1164. position:absolute;
  1165. align-self:center;
  1166. padding:2px 2px 2px 2px;
  1167. box-sizing:border-box;
  1168. width:100%;
  1169. }
  1170. #u173951_text {
  1171. border-width:0px;
  1172. word-wrap:break-word;
  1173. text-transform:none;
  1174. visibility:hidden;
  1175. }
  1176. #u173952 {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:0px;
  1180. top:0px;
  1181. width:0px;
  1182. height:0px;
  1183. }
  1184. #u173953_div {
  1185. border-width:0px;
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:375px;
  1190. height:50px;
  1191. background:inherit;
  1192. background-color:rgba(255, 255, 255, 1);
  1193. box-sizing:border-box;
  1194. border-width:1px;
  1195. border-style:solid;
  1196. border-color:rgba(242, 242, 242, 1);
  1197. border-radius:26px;
  1198. border-top-left-radius:0px;
  1199. border-top-right-radius:0px;
  1200. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1201. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1202. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1203. }
  1204. #u173953 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:482px;
  1208. top:789px;
  1209. width:375px;
  1210. height:50px;
  1211. display:flex;
  1212. }
  1213. #u173953 .text {
  1214. position:absolute;
  1215. align-self:center;
  1216. padding:2px 2px 2px 2px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u173953_text {
  1221. border-width:0px;
  1222. word-wrap:break-word;
  1223. text-transform:none;
  1224. visibility:hidden;
  1225. }
  1226. #u173954 {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:0px;
  1232. height:0px;
  1233. }
  1234. #u173955_div {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:77px;
  1240. height:50px;
  1241. background:inherit;
  1242. background-color:rgba(255, 255, 255, 1);
  1243. border:none;
  1244. border-radius:0px;
  1245. border-top-left-radius:0px;
  1246. border-top-right-radius:0px;
  1247. -moz-box-shadow:none;
  1248. -webkit-box-shadow:none;
  1249. box-shadow:none;
  1250. }
  1251. #u173955 {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:631px;
  1255. top:789px;
  1256. width:77px;
  1257. height:50px;
  1258. display:flex;
  1259. }
  1260. #u173955 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:2px 2px 2px 2px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u173955_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. visibility:hidden;
  1272. }
  1273. #u173956 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:0px;
  1277. top:0px;
  1278. width:0px;
  1279. height:0px;
  1280. }
  1281. #u173957_img {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:38px;
  1287. height:38px;
  1288. }
  1289. #u173957 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:651px;
  1293. top:779px;
  1294. width:38px;
  1295. height:38px;
  1296. display:flex;
  1297. font-size:12px;
  1298. color:#FFFFFF;
  1299. }
  1300. #u173957 .text {
  1301. position:absolute;
  1302. align-self:center;
  1303. padding:2px 2px 2px 2px;
  1304. box-sizing:border-box;
  1305. width:100%;
  1306. }
  1307. #u173957_text {
  1308. border-width:0px;
  1309. word-wrap:break-word;
  1310. text-transform:none;
  1311. }
  1312. #u173958_div {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:0px;
  1316. top:0px;
  1317. width:49px;
  1318. height:17px;
  1319. background:inherit;
  1320. background-color:rgba(255, 255, 255, 0);
  1321. border:none;
  1322. border-radius:0px;
  1323. -moz-box-shadow:none;
  1324. -webkit-box-shadow:none;
  1325. box-shadow:none;
  1326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1327. font-weight:400;
  1328. font-style:normal;
  1329. font-size:12px;
  1330. }
  1331. #u173958 {
  1332. border-width:0px;
  1333. position:absolute;
  1334. left:645px;
  1335. top:818px;
  1336. width:49px;
  1337. height:17px;
  1338. display:flex;
  1339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1340. font-weight:400;
  1341. font-style:normal;
  1342. font-size:12px;
  1343. }
  1344. #u173958 .text {
  1345. position:absolute;
  1346. align-self:flex-start;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u173958_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u173959 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:0px;
  1362. height:0px;
  1363. }
  1364. #u173960_div {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:0px;
  1368. top:0px;
  1369. width:75px;
  1370. height:50px;
  1371. background:inherit;
  1372. background-color:rgba(255, 255, 255, 1);
  1373. border:none;
  1374. border-right:0px;
  1375. border-radius:26px;
  1376. border-top-left-radius:0px;
  1377. border-top-right-radius:0px;
  1378. border-bottom-right-radius:0px;
  1379. -moz-box-shadow:none;
  1380. -webkit-box-shadow:none;
  1381. box-shadow:none;
  1382. }
  1383. #u173960 {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:482px;
  1387. top:789px;
  1388. width:75px;
  1389. height:50px;
  1390. display:flex;
  1391. }
  1392. #u173960 .text {
  1393. position:absolute;
  1394. align-self:center;
  1395. padding:2px 2px 2px 2px;
  1396. box-sizing:border-box;
  1397. width:100%;
  1398. }
  1399. #u173960_text {
  1400. border-width:0px;
  1401. word-wrap:break-word;
  1402. text-transform:none;
  1403. visibility:hidden;
  1404. }
  1405. #u173961 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. }
  1413. #u173962_img {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:24px;
  1419. height:24px;
  1420. }
  1421. #u173962 {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:507px;
  1425. top:793px;
  1426. width:24px;
  1427. height:24px;
  1428. display:flex;
  1429. font-size:8px;
  1430. }
  1431. #u173962 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:2px 2px 2px 2px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u173962_text {
  1439. border-width:0px;
  1440. word-wrap:break-word;
  1441. text-transform:none;
  1442. }
  1443. #u173963_div {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:25px;
  1449. height:17px;
  1450. background:inherit;
  1451. background-color:rgba(255, 255, 255, 0);
  1452. border:none;
  1453. border-radius:0px;
  1454. -moz-box-shadow:none;
  1455. -webkit-box-shadow:none;
  1456. box-shadow:none;
  1457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1458. font-weight:400;
  1459. font-style:normal;
  1460. font-size:12px;
  1461. }
  1462. #u173963 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:507px;
  1466. top:818px;
  1467. width:25px;
  1468. height:17px;
  1469. display:flex;
  1470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1471. font-weight:400;
  1472. font-style:normal;
  1473. font-size:12px;
  1474. }
  1475. #u173963 .text {
  1476. position:absolute;
  1477. align-self:flex-start;
  1478. padding:0px 0px 0px 0px;
  1479. box-sizing:border-box;
  1480. width:100%;
  1481. }
  1482. #u173963_text {
  1483. border-width:0px;
  1484. white-space:nowrap;
  1485. text-transform:none;
  1486. }
  1487. #u173964 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:0px;
  1491. top:0px;
  1492. width:0px;
  1493. height:0px;
  1494. }
  1495. #u173965_div {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:0px;
  1499. top:0px;
  1500. width:75px;
  1501. height:50px;
  1502. background:inherit;
  1503. background-color:rgba(255, 255, 255, 1);
  1504. border:none;
  1505. border-left:0px;
  1506. border-radius:26px;
  1507. border-top-left-radius:0px;
  1508. border-top-right-radius:0px;
  1509. border-bottom-left-radius:0px;
  1510. -moz-box-shadow:none;
  1511. -webkit-box-shadow:none;
  1512. box-shadow:none;
  1513. }
  1514. #u173965 {
  1515. border-width:0px;
  1516. position:absolute;
  1517. left:782px;
  1518. top:789px;
  1519. width:75px;
  1520. height:50px;
  1521. display:flex;
  1522. }
  1523. #u173965 .text {
  1524. position:absolute;
  1525. align-self:center;
  1526. padding:2px 2px 2px 2px;
  1527. box-sizing:border-box;
  1528. width:100%;
  1529. }
  1530. #u173965_text {
  1531. border-width:0px;
  1532. word-wrap:break-word;
  1533. text-transform:none;
  1534. visibility:hidden;
  1535. }
  1536. #u173966 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:0px;
  1540. top:0px;
  1541. width:0px;
  1542. height:0px;
  1543. }
  1544. #u173967_img {
  1545. border-width:0px;
  1546. position:absolute;
  1547. left:0px;
  1548. top:0px;
  1549. width:24px;
  1550. height:24px;
  1551. }
  1552. #u173967 {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:807px;
  1556. top:795px;
  1557. width:24px;
  1558. height:24px;
  1559. display:flex;
  1560. font-size:8px;
  1561. }
  1562. #u173967 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u173967_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. }
  1574. #u173968_div {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:25px;
  1580. height:17px;
  1581. background:inherit;
  1582. background-color:rgba(255, 255, 255, 0);
  1583. border:none;
  1584. border-radius:0px;
  1585. -moz-box-shadow:none;
  1586. -webkit-box-shadow:none;
  1587. box-shadow:none;
  1588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1589. font-weight:400;
  1590. font-style:normal;
  1591. font-size:12px;
  1592. }
  1593. #u173968 {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:807px;
  1597. top:820px;
  1598. width:25px;
  1599. height:17px;
  1600. display:flex;
  1601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1602. font-weight:400;
  1603. font-style:normal;
  1604. font-size:12px;
  1605. }
  1606. #u173968 .text {
  1607. position:absolute;
  1608. align-self:flex-start;
  1609. padding:0px 0px 0px 0px;
  1610. box-sizing:border-box;
  1611. width:100%;
  1612. }
  1613. #u173968_text {
  1614. border-width:0px;
  1615. white-space:nowrap;
  1616. text-transform:none;
  1617. }
  1618. #u173969 {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:0px;
  1622. top:0px;
  1623. width:0px;
  1624. height:0px;
  1625. }
  1626. #u173970_div {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:75px;
  1632. height:50px;
  1633. background:inherit;
  1634. background-color:rgba(255, 255, 255, 1);
  1635. border:none;
  1636. border-radius:0px;
  1637. border-top-left-radius:0px;
  1638. border-top-right-radius:0px;
  1639. -moz-box-shadow:none;
  1640. -webkit-box-shadow:none;
  1641. box-shadow:none;
  1642. }
  1643. #u173970 {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:707px;
  1647. top:789px;
  1648. width:75px;
  1649. height:50px;
  1650. display:flex;
  1651. }
  1652. #u173970 .text {
  1653. position:absolute;
  1654. align-self:center;
  1655. padding:2px 2px 2px 2px;
  1656. box-sizing:border-box;
  1657. width:100%;
  1658. }
  1659. #u173970_text {
  1660. border-width:0px;
  1661. word-wrap:break-word;
  1662. text-transform:none;
  1663. visibility:hidden;
  1664. }
  1665. #u173971 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:0px;
  1669. top:0px;
  1670. width:0px;
  1671. height:0px;
  1672. }
  1673. #u173972_img {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:24px;
  1679. height:24px;
  1680. }
  1681. #u173972 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:732px;
  1685. top:793px;
  1686. width:24px;
  1687. height:24px;
  1688. display:flex;
  1689. font-size:8px;
  1690. }
  1691. #u173972 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u173972_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. }
  1703. #u173973_div {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:25px;
  1709. height:17px;
  1710. background:inherit;
  1711. background-color:rgba(255, 255, 255, 0);
  1712. border:none;
  1713. border-radius:0px;
  1714. -moz-box-shadow:none;
  1715. -webkit-box-shadow:none;
  1716. box-shadow:none;
  1717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1718. font-weight:400;
  1719. font-style:normal;
  1720. font-size:12px;
  1721. }
  1722. #u173973 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:732px;
  1726. top:818px;
  1727. width:25px;
  1728. height:17px;
  1729. display:flex;
  1730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1731. font-weight:400;
  1732. font-style:normal;
  1733. font-size:12px;
  1734. }
  1735. #u173973 .text {
  1736. position:absolute;
  1737. align-self:flex-start;
  1738. padding:0px 0px 0px 0px;
  1739. box-sizing:border-box;
  1740. width:100%;
  1741. }
  1742. #u173973_text {
  1743. border-width:0px;
  1744. white-space:nowrap;
  1745. text-transform:none;
  1746. }
  1747. #u173974 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:0px;
  1753. height:0px;
  1754. }
  1755. #u173975_div {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:75px;
  1761. height:50px;
  1762. background:inherit;
  1763. background-color:rgba(24, 144, 255, 1);
  1764. border:none;
  1765. border-radius:0px;
  1766. border-top-left-radius:0px;
  1767. border-top-right-radius:0px;
  1768. -moz-box-shadow:none;
  1769. -webkit-box-shadow:none;
  1770. box-shadow:none;
  1771. }
  1772. #u173975 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:557px;
  1776. top:789px;
  1777. width:75px;
  1778. height:50px;
  1779. display:flex;
  1780. }
  1781. #u173975 .text {
  1782. position:absolute;
  1783. align-self:center;
  1784. padding:2px 2px 2px 2px;
  1785. box-sizing:border-box;
  1786. width:100%;
  1787. }
  1788. #u173975_text {
  1789. border-width:0px;
  1790. word-wrap:break-word;
  1791. text-transform:none;
  1792. visibility:hidden;
  1793. }
  1794. #u173976 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:0px;
  1800. height:0px;
  1801. }
  1802. #u173977_img {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:24px;
  1808. height:24px;
  1809. }
  1810. #u173977 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:582px;
  1814. top:793px;
  1815. width:24px;
  1816. height:24px;
  1817. display:flex;
  1818. font-size:8px;
  1819. }
  1820. #u173977 .text {
  1821. position:absolute;
  1822. align-self:center;
  1823. padding:2px 2px 2px 2px;
  1824. box-sizing:border-box;
  1825. width:100%;
  1826. }
  1827. #u173977_text {
  1828. border-width:0px;
  1829. word-wrap:break-word;
  1830. text-transform:none;
  1831. }
  1832. #u173978_div {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:37px;
  1838. height:17px;
  1839. background:inherit;
  1840. background-color:rgba(255, 255, 255, 0);
  1841. border:none;
  1842. border-radius:0px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1847. font-weight:400;
  1848. font-style:normal;
  1849. font-size:12px;
  1850. color:#FFFFFF;
  1851. }
  1852. #u173978 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:576px;
  1856. top:818px;
  1857. width:37px;
  1858. height:17px;
  1859. display:flex;
  1860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1861. font-weight:400;
  1862. font-style:normal;
  1863. font-size:12px;
  1864. color:#FFFFFF;
  1865. }
  1866. #u173978 .text {
  1867. position:absolute;
  1868. align-self:flex-start;
  1869. padding:0px 0px 0px 0px;
  1870. box-sizing:border-box;
  1871. width:100%;
  1872. }
  1873. #u173978_text {
  1874. border-width:0px;
  1875. white-space:nowrap;
  1876. text-transform:none;
  1877. }
  1878. #u173979 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:0px;
  1882. top:0px;
  1883. width:0px;
  1884. height:0px;
  1885. }
  1886. #u173980_div {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:357px;
  1892. height:200px;
  1893. background:inherit;
  1894. background-color:rgba(242, 242, 242, 1);
  1895. border:none;
  1896. border-bottom:0px;
  1897. border-radius:0px;
  1898. border-bottom-right-radius:0px;
  1899. border-bottom-left-radius:0px;
  1900. -moz-box-shadow:none;
  1901. -webkit-box-shadow:none;
  1902. box-shadow:none;
  1903. }
  1904. #u173980 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:491px;
  1908. top:289px;
  1909. width:357px;
  1910. height:200px;
  1911. display:flex;
  1912. }
  1913. #u173980 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 2px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u173980_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. visibility:hidden;
  1925. }
  1926. #u173981 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:0px;
  1932. height:0px;
  1933. }
  1934. #u173982_div {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:0px;
  1938. top:0px;
  1939. width:51px;
  1940. height:17px;
  1941. background:inherit;
  1942. background-color:rgba(255, 255, 255, 0);
  1943. border:none;
  1944. border-left:0px;
  1945. border-top:0px;
  1946. border-right:0px;
  1947. border-radius:0px;
  1948. border-bottom-right-radius:0px;
  1949. border-bottom-left-radius:0px;
  1950. -moz-box-shadow:none;
  1951. -webkit-box-shadow:none;
  1952. box-shadow:none;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:12px;
  1957. }
  1958. #u173982 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:515px;
  1962. top:379px;
  1963. width:51px;
  1964. height:17px;
  1965. display:flex;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:12px;
  1970. }
  1971. #u173982 .text {
  1972. position:absolute;
  1973. align-self:flex-start;
  1974. padding:0px 0px 0px 0px;
  1975. box-sizing:border-box;
  1976. width:100%;
  1977. }
  1978. #u173982_text {
  1979. border-width:0px;
  1980. word-wrap:break-word;
  1981. text-transform:none;
  1982. }
  1983. #u173983_img {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:30px;
  1989. height:30px;
  1990. }
  1991. #u173983 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:525px;
  1995. top:339px;
  1996. width:30px;
  1997. height:30px;
  1998. display:flex;
  1999. }
  2000. #u173983 .text {
  2001. position:absolute;
  2002. align-self:center;
  2003. padding:2px 2px 2px 2px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u173983_text {
  2008. border-width:0px;
  2009. word-wrap:break-word;
  2010. text-transform:none;
  2011. visibility:hidden;
  2012. }
  2013. #u173984_div {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:57px;
  2019. height:20px;
  2020. background:inherit;
  2021. background-color:rgba(255, 255, 255, 0);
  2022. border:none;
  2023. border-left:0px;
  2024. border-top:0px;
  2025. border-right:0px;
  2026. border-radius:0px;
  2027. border-bottom-right-radius:0px;
  2028. border-bottom-left-radius:0px;
  2029. -moz-box-shadow:none;
  2030. -webkit-box-shadow:none;
  2031. box-shadow:none;
  2032. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2033. font-weight:500;
  2034. font-style:normal;
  2035. font-size:14px;
  2036. }
  2037. #u173984 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:515px;
  2041. top:304px;
  2042. width:57px;
  2043. height:20px;
  2044. display:flex;
  2045. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2046. font-weight:500;
  2047. font-style:normal;
  2048. font-size:14px;
  2049. }
  2050. #u173984 .text {
  2051. position:absolute;
  2052. align-self:flex-start;
  2053. padding:0px 0px 0px 0px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u173984_text {
  2058. border-width:0px;
  2059. white-space:nowrap;
  2060. text-transform:none;
  2061. }
  2062. #u173985 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:0px;
  2068. height:0px;
  2069. }
  2070. #u173986 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:0px;
  2076. height:0px;
  2077. }
  2078. #u173987 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:0px;
  2084. height:0px;
  2085. }
  2086. #u173988_div {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:61px;
  2092. height:17px;
  2093. background:inherit;
  2094. background-color:rgba(255, 255, 255, 0);
  2095. border:none;
  2096. border-left:0px;
  2097. border-top:0px;
  2098. border-right:0px;
  2099. border-radius:0px;
  2100. border-bottom-right-radius:0px;
  2101. border-bottom-left-radius:0px;
  2102. -moz-box-shadow:none;
  2103. -webkit-box-shadow:none;
  2104. box-shadow:none;
  2105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2106. font-weight:400;
  2107. font-style:normal;
  2108. font-size:12px;
  2109. }
  2110. #u173988 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:600px;
  2114. top:456px;
  2115. width:61px;
  2116. height:17px;
  2117. display:flex;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:12px;
  2122. }
  2123. #u173988 .text {
  2124. position:absolute;
  2125. align-self:flex-start;
  2126. padding:0px 0px 0px 0px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u173988_text {
  2131. border-width:0px;
  2132. white-space:nowrap;
  2133. text-transform:none;
  2134. }
  2135. #u173989_img {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:30px;
  2141. height:30px;
  2142. }
  2143. #u173989 {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:616px;
  2147. top:416px;
  2148. width:30px;
  2149. height:30px;
  2150. display:flex;
  2151. }
  2152. #u173989 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:2px 2px 2px 2px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u173989_text {
  2160. border-width:0px;
  2161. word-wrap:break-word;
  2162. text-transform:none;
  2163. visibility:hidden;
  2164. }
  2165. #u173990_div {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:0px;
  2169. top:0px;
  2170. width:13px;
  2171. height:17px;
  2172. background:inherit;
  2173. background-color:rgba(217, 0, 27, 1);
  2174. border:none;
  2175. border-radius:4px;
  2176. -moz-box-shadow:none;
  2177. -webkit-box-shadow:none;
  2178. box-shadow:none;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:12px;
  2183. color:#FFFFFF;
  2184. }
  2185. #u173990 {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:640px;
  2189. top:406px;
  2190. width:13px;
  2191. height:17px;
  2192. display:flex;
  2193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:12px;
  2197. color:#FFFFFF;
  2198. }
  2199. #u173990 .text {
  2200. position:absolute;
  2201. align-self:flex-start;
  2202. padding:0px 0px 0px 0px;
  2203. box-sizing:border-box;
  2204. width:100%;
  2205. }
  2206. #u173990_text {
  2207. border-width:0px;
  2208. white-space:nowrap;
  2209. text-transform:none;
  2210. }
  2211. #u173991 {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:0px;
  2217. height:0px;
  2218. }
  2219. #u173992_div {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:49px;
  2225. height:17px;
  2226. background:inherit;
  2227. background-color:rgba(255, 255, 255, 0);
  2228. border:none;
  2229. border-left:0px;
  2230. border-top:0px;
  2231. border-right:0px;
  2232. border-radius:0px;
  2233. border-bottom-right-radius:0px;
  2234. border-bottom-left-radius:0px;
  2235. -moz-box-shadow:none;
  2236. -webkit-box-shadow:none;
  2237. box-shadow:none;
  2238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2239. font-weight:400;
  2240. font-style:normal;
  2241. font-size:12px;
  2242. }
  2243. #u173992 {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:698px;
  2247. top:379px;
  2248. width:49px;
  2249. height:17px;
  2250. display:flex;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:12px;
  2255. }
  2256. #u173992 .text {
  2257. position:absolute;
  2258. align-self:flex-start;
  2259. padding:0px 0px 0px 0px;
  2260. box-sizing:border-box;
  2261. width:100%;
  2262. }
  2263. #u173992_text {
  2264. border-width:0px;
  2265. white-space:nowrap;
  2266. text-transform:none;
  2267. }
  2268. #u173993_img {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:30px;
  2274. height:30px;
  2275. }
  2276. #u173993 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:707px;
  2280. top:339px;
  2281. width:30px;
  2282. height:30px;
  2283. display:flex;
  2284. }
  2285. #u173993 .text {
  2286. position:absolute;
  2287. align-self:center;
  2288. padding:2px 2px 2px 2px;
  2289. box-sizing:border-box;
  2290. width:100%;
  2291. }
  2292. #u173993_text {
  2293. border-width:0px;
  2294. word-wrap:break-word;
  2295. text-transform:none;
  2296. visibility:hidden;
  2297. }
  2298. #u173994 {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:0px;
  2304. height:0px;
  2305. }
  2306. #u173995_div {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:51px;
  2312. height:17px;
  2313. background:inherit;
  2314. background-color:rgba(255, 255, 255, 0);
  2315. border:none;
  2316. border-left:0px;
  2317. border-top:0px;
  2318. border-right:0px;
  2319. border-radius:0px;
  2320. border-bottom-right-radius:0px;
  2321. border-bottom-left-radius:0px;
  2322. -moz-box-shadow:none;
  2323. -webkit-box-shadow:none;
  2324. box-shadow:none;
  2325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2326. font-weight:400;
  2327. font-style:normal;
  2328. font-size:12px;
  2329. }
  2330. #u173995 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:788px;
  2334. top:379px;
  2335. width:51px;
  2336. height:17px;
  2337. display:flex;
  2338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2339. font-weight:400;
  2340. font-style:normal;
  2341. font-size:12px;
  2342. }
  2343. #u173995 .text {
  2344. position:absolute;
  2345. align-self:flex-start;
  2346. padding:0px 0px 0px 0px;
  2347. box-sizing:border-box;
  2348. width:100%;
  2349. }
  2350. #u173995_text {
  2351. border-width:0px;
  2352. word-wrap:break-word;
  2353. text-transform:none;
  2354. }
  2355. #u173996_img {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:0px;
  2359. top:0px;
  2360. width:30px;
  2361. height:30px;
  2362. }
  2363. #u173996 {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:798px;
  2367. top:339px;
  2368. width:30px;
  2369. height:30px;
  2370. display:flex;
  2371. }
  2372. #u173996 .text {
  2373. position:absolute;
  2374. align-self:center;
  2375. padding:2px 2px 2px 2px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u173996_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. visibility:hidden;
  2384. }
  2385. #u173997 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:0px;
  2391. height:0px;
  2392. }
  2393. #u173998_div {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:61px;
  2399. height:17px;
  2400. background:inherit;
  2401. background-color:rgba(255, 255, 255, 0);
  2402. border:none;
  2403. border-left:0px;
  2404. border-top:0px;
  2405. border-right:0px;
  2406. border-radius:0px;
  2407. border-bottom-right-radius:0px;
  2408. border-bottom-left-radius:0px;
  2409. -moz-box-shadow:none;
  2410. -webkit-box-shadow:none;
  2411. box-shadow:none;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:12px;
  2416. }
  2417. #u173998 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:509px;
  2421. top:456px;
  2422. width:61px;
  2423. height:17px;
  2424. display:flex;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:12px;
  2429. }
  2430. #u173998 .text {
  2431. position:absolute;
  2432. align-self:flex-start;
  2433. padding:0px 0px 0px 0px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u173998_text {
  2438. border-width:0px;
  2439. white-space:nowrap;
  2440. text-transform:none;
  2441. }
  2442. #u173999_img {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:30px;
  2448. height:30px;
  2449. }
  2450. #u173999 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:525px;
  2454. top:416px;
  2455. width:30px;
  2456. height:30px;
  2457. display:flex;
  2458. }
  2459. #u173999 .text {
  2460. position:absolute;
  2461. align-self:center;
  2462. padding:2px 2px 2px 2px;
  2463. box-sizing:border-box;
  2464. width:100%;
  2465. }
  2466. #u173999_text {
  2467. border-width:0px;
  2468. word-wrap:break-word;
  2469. text-transform:none;
  2470. visibility:hidden;
  2471. }
  2472. #u174000 {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:0px;
  2476. top:0px;
  2477. width:0px;
  2478. height:0px;
  2479. }
  2480. #u174001_div {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:51px;
  2486. height:17px;
  2487. background:inherit;
  2488. background-color:rgba(255, 255, 255, 0);
  2489. border:none;
  2490. border-left:0px;
  2491. border-top:0px;
  2492. border-right:0px;
  2493. border-radius:0px;
  2494. border-bottom-right-radius:0px;
  2495. border-bottom-left-radius:0px;
  2496. -moz-box-shadow:none;
  2497. -webkit-box-shadow:none;
  2498. box-shadow:none;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:12px;
  2503. }
  2504. #u174001 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:607px;
  2508. top:379px;
  2509. width:51px;
  2510. height:17px;
  2511. display:flex;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:12px;
  2516. }
  2517. #u174001 .text {
  2518. position:absolute;
  2519. align-self:flex-start;
  2520. padding:0px 0px 0px 0px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u174001_text {
  2525. border-width:0px;
  2526. word-wrap:break-word;
  2527. text-transform:none;
  2528. }
  2529. #u174002_img {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:30px;
  2535. height:30px;
  2536. }
  2537. #u174002 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:617px;
  2541. top:339px;
  2542. width:30px;
  2543. height:30px;
  2544. display:flex;
  2545. }
  2546. #u174002 .text {
  2547. position:absolute;
  2548. align-self:center;
  2549. padding:2px 2px 2px 2px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u174002_text {
  2554. border-width:0px;
  2555. word-wrap:break-word;
  2556. text-transform:none;
  2557. visibility:hidden;
  2558. }
  2559. #u174003 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:0px;
  2565. height:0px;
  2566. }
  2567. #u174004_div {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:361px;
  2573. height:90px;
  2574. background:inherit;
  2575. background-color:rgba(255, 255, 255, 1);
  2576. box-sizing:border-box;
  2577. border-width:1px;
  2578. border-style:solid;
  2579. border-color:rgba(242, 242, 242, 1);
  2580. border-radius:4px;
  2581. -moz-box-shadow:none;
  2582. -webkit-box-shadow:none;
  2583. box-shadow:none;
  2584. }
  2585. #u174004 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:489px;
  2589. top:189px;
  2590. width:361px;
  2591. height:90px;
  2592. display:flex;
  2593. }
  2594. #u174004 .text {
  2595. position:absolute;
  2596. align-self:center;
  2597. padding:2px 2px 2px 2px;
  2598. box-sizing:border-box;
  2599. width:100%;
  2600. }
  2601. #u174004_text {
  2602. border-width:0px;
  2603. word-wrap:break-word;
  2604. text-transform:none;
  2605. visibility:hidden;
  2606. }
  2607. #u174005_div {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:37px;
  2613. height:50px;
  2614. background:inherit;
  2615. background-color:rgba(255, 255, 255, 0);
  2616. border:none;
  2617. border-radius:0px;
  2618. -moz-box-shadow:none;
  2619. -webkit-box-shadow:none;
  2620. box-shadow:none;
  2621. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2622. font-weight:650;
  2623. font-style:normal;
  2624. font-size:18px;
  2625. color:#298FFF;
  2626. }
  2627. #u174005 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:508px;
  2631. top:203px;
  2632. width:37px;
  2633. height:50px;
  2634. display:flex;
  2635. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2636. font-weight:650;
  2637. font-style:normal;
  2638. font-size:18px;
  2639. color:#298FFF;
  2640. }
  2641. #u174005 .text {
  2642. position:absolute;
  2643. align-self:flex-start;
  2644. padding:0px 0px 0px 0px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u174005_text {
  2649. border-width:0px;
  2650. white-space:nowrap;
  2651. text-transform:none;
  2652. }
  2653. #u174006_div {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:149px;
  2659. height:18px;
  2660. background:inherit;
  2661. background-color:rgba(255, 255, 255, 0);
  2662. border:none;
  2663. border-radius:0px;
  2664. -moz-box-shadow:none;
  2665. -webkit-box-shadow:none;
  2666. box-shadow:none;
  2667. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2668. font-weight:500;
  2669. font-style:normal;
  2670. }
  2671. #u174006 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:560px;
  2675. top:199px;
  2676. width:149px;
  2677. height:18px;
  2678. display:flex;
  2679. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2680. font-weight:500;
  2681. font-style:normal;
  2682. }
  2683. #u174006 .text {
  2684. position:absolute;
  2685. align-self:flex-start;
  2686. padding:0px 0px 0px 0px;
  2687. box-sizing:border-box;
  2688. width:100%;
  2689. }
  2690. #u174006_text {
  2691. border-width:0px;
  2692. white-space:nowrap;
  2693. text-transform:none;
  2694. }
  2695. #u174007_div {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:261px;
  2701. height:36px;
  2702. background:inherit;
  2703. background-color:rgba(255, 255, 255, 0);
  2704. border:none;
  2705. border-radius:0px;
  2706. -moz-box-shadow:none;
  2707. -webkit-box-shadow:none;
  2708. box-shadow:none;
  2709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2710. font-weight:400;
  2711. font-style:normal;
  2712. font-size:10px;
  2713. color:#7F7F7F;
  2714. line-height:18px;
  2715. }
  2716. #u174007 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:560px;
  2720. top:222px;
  2721. width:261px;
  2722. height:36px;
  2723. display:flex;
  2724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:10px;
  2728. color:#7F7F7F;
  2729. line-height:18px;
  2730. }
  2731. #u174007 .text {
  2732. position:absolute;
  2733. align-self:flex-start;
  2734. padding:0px 0px 0px 0px;
  2735. box-sizing:border-box;
  2736. width:100%;
  2737. }
  2738. #u174007_text {
  2739. border-width:0px;
  2740. word-wrap:break-word;
  2741. text-transform:none;
  2742. }
  2743. #u174008_img {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:7px;
  2749. height:7px;
  2750. }
  2751. #u174008 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:614px;
  2755. top:266px;
  2756. width:7px;
  2757. height:7px;
  2758. display:flex;
  2759. }
  2760. #u174008 .text {
  2761. position:absolute;
  2762. align-self:center;
  2763. padding:2px 2px 2px 2px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u174008_text {
  2768. border-width:0px;
  2769. word-wrap:break-word;
  2770. text-transform:none;
  2771. visibility:hidden;
  2772. }
  2773. #u174009_img {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:7px;
  2779. height:7px;
  2780. }
  2781. #u174009 {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:633px;
  2785. top:266px;
  2786. width:7px;
  2787. height:7px;
  2788. display:flex;
  2789. }
  2790. #u174009 .text {
  2791. position:absolute;
  2792. align-self:center;
  2793. padding:2px 2px 2px 2px;
  2794. box-sizing:border-box;
  2795. width:100%;
  2796. }
  2797. #u174009_text {
  2798. border-width:0px;
  2799. word-wrap:break-word;
  2800. text-transform:none;
  2801. visibility:hidden;
  2802. }
  2803. #u174010_img {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:7px;
  2809. height:7px;
  2810. }
  2811. #u174010 {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:652px;
  2815. top:266px;
  2816. width:7px;
  2817. height:7px;
  2818. display:flex;
  2819. }
  2820. #u174010 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 2px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u174010_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. visibility:hidden;
  2832. }
  2833. #u174011_img {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:7px;
  2839. height:7px;
  2840. }
  2841. #u174011 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:671px;
  2845. top:266px;
  2846. width:7px;
  2847. height:7px;
  2848. display:flex;
  2849. }
  2850. #u174011 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:2px 2px 2px 2px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u174011_text {
  2858. border-width:0px;
  2859. word-wrap:break-word;
  2860. text-transform:none;
  2861. visibility:hidden;
  2862. }
  2863. #u174012 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:0px;
  2869. height:0px;
  2870. }
  2871. #u174014_img {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:0px;
  2876. width:433px;
  2877. height:865px;
  2878. }
  2879. #u174014 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:433px;
  2885. height:865px;
  2886. display:flex;
  2887. }
  2888. #u174014 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:2px 2px 2px 2px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u174014_text {
  2896. border-width:0px;
  2897. word-wrap:break-word;
  2898. text-transform:none;
  2899. visibility:hidden;
  2900. }
  2901. #u174015_div {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:0px;
  2905. top:0px;
  2906. width:375px;
  2907. height:40px;
  2908. background:inherit;
  2909. background-color:rgba(255, 255, 255, 1);
  2910. box-sizing:border-box;
  2911. border-width:1px;
  2912. border-style:solid;
  2913. border-color:rgba(215, 215, 215, 1);
  2914. border-left:0px;
  2915. border-top:0px;
  2916. border-right:0px;
  2917. border-radius:0px;
  2918. border-bottom-right-radius:0px;
  2919. border-bottom-left-radius:0px;
  2920. -moz-box-shadow:none;
  2921. -webkit-box-shadow:none;
  2922. box-shadow:none;
  2923. }
  2924. #u174015 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:29px;
  2928. top:67px;
  2929. width:375px;
  2930. height:40px;
  2931. display:flex;
  2932. }
  2933. #u174015 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 2px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u174015_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u174016 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:0px;
  2952. height:0px;
  2953. }
  2954. #u174017_div {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:88px;
  2960. height:32px;
  2961. background:inherit;
  2962. background-color:rgba(255, 255, 255, 1);
  2963. box-sizing:border-box;
  2964. border-width:1px;
  2965. border-style:solid;
  2966. border-color:rgba(242, 242, 242, 1);
  2967. border-radius:33px;
  2968. -moz-box-shadow:none;
  2969. -webkit-box-shadow:none;
  2970. box-shadow:none;
  2971. }
  2972. #u174017 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:309px;
  2976. top:71px;
  2977. width:88px;
  2978. height:32px;
  2979. display:flex;
  2980. }
  2981. #u174017 .text {
  2982. position:absolute;
  2983. align-self:center;
  2984. padding:2px 2px 2px 2px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u174017_text {
  2989. border-width:0px;
  2990. word-wrap:break-word;
  2991. text-transform:none;
  2992. visibility:hidden;
  2993. }
  2994. #u174018 {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:0px;
  2998. top:0px;
  2999. width:0px;
  3000. height:0px;
  3001. }
  3002. #u174019_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:18px;
  3008. height:18px;
  3009. }
  3010. #u174019 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:372px;
  3014. top:78px;
  3015. width:18px;
  3016. height:18px;
  3017. display:flex;
  3018. }
  3019. #u174019 .text {
  3020. position:absolute;
  3021. align-self:center;
  3022. padding:2px 2px 2px 2px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u174019_text {
  3027. border-width:0px;
  3028. word-wrap:break-word;
  3029. text-transform:none;
  3030. visibility:hidden;
  3031. }
  3032. #u174020_img {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:0px;
  3036. top:0px;
  3037. width:6px;
  3038. height:6px;
  3039. }
  3040. #u174020 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:378px;
  3044. top:84px;
  3045. width:6px;
  3046. height:6px;
  3047. display:flex;
  3048. }
  3049. #u174020 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 2px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u174020_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. visibility:hidden;
  3061. }
  3062. #u174021 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:0px;
  3068. height:0px;
  3069. }
  3070. #u174022_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:5px;
  3076. height:5px;
  3077. }
  3078. #u174022 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:323px;
  3082. top:85px;
  3083. width:5px;
  3084. height:5px;
  3085. display:flex;
  3086. }
  3087. #u174022 .text {
  3088. position:absolute;
  3089. align-self:center;
  3090. padding:2px 2px 2px 2px;
  3091. box-sizing:border-box;
  3092. width:100%;
  3093. }
  3094. #u174022_text {
  3095. border-width:0px;
  3096. word-wrap:break-word;
  3097. text-transform:none;
  3098. visibility:hidden;
  3099. }
  3100. #u174023_img {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:5px;
  3106. height:5px;
  3107. }
  3108. #u174023 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:339px;
  3112. top:85px;
  3113. width:5px;
  3114. height:5px;
  3115. display:flex;
  3116. }
  3117. #u174023 .text {
  3118. position:absolute;
  3119. align-self:center;
  3120. padding:2px 2px 2px 2px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u174023_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. visibility:hidden;
  3129. }
  3130. #u174024_img {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:7px;
  3136. height:7px;
  3137. }
  3138. #u174024 {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:330px;
  3142. top:84px;
  3143. width:7px;
  3144. height:7px;
  3145. display:flex;
  3146. }
  3147. #u174024 .text {
  3148. position:absolute;
  3149. align-self:center;
  3150. padding:2px 2px 2px 2px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u174024_text {
  3155. border-width:0px;
  3156. word-wrap:break-word;
  3157. text-transform:none;
  3158. visibility:hidden;
  3159. }
  3160. #u174025_img {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:19px;
  3166. height:2px;
  3167. }
  3168. #u174025 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:347px;
  3172. top:87px;
  3173. width:18px;
  3174. height:1px;
  3175. display:flex;
  3176. -webkit-transform:rotate(90deg);
  3177. -moz-transform:rotate(90deg);
  3178. -ms-transform:rotate(90deg);
  3179. transform:rotate(90deg);
  3180. }
  3181. #u174025 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 2px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u174025_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. visibility:hidden;
  3193. }
  3194. #u174026_img {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:375px;
  3200. height:44px;
  3201. }
  3202. #u174026 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:29px;
  3206. top:24px;
  3207. width:375px;
  3208. height:44px;
  3209. display:flex;
  3210. }
  3211. #u174026 .text {
  3212. position:absolute;
  3213. align-self:center;
  3214. padding:2px 2px 2px 2px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u174026_text {
  3219. border-width:0px;
  3220. word-wrap:break-word;
  3221. text-transform:none;
  3222. visibility:hidden;
  3223. }
  3224. #u174027_div {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:375px;
  3230. height:50px;
  3231. background:inherit;
  3232. background-color:rgba(255, 255, 255, 1);
  3233. box-sizing:border-box;
  3234. border-width:1px;
  3235. border-style:solid;
  3236. border-color:rgba(242, 242, 242, 1);
  3237. border-radius:26px;
  3238. border-top-left-radius:0px;
  3239. border-top-right-radius:0px;
  3240. -moz-box-shadow:none;
  3241. -webkit-box-shadow:none;
  3242. box-shadow:none;
  3243. }
  3244. #u174027 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:29px;
  3248. top:788px;
  3249. width:375px;
  3250. height:50px;
  3251. display:flex;
  3252. }
  3253. #u174027 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 2px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u174027_text {
  3261. border-width:0px;
  3262. word-wrap:break-word;
  3263. text-transform:none;
  3264. visibility:hidden;
  3265. }
  3266. #u174028 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:0px;
  3272. height:0px;
  3273. }
  3274. #u174029_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:24px;
  3280. height:24px;
  3281. }
  3282. #u174029 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:69px;
  3286. top:792px;
  3287. width:24px;
  3288. height:24px;
  3289. display:flex;
  3290. font-size:8px;
  3291. }
  3292. #u174029 .text {
  3293. position:absolute;
  3294. align-self:center;
  3295. padding:2px 2px 2px 2px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u174029_text {
  3300. border-width:0px;
  3301. word-wrap:break-word;
  3302. text-transform:none;
  3303. }
  3304. #u174030_div {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:0px;
  3309. width:25px;
  3310. height:17px;
  3311. background:inherit;
  3312. background-color:rgba(255, 255, 255, 0);
  3313. border:none;
  3314. border-radius:0px;
  3315. -moz-box-shadow:none;
  3316. -webkit-box-shadow:none;
  3317. box-shadow:none;
  3318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:12px;
  3322. }
  3323. #u174030 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:69px;
  3327. top:817px;
  3328. width:25px;
  3329. height:17px;
  3330. display:flex;
  3331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:12px;
  3335. }
  3336. #u174030 .text {
  3337. position:absolute;
  3338. align-self:flex-start;
  3339. padding:0px 0px 0px 0px;
  3340. box-sizing:border-box;
  3341. width:100%;
  3342. }
  3343. #u174030_text {
  3344. border-width:0px;
  3345. white-space:nowrap;
  3346. text-transform:none;
  3347. }
  3348. #u174031 {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:0px;
  3354. height:0px;
  3355. }
  3356. #u174032_img {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:24px;
  3362. height:24px;
  3363. }
  3364. #u174032 {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:339px;
  3368. top:794px;
  3369. width:24px;
  3370. height:24px;
  3371. display:flex;
  3372. font-size:8px;
  3373. }
  3374. #u174032 .text {
  3375. position:absolute;
  3376. align-self:center;
  3377. padding:2px 2px 2px 2px;
  3378. box-sizing:border-box;
  3379. width:100%;
  3380. }
  3381. #u174032_text {
  3382. border-width:0px;
  3383. word-wrap:break-word;
  3384. text-transform:none;
  3385. }
  3386. #u174033_div {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:25px;
  3392. height:17px;
  3393. background:inherit;
  3394. background-color:rgba(255, 255, 255, 0);
  3395. border:none;
  3396. border-radius:0px;
  3397. -moz-box-shadow:none;
  3398. -webkit-box-shadow:none;
  3399. box-shadow:none;
  3400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3401. font-weight:400;
  3402. font-style:normal;
  3403. font-size:12px;
  3404. }
  3405. #u174033 {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:339px;
  3409. top:819px;
  3410. width:25px;
  3411. height:17px;
  3412. display:flex;
  3413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3414. font-weight:400;
  3415. font-style:normal;
  3416. font-size:12px;
  3417. }
  3418. #u174033 .text {
  3419. position:absolute;
  3420. align-self:flex-start;
  3421. padding:0px 0px 0px 0px;
  3422. box-sizing:border-box;
  3423. width:100%;
  3424. }
  3425. #u174033_text {
  3426. border-width:0px;
  3427. white-space:nowrap;
  3428. text-transform:none;
  3429. }
  3430. #u174034_div {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:0px;
  3434. top:0px;
  3435. width:375px;
  3436. height:681px;
  3437. background:inherit;
  3438. background-color:rgba(242, 242, 242, 0.462745098039216);
  3439. border:none;
  3440. border-radius:0px;
  3441. -moz-box-shadow:none;
  3442. -webkit-box-shadow:none;
  3443. box-shadow:none;
  3444. }
  3445. #u174034 {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:29px;
  3449. top:107px;
  3450. width:375px;
  3451. height:681px;
  3452. display:flex;
  3453. }
  3454. #u174034 .text {
  3455. position:absolute;
  3456. align-self:center;
  3457. padding:2px 2px 2px 2px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u174034_text {
  3462. border-width:0px;
  3463. word-wrap:break-word;
  3464. text-transform:none;
  3465. visibility:hidden;
  3466. }
  3467. #u174035 {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:0px;
  3473. height:0px;
  3474. }
  3475. #u174036_img {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:24px;
  3481. height:24px;
  3482. }
  3483. #u174036 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:251px;
  3487. top:792px;
  3488. width:24px;
  3489. height:24px;
  3490. display:flex;
  3491. font-size:8px;
  3492. }
  3493. #u174036 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 2px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u174036_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. }
  3505. #u174037_div {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:37px;
  3511. height:17px;
  3512. background:inherit;
  3513. background-color:rgba(255, 255, 255, 0);
  3514. border:none;
  3515. border-radius:0px;
  3516. -moz-box-shadow:none;
  3517. -webkit-box-shadow:none;
  3518. box-shadow:none;
  3519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:12px;
  3523. }
  3524. #u174037 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:245px;
  3528. top:817px;
  3529. width:37px;
  3530. height:17px;
  3531. display:flex;
  3532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3533. font-weight:400;
  3534. font-style:normal;
  3535. font-size:12px;
  3536. }
  3537. #u174037 .text {
  3538. position:absolute;
  3539. align-self:flex-start;
  3540. padding:0px 0px 0px 0px;
  3541. box-sizing:border-box;
  3542. width:100%;
  3543. }
  3544. #u174037_text {
  3545. border-width:0px;
  3546. white-space:nowrap;
  3547. text-transform:none;
  3548. }
  3549. #u174038 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:0px;
  3555. height:0px;
  3556. }
  3557. #u174039_img {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:24px;
  3563. height:24px;
  3564. }
  3565. #u174039 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:157px;
  3569. top:792px;
  3570. width:24px;
  3571. height:24px;
  3572. display:flex;
  3573. font-size:8px;
  3574. }
  3575. #u174039 .text {
  3576. position:absolute;
  3577. align-self:center;
  3578. padding:2px 2px 2px 2px;
  3579. box-sizing:border-box;
  3580. width:100%;
  3581. }
  3582. #u174039_text {
  3583. border-width:0px;
  3584. word-wrap:break-word;
  3585. text-transform:none;
  3586. }
  3587. #u174040_div {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:37px;
  3593. height:17px;
  3594. background:inherit;
  3595. background-color:rgba(255, 255, 255, 0);
  3596. border:none;
  3597. border-radius:0px;
  3598. -moz-box-shadow:none;
  3599. -webkit-box-shadow:none;
  3600. box-shadow:none;
  3601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3602. font-weight:400;
  3603. font-style:normal;
  3604. font-size:12px;
  3605. }
  3606. #u174040 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:151px;
  3610. top:817px;
  3611. width:37px;
  3612. height:17px;
  3613. display:flex;
  3614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:12px;
  3618. }
  3619. #u174040 .text {
  3620. position:absolute;
  3621. align-self:flex-start;
  3622. padding:0px 0px 0px 0px;
  3623. box-sizing:border-box;
  3624. width:100%;
  3625. }
  3626. #u174040_text {
  3627. border-width:0px;
  3628. white-space:nowrap;
  3629. text-transform:none;
  3630. }
  3631. #u174041_div {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:375px;
  3637. height:1713px;
  3638. background:inherit;
  3639. background-color:rgba(242, 242, 242, 1);
  3640. box-sizing:border-box;
  3641. border-width:1px;
  3642. border-style:solid;
  3643. border-color:rgba(242, 242, 242, 1);
  3644. border-radius:26px;
  3645. border-top-left-radius:0px;
  3646. border-top-right-radius:0px;
  3647. -moz-box-shadow:none;
  3648. -webkit-box-shadow:none;
  3649. box-shadow:none;
  3650. }
  3651. #u174041 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:29px;
  3655. top:105px;
  3656. width:375px;
  3657. height:1713px;
  3658. display:flex;
  3659. }
  3660. #u174041 .text {
  3661. position:absolute;
  3662. align-self:center;
  3663. padding:2px 2px 2px 2px;
  3664. box-sizing:border-box;
  3665. width:100%;
  3666. }
  3667. #u174041_text {
  3668. border-width:0px;
  3669. word-wrap:break-word;
  3670. text-transform:none;
  3671. visibility:hidden;
  3672. }
  3673. #u174042 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:0px;
  3677. top:0px;
  3678. width:0px;
  3679. height:0px;
  3680. }
  3681. #u174043_div {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:197px;
  3687. height:20px;
  3688. background:inherit;
  3689. background-color:rgba(255, 255, 255, 0);
  3690. border:none;
  3691. border-radius:0px;
  3692. -moz-box-shadow:none;
  3693. -webkit-box-shadow:none;
  3694. box-shadow:none;
  3695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3696. font-weight:400;
  3697. font-style:normal;
  3698. }
  3699. #u174043 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:45px;
  3703. top:74px;
  3704. width:197px;
  3705. height:20px;
  3706. display:flex;
  3707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3708. font-weight:400;
  3709. font-style:normal;
  3710. }
  3711. #u174043 .text {
  3712. position:absolute;
  3713. align-self:flex-start;
  3714. padding:0px 0px 0px 0px;
  3715. box-sizing:border-box;
  3716. width:100%;
  3717. }
  3718. #u174043_text {
  3719. border-width:0px;
  3720. white-space:nowrap;
  3721. text-transform:none;
  3722. }
  3723. #u174044_img {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:0px;
  3727. top:0px;
  3728. width:18px;
  3729. height:14px;
  3730. }
  3731. #u174044 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:264px;
  3735. top:78px;
  3736. width:18px;
  3737. height:14px;
  3738. display:flex;
  3739. }
  3740. #u174044 .text {
  3741. position:absolute;
  3742. align-self:center;
  3743. padding:2px 2px 2px 2px;
  3744. box-sizing:border-box;
  3745. width:100%;
  3746. }
  3747. #u174044_text {
  3748. border-width:0px;
  3749. word-wrap:break-word;
  3750. text-transform:none;
  3751. visibility:hidden;
  3752. }
  3753. #u174045_div {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:29px;
  3759. height:30px;
  3760. background:inherit;
  3761. background-color:rgba(255, 255, 255, 0);
  3762. border:none;
  3763. border-left:0px;
  3764. border-top:0px;
  3765. border-right:0px;
  3766. border-radius:0px;
  3767. border-bottom-right-radius:0px;
  3768. border-bottom-left-radius:0px;
  3769. -moz-box-shadow:none;
  3770. -webkit-box-shadow:none;
  3771. box-shadow:none;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. }
  3776. #u174045 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:49px;
  3780. top:105px;
  3781. width:29px;
  3782. height:30px;
  3783. display:flex;
  3784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. }
  3788. #u174045 .text {
  3789. position:absolute;
  3790. align-self:center;
  3791. padding:0px 0px 0px 0px;
  3792. box-sizing:border-box;
  3793. width:100%;
  3794. }
  3795. #u174045_text {
  3796. border-width:0px;
  3797. white-space:nowrap;
  3798. text-transform:none;
  3799. }
  3800. #u174046_div {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:43px;
  3806. height:30px;
  3807. background:inherit;
  3808. background-color:rgba(255, 255, 255, 0);
  3809. box-sizing:border-box;
  3810. border-width:2px;
  3811. border-style:solid;
  3812. border-color:rgba(25, 140, 251, 1);
  3813. border-left:0px;
  3814. border-top:0px;
  3815. border-right:0px;
  3816. border-radius:0px;
  3817. border-bottom-right-radius:0px;
  3818. border-bottom-left-radius:0px;
  3819. -moz-box-shadow:none;
  3820. -webkit-box-shadow:none;
  3821. box-shadow:none;
  3822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3823. font-weight:400;
  3824. font-style:normal;
  3825. color:#1890FF;
  3826. }
  3827. #u174046 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:103px;
  3831. top:105px;
  3832. width:43px;
  3833. height:30px;
  3834. display:flex;
  3835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3836. font-weight:400;
  3837. font-style:normal;
  3838. color:#1890FF;
  3839. }
  3840. #u174046 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:0px 0px 0px 0px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u174046_text {
  3848. border-width:0px;
  3849. white-space:nowrap;
  3850. text-transform:none;
  3851. }
  3852. #u174047_div {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:375px;
  3858. height:42px;
  3859. background:inherit;
  3860. background-color:rgba(255, 255, 255, 1);
  3861. border:none;
  3862. border-bottom:0px;
  3863. border-radius:0px;
  3864. border-bottom-right-radius:0px;
  3865. border-bottom-left-radius:0px;
  3866. -moz-box-shadow:none;
  3867. -webkit-box-shadow:none;
  3868. box-shadow:none;
  3869. }
  3870. #u174047 {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:29px;
  3874. top:136px;
  3875. width:375px;
  3876. height:42px;
  3877. display:flex;
  3878. }
  3879. #u174047 .text {
  3880. position:absolute;
  3881. align-self:center;
  3882. padding:2px 2px 2px 2px;
  3883. box-sizing:border-box;
  3884. width:100%;
  3885. }
  3886. #u174047_text {
  3887. border-width:0px;
  3888. word-wrap:break-word;
  3889. text-transform:none;
  3890. visibility:hidden;
  3891. }
  3892. #u174048_div {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:0px;
  3896. top:0px;
  3897. width:29px;
  3898. height:30px;
  3899. background:inherit;
  3900. background-color:rgba(255, 255, 255, 0);
  3901. border:none;
  3902. border-left:0px;
  3903. border-top:0px;
  3904. border-right:0px;
  3905. border-radius:0px;
  3906. border-bottom-right-radius:0px;
  3907. border-bottom-left-radius:0px;
  3908. -moz-box-shadow:none;
  3909. -webkit-box-shadow:none;
  3910. box-shadow:none;
  3911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3912. font-weight:400;
  3913. font-style:normal;
  3914. color:#1890FF;
  3915. }
  3916. #u174048 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:49px;
  3920. top:142px;
  3921. width:29px;
  3922. height:30px;
  3923. display:flex;
  3924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. color:#1890FF;
  3928. }
  3929. #u174048 .text {
  3930. position:absolute;
  3931. align-self:center;
  3932. padding:0px 0px 0px 0px;
  3933. box-sizing:border-box;
  3934. width:100%;
  3935. }
  3936. #u174048_text {
  3937. border-width:0px;
  3938. white-space:nowrap;
  3939. text-transform:none;
  3940. }
  3941. #u174049_div {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:29px;
  3947. height:30px;
  3948. background:inherit;
  3949. background-color:rgba(255, 255, 255, 0);
  3950. border:none;
  3951. border-left:0px;
  3952. border-top:0px;
  3953. border-right:0px;
  3954. border-radius:0px;
  3955. border-bottom-right-radius:0px;
  3956. border-bottom-left-radius:0px;
  3957. -moz-box-shadow:none;
  3958. -webkit-box-shadow:none;
  3959. box-shadow:none;
  3960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3961. font-weight:400;
  3962. font-style:normal;
  3963. }
  3964. #u174049 {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:98px;
  3968. top:142px;
  3969. width:29px;
  3970. height:30px;
  3971. display:flex;
  3972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3973. font-weight:400;
  3974. font-style:normal;
  3975. }
  3976. #u174049 .text {
  3977. position:absolute;
  3978. align-self:center;
  3979. padding:0px 0px 0px 0px;
  3980. box-sizing:border-box;
  3981. width:100%;
  3982. }
  3983. #u174049_text {
  3984. border-width:0px;
  3985. white-space:nowrap;
  3986. text-transform:none;
  3987. }
  3988. #u174050_div {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:0px;
  3992. top:0px;
  3993. width:375px;
  3994. height:840px;
  3995. background:inherit;
  3996. background-color:rgba(255, 255, 255, 1);
  3997. border:none;
  3998. border-bottom:0px;
  3999. border-radius:0px;
  4000. border-bottom-right-radius:0px;
  4001. border-bottom-left-radius:0px;
  4002. -moz-box-shadow:none;
  4003. -webkit-box-shadow:none;
  4004. box-shadow:none;
  4005. }
  4006. #u174050 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:29px;
  4010. top:208px;
  4011. width:375px;
  4012. height:840px;
  4013. display:flex;
  4014. }
  4015. #u174050 .text {
  4016. position:absolute;
  4017. align-self:center;
  4018. padding:2px 2px 2px 2px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u174050_text {
  4023. border-width:0px;
  4024. word-wrap:break-word;
  4025. text-transform:none;
  4026. }
  4027. #u174051 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:0px;
  4033. height:0px;
  4034. }
  4035. #u174052_div {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:0px;
  4040. width:170px;
  4041. height:80px;
  4042. background:inherit;
  4043. background-color:rgba(255, 255, 255, 1);
  4044. box-sizing:border-box;
  4045. border-width:1px;
  4046. border-style:solid;
  4047. border-color:rgba(242, 242, 242, 1);
  4048. border-radius:4px;
  4049. -moz-box-shadow:none;
  4050. -webkit-box-shadow:none;
  4051. box-shadow:none;
  4052. }
  4053. #u174052 {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:39px;
  4057. top:318px;
  4058. width:170px;
  4059. height:80px;
  4060. display:flex;
  4061. }
  4062. #u174052 .text {
  4063. position:absolute;
  4064. align-self:center;
  4065. padding:2px 2px 2px 2px;
  4066. box-sizing:border-box;
  4067. width:100%;
  4068. }
  4069. #u174052_text {
  4070. border-width:0px;
  4071. word-wrap:break-word;
  4072. text-transform:none;
  4073. visibility:hidden;
  4074. }
  4075. #u174053_div {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:65px;
  4081. height:22px;
  4082. background:inherit;
  4083. background-color:rgba(255, 255, 255, 0);
  4084. border:none;
  4085. border-radius:0px;
  4086. -moz-box-shadow:none;
  4087. -webkit-box-shadow:none;
  4088. box-shadow:none;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:16px;
  4093. color:#000000;
  4094. }
  4095. #u174053 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:50px;
  4099. top:333px;
  4100. width:65px;
  4101. height:22px;
  4102. display:flex;
  4103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4104. font-weight:400;
  4105. font-style:normal;
  4106. font-size:16px;
  4107. color:#000000;
  4108. }
  4109. #u174053 .text {
  4110. position:absolute;
  4111. align-self:flex-start;
  4112. padding:0px 0px 0px 0px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u174053_text {
  4117. border-width:0px;
  4118. white-space:nowrap;
  4119. text-transform:none;
  4120. }
  4121. #u174054_div {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:145px;
  4127. height:25px;
  4128. background:inherit;
  4129. background-color:rgba(255, 255, 255, 0);
  4130. border:none;
  4131. border-radius:0px;
  4132. -moz-box-shadow:none;
  4133. -webkit-box-shadow:none;
  4134. box-shadow:none;
  4135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:12px;
  4139. color:#000000;
  4140. line-height:25px;
  4141. }
  4142. #u174054 {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:50px;
  4146. top:361px;
  4147. width:145px;
  4148. height:25px;
  4149. display:flex;
  4150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4151. font-weight:400;
  4152. font-style:normal;
  4153. font-size:12px;
  4154. color:#000000;
  4155. line-height:25px;
  4156. }
  4157. #u174054 .text {
  4158. position:absolute;
  4159. align-self:flex-start;
  4160. padding:0px 0px 0px 0px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u174054_text {
  4165. border-width:0px;
  4166. white-space:nowrap;
  4167. text-transform:none;
  4168. }
  4169. #u174055 {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:0px;
  4175. height:0px;
  4176. }
  4177. #u174056_img {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:0px;
  4181. top:0px;
  4182. width:7px;
  4183. height:12px;
  4184. }
  4185. #u174056 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:182px;
  4189. top:337px;
  4190. width:7px;
  4191. height:12px;
  4192. display:flex;
  4193. -webkit-transform:rotate(180deg);
  4194. -moz-transform:rotate(180deg);
  4195. -ms-transform:rotate(180deg);
  4196. transform:rotate(180deg);
  4197. }
  4198. #u174056 .text {
  4199. position:absolute;
  4200. align-self:center;
  4201. padding:2px 2px 2px 2px;
  4202. box-sizing:border-box;
  4203. width:100%;
  4204. }
  4205. #u174056_text {
  4206. border-width:0px;
  4207. word-wrap:break-word;
  4208. text-transform:none;
  4209. visibility:hidden;
  4210. }
  4211. #u174057 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:0px;
  4217. height:0px;
  4218. }
  4219. #u174058_div {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:0px;
  4223. top:0px;
  4224. width:170px;
  4225. height:80px;
  4226. background:inherit;
  4227. background-color:rgba(255, 255, 255, 1);
  4228. box-sizing:border-box;
  4229. border-width:1px;
  4230. border-style:solid;
  4231. border-color:rgba(242, 242, 242, 1);
  4232. border-radius:4px;
  4233. -moz-box-shadow:none;
  4234. -webkit-box-shadow:none;
  4235. box-shadow:none;
  4236. }
  4237. #u174058 {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:224px;
  4241. top:318px;
  4242. width:170px;
  4243. height:80px;
  4244. display:flex;
  4245. }
  4246. #u174058 .text {
  4247. position:absolute;
  4248. align-self:center;
  4249. padding:2px 2px 2px 2px;
  4250. box-sizing:border-box;
  4251. width:100%;
  4252. }
  4253. #u174058_text {
  4254. border-width:0px;
  4255. word-wrap:break-word;
  4256. text-transform:none;
  4257. visibility:hidden;
  4258. }
  4259. #u174059_div {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:0px;
  4263. top:0px;
  4264. width:65px;
  4265. height:22px;
  4266. background:inherit;
  4267. background-color:rgba(255, 255, 255, 0);
  4268. border:none;
  4269. border-radius:0px;
  4270. -moz-box-shadow:none;
  4271. -webkit-box-shadow:none;
  4272. box-shadow:none;
  4273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4274. font-weight:400;
  4275. font-style:normal;
  4276. font-size:16px;
  4277. color:#000000;
  4278. }
  4279. #u174059 {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:235px;
  4283. top:333px;
  4284. width:65px;
  4285. height:22px;
  4286. display:flex;
  4287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4288. font-weight:400;
  4289. font-style:normal;
  4290. font-size:16px;
  4291. color:#000000;
  4292. }
  4293. #u174059 .text {
  4294. position:absolute;
  4295. align-self:flex-start;
  4296. padding:0px 0px 0px 0px;
  4297. box-sizing:border-box;
  4298. width:100%;
  4299. }
  4300. #u174059_text {
  4301. border-width:0px;
  4302. white-space:nowrap;
  4303. text-transform:none;
  4304. }
  4305. #u174060_div {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:145px;
  4311. height:25px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 0);
  4314. border:none;
  4315. border-radius:0px;
  4316. -moz-box-shadow:none;
  4317. -webkit-box-shadow:none;
  4318. box-shadow:none;
  4319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4320. font-weight:400;
  4321. font-style:normal;
  4322. font-size:12px;
  4323. color:#000000;
  4324. line-height:25px;
  4325. }
  4326. #u174060 {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:235px;
  4330. top:361px;
  4331. width:145px;
  4332. height:25px;
  4333. display:flex;
  4334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4335. font-weight:400;
  4336. font-style:normal;
  4337. font-size:12px;
  4338. color:#000000;
  4339. line-height:25px;
  4340. }
  4341. #u174060 .text {
  4342. position:absolute;
  4343. align-self:flex-start;
  4344. padding:0px 0px 0px 0px;
  4345. box-sizing:border-box;
  4346. width:100%;
  4347. }
  4348. #u174060_text {
  4349. border-width:0px;
  4350. white-space:nowrap;
  4351. text-transform:none;
  4352. }
  4353. #u174061 {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:0px;
  4359. height:0px;
  4360. }
  4361. #u174062_img {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:7px;
  4367. height:12px;
  4368. }
  4369. #u174062 {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:367px;
  4373. top:337px;
  4374. width:7px;
  4375. height:12px;
  4376. display:flex;
  4377. -webkit-transform:rotate(180deg);
  4378. -moz-transform:rotate(180deg);
  4379. -ms-transform:rotate(180deg);
  4380. transform:rotate(180deg);
  4381. }
  4382. #u174062 .text {
  4383. position:absolute;
  4384. align-self:center;
  4385. padding:2px 2px 2px 2px;
  4386. box-sizing:border-box;
  4387. width:100%;
  4388. }
  4389. #u174062_text {
  4390. border-width:0px;
  4391. word-wrap:break-word;
  4392. text-transform:none;
  4393. visibility:hidden;
  4394. }
  4395. #u174063 {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:0px;
  4401. height:0px;
  4402. }
  4403. #u174064_div {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:170px;
  4409. height:80px;
  4410. background:inherit;
  4411. background-color:rgba(255, 255, 255, 1);
  4412. box-sizing:border-box;
  4413. border-width:1px;
  4414. border-style:solid;
  4415. border-color:rgba(242, 242, 242, 1);
  4416. border-radius:4px;
  4417. -moz-box-shadow:none;
  4418. -webkit-box-shadow:none;
  4419. box-shadow:none;
  4420. }
  4421. #u174064 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:39px;
  4425. top:408px;
  4426. width:170px;
  4427. height:80px;
  4428. display:flex;
  4429. }
  4430. #u174064 .text {
  4431. position:absolute;
  4432. align-self:center;
  4433. padding:2px 2px 2px 2px;
  4434. box-sizing:border-box;
  4435. width:100%;
  4436. }
  4437. #u174064_text {
  4438. border-width:0px;
  4439. word-wrap:break-word;
  4440. text-transform:none;
  4441. visibility:hidden;
  4442. }
  4443. #u174065_div {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:0px;
  4447. top:0px;
  4448. width:65px;
  4449. height:22px;
  4450. background:inherit;
  4451. background-color:rgba(255, 255, 255, 0);
  4452. border:none;
  4453. border-radius:0px;
  4454. -moz-box-shadow:none;
  4455. -webkit-box-shadow:none;
  4456. box-shadow:none;
  4457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4458. font-weight:400;
  4459. font-style:normal;
  4460. font-size:16px;
  4461. color:#000000;
  4462. }
  4463. #u174065 {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:50px;
  4467. top:423px;
  4468. width:65px;
  4469. height:22px;
  4470. display:flex;
  4471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4472. font-weight:400;
  4473. font-style:normal;
  4474. font-size:16px;
  4475. color:#000000;
  4476. }
  4477. #u174065 .text {
  4478. position:absolute;
  4479. align-self:flex-start;
  4480. padding:0px 0px 0px 0px;
  4481. box-sizing:border-box;
  4482. width:100%;
  4483. }
  4484. #u174065_text {
  4485. border-width:0px;
  4486. white-space:nowrap;
  4487. text-transform:none;
  4488. }
  4489. #u174066_div {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:151px;
  4495. height:25px;
  4496. background:inherit;
  4497. background-color:rgba(255, 255, 255, 0);
  4498. border:none;
  4499. border-radius:0px;
  4500. -moz-box-shadow:none;
  4501. -webkit-box-shadow:none;
  4502. box-shadow:none;
  4503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4504. font-weight:400;
  4505. font-style:normal;
  4506. font-size:12px;
  4507. color:#000000;
  4508. line-height:25px;
  4509. }
  4510. #u174066 {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:50px;
  4514. top:451px;
  4515. width:151px;
  4516. height:25px;
  4517. display:flex;
  4518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4519. font-weight:400;
  4520. font-style:normal;
  4521. font-size:12px;
  4522. color:#000000;
  4523. line-height:25px;
  4524. }
  4525. #u174066 .text {
  4526. position:absolute;
  4527. align-self:flex-start;
  4528. padding:0px 0px 0px 0px;
  4529. box-sizing:border-box;
  4530. width:100%;
  4531. }
  4532. #u174066_text {
  4533. border-width:0px;
  4534. white-space:nowrap;
  4535. text-transform:none;
  4536. }
  4537. #u174067 {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:0px;
  4541. top:0px;
  4542. width:0px;
  4543. height:0px;
  4544. }
  4545. #u174068_img {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:0px;
  4549. top:0px;
  4550. width:7px;
  4551. height:12px;
  4552. }
  4553. #u174068 {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:182px;
  4557. top:427px;
  4558. width:7px;
  4559. height:12px;
  4560. display:flex;
  4561. -webkit-transform:rotate(180deg);
  4562. -moz-transform:rotate(180deg);
  4563. -ms-transform:rotate(180deg);
  4564. transform:rotate(180deg);
  4565. }
  4566. #u174068 .text {
  4567. position:absolute;
  4568. align-self:center;
  4569. padding:2px 2px 2px 2px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u174068_text {
  4574. border-width:0px;
  4575. word-wrap:break-word;
  4576. text-transform:none;
  4577. visibility:hidden;
  4578. }
  4579. #u174069 {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:0px;
  4585. height:0px;
  4586. }
  4587. #u174070_div {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:170px;
  4593. height:80px;
  4594. background:inherit;
  4595. background-color:rgba(255, 255, 255, 1);
  4596. box-sizing:border-box;
  4597. border-width:1px;
  4598. border-style:solid;
  4599. border-color:rgba(242, 242, 242, 1);
  4600. border-radius:4px;
  4601. -moz-box-shadow:none;
  4602. -webkit-box-shadow:none;
  4603. box-shadow:none;
  4604. }
  4605. #u174070 {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:39px;
  4609. top:948px;
  4610. width:170px;
  4611. height:80px;
  4612. display:flex;
  4613. }
  4614. #u174070 .text {
  4615. position:absolute;
  4616. align-self:center;
  4617. padding:2px 2px 2px 2px;
  4618. box-sizing:border-box;
  4619. width:100%;
  4620. }
  4621. #u174070_text {
  4622. border-width:0px;
  4623. word-wrap:break-word;
  4624. text-transform:none;
  4625. visibility:hidden;
  4626. }
  4627. #u174071_div {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:0px;
  4631. top:0px;
  4632. width:65px;
  4633. height:22px;
  4634. background:inherit;
  4635. background-color:rgba(255, 255, 255, 0);
  4636. border:none;
  4637. border-radius:0px;
  4638. -moz-box-shadow:none;
  4639. -webkit-box-shadow:none;
  4640. box-shadow:none;
  4641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4642. font-weight:400;
  4643. font-style:normal;
  4644. font-size:16px;
  4645. color:#000000;
  4646. }
  4647. #u174071 {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:50px;
  4651. top:963px;
  4652. width:65px;
  4653. height:22px;
  4654. display:flex;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:16px;
  4659. color:#000000;
  4660. }
  4661. #u174071 .text {
  4662. position:absolute;
  4663. align-self:flex-start;
  4664. padding:0px 0px 0px 0px;
  4665. box-sizing:border-box;
  4666. width:100%;
  4667. }
  4668. #u174071_text {
  4669. border-width:0px;
  4670. white-space:nowrap;
  4671. text-transform:none;
  4672. }
  4673. #u174072_div {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:145px;
  4679. height:25px;
  4680. background:inherit;
  4681. background-color:rgba(255, 255, 255, 0);
  4682. border:none;
  4683. border-radius:0px;
  4684. -moz-box-shadow:none;
  4685. -webkit-box-shadow:none;
  4686. box-shadow:none;
  4687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4688. font-weight:400;
  4689. font-style:normal;
  4690. font-size:12px;
  4691. color:#000000;
  4692. line-height:25px;
  4693. }
  4694. #u174072 {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:50px;
  4698. top:991px;
  4699. width:145px;
  4700. height:25px;
  4701. display:flex;
  4702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4703. font-weight:400;
  4704. font-style:normal;
  4705. font-size:12px;
  4706. color:#000000;
  4707. line-height:25px;
  4708. }
  4709. #u174072 .text {
  4710. position:absolute;
  4711. align-self:flex-start;
  4712. padding:0px 0px 0px 0px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u174072_text {
  4717. border-width:0px;
  4718. white-space:nowrap;
  4719. text-transform:none;
  4720. }
  4721. #u174073 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:0px;
  4727. height:0px;
  4728. }
  4729. #u174074_img {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:7px;
  4735. height:12px;
  4736. }
  4737. #u174074 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:182px;
  4741. top:967px;
  4742. width:7px;
  4743. height:12px;
  4744. display:flex;
  4745. -webkit-transform:rotate(180deg);
  4746. -moz-transform:rotate(180deg);
  4747. -ms-transform:rotate(180deg);
  4748. transform:rotate(180deg);
  4749. }
  4750. #u174074 .text {
  4751. position:absolute;
  4752. align-self:center;
  4753. padding:2px 2px 2px 2px;
  4754. box-sizing:border-box;
  4755. width:100%;
  4756. }
  4757. #u174074_text {
  4758. border-width:0px;
  4759. word-wrap:break-word;
  4760. text-transform:none;
  4761. visibility:hidden;
  4762. }
  4763. #u174075 {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:0px;
  4769. height:0px;
  4770. }
  4771. #u174076_div {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:170px;
  4777. height:80px;
  4778. background:inherit;
  4779. background-color:rgba(255, 255, 255, 1);
  4780. box-sizing:border-box;
  4781. border-width:1px;
  4782. border-style:solid;
  4783. border-color:rgba(242, 242, 242, 1);
  4784. border-radius:4px;
  4785. -moz-box-shadow:none;
  4786. -webkit-box-shadow:none;
  4787. box-shadow:none;
  4788. }
  4789. #u174076 {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:224px;
  4793. top:948px;
  4794. width:170px;
  4795. height:80px;
  4796. display:flex;
  4797. }
  4798. #u174076 .text {
  4799. position:absolute;
  4800. align-self:center;
  4801. padding:2px 2px 2px 2px;
  4802. box-sizing:border-box;
  4803. width:100%;
  4804. }
  4805. #u174076_text {
  4806. border-width:0px;
  4807. word-wrap:break-word;
  4808. text-transform:none;
  4809. visibility:hidden;
  4810. }
  4811. #u174077_div {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:0px;
  4815. top:0px;
  4816. width:65px;
  4817. height:22px;
  4818. background:inherit;
  4819. background-color:rgba(255, 255, 255, 0);
  4820. border:none;
  4821. border-radius:0px;
  4822. -moz-box-shadow:none;
  4823. -webkit-box-shadow:none;
  4824. box-shadow:none;
  4825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4826. font-weight:400;
  4827. font-style:normal;
  4828. font-size:16px;
  4829. color:#000000;
  4830. }
  4831. #u174077 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:235px;
  4835. top:963px;
  4836. width:65px;
  4837. height:22px;
  4838. display:flex;
  4839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4840. font-weight:400;
  4841. font-style:normal;
  4842. font-size:16px;
  4843. color:#000000;
  4844. }
  4845. #u174077 .text {
  4846. position:absolute;
  4847. align-self:flex-start;
  4848. padding:0px 0px 0px 0px;
  4849. box-sizing:border-box;
  4850. width:100%;
  4851. }
  4852. #u174077_text {
  4853. border-width:0px;
  4854. white-space:nowrap;
  4855. text-transform:none;
  4856. }
  4857. #u174078_div {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:145px;
  4863. height:25px;
  4864. background:inherit;
  4865. background-color:rgba(255, 255, 255, 0);
  4866. border:none;
  4867. border-radius:0px;
  4868. -moz-box-shadow:none;
  4869. -webkit-box-shadow:none;
  4870. box-shadow:none;
  4871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4872. font-weight:400;
  4873. font-style:normal;
  4874. font-size:12px;
  4875. color:#000000;
  4876. line-height:25px;
  4877. }
  4878. #u174078 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:235px;
  4882. top:991px;
  4883. width:145px;
  4884. height:25px;
  4885. display:flex;
  4886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4887. font-weight:400;
  4888. font-style:normal;
  4889. font-size:12px;
  4890. color:#000000;
  4891. line-height:25px;
  4892. }
  4893. #u174078 .text {
  4894. position:absolute;
  4895. align-self:flex-start;
  4896. padding:0px 0px 0px 0px;
  4897. box-sizing:border-box;
  4898. width:100%;
  4899. }
  4900. #u174078_text {
  4901. border-width:0px;
  4902. white-space:nowrap;
  4903. text-transform:none;
  4904. }
  4905. #u174079 {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:0px;
  4911. height:0px;
  4912. }
  4913. #u174080_img {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:7px;
  4919. height:12px;
  4920. }
  4921. #u174080 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:367px;
  4925. top:967px;
  4926. width:7px;
  4927. height:12px;
  4928. display:flex;
  4929. -webkit-transform:rotate(180deg);
  4930. -moz-transform:rotate(180deg);
  4931. -ms-transform:rotate(180deg);
  4932. transform:rotate(180deg);
  4933. }
  4934. #u174080 .text {
  4935. position:absolute;
  4936. align-self:center;
  4937. padding:2px 2px 2px 2px;
  4938. box-sizing:border-box;
  4939. width:100%;
  4940. }
  4941. #u174080_text {
  4942. border-width:0px;
  4943. word-wrap:break-word;
  4944. text-transform:none;
  4945. visibility:hidden;
  4946. }
  4947. #u174081 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:0px;
  4953. height:0px;
  4954. }
  4955. #u174082_div {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:0px;
  4959. top:0px;
  4960. width:170px;
  4961. height:80px;
  4962. background:inherit;
  4963. background-color:rgba(255, 255, 255, 1);
  4964. box-sizing:border-box;
  4965. border-width:1px;
  4966. border-style:solid;
  4967. border-color:rgba(242, 242, 242, 1);
  4968. border-radius:4px;
  4969. -moz-box-shadow:none;
  4970. -webkit-box-shadow:none;
  4971. box-shadow:none;
  4972. }
  4973. #u174082 {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:224px;
  4977. top:408px;
  4978. width:170px;
  4979. height:80px;
  4980. display:flex;
  4981. }
  4982. #u174082 .text {
  4983. position:absolute;
  4984. align-self:center;
  4985. padding:2px 2px 2px 2px;
  4986. box-sizing:border-box;
  4987. width:100%;
  4988. }
  4989. #u174082_text {
  4990. border-width:0px;
  4991. word-wrap:break-word;
  4992. text-transform:none;
  4993. visibility:hidden;
  4994. }
  4995. #u174083_div {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:65px;
  5001. height:22px;
  5002. background:inherit;
  5003. background-color:rgba(255, 255, 255, 0);
  5004. border:none;
  5005. border-radius:0px;
  5006. -moz-box-shadow:none;
  5007. -webkit-box-shadow:none;
  5008. box-shadow:none;
  5009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5010. font-weight:400;
  5011. font-style:normal;
  5012. font-size:16px;
  5013. color:#000000;
  5014. }
  5015. #u174083 {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:235px;
  5019. top:423px;
  5020. width:65px;
  5021. height:22px;
  5022. display:flex;
  5023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5024. font-weight:400;
  5025. font-style:normal;
  5026. font-size:16px;
  5027. color:#000000;
  5028. }
  5029. #u174083 .text {
  5030. position:absolute;
  5031. align-self:flex-start;
  5032. padding:0px 0px 0px 0px;
  5033. box-sizing:border-box;
  5034. width:100%;
  5035. }
  5036. #u174083_text {
  5037. border-width:0px;
  5038. white-space:nowrap;
  5039. text-transform:none;
  5040. }
  5041. #u174084_div {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:0px;
  5045. top:0px;
  5046. width:145px;
  5047. height:25px;
  5048. background:inherit;
  5049. background-color:rgba(255, 255, 255, 0);
  5050. border:none;
  5051. border-radius:0px;
  5052. -moz-box-shadow:none;
  5053. -webkit-box-shadow:none;
  5054. box-shadow:none;
  5055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5056. font-weight:400;
  5057. font-style:normal;
  5058. font-size:12px;
  5059. color:#000000;
  5060. line-height:25px;
  5061. }
  5062. #u174084 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:235px;
  5066. top:451px;
  5067. width:145px;
  5068. height:25px;
  5069. display:flex;
  5070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5071. font-weight:400;
  5072. font-style:normal;
  5073. font-size:12px;
  5074. color:#000000;
  5075. line-height:25px;
  5076. }
  5077. #u174084 .text {
  5078. position:absolute;
  5079. align-self:flex-start;
  5080. padding:0px 0px 0px 0px;
  5081. box-sizing:border-box;
  5082. width:100%;
  5083. }
  5084. #u174084_text {
  5085. border-width:0px;
  5086. white-space:nowrap;
  5087. text-transform:none;
  5088. }
  5089. #u174085 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:0px;
  5093. top:0px;
  5094. width:0px;
  5095. height:0px;
  5096. }
  5097. #u174086_img {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:0px;
  5101. top:0px;
  5102. width:7px;
  5103. height:12px;
  5104. }
  5105. #u174086 {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:367px;
  5109. top:427px;
  5110. width:7px;
  5111. height:12px;
  5112. display:flex;
  5113. -webkit-transform:rotate(180deg);
  5114. -moz-transform:rotate(180deg);
  5115. -ms-transform:rotate(180deg);
  5116. transform:rotate(180deg);
  5117. }
  5118. #u174086 .text {
  5119. position:absolute;
  5120. align-self:center;
  5121. padding:2px 2px 2px 2px;
  5122. box-sizing:border-box;
  5123. width:100%;
  5124. }
  5125. #u174086_text {
  5126. border-width:0px;
  5127. word-wrap:break-word;
  5128. text-transform:none;
  5129. visibility:hidden;
  5130. }
  5131. #u174087 {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:0px;
  5135. top:0px;
  5136. width:0px;
  5137. height:0px;
  5138. }
  5139. #u174088_div {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:170px;
  5145. height:80px;
  5146. background:inherit;
  5147. background-color:rgba(255, 255, 255, 1);
  5148. box-sizing:border-box;
  5149. border-width:1px;
  5150. border-style:solid;
  5151. border-color:rgba(242, 242, 242, 1);
  5152. border-radius:4px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. }
  5157. #u174088 {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:39px;
  5161. top:498px;
  5162. width:170px;
  5163. height:80px;
  5164. display:flex;
  5165. }
  5166. #u174088 .text {
  5167. position:absolute;
  5168. align-self:center;
  5169. padding:2px 2px 2px 2px;
  5170. box-sizing:border-box;
  5171. width:100%;
  5172. }
  5173. #u174088_text {
  5174. border-width:0px;
  5175. word-wrap:break-word;
  5176. text-transform:none;
  5177. visibility:hidden;
  5178. }
  5179. #u174089_div {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:65px;
  5185. height:22px;
  5186. background:inherit;
  5187. background-color:rgba(255, 255, 255, 0);
  5188. border:none;
  5189. border-radius:0px;
  5190. -moz-box-shadow:none;
  5191. -webkit-box-shadow:none;
  5192. box-shadow:none;
  5193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:16px;
  5197. color:#000000;
  5198. }
  5199. #u174089 {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:50px;
  5203. top:513px;
  5204. width:65px;
  5205. height:22px;
  5206. display:flex;
  5207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5208. font-weight:400;
  5209. font-style:normal;
  5210. font-size:16px;
  5211. color:#000000;
  5212. }
  5213. #u174089 .text {
  5214. position:absolute;
  5215. align-self:flex-start;
  5216. padding:0px 0px 0px 0px;
  5217. box-sizing:border-box;
  5218. width:100%;
  5219. }
  5220. #u174089_text {
  5221. border-width:0px;
  5222. white-space:nowrap;
  5223. text-transform:none;
  5224. }
  5225. #u174090_div {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:145px;
  5231. height:25px;
  5232. background:inherit;
  5233. background-color:rgba(255, 255, 255, 0);
  5234. border:none;
  5235. border-radius:0px;
  5236. -moz-box-shadow:none;
  5237. -webkit-box-shadow:none;
  5238. box-shadow:none;
  5239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5240. font-weight:400;
  5241. font-style:normal;
  5242. font-size:12px;
  5243. color:#000000;
  5244. line-height:25px;
  5245. }
  5246. #u174090 {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:50px;
  5250. top:541px;
  5251. width:145px;
  5252. height:25px;
  5253. display:flex;
  5254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5255. font-weight:400;
  5256. font-style:normal;
  5257. font-size:12px;
  5258. color:#000000;
  5259. line-height:25px;
  5260. }
  5261. #u174090 .text {
  5262. position:absolute;
  5263. align-self:flex-start;
  5264. padding:0px 0px 0px 0px;
  5265. box-sizing:border-box;
  5266. width:100%;
  5267. }
  5268. #u174090_text {
  5269. border-width:0px;
  5270. white-space:nowrap;
  5271. text-transform:none;
  5272. }
  5273. #u174091 {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:0px;
  5277. top:0px;
  5278. width:0px;
  5279. height:0px;
  5280. }
  5281. #u174092_img {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:7px;
  5287. height:12px;
  5288. }
  5289. #u174092 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:182px;
  5293. top:517px;
  5294. width:7px;
  5295. height:12px;
  5296. display:flex;
  5297. -webkit-transform:rotate(180deg);
  5298. -moz-transform:rotate(180deg);
  5299. -ms-transform:rotate(180deg);
  5300. transform:rotate(180deg);
  5301. }
  5302. #u174092 .text {
  5303. position:absolute;
  5304. align-self:center;
  5305. padding:2px 2px 2px 2px;
  5306. box-sizing:border-box;
  5307. width:100%;
  5308. }
  5309. #u174092_text {
  5310. border-width:0px;
  5311. word-wrap:break-word;
  5312. text-transform:none;
  5313. visibility:hidden;
  5314. }
  5315. #u174093 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:0px;
  5321. height:0px;
  5322. }
  5323. #u174094_div {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:170px;
  5329. height:80px;
  5330. background:inherit;
  5331. background-color:rgba(255, 255, 255, 1);
  5332. box-sizing:border-box;
  5333. border-width:1px;
  5334. border-style:solid;
  5335. border-color:rgba(242, 242, 242, 1);
  5336. border-radius:4px;
  5337. -moz-box-shadow:none;
  5338. -webkit-box-shadow:none;
  5339. box-shadow:none;
  5340. }
  5341. #u174094 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:224px;
  5345. top:498px;
  5346. width:170px;
  5347. height:80px;
  5348. display:flex;
  5349. }
  5350. #u174094 .text {
  5351. position:absolute;
  5352. align-self:center;
  5353. padding:2px 2px 2px 2px;
  5354. box-sizing:border-box;
  5355. width:100%;
  5356. }
  5357. #u174094_text {
  5358. border-width:0px;
  5359. word-wrap:break-word;
  5360. text-transform:none;
  5361. visibility:hidden;
  5362. }
  5363. #u174095_div {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:0px;
  5367. top:0px;
  5368. width:65px;
  5369. height:22px;
  5370. background:inherit;
  5371. background-color:rgba(255, 255, 255, 0);
  5372. border:none;
  5373. border-radius:0px;
  5374. -moz-box-shadow:none;
  5375. -webkit-box-shadow:none;
  5376. box-shadow:none;
  5377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5378. font-weight:400;
  5379. font-style:normal;
  5380. font-size:16px;
  5381. color:#000000;
  5382. }
  5383. #u174095 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:235px;
  5387. top:513px;
  5388. width:65px;
  5389. height:22px;
  5390. display:flex;
  5391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5392. font-weight:400;
  5393. font-style:normal;
  5394. font-size:16px;
  5395. color:#000000;
  5396. }
  5397. #u174095 .text {
  5398. position:absolute;
  5399. align-self:flex-start;
  5400. padding:0px 0px 0px 0px;
  5401. box-sizing:border-box;
  5402. width:100%;
  5403. }
  5404. #u174095_text {
  5405. border-width:0px;
  5406. white-space:nowrap;
  5407. text-transform:none;
  5408. }
  5409. #u174096_div {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:145px;
  5415. height:25px;
  5416. background:inherit;
  5417. background-color:rgba(255, 255, 255, 0);
  5418. border:none;
  5419. border-radius:0px;
  5420. -moz-box-shadow:none;
  5421. -webkit-box-shadow:none;
  5422. box-shadow:none;
  5423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5424. font-weight:400;
  5425. font-style:normal;
  5426. font-size:12px;
  5427. color:#000000;
  5428. line-height:25px;
  5429. }
  5430. #u174096 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:235px;
  5434. top:541px;
  5435. width:145px;
  5436. height:25px;
  5437. display:flex;
  5438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5439. font-weight:400;
  5440. font-style:normal;
  5441. font-size:12px;
  5442. color:#000000;
  5443. line-height:25px;
  5444. }
  5445. #u174096 .text {
  5446. position:absolute;
  5447. align-self:flex-start;
  5448. padding:0px 0px 0px 0px;
  5449. box-sizing:border-box;
  5450. width:100%;
  5451. }
  5452. #u174096_text {
  5453. border-width:0px;
  5454. white-space:nowrap;
  5455. text-transform:none;
  5456. }
  5457. #u174097 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:0px;
  5461. top:0px;
  5462. width:0px;
  5463. height:0px;
  5464. }
  5465. #u174098_img {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:0px;
  5469. top:0px;
  5470. width:7px;
  5471. height:12px;
  5472. }
  5473. #u174098 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:367px;
  5477. top:517px;
  5478. width:7px;
  5479. height:12px;
  5480. display:flex;
  5481. -webkit-transform:rotate(180deg);
  5482. -moz-transform:rotate(180deg);
  5483. -ms-transform:rotate(180deg);
  5484. transform:rotate(180deg);
  5485. }
  5486. #u174098 .text {
  5487. position:absolute;
  5488. align-self:center;
  5489. padding:2px 2px 2px 2px;
  5490. box-sizing:border-box;
  5491. width:100%;
  5492. }
  5493. #u174098_text {
  5494. border-width:0px;
  5495. word-wrap:break-word;
  5496. text-transform:none;
  5497. visibility:hidden;
  5498. }
  5499. #u174099 {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:0px;
  5505. height:0px;
  5506. }
  5507. #u174100_div {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:170px;
  5513. height:80px;
  5514. background:inherit;
  5515. background-color:rgba(255, 255, 255, 1);
  5516. box-sizing:border-box;
  5517. border-width:1px;
  5518. border-style:solid;
  5519. border-color:rgba(242, 242, 242, 1);
  5520. border-radius:4px;
  5521. -moz-box-shadow:none;
  5522. -webkit-box-shadow:none;
  5523. box-shadow:none;
  5524. }
  5525. #u174100 {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:39px;
  5529. top:588px;
  5530. width:170px;
  5531. height:80px;
  5532. display:flex;
  5533. }
  5534. #u174100 .text {
  5535. position:absolute;
  5536. align-self:center;
  5537. padding:2px 2px 2px 2px;
  5538. box-sizing:border-box;
  5539. width:100%;
  5540. }
  5541. #u174100_text {
  5542. border-width:0px;
  5543. word-wrap:break-word;
  5544. text-transform:none;
  5545. visibility:hidden;
  5546. }
  5547. #u174101_div {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:0px;
  5551. top:0px;
  5552. width:65px;
  5553. height:22px;
  5554. background:inherit;
  5555. background-color:rgba(255, 255, 255, 0);
  5556. border:none;
  5557. border-radius:0px;
  5558. -moz-box-shadow:none;
  5559. -webkit-box-shadow:none;
  5560. box-shadow:none;
  5561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5562. font-weight:400;
  5563. font-style:normal;
  5564. font-size:16px;
  5565. color:#000000;
  5566. }
  5567. #u174101 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:50px;
  5571. top:603px;
  5572. width:65px;
  5573. height:22px;
  5574. display:flex;
  5575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5576. font-weight:400;
  5577. font-style:normal;
  5578. font-size:16px;
  5579. color:#000000;
  5580. }
  5581. #u174101 .text {
  5582. position:absolute;
  5583. align-self:flex-start;
  5584. padding:0px 0px 0px 0px;
  5585. box-sizing:border-box;
  5586. width:100%;
  5587. }
  5588. #u174101_text {
  5589. border-width:0px;
  5590. white-space:nowrap;
  5591. text-transform:none;
  5592. }
  5593. #u174102_div {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:0px;
  5597. top:0px;
  5598. width:157px;
  5599. height:25px;
  5600. background:inherit;
  5601. background-color:rgba(255, 255, 255, 0);
  5602. border:none;
  5603. border-radius:0px;
  5604. -moz-box-shadow:none;
  5605. -webkit-box-shadow:none;
  5606. box-shadow:none;
  5607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5608. font-weight:400;
  5609. font-style:normal;
  5610. font-size:12px;
  5611. color:#000000;
  5612. line-height:25px;
  5613. }
  5614. #u174102 {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:50px;
  5618. top:631px;
  5619. width:157px;
  5620. height:25px;
  5621. display:flex;
  5622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5623. font-weight:400;
  5624. font-style:normal;
  5625. font-size:12px;
  5626. color:#000000;
  5627. line-height:25px;
  5628. }
  5629. #u174102 .text {
  5630. position:absolute;
  5631. align-self:flex-start;
  5632. padding:0px 0px 0px 0px;
  5633. box-sizing:border-box;
  5634. width:100%;
  5635. }
  5636. #u174102_text {
  5637. border-width:0px;
  5638. white-space:nowrap;
  5639. text-transform:none;
  5640. }
  5641. #u174103 {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:0px;
  5647. height:0px;
  5648. }
  5649. #u174104_img {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:0px;
  5653. top:0px;
  5654. width:7px;
  5655. height:12px;
  5656. }
  5657. #u174104 {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:182px;
  5661. top:607px;
  5662. width:7px;
  5663. height:12px;
  5664. display:flex;
  5665. -webkit-transform:rotate(180deg);
  5666. -moz-transform:rotate(180deg);
  5667. -ms-transform:rotate(180deg);
  5668. transform:rotate(180deg);
  5669. }
  5670. #u174104 .text {
  5671. position:absolute;
  5672. align-self:center;
  5673. padding:2px 2px 2px 2px;
  5674. box-sizing:border-box;
  5675. width:100%;
  5676. }
  5677. #u174104_text {
  5678. border-width:0px;
  5679. word-wrap:break-word;
  5680. text-transform:none;
  5681. visibility:hidden;
  5682. }
  5683. #u174105_div {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:0px;
  5687. top:0px;
  5688. width:57px;
  5689. height:30px;
  5690. background:inherit;
  5691. background-color:rgba(255, 255, 255, 0);
  5692. border:none;
  5693. border-left:0px;
  5694. border-top:0px;
  5695. border-right:0px;
  5696. border-radius:0px;
  5697. border-bottom-right-radius:0px;
  5698. border-bottom-left-radius:0px;
  5699. -moz-box-shadow:none;
  5700. -webkit-box-shadow:none;
  5701. box-shadow:none;
  5702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5703. font-weight:400;
  5704. font-style:normal;
  5705. color:#7F7F7F;
  5706. }
  5707. #u174105 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:49px;
  5711. top:178px;
  5712. width:57px;
  5713. height:30px;
  5714. display:flex;
  5715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5716. font-weight:400;
  5717. font-style:normal;
  5718. color:#7F7F7F;
  5719. }
  5720. #u174105 .text {
  5721. position:absolute;
  5722. align-self:center;
  5723. padding:0px 0px 0px 0px;
  5724. box-sizing:border-box;
  5725. width:100%;
  5726. }
  5727. #u174105_text {
  5728. border-width:0px;
  5729. white-space:nowrap;
  5730. text-transform:none;
  5731. }
  5732. #u174106 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:0px;
  5736. top:0px;
  5737. width:0px;
  5738. height:0px;
  5739. }
  5740. #u174107_div {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:0px;
  5744. top:0px;
  5745. width:170px;
  5746. height:80px;
  5747. background:inherit;
  5748. background-color:rgba(255, 255, 255, 1);
  5749. box-sizing:border-box;
  5750. border-width:1px;
  5751. border-style:solid;
  5752. border-color:rgba(242, 242, 242, 1);
  5753. border-radius:4px;
  5754. -moz-box-shadow:none;
  5755. -webkit-box-shadow:none;
  5756. box-shadow:none;
  5757. }
  5758. #u174107 {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:224px;
  5762. top:588px;
  5763. width:170px;
  5764. height:80px;
  5765. display:flex;
  5766. }
  5767. #u174107 .text {
  5768. position:absolute;
  5769. align-self:center;
  5770. padding:2px 2px 2px 2px;
  5771. box-sizing:border-box;
  5772. width:100%;
  5773. }
  5774. #u174107_text {
  5775. border-width:0px;
  5776. word-wrap:break-word;
  5777. text-transform:none;
  5778. visibility:hidden;
  5779. }
  5780. #u174108_div {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:65px;
  5786. height:22px;
  5787. background:inherit;
  5788. background-color:rgba(255, 255, 255, 0);
  5789. border:none;
  5790. border-radius:0px;
  5791. -moz-box-shadow:none;
  5792. -webkit-box-shadow:none;
  5793. box-shadow:none;
  5794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:16px;
  5798. color:#000000;
  5799. }
  5800. #u174108 {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:235px;
  5804. top:603px;
  5805. width:65px;
  5806. height:22px;
  5807. display:flex;
  5808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5809. font-weight:400;
  5810. font-style:normal;
  5811. font-size:16px;
  5812. color:#000000;
  5813. }
  5814. #u174108 .text {
  5815. position:absolute;
  5816. align-self:flex-start;
  5817. padding:0px 0px 0px 0px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u174108_text {
  5822. border-width:0px;
  5823. white-space:nowrap;
  5824. text-transform:none;
  5825. }
  5826. #u174109_div {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:145px;
  5832. height:25px;
  5833. background:inherit;
  5834. background-color:rgba(255, 255, 255, 0);
  5835. border:none;
  5836. border-radius:0px;
  5837. -moz-box-shadow:none;
  5838. -webkit-box-shadow:none;
  5839. box-shadow:none;
  5840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5841. font-weight:400;
  5842. font-style:normal;
  5843. font-size:12px;
  5844. color:#000000;
  5845. line-height:25px;
  5846. }
  5847. #u174109 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:235px;
  5851. top:631px;
  5852. width:145px;
  5853. height:25px;
  5854. display:flex;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:12px;
  5859. color:#000000;
  5860. line-height:25px;
  5861. }
  5862. #u174109 .text {
  5863. position:absolute;
  5864. align-self:flex-start;
  5865. padding:0px 0px 0px 0px;
  5866. box-sizing:border-box;
  5867. width:100%;
  5868. }
  5869. #u174109_text {
  5870. border-width:0px;
  5871. white-space:nowrap;
  5872. text-transform:none;
  5873. }
  5874. #u174110 {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:0px;
  5880. height:0px;
  5881. }
  5882. #u174111_img {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:0px;
  5886. top:0px;
  5887. width:7px;
  5888. height:12px;
  5889. }
  5890. #u174111 {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:367px;
  5894. top:607px;
  5895. width:7px;
  5896. height:12px;
  5897. display:flex;
  5898. -webkit-transform:rotate(180deg);
  5899. -moz-transform:rotate(180deg);
  5900. -ms-transform:rotate(180deg);
  5901. transform:rotate(180deg);
  5902. }
  5903. #u174111 .text {
  5904. position:absolute;
  5905. align-self:center;
  5906. padding:2px 2px 2px 2px;
  5907. box-sizing:border-box;
  5908. width:100%;
  5909. }
  5910. #u174111_text {
  5911. border-width:0px;
  5912. word-wrap:break-word;
  5913. text-transform:none;
  5914. visibility:hidden;
  5915. }
  5916. #u174112 {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:0px;
  5920. top:0px;
  5921. width:0px;
  5922. height:0px;
  5923. }
  5924. #u174113_div {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:0px;
  5928. top:0px;
  5929. width:170px;
  5930. height:80px;
  5931. background:inherit;
  5932. background-color:rgba(255, 255, 255, 1);
  5933. box-sizing:border-box;
  5934. border-width:1px;
  5935. border-style:solid;
  5936. border-color:rgba(242, 242, 242, 1);
  5937. border-radius:4px;
  5938. -moz-box-shadow:none;
  5939. -webkit-box-shadow:none;
  5940. box-shadow:none;
  5941. }
  5942. #u174113 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:39px;
  5946. top:678px;
  5947. width:170px;
  5948. height:80px;
  5949. display:flex;
  5950. }
  5951. #u174113 .text {
  5952. position:absolute;
  5953. align-self:center;
  5954. padding:2px 2px 2px 2px;
  5955. box-sizing:border-box;
  5956. width:100%;
  5957. }
  5958. #u174113_text {
  5959. border-width:0px;
  5960. word-wrap:break-word;
  5961. text-transform:none;
  5962. visibility:hidden;
  5963. }
  5964. #u174114_div {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:0px;
  5968. top:0px;
  5969. width:65px;
  5970. height:22px;
  5971. background:inherit;
  5972. background-color:rgba(255, 255, 255, 0);
  5973. border:none;
  5974. border-radius:0px;
  5975. -moz-box-shadow:none;
  5976. -webkit-box-shadow:none;
  5977. box-shadow:none;
  5978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5979. font-weight:400;
  5980. font-style:normal;
  5981. font-size:16px;
  5982. color:#000000;
  5983. }
  5984. #u174114 {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:50px;
  5988. top:693px;
  5989. width:65px;
  5990. height:22px;
  5991. display:flex;
  5992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5993. font-weight:400;
  5994. font-style:normal;
  5995. font-size:16px;
  5996. color:#000000;
  5997. }
  5998. #u174114 .text {
  5999. position:absolute;
  6000. align-self:flex-start;
  6001. padding:0px 0px 0px 0px;
  6002. box-sizing:border-box;
  6003. width:100%;
  6004. }
  6005. #u174114_text {
  6006. border-width:0px;
  6007. white-space:nowrap;
  6008. text-transform:none;
  6009. }
  6010. #u174115_div {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:0px;
  6014. top:0px;
  6015. width:161px;
  6016. height:25px;
  6017. background:inherit;
  6018. background-color:rgba(255, 255, 255, 0);
  6019. border:none;
  6020. border-radius:0px;
  6021. -moz-box-shadow:none;
  6022. -webkit-box-shadow:none;
  6023. box-shadow:none;
  6024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6025. font-weight:400;
  6026. font-style:normal;
  6027. font-size:12px;
  6028. color:#000000;
  6029. line-height:25px;
  6030. }
  6031. #u174115 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:50px;
  6035. top:721px;
  6036. width:161px;
  6037. height:25px;
  6038. display:flex;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:12px;
  6043. color:#000000;
  6044. line-height:25px;
  6045. }
  6046. #u174115 .text {
  6047. position:absolute;
  6048. align-self:flex-start;
  6049. padding:0px 0px 0px 0px;
  6050. box-sizing:border-box;
  6051. width:100%;
  6052. }
  6053. #u174115_text {
  6054. border-width:0px;
  6055. white-space:nowrap;
  6056. text-transform:none;
  6057. }
  6058. #u174116 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:0px;
  6062. top:0px;
  6063. width:0px;
  6064. height:0px;
  6065. }
  6066. #u174117_img {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:0px;
  6070. top:0px;
  6071. width:7px;
  6072. height:12px;
  6073. }
  6074. #u174117 {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:182px;
  6078. top:697px;
  6079. width:7px;
  6080. height:12px;
  6081. display:flex;
  6082. -webkit-transform:rotate(180deg);
  6083. -moz-transform:rotate(180deg);
  6084. -ms-transform:rotate(180deg);
  6085. transform:rotate(180deg);
  6086. }
  6087. #u174117 .text {
  6088. position:absolute;
  6089. align-self:center;
  6090. padding:2px 2px 2px 2px;
  6091. box-sizing:border-box;
  6092. width:100%;
  6093. }
  6094. #u174117_text {
  6095. border-width:0px;
  6096. word-wrap:break-word;
  6097. text-transform:none;
  6098. visibility:hidden;
  6099. }
  6100. #u174118 {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:0px;
  6104. top:0px;
  6105. width:0px;
  6106. height:0px;
  6107. }
  6108. #u174119_div {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:0px;
  6112. top:0px;
  6113. width:170px;
  6114. height:80px;
  6115. background:inherit;
  6116. background-color:rgba(255, 255, 255, 1);
  6117. box-sizing:border-box;
  6118. border-width:1px;
  6119. border-style:solid;
  6120. border-color:rgba(242, 242, 242, 1);
  6121. border-radius:4px;
  6122. -moz-box-shadow:none;
  6123. -webkit-box-shadow:none;
  6124. box-shadow:none;
  6125. }
  6126. #u174119 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:224px;
  6130. top:678px;
  6131. width:170px;
  6132. height:80px;
  6133. display:flex;
  6134. }
  6135. #u174119 .text {
  6136. position:absolute;
  6137. align-self:center;
  6138. padding:2px 2px 2px 2px;
  6139. box-sizing:border-box;
  6140. width:100%;
  6141. }
  6142. #u174119_text {
  6143. border-width:0px;
  6144. word-wrap:break-word;
  6145. text-transform:none;
  6146. visibility:hidden;
  6147. }
  6148. #u174120_div {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:0px;
  6152. top:0px;
  6153. width:65px;
  6154. height:22px;
  6155. background:inherit;
  6156. background-color:rgba(255, 255, 255, 0);
  6157. border:none;
  6158. border-radius:0px;
  6159. -moz-box-shadow:none;
  6160. -webkit-box-shadow:none;
  6161. box-shadow:none;
  6162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6163. font-weight:400;
  6164. font-style:normal;
  6165. font-size:16px;
  6166. color:#000000;
  6167. }
  6168. #u174120 {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:235px;
  6172. top:693px;
  6173. width:65px;
  6174. height:22px;
  6175. display:flex;
  6176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6177. font-weight:400;
  6178. font-style:normal;
  6179. font-size:16px;
  6180. color:#000000;
  6181. }
  6182. #u174120 .text {
  6183. position:absolute;
  6184. align-self:flex-start;
  6185. padding:0px 0px 0px 0px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u174120_text {
  6190. border-width:0px;
  6191. white-space:nowrap;
  6192. text-transform:none;
  6193. }
  6194. #u174121_div {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:133px;
  6200. height:25px;
  6201. background:inherit;
  6202. background-color:rgba(255, 255, 255, 0);
  6203. border:none;
  6204. border-radius:0px;
  6205. -moz-box-shadow:none;
  6206. -webkit-box-shadow:none;
  6207. box-shadow:none;
  6208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6209. font-weight:400;
  6210. font-style:normal;
  6211. font-size:12px;
  6212. color:#000000;
  6213. line-height:25px;
  6214. }
  6215. #u174121 {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:235px;
  6219. top:721px;
  6220. width:133px;
  6221. height:25px;
  6222. display:flex;
  6223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6224. font-weight:400;
  6225. font-style:normal;
  6226. font-size:12px;
  6227. color:#000000;
  6228. line-height:25px;
  6229. }
  6230. #u174121 .text {
  6231. position:absolute;
  6232. align-self:flex-start;
  6233. padding:0px 0px 0px 0px;
  6234. box-sizing:border-box;
  6235. width:100%;
  6236. }
  6237. #u174121_text {
  6238. border-width:0px;
  6239. white-space:nowrap;
  6240. text-transform:none;
  6241. }
  6242. #u174122 {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:0px;
  6246. top:0px;
  6247. width:0px;
  6248. height:0px;
  6249. }
  6250. #u174123_img {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:0px;
  6254. top:0px;
  6255. width:7px;
  6256. height:12px;
  6257. }
  6258. #u174123 {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:367px;
  6262. top:697px;
  6263. width:7px;
  6264. height:12px;
  6265. display:flex;
  6266. -webkit-transform:rotate(180deg);
  6267. -moz-transform:rotate(180deg);
  6268. -ms-transform:rotate(180deg);
  6269. transform:rotate(180deg);
  6270. }
  6271. #u174123 .text {
  6272. position:absolute;
  6273. align-self:center;
  6274. padding:2px 2px 2px 2px;
  6275. box-sizing:border-box;
  6276. width:100%;
  6277. }
  6278. #u174123_text {
  6279. border-width:0px;
  6280. word-wrap:break-word;
  6281. text-transform:none;
  6282. visibility:hidden;
  6283. }
  6284. #u174124 {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:0px;
  6288. top:0px;
  6289. width:0px;
  6290. height:0px;
  6291. }
  6292. #u174125_div {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:170px;
  6298. height:80px;
  6299. background:inherit;
  6300. background-color:rgba(255, 255, 255, 1);
  6301. box-sizing:border-box;
  6302. border-width:1px;
  6303. border-style:solid;
  6304. border-color:rgba(242, 242, 242, 1);
  6305. border-radius:4px;
  6306. -moz-box-shadow:none;
  6307. -webkit-box-shadow:none;
  6308. box-shadow:none;
  6309. }
  6310. #u174125 {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:39px;
  6314. top:768px;
  6315. width:170px;
  6316. height:80px;
  6317. display:flex;
  6318. }
  6319. #u174125 .text {
  6320. position:absolute;
  6321. align-self:center;
  6322. padding:2px 2px 2px 2px;
  6323. box-sizing:border-box;
  6324. width:100%;
  6325. }
  6326. #u174125_text {
  6327. border-width:0px;
  6328. word-wrap:break-word;
  6329. text-transform:none;
  6330. visibility:hidden;
  6331. }
  6332. #u174126_div {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:0px;
  6336. top:0px;
  6337. width:65px;
  6338. height:22px;
  6339. background:inherit;
  6340. background-color:rgba(255, 255, 255, 0);
  6341. border:none;
  6342. border-radius:0px;
  6343. -moz-box-shadow:none;
  6344. -webkit-box-shadow:none;
  6345. box-shadow:none;
  6346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6347. font-weight:400;
  6348. font-style:normal;
  6349. font-size:16px;
  6350. color:#000000;
  6351. }
  6352. #u174126 {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:50px;
  6356. top:783px;
  6357. width:65px;
  6358. height:22px;
  6359. display:flex;
  6360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6361. font-weight:400;
  6362. font-style:normal;
  6363. font-size:16px;
  6364. color:#000000;
  6365. }
  6366. #u174126 .text {
  6367. position:absolute;
  6368. align-self:flex-start;
  6369. padding:0px 0px 0px 0px;
  6370. box-sizing:border-box;
  6371. width:100%;
  6372. }
  6373. #u174126_text {
  6374. border-width:0px;
  6375. white-space:nowrap;
  6376. text-transform:none;
  6377. }
  6378. #u174127_div {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:133px;
  6384. height:25px;
  6385. background:inherit;
  6386. background-color:rgba(255, 255, 255, 0);
  6387. border:none;
  6388. border-radius:0px;
  6389. -moz-box-shadow:none;
  6390. -webkit-box-shadow:none;
  6391. box-shadow:none;
  6392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. font-size:12px;
  6396. color:#000000;
  6397. line-height:25px;
  6398. }
  6399. #u174127 {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:50px;
  6403. top:811px;
  6404. width:133px;
  6405. height:25px;
  6406. display:flex;
  6407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:12px;
  6411. color:#000000;
  6412. line-height:25px;
  6413. }
  6414. #u174127 .text {
  6415. position:absolute;
  6416. align-self:flex-start;
  6417. padding:0px 0px 0px 0px;
  6418. box-sizing:border-box;
  6419. width:100%;
  6420. }
  6421. #u174127_text {
  6422. border-width:0px;
  6423. white-space:nowrap;
  6424. text-transform:none;
  6425. }
  6426. #u174128 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:0px;
  6430. top:0px;
  6431. width:0px;
  6432. height:0px;
  6433. }
  6434. #u174129_img {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:7px;
  6440. height:12px;
  6441. }
  6442. #u174129 {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:182px;
  6446. top:787px;
  6447. width:7px;
  6448. height:12px;
  6449. display:flex;
  6450. -webkit-transform:rotate(180deg);
  6451. -moz-transform:rotate(180deg);
  6452. -ms-transform:rotate(180deg);
  6453. transform:rotate(180deg);
  6454. }
  6455. #u174129 .text {
  6456. position:absolute;
  6457. align-self:center;
  6458. padding:2px 2px 2px 2px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u174129_text {
  6463. border-width:0px;
  6464. word-wrap:break-word;
  6465. text-transform:none;
  6466. visibility:hidden;
  6467. }
  6468. #u174130 {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:0px;
  6474. height:0px;
  6475. }
  6476. #u174131_div {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:170px;
  6482. height:80px;
  6483. background:inherit;
  6484. background-color:rgba(255, 255, 255, 1);
  6485. box-sizing:border-box;
  6486. border-width:1px;
  6487. border-style:solid;
  6488. border-color:rgba(242, 242, 242, 1);
  6489. border-radius:4px;
  6490. -moz-box-shadow:none;
  6491. -webkit-box-shadow:none;
  6492. box-shadow:none;
  6493. }
  6494. #u174131 {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:224px;
  6498. top:768px;
  6499. width:170px;
  6500. height:80px;
  6501. display:flex;
  6502. }
  6503. #u174131 .text {
  6504. position:absolute;
  6505. align-self:center;
  6506. padding:2px 2px 2px 2px;
  6507. box-sizing:border-box;
  6508. width:100%;
  6509. }
  6510. #u174131_text {
  6511. border-width:0px;
  6512. word-wrap:break-word;
  6513. text-transform:none;
  6514. visibility:hidden;
  6515. }
  6516. #u174132_div {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:65px;
  6522. height:22px;
  6523. background:inherit;
  6524. background-color:rgba(255, 255, 255, 0);
  6525. border:none;
  6526. border-radius:0px;
  6527. -moz-box-shadow:none;
  6528. -webkit-box-shadow:none;
  6529. box-shadow:none;
  6530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6531. font-weight:400;
  6532. font-style:normal;
  6533. font-size:16px;
  6534. color:#000000;
  6535. }
  6536. #u174132 {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:235px;
  6540. top:783px;
  6541. width:65px;
  6542. height:22px;
  6543. display:flex;
  6544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6545. font-weight:400;
  6546. font-style:normal;
  6547. font-size:16px;
  6548. color:#000000;
  6549. }
  6550. #u174132 .text {
  6551. position:absolute;
  6552. align-self:flex-start;
  6553. padding:0px 0px 0px 0px;
  6554. box-sizing:border-box;
  6555. width:100%;
  6556. }
  6557. #u174132_text {
  6558. border-width:0px;
  6559. white-space:nowrap;
  6560. text-transform:none;
  6561. }
  6562. #u174133_div {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:0px;
  6566. top:0px;
  6567. width:145px;
  6568. height:25px;
  6569. background:inherit;
  6570. background-color:rgba(255, 255, 255, 0);
  6571. border:none;
  6572. border-radius:0px;
  6573. -moz-box-shadow:none;
  6574. -webkit-box-shadow:none;
  6575. box-shadow:none;
  6576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6577. font-weight:400;
  6578. font-style:normal;
  6579. font-size:12px;
  6580. color:#000000;
  6581. line-height:25px;
  6582. }
  6583. #u174133 {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:235px;
  6587. top:811px;
  6588. width:145px;
  6589. height:25px;
  6590. display:flex;
  6591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6592. font-weight:400;
  6593. font-style:normal;
  6594. font-size:12px;
  6595. color:#000000;
  6596. line-height:25px;
  6597. }
  6598. #u174133 .text {
  6599. position:absolute;
  6600. align-self:flex-start;
  6601. padding:0px 0px 0px 0px;
  6602. box-sizing:border-box;
  6603. width:100%;
  6604. }
  6605. #u174133_text {
  6606. border-width:0px;
  6607. white-space:nowrap;
  6608. text-transform:none;
  6609. }
  6610. #u174134 {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:0px;
  6614. top:0px;
  6615. width:0px;
  6616. height:0px;
  6617. }
  6618. #u174135_img {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:7px;
  6624. height:12px;
  6625. }
  6626. #u174135 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:367px;
  6630. top:787px;
  6631. width:7px;
  6632. height:12px;
  6633. display:flex;
  6634. -webkit-transform:rotate(180deg);
  6635. -moz-transform:rotate(180deg);
  6636. -ms-transform:rotate(180deg);
  6637. transform:rotate(180deg);
  6638. }
  6639. #u174135 .text {
  6640. position:absolute;
  6641. align-self:center;
  6642. padding:2px 2px 2px 2px;
  6643. box-sizing:border-box;
  6644. width:100%;
  6645. }
  6646. #u174135_text {
  6647. border-width:0px;
  6648. word-wrap:break-word;
  6649. text-transform:none;
  6650. visibility:hidden;
  6651. }
  6652. #u174136 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:0px;
  6658. height:0px;
  6659. }
  6660. #u174137_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:170px;
  6666. height:80px;
  6667. background:inherit;
  6668. background-color:rgba(255, 255, 255, 1);
  6669. box-sizing:border-box;
  6670. border-width:1px;
  6671. border-style:solid;
  6672. border-color:rgba(242, 242, 242, 1);
  6673. border-radius:4px;
  6674. -moz-box-shadow:none;
  6675. -webkit-box-shadow:none;
  6676. box-shadow:none;
  6677. }
  6678. #u174137 {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:39px;
  6682. top:858px;
  6683. width:170px;
  6684. height:80px;
  6685. display:flex;
  6686. }
  6687. #u174137 .text {
  6688. position:absolute;
  6689. align-self:center;
  6690. padding:2px 2px 2px 2px;
  6691. box-sizing:border-box;
  6692. width:100%;
  6693. }
  6694. #u174137_text {
  6695. border-width:0px;
  6696. word-wrap:break-word;
  6697. text-transform:none;
  6698. visibility:hidden;
  6699. }
  6700. #u174138_div {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:65px;
  6706. height:22px;
  6707. background:inherit;
  6708. background-color:rgba(255, 255, 255, 0);
  6709. border:none;
  6710. border-radius:0px;
  6711. -moz-box-shadow:none;
  6712. -webkit-box-shadow:none;
  6713. box-shadow:none;
  6714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. font-size:16px;
  6718. color:#000000;
  6719. }
  6720. #u174138 {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:50px;
  6724. top:873px;
  6725. width:65px;
  6726. height:22px;
  6727. display:flex;
  6728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6729. font-weight:400;
  6730. font-style:normal;
  6731. font-size:16px;
  6732. color:#000000;
  6733. }
  6734. #u174138 .text {
  6735. position:absolute;
  6736. align-self:flex-start;
  6737. padding:0px 0px 0px 0px;
  6738. box-sizing:border-box;
  6739. width:100%;
  6740. }
  6741. #u174138_text {
  6742. border-width:0px;
  6743. white-space:nowrap;
  6744. text-transform:none;
  6745. }
  6746. #u174139_div {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:0px;
  6750. top:0px;
  6751. width:157px;
  6752. height:25px;
  6753. background:inherit;
  6754. background-color:rgba(255, 255, 255, 0);
  6755. border:none;
  6756. border-radius:0px;
  6757. -moz-box-shadow:none;
  6758. -webkit-box-shadow:none;
  6759. box-shadow:none;
  6760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6761. font-weight:400;
  6762. font-style:normal;
  6763. font-size:12px;
  6764. color:#000000;
  6765. line-height:25px;
  6766. }
  6767. #u174139 {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:50px;
  6771. top:901px;
  6772. width:157px;
  6773. height:25px;
  6774. display:flex;
  6775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6776. font-weight:400;
  6777. font-style:normal;
  6778. font-size:12px;
  6779. color:#000000;
  6780. line-height:25px;
  6781. }
  6782. #u174139 .text {
  6783. position:absolute;
  6784. align-self:flex-start;
  6785. padding:0px 0px 0px 0px;
  6786. box-sizing:border-box;
  6787. width:100%;
  6788. }
  6789. #u174139_text {
  6790. border-width:0px;
  6791. white-space:nowrap;
  6792. text-transform:none;
  6793. }
  6794. #u174140 {
  6795. border-width:0px;
  6796. position:absolute;
  6797. left:0px;
  6798. top:0px;
  6799. width:0px;
  6800. height:0px;
  6801. }
  6802. #u174141_img {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:0px;
  6806. top:0px;
  6807. width:7px;
  6808. height:12px;
  6809. }
  6810. #u174141 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:182px;
  6814. top:877px;
  6815. width:7px;
  6816. height:12px;
  6817. display:flex;
  6818. -webkit-transform:rotate(180deg);
  6819. -moz-transform:rotate(180deg);
  6820. -ms-transform:rotate(180deg);
  6821. transform:rotate(180deg);
  6822. }
  6823. #u174141 .text {
  6824. position:absolute;
  6825. align-self:center;
  6826. padding:2px 2px 2px 2px;
  6827. box-sizing:border-box;
  6828. width:100%;
  6829. }
  6830. #u174141_text {
  6831. border-width:0px;
  6832. word-wrap:break-word;
  6833. text-transform:none;
  6834. visibility:hidden;
  6835. }
  6836. #u174142 {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:0px;
  6842. height:0px;
  6843. }
  6844. #u174143_div {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:0px;
  6848. top:0px;
  6849. width:170px;
  6850. height:80px;
  6851. background:inherit;
  6852. background-color:rgba(255, 255, 255, 1);
  6853. box-sizing:border-box;
  6854. border-width:1px;
  6855. border-style:solid;
  6856. border-color:rgba(242, 242, 242, 1);
  6857. border-radius:4px;
  6858. -moz-box-shadow:none;
  6859. -webkit-box-shadow:none;
  6860. box-shadow:none;
  6861. }
  6862. #u174143 {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:224px;
  6866. top:858px;
  6867. width:170px;
  6868. height:80px;
  6869. display:flex;
  6870. }
  6871. #u174143 .text {
  6872. position:absolute;
  6873. align-self:center;
  6874. padding:2px 2px 2px 2px;
  6875. box-sizing:border-box;
  6876. width:100%;
  6877. }
  6878. #u174143_text {
  6879. border-width:0px;
  6880. word-wrap:break-word;
  6881. text-transform:none;
  6882. visibility:hidden;
  6883. }
  6884. #u174144_div {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:0px;
  6888. top:0px;
  6889. width:65px;
  6890. height:22px;
  6891. background:inherit;
  6892. background-color:rgba(255, 255, 255, 0);
  6893. border:none;
  6894. border-radius:0px;
  6895. -moz-box-shadow:none;
  6896. -webkit-box-shadow:none;
  6897. box-shadow:none;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:16px;
  6902. color:#000000;
  6903. }
  6904. #u174144 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:235px;
  6908. top:873px;
  6909. width:65px;
  6910. height:22px;
  6911. display:flex;
  6912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6913. font-weight:400;
  6914. font-style:normal;
  6915. font-size:16px;
  6916. color:#000000;
  6917. }
  6918. #u174144 .text {
  6919. position:absolute;
  6920. align-self:flex-start;
  6921. padding:0px 0px 0px 0px;
  6922. box-sizing:border-box;
  6923. width:100%;
  6924. }
  6925. #u174144_text {
  6926. border-width:0px;
  6927. white-space:nowrap;
  6928. text-transform:none;
  6929. }
  6930. #u174145_div {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:0px;
  6934. top:0px;
  6935. width:145px;
  6936. height:25px;
  6937. background:inherit;
  6938. background-color:rgba(255, 255, 255, 0);
  6939. border:none;
  6940. border-radius:0px;
  6941. -moz-box-shadow:none;
  6942. -webkit-box-shadow:none;
  6943. box-shadow:none;
  6944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:12px;
  6948. color:#000000;
  6949. line-height:25px;
  6950. }
  6951. #u174145 {
  6952. border-width:0px;
  6953. position:absolute;
  6954. left:235px;
  6955. top:901px;
  6956. width:145px;
  6957. height:25px;
  6958. display:flex;
  6959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6960. font-weight:400;
  6961. font-style:normal;
  6962. font-size:12px;
  6963. color:#000000;
  6964. line-height:25px;
  6965. }
  6966. #u174145 .text {
  6967. position:absolute;
  6968. align-self:flex-start;
  6969. padding:0px 0px 0px 0px;
  6970. box-sizing:border-box;
  6971. width:100%;
  6972. }
  6973. #u174145_text {
  6974. border-width:0px;
  6975. white-space:nowrap;
  6976. text-transform:none;
  6977. }
  6978. #u174146 {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:0px;
  6982. top:0px;
  6983. width:0px;
  6984. height:0px;
  6985. }
  6986. #u174147_img {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:0px;
  6990. top:0px;
  6991. width:7px;
  6992. height:12px;
  6993. }
  6994. #u174147 {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:367px;
  6998. top:877px;
  6999. width:7px;
  7000. height:12px;
  7001. display:flex;
  7002. -webkit-transform:rotate(180deg);
  7003. -moz-transform:rotate(180deg);
  7004. -ms-transform:rotate(180deg);
  7005. transform:rotate(180deg);
  7006. }
  7007. #u174147 .text {
  7008. position:absolute;
  7009. align-self:center;
  7010. padding:2px 2px 2px 2px;
  7011. box-sizing:border-box;
  7012. width:100%;
  7013. }
  7014. #u174147_text {
  7015. border-width:0px;
  7016. word-wrap:break-word;
  7017. text-transform:none;
  7018. visibility:hidden;
  7019. }
  7020. #u174148 {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:0px;
  7024. top:0px;
  7025. width:0px;
  7026. height:0px;
  7027. }
  7028. #u174149_div {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:0px;
  7032. top:0px;
  7033. width:170px;
  7034. height:80px;
  7035. background:inherit;
  7036. background-color:rgba(255, 255, 255, 1);
  7037. box-sizing:border-box;
  7038. border-width:1px;
  7039. border-style:solid;
  7040. border-color:rgba(242, 242, 242, 1);
  7041. border-radius:4px;
  7042. -moz-box-shadow:none;
  7043. -webkit-box-shadow:none;
  7044. box-shadow:none;
  7045. }
  7046. #u174149 {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:45px;
  7050. top:228px;
  7051. width:170px;
  7052. height:80px;
  7053. display:flex;
  7054. }
  7055. #u174149 .text {
  7056. position:absolute;
  7057. align-self:center;
  7058. padding:2px 2px 2px 2px;
  7059. box-sizing:border-box;
  7060. width:100%;
  7061. }
  7062. #u174149_text {
  7063. border-width:0px;
  7064. word-wrap:break-word;
  7065. text-transform:none;
  7066. visibility:hidden;
  7067. }
  7068. #u174150_div {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:0px;
  7072. top:0px;
  7073. width:65px;
  7074. height:22px;
  7075. background:inherit;
  7076. background-color:rgba(255, 255, 255, 0);
  7077. border:none;
  7078. border-radius:0px;
  7079. -moz-box-shadow:none;
  7080. -webkit-box-shadow:none;
  7081. box-shadow:none;
  7082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7083. font-weight:400;
  7084. font-style:normal;
  7085. font-size:16px;
  7086. color:#000000;
  7087. }
  7088. #u174150 {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:56px;
  7092. top:243px;
  7093. width:65px;
  7094. height:22px;
  7095. display:flex;
  7096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7097. font-weight:400;
  7098. font-style:normal;
  7099. font-size:16px;
  7100. color:#000000;
  7101. }
  7102. #u174150 .text {
  7103. position:absolute;
  7104. align-self:flex-start;
  7105. padding:0px 0px 0px 0px;
  7106. box-sizing:border-box;
  7107. width:100%;
  7108. }
  7109. #u174150_text {
  7110. border-width:0px;
  7111. white-space:nowrap;
  7112. text-transform:none;
  7113. }
  7114. #u174151_div {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:0px;
  7118. top:0px;
  7119. width:145px;
  7120. height:25px;
  7121. background:inherit;
  7122. background-color:rgba(255, 255, 255, 0);
  7123. border:none;
  7124. border-radius:0px;
  7125. -moz-box-shadow:none;
  7126. -webkit-box-shadow:none;
  7127. box-shadow:none;
  7128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7129. font-weight:400;
  7130. font-style:normal;
  7131. font-size:12px;
  7132. color:#000000;
  7133. line-height:25px;
  7134. }
  7135. #u174151 {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:56px;
  7139. top:271px;
  7140. width:145px;
  7141. height:25px;
  7142. display:flex;
  7143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7144. font-weight:400;
  7145. font-style:normal;
  7146. font-size:12px;
  7147. color:#000000;
  7148. line-height:25px;
  7149. }
  7150. #u174151 .text {
  7151. position:absolute;
  7152. align-self:flex-start;
  7153. padding:0px 0px 0px 0px;
  7154. box-sizing:border-box;
  7155. width:100%;
  7156. }
  7157. #u174151_text {
  7158. border-width:0px;
  7159. white-space:nowrap;
  7160. text-transform:none;
  7161. }
  7162. #u174152 {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:0px;
  7166. top:0px;
  7167. width:0px;
  7168. height:0px;
  7169. }
  7170. #u174153_img {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:0px;
  7174. top:0px;
  7175. width:7px;
  7176. height:12px;
  7177. }
  7178. #u174153 {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:188px;
  7182. top:247px;
  7183. width:7px;
  7184. height:12px;
  7185. display:flex;
  7186. -webkit-transform:rotate(180deg);
  7187. -moz-transform:rotate(180deg);
  7188. -ms-transform:rotate(180deg);
  7189. transform:rotate(180deg);
  7190. }
  7191. #u174153 .text {
  7192. position:absolute;
  7193. align-self:center;
  7194. padding:2px 2px 2px 2px;
  7195. box-sizing:border-box;
  7196. width:100%;
  7197. }
  7198. #u174153_text {
  7199. border-width:0px;
  7200. word-wrap:break-word;
  7201. text-transform:none;
  7202. visibility:hidden;
  7203. }
  7204. #u174154 {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:0px;
  7208. top:0px;
  7209. width:0px;
  7210. height:0px;
  7211. }
  7212. #u174155_div {
  7213. border-width:0px;
  7214. position:absolute;
  7215. left:0px;
  7216. top:0px;
  7217. width:170px;
  7218. height:80px;
  7219. background:inherit;
  7220. background-color:rgba(255, 255, 255, 1);
  7221. box-sizing:border-box;
  7222. border-width:1px;
  7223. border-style:solid;
  7224. border-color:rgba(242, 242, 242, 1);
  7225. border-radius:4px;
  7226. -moz-box-shadow:none;
  7227. -webkit-box-shadow:none;
  7228. box-shadow:none;
  7229. }
  7230. #u174155 {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:224px;
  7234. top:228px;
  7235. width:170px;
  7236. height:80px;
  7237. display:flex;
  7238. }
  7239. #u174155 .text {
  7240. position:absolute;
  7241. align-self:center;
  7242. padding:2px 2px 2px 2px;
  7243. box-sizing:border-box;
  7244. width:100%;
  7245. }
  7246. #u174155_text {
  7247. border-width:0px;
  7248. word-wrap:break-word;
  7249. text-transform:none;
  7250. visibility:hidden;
  7251. }
  7252. #u174156_div {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:65px;
  7258. height:22px;
  7259. background:inherit;
  7260. background-color:rgba(255, 255, 255, 0);
  7261. border:none;
  7262. border-radius:0px;
  7263. -moz-box-shadow:none;
  7264. -webkit-box-shadow:none;
  7265. box-shadow:none;
  7266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7267. font-weight:400;
  7268. font-style:normal;
  7269. font-size:16px;
  7270. color:#000000;
  7271. }
  7272. #u174156 {
  7273. border-width:0px;
  7274. position:absolute;
  7275. left:235px;
  7276. top:243px;
  7277. width:65px;
  7278. height:22px;
  7279. display:flex;
  7280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7281. font-weight:400;
  7282. font-style:normal;
  7283. font-size:16px;
  7284. color:#000000;
  7285. }
  7286. #u174156 .text {
  7287. position:absolute;
  7288. align-self:flex-start;
  7289. padding:0px 0px 0px 0px;
  7290. box-sizing:border-box;
  7291. width:100%;
  7292. }
  7293. #u174156_text {
  7294. border-width:0px;
  7295. white-space:nowrap;
  7296. text-transform:none;
  7297. }
  7298. #u174157_div {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:0px;
  7302. top:0px;
  7303. width:97px;
  7304. height:25px;
  7305. background:inherit;
  7306. background-color:rgba(255, 255, 255, 0);
  7307. border:none;
  7308. border-radius:0px;
  7309. -moz-box-shadow:none;
  7310. -webkit-box-shadow:none;
  7311. box-shadow:none;
  7312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7313. font-weight:400;
  7314. font-style:normal;
  7315. font-size:12px;
  7316. color:#000000;
  7317. line-height:25px;
  7318. }
  7319. #u174157 {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:235px;
  7323. top:271px;
  7324. width:97px;
  7325. height:25px;
  7326. display:flex;
  7327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7328. font-weight:400;
  7329. font-style:normal;
  7330. font-size:12px;
  7331. color:#000000;
  7332. line-height:25px;
  7333. }
  7334. #u174157 .text {
  7335. position:absolute;
  7336. align-self:flex-start;
  7337. padding:0px 0px 0px 0px;
  7338. box-sizing:border-box;
  7339. width:100%;
  7340. }
  7341. #u174157_text {
  7342. border-width:0px;
  7343. white-space:nowrap;
  7344. text-transform:none;
  7345. }
  7346. #u174158 {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:0px;
  7350. top:0px;
  7351. width:0px;
  7352. height:0px;
  7353. }
  7354. #u174159_img {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:0px;
  7358. top:0px;
  7359. width:7px;
  7360. height:12px;
  7361. }
  7362. #u174159 {
  7363. border-width:0px;
  7364. position:absolute;
  7365. left:367px;
  7366. top:247px;
  7367. width:7px;
  7368. height:12px;
  7369. display:flex;
  7370. -webkit-transform:rotate(180deg);
  7371. -moz-transform:rotate(180deg);
  7372. -ms-transform:rotate(180deg);
  7373. transform:rotate(180deg);
  7374. }
  7375. #u174159 .text {
  7376. position:absolute;
  7377. align-self:center;
  7378. padding:2px 2px 2px 2px;
  7379. box-sizing:border-box;
  7380. width:100%;
  7381. }
  7382. #u174159_text {
  7383. border-width:0px;
  7384. word-wrap:break-word;
  7385. text-transform:none;
  7386. visibility:hidden;
  7387. }
  7388. #u174160_div {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:0px;
  7392. top:0px;
  7393. width:375px;
  7394. height:210px;
  7395. background:inherit;
  7396. background-color:rgba(255, 255, 255, 1);
  7397. border:none;
  7398. border-bottom:0px;
  7399. border-radius:0px;
  7400. border-bottom-right-radius:0px;
  7401. border-bottom-left-radius:0px;
  7402. -moz-box-shadow:none;
  7403. -webkit-box-shadow:none;
  7404. box-shadow:none;
  7405. }
  7406. #u174160 {
  7407. border-width:0px;
  7408. position:absolute;
  7409. left:29px;
  7410. top:1078px;
  7411. width:375px;
  7412. height:210px;
  7413. display:flex;
  7414. }
  7415. #u174160 .text {
  7416. position:absolute;
  7417. align-self:center;
  7418. padding:2px 2px 2px 2px;
  7419. box-sizing:border-box;
  7420. width:100%;
  7421. }
  7422. #u174160_text {
  7423. border-width:0px;
  7424. word-wrap:break-word;
  7425. text-transform:none;
  7426. }
  7427. #u174161_div {
  7428. border-width:0px;
  7429. position:absolute;
  7430. left:0px;
  7431. top:0px;
  7432. width:57px;
  7433. height:30px;
  7434. background:inherit;
  7435. background-color:rgba(255, 255, 255, 0);
  7436. border:none;
  7437. border-left:0px;
  7438. border-top:0px;
  7439. border-right:0px;
  7440. border-radius:0px;
  7441. border-bottom-right-radius:0px;
  7442. border-bottom-left-radius:0px;
  7443. -moz-box-shadow:none;
  7444. -webkit-box-shadow:none;
  7445. box-shadow:none;
  7446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7447. font-weight:400;
  7448. font-style:normal;
  7449. color:#7F7F7F;
  7450. }
  7451. #u174161 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:49px;
  7455. top:1048px;
  7456. width:57px;
  7457. height:30px;
  7458. display:flex;
  7459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7460. font-weight:400;
  7461. font-style:normal;
  7462. color:#7F7F7F;
  7463. }
  7464. #u174161 .text {
  7465. position:absolute;
  7466. align-self:center;
  7467. padding:0px 0px 0px 0px;
  7468. box-sizing:border-box;
  7469. width:100%;
  7470. }
  7471. #u174161_text {
  7472. border-width:0px;
  7473. white-space:nowrap;
  7474. text-transform:none;
  7475. }
  7476. #u174162 {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:0px;
  7480. top:0px;
  7481. width:0px;
  7482. height:0px;
  7483. }
  7484. #u174163_div {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:0px;
  7489. width:170px;
  7490. height:80px;
  7491. background:inherit;
  7492. background-color:rgba(255, 255, 255, 1);
  7493. box-sizing:border-box;
  7494. border-width:1px;
  7495. border-style:solid;
  7496. border-color:rgba(242, 242, 242, 1);
  7497. border-radius:4px;
  7498. -moz-box-shadow:none;
  7499. -webkit-box-shadow:none;
  7500. box-shadow:none;
  7501. }
  7502. #u174163 {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:39px;
  7506. top:1098px;
  7507. width:170px;
  7508. height:80px;
  7509. display:flex;
  7510. }
  7511. #u174163 .text {
  7512. position:absolute;
  7513. align-self:center;
  7514. padding:2px 2px 2px 2px;
  7515. box-sizing:border-box;
  7516. width:100%;
  7517. }
  7518. #u174163_text {
  7519. border-width:0px;
  7520. word-wrap:break-word;
  7521. text-transform:none;
  7522. visibility:hidden;
  7523. }
  7524. #u174164_div {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:65px;
  7530. height:22px;
  7531. background:inherit;
  7532. background-color:rgba(255, 255, 255, 0);
  7533. border:none;
  7534. border-radius:0px;
  7535. -moz-box-shadow:none;
  7536. -webkit-box-shadow:none;
  7537. box-shadow:none;
  7538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7539. font-weight:400;
  7540. font-style:normal;
  7541. font-size:16px;
  7542. color:#000000;
  7543. }
  7544. #u174164 {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:50px;
  7548. top:1113px;
  7549. width:65px;
  7550. height:22px;
  7551. display:flex;
  7552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7553. font-weight:400;
  7554. font-style:normal;
  7555. font-size:16px;
  7556. color:#000000;
  7557. }
  7558. #u174164 .text {
  7559. position:absolute;
  7560. align-self:flex-start;
  7561. padding:0px 0px 0px 0px;
  7562. box-sizing:border-box;
  7563. width:100%;
  7564. }
  7565. #u174164_text {
  7566. border-width:0px;
  7567. white-space:nowrap;
  7568. text-transform:none;
  7569. }
  7570. #u174165_div {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:0px;
  7574. top:0px;
  7575. width:145px;
  7576. height:25px;
  7577. background:inherit;
  7578. background-color:rgba(255, 255, 255, 0);
  7579. border:none;
  7580. border-radius:0px;
  7581. -moz-box-shadow:none;
  7582. -webkit-box-shadow:none;
  7583. box-shadow:none;
  7584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7585. font-weight:400;
  7586. font-style:normal;
  7587. font-size:12px;
  7588. color:#000000;
  7589. line-height:25px;
  7590. }
  7591. #u174165 {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:50px;
  7595. top:1141px;
  7596. width:145px;
  7597. height:25px;
  7598. display:flex;
  7599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7600. font-weight:400;
  7601. font-style:normal;
  7602. font-size:12px;
  7603. color:#000000;
  7604. line-height:25px;
  7605. }
  7606. #u174165 .text {
  7607. position:absolute;
  7608. align-self:flex-start;
  7609. padding:0px 0px 0px 0px;
  7610. box-sizing:border-box;
  7611. width:100%;
  7612. }
  7613. #u174165_text {
  7614. border-width:0px;
  7615. white-space:nowrap;
  7616. text-transform:none;
  7617. }
  7618. #u174166 {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:0px;
  7622. top:0px;
  7623. width:0px;
  7624. height:0px;
  7625. }
  7626. #u174167_img {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:0px;
  7630. top:0px;
  7631. width:7px;
  7632. height:12px;
  7633. }
  7634. #u174167 {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:182px;
  7638. top:1117px;
  7639. width:7px;
  7640. height:12px;
  7641. display:flex;
  7642. -webkit-transform:rotate(180deg);
  7643. -moz-transform:rotate(180deg);
  7644. -ms-transform:rotate(180deg);
  7645. transform:rotate(180deg);
  7646. }
  7647. #u174167 .text {
  7648. position:absolute;
  7649. align-self:center;
  7650. padding:2px 2px 2px 2px;
  7651. box-sizing:border-box;
  7652. width:100%;
  7653. }
  7654. #u174167_text {
  7655. border-width:0px;
  7656. word-wrap:break-word;
  7657. text-transform:none;
  7658. visibility:hidden;
  7659. }
  7660. #u174168 {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:0px;
  7666. height:0px;
  7667. }
  7668. #u174169_div {
  7669. border-width:0px;
  7670. position:absolute;
  7671. left:0px;
  7672. top:0px;
  7673. width:170px;
  7674. height:80px;
  7675. background:inherit;
  7676. background-color:rgba(255, 255, 255, 1);
  7677. box-sizing:border-box;
  7678. border-width:1px;
  7679. border-style:solid;
  7680. border-color:rgba(242, 242, 242, 1);
  7681. border-radius:4px;
  7682. -moz-box-shadow:none;
  7683. -webkit-box-shadow:none;
  7684. box-shadow:none;
  7685. }
  7686. #u174169 {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:224px;
  7690. top:1098px;
  7691. width:170px;
  7692. height:80px;
  7693. display:flex;
  7694. }
  7695. #u174169 .text {
  7696. position:absolute;
  7697. align-self:center;
  7698. padding:2px 2px 2px 2px;
  7699. box-sizing:border-box;
  7700. width:100%;
  7701. }
  7702. #u174169_text {
  7703. border-width:0px;
  7704. word-wrap:break-word;
  7705. text-transform:none;
  7706. visibility:hidden;
  7707. }
  7708. #u174170_div {
  7709. border-width:0px;
  7710. position:absolute;
  7711. left:0px;
  7712. top:0px;
  7713. width:65px;
  7714. height:22px;
  7715. background:inherit;
  7716. background-color:rgba(255, 255, 255, 0);
  7717. border:none;
  7718. border-radius:0px;
  7719. -moz-box-shadow:none;
  7720. -webkit-box-shadow:none;
  7721. box-shadow:none;
  7722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7723. font-weight:400;
  7724. font-style:normal;
  7725. font-size:16px;
  7726. color:#000000;
  7727. }
  7728. #u174170 {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:235px;
  7732. top:1113px;
  7733. width:65px;
  7734. height:22px;
  7735. display:flex;
  7736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7737. font-weight:400;
  7738. font-style:normal;
  7739. font-size:16px;
  7740. color:#000000;
  7741. }
  7742. #u174170 .text {
  7743. position:absolute;
  7744. align-self:flex-start;
  7745. padding:0px 0px 0px 0px;
  7746. box-sizing:border-box;
  7747. width:100%;
  7748. }
  7749. #u174170_text {
  7750. border-width:0px;
  7751. white-space:nowrap;
  7752. text-transform:none;
  7753. }
  7754. #u174171_div {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:157px;
  7760. height:25px;
  7761. background:inherit;
  7762. background-color:rgba(255, 255, 255, 0);
  7763. border:none;
  7764. border-radius:0px;
  7765. -moz-box-shadow:none;
  7766. -webkit-box-shadow:none;
  7767. box-shadow:none;
  7768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7769. font-weight:400;
  7770. font-style:normal;
  7771. font-size:12px;
  7772. color:#000000;
  7773. line-height:25px;
  7774. }
  7775. #u174171 {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:235px;
  7779. top:1141px;
  7780. width:157px;
  7781. height:25px;
  7782. display:flex;
  7783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7784. font-weight:400;
  7785. font-style:normal;
  7786. font-size:12px;
  7787. color:#000000;
  7788. line-height:25px;
  7789. }
  7790. #u174171 .text {
  7791. position:absolute;
  7792. align-self:flex-start;
  7793. padding:0px 0px 0px 0px;
  7794. box-sizing:border-box;
  7795. width:100%;
  7796. }
  7797. #u174171_text {
  7798. border-width:0px;
  7799. white-space:nowrap;
  7800. text-transform:none;
  7801. }
  7802. #u174172 {
  7803. border-width:0px;
  7804. position:absolute;
  7805. left:0px;
  7806. top:0px;
  7807. width:0px;
  7808. height:0px;
  7809. }
  7810. #u174173_img {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:7px;
  7816. height:12px;
  7817. }
  7818. #u174173 {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:367px;
  7822. top:1117px;
  7823. width:7px;
  7824. height:12px;
  7825. display:flex;
  7826. -webkit-transform:rotate(180deg);
  7827. -moz-transform:rotate(180deg);
  7828. -ms-transform:rotate(180deg);
  7829. transform:rotate(180deg);
  7830. }
  7831. #u174173 .text {
  7832. position:absolute;
  7833. align-self:center;
  7834. padding:2px 2px 2px 2px;
  7835. box-sizing:border-box;
  7836. width:100%;
  7837. }
  7838. #u174173_text {
  7839. border-width:0px;
  7840. word-wrap:break-word;
  7841. text-transform:none;
  7842. visibility:hidden;
  7843. }
  7844. #u174174 {
  7845. border-width:0px;
  7846. position:absolute;
  7847. left:0px;
  7848. top:0px;
  7849. width:0px;
  7850. height:0px;
  7851. }
  7852. #u174175_div {
  7853. border-width:0px;
  7854. position:absolute;
  7855. left:0px;
  7856. top:0px;
  7857. width:170px;
  7858. height:80px;
  7859. background:inherit;
  7860. background-color:rgba(255, 255, 255, 1);
  7861. box-sizing:border-box;
  7862. border-width:1px;
  7863. border-style:solid;
  7864. border-color:rgba(242, 242, 242, 1);
  7865. border-radius:4px;
  7866. -moz-box-shadow:none;
  7867. -webkit-box-shadow:none;
  7868. box-shadow:none;
  7869. }
  7870. #u174175 {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:224px;
  7874. top:1188px;
  7875. width:170px;
  7876. height:80px;
  7877. display:flex;
  7878. }
  7879. #u174175 .text {
  7880. position:absolute;
  7881. align-self:center;
  7882. padding:2px 2px 2px 2px;
  7883. box-sizing:border-box;
  7884. width:100%;
  7885. }
  7886. #u174175_text {
  7887. border-width:0px;
  7888. word-wrap:break-word;
  7889. text-transform:none;
  7890. visibility:hidden;
  7891. }
  7892. #u174176_div {
  7893. border-width:0px;
  7894. position:absolute;
  7895. left:0px;
  7896. top:0px;
  7897. width:65px;
  7898. height:22px;
  7899. background:inherit;
  7900. background-color:rgba(255, 255, 255, 0);
  7901. border:none;
  7902. border-radius:0px;
  7903. -moz-box-shadow:none;
  7904. -webkit-box-shadow:none;
  7905. box-shadow:none;
  7906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7907. font-weight:400;
  7908. font-style:normal;
  7909. font-size:16px;
  7910. color:#000000;
  7911. }
  7912. #u174176 {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:235px;
  7916. top:1203px;
  7917. width:65px;
  7918. height:22px;
  7919. display:flex;
  7920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7921. font-weight:400;
  7922. font-style:normal;
  7923. font-size:16px;
  7924. color:#000000;
  7925. }
  7926. #u174176 .text {
  7927. position:absolute;
  7928. align-self:flex-start;
  7929. padding:0px 0px 0px 0px;
  7930. box-sizing:border-box;
  7931. width:100%;
  7932. }
  7933. #u174176_text {
  7934. border-width:0px;
  7935. white-space:nowrap;
  7936. text-transform:none;
  7937. }
  7938. #u174177_div {
  7939. border-width:0px;
  7940. position:absolute;
  7941. left:0px;
  7942. top:0px;
  7943. width:151px;
  7944. height:25px;
  7945. background:inherit;
  7946. background-color:rgba(255, 255, 255, 0);
  7947. border:none;
  7948. border-radius:0px;
  7949. -moz-box-shadow:none;
  7950. -webkit-box-shadow:none;
  7951. box-shadow:none;
  7952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7953. font-weight:400;
  7954. font-style:normal;
  7955. font-size:12px;
  7956. color:#000000;
  7957. line-height:25px;
  7958. }
  7959. #u174177 {
  7960. border-width:0px;
  7961. position:absolute;
  7962. left:235px;
  7963. top:1231px;
  7964. width:151px;
  7965. height:25px;
  7966. display:flex;
  7967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7968. font-weight:400;
  7969. font-style:normal;
  7970. font-size:12px;
  7971. color:#000000;
  7972. line-height:25px;
  7973. }
  7974. #u174177 .text {
  7975. position:absolute;
  7976. align-self:flex-start;
  7977. padding:0px 0px 0px 0px;
  7978. box-sizing:border-box;
  7979. width:100%;
  7980. }
  7981. #u174177_text {
  7982. border-width:0px;
  7983. white-space:nowrap;
  7984. text-transform:none;
  7985. }
  7986. #u174178 {
  7987. border-width:0px;
  7988. position:absolute;
  7989. left:0px;
  7990. top:0px;
  7991. width:0px;
  7992. height:0px;
  7993. }
  7994. #u174179_img {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:0px;
  7998. top:0px;
  7999. width:7px;
  8000. height:12px;
  8001. }
  8002. #u174179 {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:367px;
  8006. top:1207px;
  8007. width:7px;
  8008. height:12px;
  8009. display:flex;
  8010. -webkit-transform:rotate(180deg);
  8011. -moz-transform:rotate(180deg);
  8012. -ms-transform:rotate(180deg);
  8013. transform:rotate(180deg);
  8014. }
  8015. #u174179 .text {
  8016. position:absolute;
  8017. align-self:center;
  8018. padding:2px 2px 2px 2px;
  8019. box-sizing:border-box;
  8020. width:100%;
  8021. }
  8022. #u174179_text {
  8023. border-width:0px;
  8024. word-wrap:break-word;
  8025. text-transform:none;
  8026. visibility:hidden;
  8027. }
  8028. #u174180 {
  8029. border-width:0px;
  8030. position:absolute;
  8031. left:0px;
  8032. top:0px;
  8033. width:0px;
  8034. height:0px;
  8035. }
  8036. #u174181_div {
  8037. border-width:0px;
  8038. position:absolute;
  8039. left:0px;
  8040. top:0px;
  8041. width:170px;
  8042. height:80px;
  8043. background:inherit;
  8044. background-color:rgba(255, 255, 255, 1);
  8045. box-sizing:border-box;
  8046. border-width:1px;
  8047. border-style:solid;
  8048. border-color:rgba(242, 242, 242, 1);
  8049. border-radius:4px;
  8050. -moz-box-shadow:none;
  8051. -webkit-box-shadow:none;
  8052. box-shadow:none;
  8053. }
  8054. #u174181 {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:39px;
  8058. top:1188px;
  8059. width:170px;
  8060. height:80px;
  8061. display:flex;
  8062. }
  8063. #u174181 .text {
  8064. position:absolute;
  8065. align-self:center;
  8066. padding:2px 2px 2px 2px;
  8067. box-sizing:border-box;
  8068. width:100%;
  8069. }
  8070. #u174181_text {
  8071. border-width:0px;
  8072. word-wrap:break-word;
  8073. text-transform:none;
  8074. visibility:hidden;
  8075. }
  8076. #u174182_div {
  8077. border-width:0px;
  8078. position:absolute;
  8079. left:0px;
  8080. top:0px;
  8081. width:65px;
  8082. height:22px;
  8083. background:inherit;
  8084. background-color:rgba(255, 255, 255, 0);
  8085. border:none;
  8086. border-radius:0px;
  8087. -moz-box-shadow:none;
  8088. -webkit-box-shadow:none;
  8089. box-shadow:none;
  8090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8091. font-weight:400;
  8092. font-style:normal;
  8093. font-size:16px;
  8094. color:#000000;
  8095. }
  8096. #u174182 {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:50px;
  8100. top:1203px;
  8101. width:65px;
  8102. height:22px;
  8103. display:flex;
  8104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8105. font-weight:400;
  8106. font-style:normal;
  8107. font-size:16px;
  8108. color:#000000;
  8109. }
  8110. #u174182 .text {
  8111. position:absolute;
  8112. align-self:flex-start;
  8113. padding:0px 0px 0px 0px;
  8114. box-sizing:border-box;
  8115. width:100%;
  8116. }
  8117. #u174182_text {
  8118. border-width:0px;
  8119. white-space:nowrap;
  8120. text-transform:none;
  8121. }
  8122. #u174183_div {
  8123. border-width:0px;
  8124. position:absolute;
  8125. left:0px;
  8126. top:0px;
  8127. width:127px;
  8128. height:25px;
  8129. background:inherit;
  8130. background-color:rgba(255, 255, 255, 0);
  8131. border:none;
  8132. border-radius:0px;
  8133. -moz-box-shadow:none;
  8134. -webkit-box-shadow:none;
  8135. box-shadow:none;
  8136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8137. font-weight:400;
  8138. font-style:normal;
  8139. font-size:12px;
  8140. color:#000000;
  8141. line-height:25px;
  8142. }
  8143. #u174183 {
  8144. border-width:0px;
  8145. position:absolute;
  8146. left:50px;
  8147. top:1231px;
  8148. width:127px;
  8149. height:25px;
  8150. display:flex;
  8151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8152. font-weight:400;
  8153. font-style:normal;
  8154. font-size:12px;
  8155. color:#000000;
  8156. line-height:25px;
  8157. }
  8158. #u174183 .text {
  8159. position:absolute;
  8160. align-self:flex-start;
  8161. padding:0px 0px 0px 0px;
  8162. box-sizing:border-box;
  8163. width:100%;
  8164. }
  8165. #u174183_text {
  8166. border-width:0px;
  8167. white-space:nowrap;
  8168. text-transform:none;
  8169. }
  8170. #u174184 {
  8171. border-width:0px;
  8172. position:absolute;
  8173. left:0px;
  8174. top:0px;
  8175. width:0px;
  8176. height:0px;
  8177. }
  8178. #u174185_img {
  8179. border-width:0px;
  8180. position:absolute;
  8181. left:0px;
  8182. top:0px;
  8183. width:7px;
  8184. height:12px;
  8185. }
  8186. #u174185 {
  8187. border-width:0px;
  8188. position:absolute;
  8189. left:182px;
  8190. top:1207px;
  8191. width:7px;
  8192. height:12px;
  8193. display:flex;
  8194. -webkit-transform:rotate(180deg);
  8195. -moz-transform:rotate(180deg);
  8196. -ms-transform:rotate(180deg);
  8197. transform:rotate(180deg);
  8198. }
  8199. #u174185 .text {
  8200. position:absolute;
  8201. align-self:center;
  8202. padding:2px 2px 2px 2px;
  8203. box-sizing:border-box;
  8204. width:100%;
  8205. }
  8206. #u174185_text {
  8207. border-width:0px;
  8208. word-wrap:break-word;
  8209. text-transform:none;
  8210. visibility:hidden;
  8211. }
  8212. #u174186_div {
  8213. border-width:0px;
  8214. position:absolute;
  8215. left:0px;
  8216. top:0px;
  8217. width:375px;
  8218. height:210px;
  8219. background:inherit;
  8220. background-color:rgba(255, 255, 255, 1);
  8221. border:none;
  8222. border-bottom:0px;
  8223. border-radius:0px;
  8224. border-bottom-right-radius:0px;
  8225. border-bottom-left-radius:0px;
  8226. -moz-box-shadow:none;
  8227. -webkit-box-shadow:none;
  8228. box-shadow:none;
  8229. }
  8230. #u174186 {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:29px;
  8234. top:1318px;
  8235. width:375px;
  8236. height:210px;
  8237. display:flex;
  8238. }
  8239. #u174186 .text {
  8240. position:absolute;
  8241. align-self:center;
  8242. padding:2px 2px 2px 2px;
  8243. box-sizing:border-box;
  8244. width:100%;
  8245. }
  8246. #u174186_text {
  8247. border-width:0px;
  8248. word-wrap:break-word;
  8249. text-transform:none;
  8250. }
  8251. #u174187_div {
  8252. border-width:0px;
  8253. position:absolute;
  8254. left:0px;
  8255. top:0px;
  8256. width:57px;
  8257. height:30px;
  8258. background:inherit;
  8259. background-color:rgba(255, 255, 255, 0);
  8260. border:none;
  8261. border-left:0px;
  8262. border-top:0px;
  8263. border-right:0px;
  8264. border-radius:0px;
  8265. border-bottom-right-radius:0px;
  8266. border-bottom-left-radius:0px;
  8267. -moz-box-shadow:none;
  8268. -webkit-box-shadow:none;
  8269. box-shadow:none;
  8270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8271. font-weight:400;
  8272. font-style:normal;
  8273. color:#7F7F7F;
  8274. }
  8275. #u174187 {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:49px;
  8279. top:1288px;
  8280. width:57px;
  8281. height:30px;
  8282. display:flex;
  8283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8284. font-weight:400;
  8285. font-style:normal;
  8286. color:#7F7F7F;
  8287. }
  8288. #u174187 .text {
  8289. position:absolute;
  8290. align-self:center;
  8291. padding:0px 0px 0px 0px;
  8292. box-sizing:border-box;
  8293. width:100%;
  8294. }
  8295. #u174187_text {
  8296. border-width:0px;
  8297. white-space:nowrap;
  8298. text-transform:none;
  8299. }
  8300. #u174188 {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:0px;
  8304. top:0px;
  8305. width:0px;
  8306. height:0px;
  8307. }
  8308. #u174189_div {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:0px;
  8312. top:0px;
  8313. width:170px;
  8314. height:80px;
  8315. background:inherit;
  8316. background-color:rgba(255, 255, 255, 1);
  8317. box-sizing:border-box;
  8318. border-width:1px;
  8319. border-style:solid;
  8320. border-color:rgba(242, 242, 242, 1);
  8321. border-radius:4px;
  8322. -moz-box-shadow:none;
  8323. -webkit-box-shadow:none;
  8324. box-shadow:none;
  8325. }
  8326. #u174189 {
  8327. border-width:0px;
  8328. position:absolute;
  8329. left:39px;
  8330. top:1338px;
  8331. width:170px;
  8332. height:80px;
  8333. display:flex;
  8334. }
  8335. #u174189 .text {
  8336. position:absolute;
  8337. align-self:center;
  8338. padding:2px 2px 2px 2px;
  8339. box-sizing:border-box;
  8340. width:100%;
  8341. }
  8342. #u174189_text {
  8343. border-width:0px;
  8344. word-wrap:break-word;
  8345. text-transform:none;
  8346. visibility:hidden;
  8347. }
  8348. #u174190_div {
  8349. border-width:0px;
  8350. position:absolute;
  8351. left:0px;
  8352. top:0px;
  8353. width:97px;
  8354. height:22px;
  8355. background:inherit;
  8356. background-color:rgba(255, 255, 255, 0);
  8357. border:none;
  8358. border-radius:0px;
  8359. -moz-box-shadow:none;
  8360. -webkit-box-shadow:none;
  8361. box-shadow:none;
  8362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8363. font-weight:400;
  8364. font-style:normal;
  8365. font-size:16px;
  8366. color:#000000;
  8367. }
  8368. #u174190 {
  8369. border-width:0px;
  8370. position:absolute;
  8371. left:50px;
  8372. top:1353px;
  8373. width:97px;
  8374. height:22px;
  8375. display:flex;
  8376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8377. font-weight:400;
  8378. font-style:normal;
  8379. font-size:16px;
  8380. color:#000000;
  8381. }
  8382. #u174190 .text {
  8383. position:absolute;
  8384. align-self:flex-start;
  8385. padding:0px 0px 0px 0px;
  8386. box-sizing:border-box;
  8387. width:100%;
  8388. }
  8389. #u174190_text {
  8390. border-width:0px;
  8391. white-space:nowrap;
  8392. text-transform:none;
  8393. }
  8394. #u174191_div {
  8395. border-width:0px;
  8396. position:absolute;
  8397. left:0px;
  8398. top:0px;
  8399. width:145px;
  8400. height:25px;
  8401. background:inherit;
  8402. background-color:rgba(255, 255, 255, 0);
  8403. border:none;
  8404. border-radius:0px;
  8405. -moz-box-shadow:none;
  8406. -webkit-box-shadow:none;
  8407. box-shadow:none;
  8408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8409. font-weight:400;
  8410. font-style:normal;
  8411. font-size:12px;
  8412. color:#000000;
  8413. line-height:25px;
  8414. }
  8415. #u174191 {
  8416. border-width:0px;
  8417. position:absolute;
  8418. left:50px;
  8419. top:1381px;
  8420. width:145px;
  8421. height:25px;
  8422. display:flex;
  8423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8424. font-weight:400;
  8425. font-style:normal;
  8426. font-size:12px;
  8427. color:#000000;
  8428. line-height:25px;
  8429. }
  8430. #u174191 .text {
  8431. position:absolute;
  8432. align-self:flex-start;
  8433. padding:0px 0px 0px 0px;
  8434. box-sizing:border-box;
  8435. width:100%;
  8436. }
  8437. #u174191_text {
  8438. border-width:0px;
  8439. white-space:nowrap;
  8440. text-transform:none;
  8441. }
  8442. #u174192 {
  8443. border-width:0px;
  8444. position:absolute;
  8445. left:0px;
  8446. top:0px;
  8447. width:0px;
  8448. height:0px;
  8449. }
  8450. #u174193_img {
  8451. border-width:0px;
  8452. position:absolute;
  8453. left:0px;
  8454. top:0px;
  8455. width:7px;
  8456. height:12px;
  8457. }
  8458. #u174193 {
  8459. border-width:0px;
  8460. position:absolute;
  8461. left:182px;
  8462. top:1357px;
  8463. width:7px;
  8464. height:12px;
  8465. display:flex;
  8466. -webkit-transform:rotate(180deg);
  8467. -moz-transform:rotate(180deg);
  8468. -ms-transform:rotate(180deg);
  8469. transform:rotate(180deg);
  8470. }
  8471. #u174193 .text {
  8472. position:absolute;
  8473. align-self:center;
  8474. padding:2px 2px 2px 2px;
  8475. box-sizing:border-box;
  8476. width:100%;
  8477. }
  8478. #u174193_text {
  8479. border-width:0px;
  8480. word-wrap:break-word;
  8481. text-transform:none;
  8482. visibility:hidden;
  8483. }
  8484. #u174194 {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:0px;
  8488. top:0px;
  8489. width:0px;
  8490. height:0px;
  8491. }
  8492. #u174195_div {
  8493. border-width:0px;
  8494. position:absolute;
  8495. left:0px;
  8496. top:0px;
  8497. width:170px;
  8498. height:80px;
  8499. background:inherit;
  8500. background-color:rgba(255, 255, 255, 1);
  8501. box-sizing:border-box;
  8502. border-width:1px;
  8503. border-style:solid;
  8504. border-color:rgba(242, 242, 242, 1);
  8505. border-radius:4px;
  8506. -moz-box-shadow:none;
  8507. -webkit-box-shadow:none;
  8508. box-shadow:none;
  8509. }
  8510. #u174195 {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:224px;
  8514. top:1338px;
  8515. width:170px;
  8516. height:80px;
  8517. display:flex;
  8518. }
  8519. #u174195 .text {
  8520. position:absolute;
  8521. align-self:center;
  8522. padding:2px 2px 2px 2px;
  8523. box-sizing:border-box;
  8524. width:100%;
  8525. }
  8526. #u174195_text {
  8527. border-width:0px;
  8528. word-wrap:break-word;
  8529. text-transform:none;
  8530. visibility:hidden;
  8531. }
  8532. #u174196_div {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:0px;
  8536. top:0px;
  8537. width:65px;
  8538. height:22px;
  8539. background:inherit;
  8540. background-color:rgba(255, 255, 255, 0);
  8541. border:none;
  8542. border-radius:0px;
  8543. -moz-box-shadow:none;
  8544. -webkit-box-shadow:none;
  8545. box-shadow:none;
  8546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8547. font-weight:400;
  8548. font-style:normal;
  8549. font-size:16px;
  8550. color:#000000;
  8551. }
  8552. #u174196 {
  8553. border-width:0px;
  8554. position:absolute;
  8555. left:235px;
  8556. top:1353px;
  8557. width:65px;
  8558. height:22px;
  8559. display:flex;
  8560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8561. font-weight:400;
  8562. font-style:normal;
  8563. font-size:16px;
  8564. color:#000000;
  8565. }
  8566. #u174196 .text {
  8567. position:absolute;
  8568. align-self:flex-start;
  8569. padding:0px 0px 0px 0px;
  8570. box-sizing:border-box;
  8571. width:100%;
  8572. }
  8573. #u174196_text {
  8574. border-width:0px;
  8575. white-space:nowrap;
  8576. text-transform:none;
  8577. }
  8578. #u174197_div {
  8579. border-width:0px;
  8580. position:absolute;
  8581. left:0px;
  8582. top:0px;
  8583. width:97px;
  8584. height:25px;
  8585. background:inherit;
  8586. background-color:rgba(255, 255, 255, 0);
  8587. border:none;
  8588. border-radius:0px;
  8589. -moz-box-shadow:none;
  8590. -webkit-box-shadow:none;
  8591. box-shadow:none;
  8592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8593. font-weight:400;
  8594. font-style:normal;
  8595. font-size:12px;
  8596. color:#000000;
  8597. line-height:25px;
  8598. }
  8599. #u174197 {
  8600. border-width:0px;
  8601. position:absolute;
  8602. left:235px;
  8603. top:1381px;
  8604. width:97px;
  8605. height:25px;
  8606. display:flex;
  8607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8608. font-weight:400;
  8609. font-style:normal;
  8610. font-size:12px;
  8611. color:#000000;
  8612. line-height:25px;
  8613. }
  8614. #u174197 .text {
  8615. position:absolute;
  8616. align-self:flex-start;
  8617. padding:0px 0px 0px 0px;
  8618. box-sizing:border-box;
  8619. width:100%;
  8620. }
  8621. #u174197_text {
  8622. border-width:0px;
  8623. white-space:nowrap;
  8624. text-transform:none;
  8625. }
  8626. #u174198 {
  8627. border-width:0px;
  8628. position:absolute;
  8629. left:0px;
  8630. top:0px;
  8631. width:0px;
  8632. height:0px;
  8633. }
  8634. #u174199_img {
  8635. border-width:0px;
  8636. position:absolute;
  8637. left:0px;
  8638. top:0px;
  8639. width:7px;
  8640. height:12px;
  8641. }
  8642. #u174199 {
  8643. border-width:0px;
  8644. position:absolute;
  8645. left:367px;
  8646. top:1357px;
  8647. width:7px;
  8648. height:12px;
  8649. display:flex;
  8650. -webkit-transform:rotate(180deg);
  8651. -moz-transform:rotate(180deg);
  8652. -ms-transform:rotate(180deg);
  8653. transform:rotate(180deg);
  8654. }
  8655. #u174199 .text {
  8656. position:absolute;
  8657. align-self:center;
  8658. padding:2px 2px 2px 2px;
  8659. box-sizing:border-box;
  8660. width:100%;
  8661. }
  8662. #u174199_text {
  8663. border-width:0px;
  8664. word-wrap:break-word;
  8665. text-transform:none;
  8666. visibility:hidden;
  8667. }
  8668. #u174200 {
  8669. border-width:0px;
  8670. position:absolute;
  8671. left:0px;
  8672. top:0px;
  8673. width:0px;
  8674. height:0px;
  8675. }
  8676. #u174201_div {
  8677. border-width:0px;
  8678. position:absolute;
  8679. left:0px;
  8680. top:0px;
  8681. width:170px;
  8682. height:80px;
  8683. background:inherit;
  8684. background-color:rgba(255, 255, 255, 1);
  8685. box-sizing:border-box;
  8686. border-width:1px;
  8687. border-style:solid;
  8688. border-color:rgba(242, 242, 242, 1);
  8689. border-radius:4px;
  8690. -moz-box-shadow:none;
  8691. -webkit-box-shadow:none;
  8692. box-shadow:none;
  8693. }
  8694. #u174201 {
  8695. border-width:0px;
  8696. position:absolute;
  8697. left:39px;
  8698. top:1428px;
  8699. width:170px;
  8700. height:80px;
  8701. display:flex;
  8702. }
  8703. #u174201 .text {
  8704. position:absolute;
  8705. align-self:center;
  8706. padding:2px 2px 2px 2px;
  8707. box-sizing:border-box;
  8708. width:100%;
  8709. }
  8710. #u174201_text {
  8711. border-width:0px;
  8712. word-wrap:break-word;
  8713. text-transform:none;
  8714. visibility:hidden;
  8715. }
  8716. #u174202_div {
  8717. border-width:0px;
  8718. position:absolute;
  8719. left:0px;
  8720. top:0px;
  8721. width:65px;
  8722. height:22px;
  8723. background:inherit;
  8724. background-color:rgba(255, 255, 255, 0);
  8725. border:none;
  8726. border-radius:0px;
  8727. -moz-box-shadow:none;
  8728. -webkit-box-shadow:none;
  8729. box-shadow:none;
  8730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8731. font-weight:400;
  8732. font-style:normal;
  8733. font-size:16px;
  8734. color:#000000;
  8735. }
  8736. #u174202 {
  8737. border-width:0px;
  8738. position:absolute;
  8739. left:50px;
  8740. top:1443px;
  8741. width:65px;
  8742. height:22px;
  8743. display:flex;
  8744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8745. font-weight:400;
  8746. font-style:normal;
  8747. font-size:16px;
  8748. color:#000000;
  8749. }
  8750. #u174202 .text {
  8751. position:absolute;
  8752. align-self:flex-start;
  8753. padding:0px 0px 0px 0px;
  8754. box-sizing:border-box;
  8755. width:100%;
  8756. }
  8757. #u174202_text {
  8758. border-width:0px;
  8759. white-space:nowrap;
  8760. text-transform:none;
  8761. }
  8762. #u174203_div {
  8763. border-width:0px;
  8764. position:absolute;
  8765. left:0px;
  8766. top:0px;
  8767. width:145px;
  8768. height:25px;
  8769. background:inherit;
  8770. background-color:rgba(255, 255, 255, 0);
  8771. border:none;
  8772. border-radius:0px;
  8773. -moz-box-shadow:none;
  8774. -webkit-box-shadow:none;
  8775. box-shadow:none;
  8776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8777. font-weight:400;
  8778. font-style:normal;
  8779. font-size:12px;
  8780. color:#000000;
  8781. line-height:25px;
  8782. }
  8783. #u174203 {
  8784. border-width:0px;
  8785. position:absolute;
  8786. left:50px;
  8787. top:1471px;
  8788. width:145px;
  8789. height:25px;
  8790. display:flex;
  8791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8792. font-weight:400;
  8793. font-style:normal;
  8794. font-size:12px;
  8795. color:#000000;
  8796. line-height:25px;
  8797. }
  8798. #u174203 .text {
  8799. position:absolute;
  8800. align-self:flex-start;
  8801. padding:0px 0px 0px 0px;
  8802. box-sizing:border-box;
  8803. width:100%;
  8804. }
  8805. #u174203_text {
  8806. border-width:0px;
  8807. white-space:nowrap;
  8808. text-transform:none;
  8809. }
  8810. #u174204 {
  8811. border-width:0px;
  8812. position:absolute;
  8813. left:0px;
  8814. top:0px;
  8815. width:0px;
  8816. height:0px;
  8817. }
  8818. #u174205_img {
  8819. border-width:0px;
  8820. position:absolute;
  8821. left:0px;
  8822. top:0px;
  8823. width:7px;
  8824. height:12px;
  8825. }
  8826. #u174205 {
  8827. border-width:0px;
  8828. position:absolute;
  8829. left:182px;
  8830. top:1447px;
  8831. width:7px;
  8832. height:12px;
  8833. display:flex;
  8834. -webkit-transform:rotate(180deg);
  8835. -moz-transform:rotate(180deg);
  8836. -ms-transform:rotate(180deg);
  8837. transform:rotate(180deg);
  8838. }
  8839. #u174205 .text {
  8840. position:absolute;
  8841. align-self:center;
  8842. padding:2px 2px 2px 2px;
  8843. box-sizing:border-box;
  8844. width:100%;
  8845. }
  8846. #u174205_text {
  8847. border-width:0px;
  8848. word-wrap:break-word;
  8849. text-transform:none;
  8850. visibility:hidden;
  8851. }
  8852. #u174206_div {
  8853. border-width:0px;
  8854. position:absolute;
  8855. left:0px;
  8856. top:0px;
  8857. width:375px;
  8858. height:210px;
  8859. background:inherit;
  8860. background-color:rgba(255, 255, 255, 1);
  8861. border:none;
  8862. border-bottom:0px;
  8863. border-radius:0px;
  8864. border-bottom-right-radius:0px;
  8865. border-bottom-left-radius:0px;
  8866. -moz-box-shadow:none;
  8867. -webkit-box-shadow:none;
  8868. box-shadow:none;
  8869. }
  8870. #u174206 {
  8871. border-width:0px;
  8872. position:absolute;
  8873. left:29px;
  8874. top:1558px;
  8875. width:375px;
  8876. height:210px;
  8877. display:flex;
  8878. }
  8879. #u174206 .text {
  8880. position:absolute;
  8881. align-self:center;
  8882. padding:2px 2px 2px 2px;
  8883. box-sizing:border-box;
  8884. width:100%;
  8885. }
  8886. #u174206_text {
  8887. border-width:0px;
  8888. word-wrap:break-word;
  8889. text-transform:none;
  8890. }
  8891. #u174207_div {
  8892. border-width:0px;
  8893. position:absolute;
  8894. left:0px;
  8895. top:0px;
  8896. width:57px;
  8897. height:30px;
  8898. background:inherit;
  8899. background-color:rgba(255, 255, 255, 0);
  8900. border:none;
  8901. border-left:0px;
  8902. border-top:0px;
  8903. border-right:0px;
  8904. border-radius:0px;
  8905. border-bottom-right-radius:0px;
  8906. border-bottom-left-radius:0px;
  8907. -moz-box-shadow:none;
  8908. -webkit-box-shadow:none;
  8909. box-shadow:none;
  8910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8911. font-weight:400;
  8912. font-style:normal;
  8913. color:#7F7F7F;
  8914. }
  8915. #u174207 {
  8916. border-width:0px;
  8917. position:absolute;
  8918. left:49px;
  8919. top:1528px;
  8920. width:57px;
  8921. height:30px;
  8922. display:flex;
  8923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8924. font-weight:400;
  8925. font-style:normal;
  8926. color:#7F7F7F;
  8927. }
  8928. #u174207 .text {
  8929. position:absolute;
  8930. align-self:center;
  8931. padding:0px 0px 0px 0px;
  8932. box-sizing:border-box;
  8933. width:100%;
  8934. }
  8935. #u174207_text {
  8936. border-width:0px;
  8937. white-space:nowrap;
  8938. text-transform:none;
  8939. }
  8940. #u174208 {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:0px;
  8944. top:0px;
  8945. width:0px;
  8946. height:0px;
  8947. }
  8948. #u174209_div {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:0px;
  8952. top:0px;
  8953. width:170px;
  8954. height:80px;
  8955. background:inherit;
  8956. background-color:rgba(255, 255, 255, 1);
  8957. box-sizing:border-box;
  8958. border-width:1px;
  8959. border-style:solid;
  8960. border-color:rgba(242, 242, 242, 1);
  8961. border-radius:4px;
  8962. -moz-box-shadow:none;
  8963. -webkit-box-shadow:none;
  8964. box-shadow:none;
  8965. }
  8966. #u174209 {
  8967. border-width:0px;
  8968. position:absolute;
  8969. left:39px;
  8970. top:1578px;
  8971. width:170px;
  8972. height:80px;
  8973. display:flex;
  8974. }
  8975. #u174209 .text {
  8976. position:absolute;
  8977. align-self:center;
  8978. padding:2px 2px 2px 2px;
  8979. box-sizing:border-box;
  8980. width:100%;
  8981. }
  8982. #u174209_text {
  8983. border-width:0px;
  8984. word-wrap:break-word;
  8985. text-transform:none;
  8986. visibility:hidden;
  8987. }
  8988. #u174210_div {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:0px;
  8992. top:0px;
  8993. width:49px;
  8994. height:22px;
  8995. background:inherit;
  8996. background-color:rgba(255, 255, 255, 0);
  8997. border:none;
  8998. border-radius:0px;
  8999. -moz-box-shadow:none;
  9000. -webkit-box-shadow:none;
  9001. box-shadow:none;
  9002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9003. font-weight:400;
  9004. font-style:normal;
  9005. font-size:16px;
  9006. color:#000000;
  9007. }
  9008. #u174210 {
  9009. border-width:0px;
  9010. position:absolute;
  9011. left:50px;
  9012. top:1593px;
  9013. width:49px;
  9014. height:22px;
  9015. display:flex;
  9016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9017. font-weight:400;
  9018. font-style:normal;
  9019. font-size:16px;
  9020. color:#000000;
  9021. }
  9022. #u174210 .text {
  9023. position:absolute;
  9024. align-self:flex-start;
  9025. padding:0px 0px 0px 0px;
  9026. box-sizing:border-box;
  9027. width:100%;
  9028. }
  9029. #u174210_text {
  9030. border-width:0px;
  9031. white-space:nowrap;
  9032. text-transform:none;
  9033. }
  9034. #u174211_div {
  9035. border-width:0px;
  9036. position:absolute;
  9037. left:0px;
  9038. top:0px;
  9039. width:97px;
  9040. height:25px;
  9041. background:inherit;
  9042. background-color:rgba(255, 255, 255, 0);
  9043. border:none;
  9044. border-radius:0px;
  9045. -moz-box-shadow:none;
  9046. -webkit-box-shadow:none;
  9047. box-shadow:none;
  9048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9049. font-weight:400;
  9050. font-style:normal;
  9051. font-size:12px;
  9052. color:#000000;
  9053. line-height:25px;
  9054. }
  9055. #u174211 {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:50px;
  9059. top:1621px;
  9060. width:97px;
  9061. height:25px;
  9062. display:flex;
  9063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9064. font-weight:400;
  9065. font-style:normal;
  9066. font-size:12px;
  9067. color:#000000;
  9068. line-height:25px;
  9069. }
  9070. #u174211 .text {
  9071. position:absolute;
  9072. align-self:flex-start;
  9073. padding:0px 0px 0px 0px;
  9074. box-sizing:border-box;
  9075. width:100%;
  9076. }
  9077. #u174211_text {
  9078. border-width:0px;
  9079. white-space:nowrap;
  9080. text-transform:none;
  9081. }
  9082. #u174212 {
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:0px;
  9086. top:0px;
  9087. width:0px;
  9088. height:0px;
  9089. }
  9090. #u174213_img {
  9091. border-width:0px;
  9092. position:absolute;
  9093. left:0px;
  9094. top:0px;
  9095. width:7px;
  9096. height:12px;
  9097. }
  9098. #u174213 {
  9099. border-width:0px;
  9100. position:absolute;
  9101. left:182px;
  9102. top:1597px;
  9103. width:7px;
  9104. height:12px;
  9105. display:flex;
  9106. -webkit-transform:rotate(180deg);
  9107. -moz-transform:rotate(180deg);
  9108. -ms-transform:rotate(180deg);
  9109. transform:rotate(180deg);
  9110. }
  9111. #u174213 .text {
  9112. position:absolute;
  9113. align-self:center;
  9114. padding:2px 2px 2px 2px;
  9115. box-sizing:border-box;
  9116. width:100%;
  9117. }
  9118. #u174213_text {
  9119. border-width:0px;
  9120. word-wrap:break-word;
  9121. text-transform:none;
  9122. visibility:hidden;
  9123. }
  9124. #u174214 {
  9125. border-width:0px;
  9126. position:absolute;
  9127. left:0px;
  9128. top:0px;
  9129. width:0px;
  9130. height:0px;
  9131. }
  9132. #u174215_div {
  9133. border-width:0px;
  9134. position:absolute;
  9135. left:0px;
  9136. top:0px;
  9137. width:170px;
  9138. height:80px;
  9139. background:inherit;
  9140. background-color:rgba(255, 255, 255, 1);
  9141. box-sizing:border-box;
  9142. border-width:1px;
  9143. border-style:solid;
  9144. border-color:rgba(242, 242, 242, 1);
  9145. border-radius:4px;
  9146. -moz-box-shadow:none;
  9147. -webkit-box-shadow:none;
  9148. box-shadow:none;
  9149. }
  9150. #u174215 {
  9151. border-width:0px;
  9152. position:absolute;
  9153. left:224px;
  9154. top:1578px;
  9155. width:170px;
  9156. height:80px;
  9157. display:flex;
  9158. }
  9159. #u174215 .text {
  9160. position:absolute;
  9161. align-self:center;
  9162. padding:2px 2px 2px 2px;
  9163. box-sizing:border-box;
  9164. width:100%;
  9165. }
  9166. #u174215_text {
  9167. border-width:0px;
  9168. word-wrap:break-word;
  9169. text-transform:none;
  9170. visibility:hidden;
  9171. }
  9172. #u174216_div {
  9173. border-width:0px;
  9174. position:absolute;
  9175. left:0px;
  9176. top:0px;
  9177. width:65px;
  9178. height:22px;
  9179. background:inherit;
  9180. background-color:rgba(255, 255, 255, 0);
  9181. border:none;
  9182. border-radius:0px;
  9183. -moz-box-shadow:none;
  9184. -webkit-box-shadow:none;
  9185. box-shadow:none;
  9186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9187. font-weight:400;
  9188. font-style:normal;
  9189. font-size:16px;
  9190. color:#000000;
  9191. }
  9192. #u174216 {
  9193. border-width:0px;
  9194. position:absolute;
  9195. left:235px;
  9196. top:1593px;
  9197. width:65px;
  9198. height:22px;
  9199. display:flex;
  9200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9201. font-weight:400;
  9202. font-style:normal;
  9203. font-size:16px;
  9204. color:#000000;
  9205. }
  9206. #u174216 .text {
  9207. position:absolute;
  9208. align-self:flex-start;
  9209. padding:0px 0px 0px 0px;
  9210. box-sizing:border-box;
  9211. width:100%;
  9212. }
  9213. #u174216_text {
  9214. border-width:0px;
  9215. white-space:nowrap;
  9216. text-transform:none;
  9217. }
  9218. #u174217_div {
  9219. border-width:0px;
  9220. position:absolute;
  9221. left:0px;
  9222. top:0px;
  9223. width:133px;
  9224. height:25px;
  9225. background:inherit;
  9226. background-color:rgba(255, 255, 255, 0);
  9227. border:none;
  9228. border-radius:0px;
  9229. -moz-box-shadow:none;
  9230. -webkit-box-shadow:none;
  9231. box-shadow:none;
  9232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9233. font-weight:400;
  9234. font-style:normal;
  9235. font-size:12px;
  9236. color:#000000;
  9237. line-height:25px;
  9238. }
  9239. #u174217 {
  9240. border-width:0px;
  9241. position:absolute;
  9242. left:235px;
  9243. top:1621px;
  9244. width:133px;
  9245. height:25px;
  9246. display:flex;
  9247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9248. font-weight:400;
  9249. font-style:normal;
  9250. font-size:12px;
  9251. color:#000000;
  9252. line-height:25px;
  9253. }
  9254. #u174217 .text {
  9255. position:absolute;
  9256. align-self:flex-start;
  9257. padding:0px 0px 0px 0px;
  9258. box-sizing:border-box;
  9259. width:100%;
  9260. }
  9261. #u174217_text {
  9262. border-width:0px;
  9263. white-space:nowrap;
  9264. text-transform:none;
  9265. }
  9266. #u174218 {
  9267. border-width:0px;
  9268. position:absolute;
  9269. left:0px;
  9270. top:0px;
  9271. width:0px;
  9272. height:0px;
  9273. }
  9274. #u174219_img {
  9275. border-width:0px;
  9276. position:absolute;
  9277. left:0px;
  9278. top:0px;
  9279. width:7px;
  9280. height:12px;
  9281. }
  9282. #u174219 {
  9283. border-width:0px;
  9284. position:absolute;
  9285. left:367px;
  9286. top:1597px;
  9287. width:7px;
  9288. height:12px;
  9289. display:flex;
  9290. -webkit-transform:rotate(180deg);
  9291. -moz-transform:rotate(180deg);
  9292. -ms-transform:rotate(180deg);
  9293. transform:rotate(180deg);
  9294. }
  9295. #u174219 .text {
  9296. position:absolute;
  9297. align-self:center;
  9298. padding:2px 2px 2px 2px;
  9299. box-sizing:border-box;
  9300. width:100%;
  9301. }
  9302. #u174219_text {
  9303. border-width:0px;
  9304. word-wrap:break-word;
  9305. text-transform:none;
  9306. visibility:hidden;
  9307. }
  9308. #u174220 {
  9309. border-width:0px;
  9310. position:absolute;
  9311. left:0px;
  9312. top:0px;
  9313. width:0px;
  9314. height:0px;
  9315. }
  9316. #u174221_div {
  9317. border-width:0px;
  9318. position:absolute;
  9319. left:0px;
  9320. top:0px;
  9321. width:170px;
  9322. height:80px;
  9323. background:inherit;
  9324. background-color:rgba(255, 255, 255, 1);
  9325. box-sizing:border-box;
  9326. border-width:1px;
  9327. border-style:solid;
  9328. border-color:rgba(242, 242, 242, 1);
  9329. border-radius:4px;
  9330. -moz-box-shadow:none;
  9331. -webkit-box-shadow:none;
  9332. box-shadow:none;
  9333. }
  9334. #u174221 {
  9335. border-width:0px;
  9336. position:absolute;
  9337. left:39px;
  9338. top:1668px;
  9339. width:170px;
  9340. height:80px;
  9341. display:flex;
  9342. }
  9343. #u174221 .text {
  9344. position:absolute;
  9345. align-self:center;
  9346. padding:2px 2px 2px 2px;
  9347. box-sizing:border-box;
  9348. width:100%;
  9349. }
  9350. #u174221_text {
  9351. border-width:0px;
  9352. word-wrap:break-word;
  9353. text-transform:none;
  9354. visibility:hidden;
  9355. }
  9356. #u174222_div {
  9357. border-width:0px;
  9358. position:absolute;
  9359. left:0px;
  9360. top:0px;
  9361. width:65px;
  9362. height:22px;
  9363. background:inherit;
  9364. background-color:rgba(255, 255, 255, 0);
  9365. border:none;
  9366. border-radius:0px;
  9367. -moz-box-shadow:none;
  9368. -webkit-box-shadow:none;
  9369. box-shadow:none;
  9370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9371. font-weight:400;
  9372. font-style:normal;
  9373. font-size:16px;
  9374. color:#000000;
  9375. }
  9376. #u174222 {
  9377. border-width:0px;
  9378. position:absolute;
  9379. left:50px;
  9380. top:1683px;
  9381. width:65px;
  9382. height:22px;
  9383. display:flex;
  9384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9385. font-weight:400;
  9386. font-style:normal;
  9387. font-size:16px;
  9388. color:#000000;
  9389. }
  9390. #u174222 .text {
  9391. position:absolute;
  9392. align-self:flex-start;
  9393. padding:0px 0px 0px 0px;
  9394. box-sizing:border-box;
  9395. width:100%;
  9396. }
  9397. #u174222_text {
  9398. border-width:0px;
  9399. white-space:nowrap;
  9400. text-transform:none;
  9401. }
  9402. #u174223_div {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:0px;
  9406. top:0px;
  9407. width:127px;
  9408. height:25px;
  9409. background:inherit;
  9410. background-color:rgba(255, 255, 255, 0);
  9411. border:none;
  9412. border-radius:0px;
  9413. -moz-box-shadow:none;
  9414. -webkit-box-shadow:none;
  9415. box-shadow:none;
  9416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9417. font-weight:400;
  9418. font-style:normal;
  9419. font-size:12px;
  9420. color:#000000;
  9421. line-height:25px;
  9422. }
  9423. #u174223 {
  9424. border-width:0px;
  9425. position:absolute;
  9426. left:50px;
  9427. top:1711px;
  9428. width:127px;
  9429. height:25px;
  9430. display:flex;
  9431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9432. font-weight:400;
  9433. font-style:normal;
  9434. font-size:12px;
  9435. color:#000000;
  9436. line-height:25px;
  9437. }
  9438. #u174223 .text {
  9439. position:absolute;
  9440. align-self:flex-start;
  9441. padding:0px 0px 0px 0px;
  9442. box-sizing:border-box;
  9443. width:100%;
  9444. }
  9445. #u174223_text {
  9446. border-width:0px;
  9447. white-space:nowrap;
  9448. text-transform:none;
  9449. }
  9450. #u174224 {
  9451. border-width:0px;
  9452. position:absolute;
  9453. left:0px;
  9454. top:0px;
  9455. width:0px;
  9456. height:0px;
  9457. }
  9458. #u174225_img {
  9459. border-width:0px;
  9460. position:absolute;
  9461. left:0px;
  9462. top:0px;
  9463. width:7px;
  9464. height:12px;
  9465. }
  9466. #u174225 {
  9467. border-width:0px;
  9468. position:absolute;
  9469. left:182px;
  9470. top:1687px;
  9471. width:7px;
  9472. height:12px;
  9473. display:flex;
  9474. -webkit-transform:rotate(180deg);
  9475. -moz-transform:rotate(180deg);
  9476. -ms-transform:rotate(180deg);
  9477. transform:rotate(180deg);
  9478. }
  9479. #u174225 .text {
  9480. position:absolute;
  9481. align-self:center;
  9482. padding:2px 2px 2px 2px;
  9483. box-sizing:border-box;
  9484. width:100%;
  9485. }
  9486. #u174225_text {
  9487. border-width:0px;
  9488. word-wrap:break-word;
  9489. text-transform:none;
  9490. visibility:hidden;
  9491. }
  9492. #u174226 {
  9493. border-width:0px;
  9494. position:absolute;
  9495. left:0px;
  9496. top:0px;
  9497. width:0px;
  9498. height:0px;
  9499. }
  9500. #u174227_div {
  9501. border-width:0px;
  9502. position:absolute;
  9503. left:0px;
  9504. top:0px;
  9505. width:170px;
  9506. height:80px;
  9507. background:inherit;
  9508. background-color:rgba(255, 255, 255, 1);
  9509. box-sizing:border-box;
  9510. border-width:1px;
  9511. border-style:solid;
  9512. border-color:rgba(242, 242, 242, 1);
  9513. border-radius:4px;
  9514. -moz-box-shadow:none;
  9515. -webkit-box-shadow:none;
  9516. box-shadow:none;
  9517. }
  9518. #u174227 {
  9519. border-width:0px;
  9520. position:absolute;
  9521. left:224px;
  9522. top:1668px;
  9523. width:170px;
  9524. height:80px;
  9525. display:flex;
  9526. }
  9527. #u174227 .text {
  9528. position:absolute;
  9529. align-self:center;
  9530. padding:2px 2px 2px 2px;
  9531. box-sizing:border-box;
  9532. width:100%;
  9533. }
  9534. #u174227_text {
  9535. border-width:0px;
  9536. word-wrap:break-word;
  9537. text-transform:none;
  9538. visibility:hidden;
  9539. }
  9540. #u174228_div {
  9541. border-width:0px;
  9542. position:absolute;
  9543. left:0px;
  9544. top:0px;
  9545. width:97px;
  9546. height:22px;
  9547. background:inherit;
  9548. background-color:rgba(255, 255, 255, 0);
  9549. border:none;
  9550. border-radius:0px;
  9551. -moz-box-shadow:none;
  9552. -webkit-box-shadow:none;
  9553. box-shadow:none;
  9554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9555. font-weight:400;
  9556. font-style:normal;
  9557. font-size:16px;
  9558. color:#000000;
  9559. }
  9560. #u174228 {
  9561. border-width:0px;
  9562. position:absolute;
  9563. left:235px;
  9564. top:1683px;
  9565. width:97px;
  9566. height:22px;
  9567. display:flex;
  9568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9569. font-weight:400;
  9570. font-style:normal;
  9571. font-size:16px;
  9572. color:#000000;
  9573. }
  9574. #u174228 .text {
  9575. position:absolute;
  9576. align-self:flex-start;
  9577. padding:0px 0px 0px 0px;
  9578. box-sizing:border-box;
  9579. width:100%;
  9580. }
  9581. #u174228_text {
  9582. border-width:0px;
  9583. white-space:nowrap;
  9584. text-transform:none;
  9585. }
  9586. #u174229_div {
  9587. border-width:0px;
  9588. position:absolute;
  9589. left:0px;
  9590. top:0px;
  9591. width:127px;
  9592. height:25px;
  9593. background:inherit;
  9594. background-color:rgba(255, 255, 255, 0);
  9595. border:none;
  9596. border-radius:0px;
  9597. -moz-box-shadow:none;
  9598. -webkit-box-shadow:none;
  9599. box-shadow:none;
  9600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9601. font-weight:400;
  9602. font-style:normal;
  9603. font-size:12px;
  9604. color:#000000;
  9605. line-height:25px;
  9606. }
  9607. #u174229 {
  9608. border-width:0px;
  9609. position:absolute;
  9610. left:235px;
  9611. top:1711px;
  9612. width:127px;
  9613. height:25px;
  9614. display:flex;
  9615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9616. font-weight:400;
  9617. font-style:normal;
  9618. font-size:12px;
  9619. color:#000000;
  9620. line-height:25px;
  9621. }
  9622. #u174229 .text {
  9623. position:absolute;
  9624. align-self:flex-start;
  9625. padding:0px 0px 0px 0px;
  9626. box-sizing:border-box;
  9627. width:100%;
  9628. }
  9629. #u174229_text {
  9630. border-width:0px;
  9631. white-space:nowrap;
  9632. text-transform:none;
  9633. }
  9634. #u174230 {
  9635. border-width:0px;
  9636. position:absolute;
  9637. left:0px;
  9638. top:0px;
  9639. width:0px;
  9640. height:0px;
  9641. }
  9642. #u174231_img {
  9643. border-width:0px;
  9644. position:absolute;
  9645. left:0px;
  9646. top:0px;
  9647. width:7px;
  9648. height:12px;
  9649. }
  9650. #u174231 {
  9651. border-width:0px;
  9652. position:absolute;
  9653. left:367px;
  9654. top:1687px;
  9655. width:7px;
  9656. height:12px;
  9657. display:flex;
  9658. -webkit-transform:rotate(180deg);
  9659. -moz-transform:rotate(180deg);
  9660. -ms-transform:rotate(180deg);
  9661. transform:rotate(180deg);
  9662. }
  9663. #u174231 .text {
  9664. position:absolute;
  9665. align-self:center;
  9666. padding:2px 2px 2px 2px;
  9667. box-sizing:border-box;
  9668. width:100%;
  9669. }
  9670. #u174231_text {
  9671. border-width:0px;
  9672. word-wrap:break-word;
  9673. text-transform:none;
  9674. visibility:hidden;
  9675. }
  9676. #u174232 {
  9677. border-width:0px;
  9678. position:absolute;
  9679. left:0px;
  9680. top:0px;
  9681. width:0px;
  9682. height:0px;
  9683. }
  9684. #u174233_div {
  9685. border-width:0px;
  9686. position:absolute;
  9687. left:0px;
  9688. top:0px;
  9689. width:375px;
  9690. height:50px;
  9691. background:inherit;
  9692. background-color:rgba(255, 255, 255, 1);
  9693. box-sizing:border-box;
  9694. border-width:1px;
  9695. border-style:solid;
  9696. border-color:rgba(242, 242, 242, 1);
  9697. border-radius:26px;
  9698. border-top-left-radius:0px;
  9699. border-top-right-radius:0px;
  9700. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9701. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9702. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9703. }
  9704. #u174233 {
  9705. border-width:0px;
  9706. position:absolute;
  9707. left:29px;
  9708. top:1768px;
  9709. width:375px;
  9710. height:50px;
  9711. display:flex;
  9712. }
  9713. #u174233 .text {
  9714. position:absolute;
  9715. align-self:center;
  9716. padding:2px 2px 2px 2px;
  9717. box-sizing:border-box;
  9718. width:100%;
  9719. }
  9720. #u174233_text {
  9721. border-width:0px;
  9722. word-wrap:break-word;
  9723. text-transform:none;
  9724. visibility:hidden;
  9725. }
  9726. #u174234 {
  9727. border-width:0px;
  9728. position:absolute;
  9729. left:0px;
  9730. top:0px;
  9731. width:0px;
  9732. height:0px;
  9733. }
  9734. #u174235_div {
  9735. border-width:0px;
  9736. position:absolute;
  9737. left:0px;
  9738. top:0px;
  9739. width:77px;
  9740. height:50px;
  9741. background:inherit;
  9742. background-color:rgba(255, 255, 255, 1);
  9743. border:none;
  9744. border-radius:0px;
  9745. border-top-left-radius:0px;
  9746. border-top-right-radius:0px;
  9747. -moz-box-shadow:none;
  9748. -webkit-box-shadow:none;
  9749. box-shadow:none;
  9750. }
  9751. #u174235 {
  9752. border-width:0px;
  9753. position:absolute;
  9754. left:178px;
  9755. top:1768px;
  9756. width:77px;
  9757. height:50px;
  9758. display:flex;
  9759. }
  9760. #u174235 .text {
  9761. position:absolute;
  9762. align-self:center;
  9763. padding:2px 2px 2px 2px;
  9764. box-sizing:border-box;
  9765. width:100%;
  9766. }
  9767. #u174235_text {
  9768. border-width:0px;
  9769. word-wrap:break-word;
  9770. text-transform:none;
  9771. visibility:hidden;
  9772. }
  9773. #u174236 {
  9774. border-width:0px;
  9775. position:absolute;
  9776. left:0px;
  9777. top:0px;
  9778. width:0px;
  9779. height:0px;
  9780. }
  9781. #u174237_img {
  9782. border-width:0px;
  9783. position:absolute;
  9784. left:0px;
  9785. top:0px;
  9786. width:38px;
  9787. height:38px;
  9788. }
  9789. #u174237 {
  9790. border-width:0px;
  9791. position:absolute;
  9792. left:198px;
  9793. top:1758px;
  9794. width:38px;
  9795. height:38px;
  9796. display:flex;
  9797. font-size:12px;
  9798. color:#FFFFFF;
  9799. }
  9800. #u174237 .text {
  9801. position:absolute;
  9802. align-self:center;
  9803. padding:2px 2px 2px 2px;
  9804. box-sizing:border-box;
  9805. width:100%;
  9806. }
  9807. #u174237_text {
  9808. border-width:0px;
  9809. word-wrap:break-word;
  9810. text-transform:none;
  9811. }
  9812. #u174238_div {
  9813. border-width:0px;
  9814. position:absolute;
  9815. left:0px;
  9816. top:0px;
  9817. width:49px;
  9818. height:17px;
  9819. background:inherit;
  9820. background-color:rgba(255, 255, 255, 0);
  9821. border:none;
  9822. border-radius:0px;
  9823. -moz-box-shadow:none;
  9824. -webkit-box-shadow:none;
  9825. box-shadow:none;
  9826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9827. font-weight:400;
  9828. font-style:normal;
  9829. font-size:12px;
  9830. }
  9831. #u174238 {
  9832. border-width:0px;
  9833. position:absolute;
  9834. left:192px;
  9835. top:1797px;
  9836. width:49px;
  9837. height:17px;
  9838. display:flex;
  9839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9840. font-weight:400;
  9841. font-style:normal;
  9842. font-size:12px;
  9843. }
  9844. #u174238 .text {
  9845. position:absolute;
  9846. align-self:flex-start;
  9847. padding:0px 0px 0px 0px;
  9848. box-sizing:border-box;
  9849. width:100%;
  9850. }
  9851. #u174238_text {
  9852. border-width:0px;
  9853. white-space:nowrap;
  9854. text-transform:none;
  9855. }
  9856. #u174239 {
  9857. border-width:0px;
  9858. position:absolute;
  9859. left:0px;
  9860. top:0px;
  9861. width:0px;
  9862. height:0px;
  9863. }
  9864. #u174240_div {
  9865. border-width:0px;
  9866. position:absolute;
  9867. left:0px;
  9868. top:0px;
  9869. width:75px;
  9870. height:50px;
  9871. background:inherit;
  9872. background-color:rgba(255, 255, 255, 1);
  9873. border:none;
  9874. border-right:0px;
  9875. border-radius:26px;
  9876. border-top-left-radius:0px;
  9877. border-top-right-radius:0px;
  9878. border-bottom-right-radius:0px;
  9879. -moz-box-shadow:none;
  9880. -webkit-box-shadow:none;
  9881. box-shadow:none;
  9882. }
  9883. #u174240 {
  9884. border-width:0px;
  9885. position:absolute;
  9886. left:29px;
  9887. top:1768px;
  9888. width:75px;
  9889. height:50px;
  9890. display:flex;
  9891. }
  9892. #u174240 .text {
  9893. position:absolute;
  9894. align-self:center;
  9895. padding:2px 2px 2px 2px;
  9896. box-sizing:border-box;
  9897. width:100%;
  9898. }
  9899. #u174240_text {
  9900. border-width:0px;
  9901. word-wrap:break-word;
  9902. text-transform:none;
  9903. visibility:hidden;
  9904. }
  9905. #u174241 {
  9906. border-width:0px;
  9907. position:absolute;
  9908. left:0px;
  9909. top:0px;
  9910. width:0px;
  9911. height:0px;
  9912. }
  9913. #u174242_img {
  9914. border-width:0px;
  9915. position:absolute;
  9916. left:0px;
  9917. top:0px;
  9918. width:24px;
  9919. height:24px;
  9920. }
  9921. #u174242 {
  9922. border-width:0px;
  9923. position:absolute;
  9924. left:54px;
  9925. top:1772px;
  9926. width:24px;
  9927. height:24px;
  9928. display:flex;
  9929. font-size:8px;
  9930. }
  9931. #u174242 .text {
  9932. position:absolute;
  9933. align-self:center;
  9934. padding:2px 2px 2px 2px;
  9935. box-sizing:border-box;
  9936. width:100%;
  9937. }
  9938. #u174242_text {
  9939. border-width:0px;
  9940. word-wrap:break-word;
  9941. text-transform:none;
  9942. }
  9943. #u174243_div {
  9944. border-width:0px;
  9945. position:absolute;
  9946. left:0px;
  9947. top:0px;
  9948. width:25px;
  9949. height:17px;
  9950. background:inherit;
  9951. background-color:rgba(255, 255, 255, 0);
  9952. border:none;
  9953. border-radius:0px;
  9954. -moz-box-shadow:none;
  9955. -webkit-box-shadow:none;
  9956. box-shadow:none;
  9957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9958. font-weight:400;
  9959. font-style:normal;
  9960. font-size:12px;
  9961. }
  9962. #u174243 {
  9963. border-width:0px;
  9964. position:absolute;
  9965. left:54px;
  9966. top:1797px;
  9967. width:25px;
  9968. height:17px;
  9969. display:flex;
  9970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9971. font-weight:400;
  9972. font-style:normal;
  9973. font-size:12px;
  9974. }
  9975. #u174243 .text {
  9976. position:absolute;
  9977. align-self:flex-start;
  9978. padding:0px 0px 0px 0px;
  9979. box-sizing:border-box;
  9980. width:100%;
  9981. }
  9982. #u174243_text {
  9983. border-width:0px;
  9984. white-space:nowrap;
  9985. text-transform:none;
  9986. }
  9987. #u174244 {
  9988. border-width:0px;
  9989. position:absolute;
  9990. left:0px;
  9991. top:0px;
  9992. width:0px;
  9993. height:0px;
  9994. }
  9995. #u174245_div {
  9996. border-width:0px;
  9997. position:absolute;
  9998. left:0px;
  9999. top:0px;
  10000. width:75px;
  10001. height:50px;
  10002. background:inherit;
  10003. background-color:rgba(255, 255, 255, 1);
  10004. border:none;
  10005. border-left:0px;
  10006. border-radius:26px;
  10007. border-top-left-radius:0px;
  10008. border-top-right-radius:0px;
  10009. border-bottom-left-radius:0px;
  10010. -moz-box-shadow:none;
  10011. -webkit-box-shadow:none;
  10012. box-shadow:none;
  10013. }
  10014. #u174245 {
  10015. border-width:0px;
  10016. position:absolute;
  10017. left:329px;
  10018. top:1768px;
  10019. width:75px;
  10020. height:50px;
  10021. display:flex;
  10022. }
  10023. #u174245 .text {
  10024. position:absolute;
  10025. align-self:center;
  10026. padding:2px 2px 2px 2px;
  10027. box-sizing:border-box;
  10028. width:100%;
  10029. }
  10030. #u174245_text {
  10031. border-width:0px;
  10032. word-wrap:break-word;
  10033. text-transform:none;
  10034. visibility:hidden;
  10035. }
  10036. #u174246 {
  10037. border-width:0px;
  10038. position:absolute;
  10039. left:0px;
  10040. top:0px;
  10041. width:0px;
  10042. height:0px;
  10043. }
  10044. #u174247_img {
  10045. border-width:0px;
  10046. position:absolute;
  10047. left:0px;
  10048. top:0px;
  10049. width:24px;
  10050. height:24px;
  10051. }
  10052. #u174247 {
  10053. border-width:0px;
  10054. position:absolute;
  10055. left:354px;
  10056. top:1774px;
  10057. width:24px;
  10058. height:24px;
  10059. display:flex;
  10060. font-size:8px;
  10061. }
  10062. #u174247 .text {
  10063. position:absolute;
  10064. align-self:center;
  10065. padding:2px 2px 2px 2px;
  10066. box-sizing:border-box;
  10067. width:100%;
  10068. }
  10069. #u174247_text {
  10070. border-width:0px;
  10071. word-wrap:break-word;
  10072. text-transform:none;
  10073. }
  10074. #u174248_div {
  10075. border-width:0px;
  10076. position:absolute;
  10077. left:0px;
  10078. top:0px;
  10079. width:25px;
  10080. height:17px;
  10081. background:inherit;
  10082. background-color:rgba(255, 255, 255, 0);
  10083. border:none;
  10084. border-radius:0px;
  10085. -moz-box-shadow:none;
  10086. -webkit-box-shadow:none;
  10087. box-shadow:none;
  10088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10089. font-weight:400;
  10090. font-style:normal;
  10091. font-size:12px;
  10092. }
  10093. #u174248 {
  10094. border-width:0px;
  10095. position:absolute;
  10096. left:354px;
  10097. top:1799px;
  10098. width:25px;
  10099. height:17px;
  10100. display:flex;
  10101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10102. font-weight:400;
  10103. font-style:normal;
  10104. font-size:12px;
  10105. }
  10106. #u174248 .text {
  10107. position:absolute;
  10108. align-self:flex-start;
  10109. padding:0px 0px 0px 0px;
  10110. box-sizing:border-box;
  10111. width:100%;
  10112. }
  10113. #u174248_text {
  10114. border-width:0px;
  10115. white-space:nowrap;
  10116. text-transform:none;
  10117. }
  10118. #u174249 {
  10119. border-width:0px;
  10120. position:absolute;
  10121. left:0px;
  10122. top:0px;
  10123. width:0px;
  10124. height:0px;
  10125. }
  10126. #u174250_div {
  10127. border-width:0px;
  10128. position:absolute;
  10129. left:0px;
  10130. top:0px;
  10131. width:75px;
  10132. height:50px;
  10133. background:inherit;
  10134. background-color:rgba(255, 255, 255, 1);
  10135. border:none;
  10136. border-radius:0px;
  10137. border-top-left-radius:0px;
  10138. border-top-right-radius:0px;
  10139. -moz-box-shadow:none;
  10140. -webkit-box-shadow:none;
  10141. box-shadow:none;
  10142. }
  10143. #u174250 {
  10144. border-width:0px;
  10145. position:absolute;
  10146. left:254px;
  10147. top:1768px;
  10148. width:75px;
  10149. height:50px;
  10150. display:flex;
  10151. }
  10152. #u174250 .text {
  10153. position:absolute;
  10154. align-self:center;
  10155. padding:2px 2px 2px 2px;
  10156. box-sizing:border-box;
  10157. width:100%;
  10158. }
  10159. #u174250_text {
  10160. border-width:0px;
  10161. word-wrap:break-word;
  10162. text-transform:none;
  10163. visibility:hidden;
  10164. }
  10165. #u174251 {
  10166. border-width:0px;
  10167. position:absolute;
  10168. left:0px;
  10169. top:0px;
  10170. width:0px;
  10171. height:0px;
  10172. }
  10173. #u174252_img {
  10174. border-width:0px;
  10175. position:absolute;
  10176. left:0px;
  10177. top:0px;
  10178. width:24px;
  10179. height:24px;
  10180. }
  10181. #u174252 {
  10182. border-width:0px;
  10183. position:absolute;
  10184. left:279px;
  10185. top:1772px;
  10186. width:24px;
  10187. height:24px;
  10188. display:flex;
  10189. font-size:8px;
  10190. }
  10191. #u174252 .text {
  10192. position:absolute;
  10193. align-self:center;
  10194. padding:2px 2px 2px 2px;
  10195. box-sizing:border-box;
  10196. width:100%;
  10197. }
  10198. #u174252_text {
  10199. border-width:0px;
  10200. word-wrap:break-word;
  10201. text-transform:none;
  10202. }
  10203. #u174253_div {
  10204. border-width:0px;
  10205. position:absolute;
  10206. left:0px;
  10207. top:0px;
  10208. width:25px;
  10209. height:17px;
  10210. background:inherit;
  10211. background-color:rgba(255, 255, 255, 0);
  10212. border:none;
  10213. border-radius:0px;
  10214. -moz-box-shadow:none;
  10215. -webkit-box-shadow:none;
  10216. box-shadow:none;
  10217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10218. font-weight:400;
  10219. font-style:normal;
  10220. font-size:12px;
  10221. }
  10222. #u174253 {
  10223. border-width:0px;
  10224. position:absolute;
  10225. left:279px;
  10226. top:1797px;
  10227. width:25px;
  10228. height:17px;
  10229. display:flex;
  10230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10231. font-weight:400;
  10232. font-style:normal;
  10233. font-size:12px;
  10234. }
  10235. #u174253 .text {
  10236. position:absolute;
  10237. align-self:flex-start;
  10238. padding:0px 0px 0px 0px;
  10239. box-sizing:border-box;
  10240. width:100%;
  10241. }
  10242. #u174253_text {
  10243. border-width:0px;
  10244. white-space:nowrap;
  10245. text-transform:none;
  10246. }
  10247. #u174254 {
  10248. border-width:0px;
  10249. position:absolute;
  10250. left:0px;
  10251. top:0px;
  10252. width:0px;
  10253. height:0px;
  10254. }
  10255. #u174255_div {
  10256. border-width:0px;
  10257. position:absolute;
  10258. left:0px;
  10259. top:0px;
  10260. width:75px;
  10261. height:50px;
  10262. background:inherit;
  10263. background-color:rgba(24, 144, 255, 1);
  10264. border:none;
  10265. border-radius:0px;
  10266. border-top-left-radius:0px;
  10267. border-top-right-radius:0px;
  10268. -moz-box-shadow:none;
  10269. -webkit-box-shadow:none;
  10270. box-shadow:none;
  10271. }
  10272. #u174255 {
  10273. border-width:0px;
  10274. position:absolute;
  10275. left:104px;
  10276. top:1768px;
  10277. width:75px;
  10278. height:50px;
  10279. display:flex;
  10280. }
  10281. #u174255 .text {
  10282. position:absolute;
  10283. align-self:center;
  10284. padding:2px 2px 2px 2px;
  10285. box-sizing:border-box;
  10286. width:100%;
  10287. }
  10288. #u174255_text {
  10289. border-width:0px;
  10290. word-wrap:break-word;
  10291. text-transform:none;
  10292. visibility:hidden;
  10293. }
  10294. #u174256 {
  10295. border-width:0px;
  10296. position:absolute;
  10297. left:0px;
  10298. top:0px;
  10299. width:0px;
  10300. height:0px;
  10301. }
  10302. #u174257_img {
  10303. border-width:0px;
  10304. position:absolute;
  10305. left:0px;
  10306. top:0px;
  10307. width:24px;
  10308. height:24px;
  10309. }
  10310. #u174257 {
  10311. border-width:0px;
  10312. position:absolute;
  10313. left:129px;
  10314. top:1772px;
  10315. width:24px;
  10316. height:24px;
  10317. display:flex;
  10318. font-size:8px;
  10319. }
  10320. #u174257 .text {
  10321. position:absolute;
  10322. align-self:center;
  10323. padding:2px 2px 2px 2px;
  10324. box-sizing:border-box;
  10325. width:100%;
  10326. }
  10327. #u174257_text {
  10328. border-width:0px;
  10329. word-wrap:break-word;
  10330. text-transform:none;
  10331. }
  10332. #u174258_div {
  10333. border-width:0px;
  10334. position:absolute;
  10335. left:0px;
  10336. top:0px;
  10337. width:37px;
  10338. height:17px;
  10339. background:inherit;
  10340. background-color:rgba(255, 255, 255, 0);
  10341. border:none;
  10342. border-radius:0px;
  10343. -moz-box-shadow:none;
  10344. -webkit-box-shadow:none;
  10345. box-shadow:none;
  10346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10347. font-weight:400;
  10348. font-style:normal;
  10349. font-size:12px;
  10350. color:#FFFFFF;
  10351. }
  10352. #u174258 {
  10353. border-width:0px;
  10354. position:absolute;
  10355. left:123px;
  10356. top:1797px;
  10357. width:37px;
  10358. height:17px;
  10359. display:flex;
  10360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10361. font-weight:400;
  10362. font-style:normal;
  10363. font-size:12px;
  10364. color:#FFFFFF;
  10365. }
  10366. #u174258 .text {
  10367. position:absolute;
  10368. align-self:flex-start;
  10369. padding:0px 0px 0px 0px;
  10370. box-sizing:border-box;
  10371. width:100%;
  10372. }
  10373. #u174258_text {
  10374. border-width:0px;
  10375. white-space:nowrap;
  10376. text-transform:none;
  10377. }