styles.css 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:888px;
  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. #u175940_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u175940 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u175940 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u175940_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u175941_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. #u175941 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u175941 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u175941_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u175942 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u175943_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. #u175943 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u175943 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u175943_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u175944 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u175945_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u175945 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u175945 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u175945_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u175946_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u175946 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u175946 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u175946_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u175947 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u175948_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u175948 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u175948 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u175948_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u175949_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u175949 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u175949 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u175949_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u175950_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u175950 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u175950 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u175950_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u175951_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u175951 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u175951 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u175951_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u175952_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u175952 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u175952 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u175952_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u175953_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. #u175953 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u175953 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u175953_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u175954 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u175955_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u175955 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u175955 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u175955_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u175956_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. #u175956 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u175956 .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. #u175956_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u175957 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u175958_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u175958 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u175958 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u175958_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u175959_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. #u175959 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u175959 .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. #u175959_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u175960_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. #u175960 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u175960 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u175960_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u175961 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u175962_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u175962 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u175962 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u175962_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u175963_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. #u175963 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u175963 .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. #u175963_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u175964 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u175965_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u175965 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u175965 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u175965_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u175966_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. #u175966 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u175966 .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. #u175966_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u175967_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. #u175967 {
  800. border-width:0px;
  801. position:absolute;
  802. left:29px;
  803. top:105px;
  804. width:375px;
  805. height:734px;
  806. display:flex;
  807. }
  808. #u175967 .text {
  809. position:absolute;
  810. align-self:center;
  811. padding:2px 2px 2px 2px;
  812. box-sizing:border-box;
  813. width:100%;
  814. }
  815. #u175967_text {
  816. border-width:0px;
  817. word-wrap:break-word;
  818. text-transform:none;
  819. visibility:hidden;
  820. }
  821. #u175968 {
  822. border-width:0px;
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:0px;
  827. height:0px;
  828. }
  829. #u175969_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. #u175969 {
  848. border-width:0px;
  849. position:absolute;
  850. left:45px;
  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. #u175969 .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. #u175969_text {
  867. border-width:0px;
  868. white-space:nowrap;
  869. text-transform:none;
  870. }
  871. #u175970_img {
  872. border-width:0px;
  873. position:absolute;
  874. left:0px;
  875. top:0px;
  876. width:18px;
  877. height:14px;
  878. }
  879. #u175970 {
  880. border-width:0px;
  881. position:absolute;
  882. left:264px;
  883. top:78px;
  884. width:18px;
  885. height:14px;
  886. display:flex;
  887. }
  888. #u175970 .text {
  889. position:absolute;
  890. align-self:center;
  891. padding:2px 2px 2px 2px;
  892. box-sizing:border-box;
  893. width:100%;
  894. }
  895. #u175970_text {
  896. border-width:0px;
  897. word-wrap:break-word;
  898. text-transform:none;
  899. visibility:hidden;
  900. }
  901. #u175971_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. #u175971 {
  925. border-width:0px;
  926. position:absolute;
  927. left:49px;
  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. #u175971 .text {
  937. position:absolute;
  938. align-self:center;
  939. padding:0px 0px 0px 0px;
  940. box-sizing:border-box;
  941. width:100%;
  942. }
  943. #u175971_text {
  944. border-width:0px;
  945. white-space:nowrap;
  946. text-transform:none;
  947. }
  948. #u175972_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. #u175972 {
  976. border-width:0px;
  977. position:absolute;
  978. left:103px;
  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. #u175972 .text {
  989. position:absolute;
  990. align-self:center;
  991. padding:0px 0px 0px 0px;
  992. box-sizing:border-box;
  993. width:100%;
  994. }
  995. #u175972_text {
  996. border-width:0px;
  997. white-space:nowrap;
  998. text-transform:none;
  999. }
  1000. #u175973_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. #u175973 {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:29px;
  1022. top:136px;
  1023. width:375px;
  1024. height:42px;
  1025. display:flex;
  1026. }
  1027. #u175973 .text {
  1028. position:absolute;
  1029. align-self:center;
  1030. padding:2px 2px 2px 2px;
  1031. box-sizing:border-box;
  1032. width:100%;
  1033. }
  1034. #u175973_text {
  1035. border-width:0px;
  1036. word-wrap:break-word;
  1037. text-transform:none;
  1038. visibility:hidden;
  1039. }
  1040. #u175974_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. #u175974 {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:49px;
  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. #u175974 .text {
  1076. position:absolute;
  1077. align-self:center;
  1078. padding:0px 0px 0px 0px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u175974_text {
  1083. border-width:0px;
  1084. white-space:nowrap;
  1085. text-transform:none;
  1086. }
  1087. #u175975_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. #u175975 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:98px;
  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. #u175975 .text {
  1125. position:absolute;
  1126. align-self:center;
  1127. padding:0px 0px 0px 0px;
  1128. box-sizing:border-box;
  1129. width:100%;
  1130. }
  1131. #u175975_text {
  1132. border-width:0px;
  1133. white-space:nowrap;
  1134. text-transform:none;
  1135. }
  1136. #u175976_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. #u175976 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:29px;
  1158. top:179px;
  1159. width:375px;
  1160. height:610px;
  1161. display:flex;
  1162. }
  1163. #u175976 .text {
  1164. position:absolute;
  1165. align-self:center;
  1166. padding:2px 2px 2px 2px;
  1167. box-sizing:border-box;
  1168. width:100%;
  1169. }
  1170. #u175976_text {
  1171. border-width:0px;
  1172. word-wrap:break-word;
  1173. text-transform:none;
  1174. visibility:hidden;
  1175. }
  1176. #u175977 {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:0px;
  1180. top:0px;
  1181. width:0px;
  1182. height:0px;
  1183. }
  1184. #u175978_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. #u175978 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:29px;
  1208. top:789px;
  1209. width:375px;
  1210. height:50px;
  1211. display:flex;
  1212. }
  1213. #u175978 .text {
  1214. position:absolute;
  1215. align-self:center;
  1216. padding:2px 2px 2px 2px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u175978_text {
  1221. border-width:0px;
  1222. word-wrap:break-word;
  1223. text-transform:none;
  1224. visibility:hidden;
  1225. }
  1226. #u175979 {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:0px;
  1232. height:0px;
  1233. }
  1234. #u175980_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. #u175980 {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:178px;
  1255. top:789px;
  1256. width:77px;
  1257. height:50px;
  1258. display:flex;
  1259. }
  1260. #u175980 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:2px 2px 2px 2px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u175980_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. visibility:hidden;
  1272. }
  1273. #u175981 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:0px;
  1277. top:0px;
  1278. width:0px;
  1279. height:0px;
  1280. }
  1281. #u175982_img {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:38px;
  1287. height:38px;
  1288. }
  1289. #u175982 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:198px;
  1293. top:779px;
  1294. width:38px;
  1295. height:38px;
  1296. display:flex;
  1297. font-size:12px;
  1298. color:#FFFFFF;
  1299. }
  1300. #u175982 .text {
  1301. position:absolute;
  1302. align-self:center;
  1303. padding:2px 2px 2px 2px;
  1304. box-sizing:border-box;
  1305. width:100%;
  1306. }
  1307. #u175982_text {
  1308. border-width:0px;
  1309. word-wrap:break-word;
  1310. text-transform:none;
  1311. }
  1312. #u175983_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. #u175983 {
  1332. border-width:0px;
  1333. position:absolute;
  1334. left:192px;
  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. #u175983 .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. #u175983_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u175984 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:0px;
  1362. height:0px;
  1363. }
  1364. #u175985_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. #u175985 {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:29px;
  1387. top:789px;
  1388. width:75px;
  1389. height:50px;
  1390. display:flex;
  1391. }
  1392. #u175985 .text {
  1393. position:absolute;
  1394. align-self:center;
  1395. padding:2px 2px 2px 2px;
  1396. box-sizing:border-box;
  1397. width:100%;
  1398. }
  1399. #u175985_text {
  1400. border-width:0px;
  1401. word-wrap:break-word;
  1402. text-transform:none;
  1403. visibility:hidden;
  1404. }
  1405. #u175986 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. }
  1413. #u175987_img {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:24px;
  1419. height:24px;
  1420. }
  1421. #u175987 {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:54px;
  1425. top:793px;
  1426. width:24px;
  1427. height:24px;
  1428. display:flex;
  1429. font-size:8px;
  1430. }
  1431. #u175987 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:2px 2px 2px 2px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u175987_text {
  1439. border-width:0px;
  1440. word-wrap:break-word;
  1441. text-transform:none;
  1442. }
  1443. #u175988_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. #u175988 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:54px;
  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. #u175988 .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. #u175988_text {
  1483. border-width:0px;
  1484. white-space:nowrap;
  1485. text-transform:none;
  1486. }
  1487. #u175989 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:0px;
  1491. top:0px;
  1492. width:0px;
  1493. height:0px;
  1494. }
  1495. #u175990_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. #u175990 {
  1515. border-width:0px;
  1516. position:absolute;
  1517. left:329px;
  1518. top:789px;
  1519. width:75px;
  1520. height:50px;
  1521. display:flex;
  1522. }
  1523. #u175990 .text {
  1524. position:absolute;
  1525. align-self:center;
  1526. padding:2px 2px 2px 2px;
  1527. box-sizing:border-box;
  1528. width:100%;
  1529. }
  1530. #u175990_text {
  1531. border-width:0px;
  1532. word-wrap:break-word;
  1533. text-transform:none;
  1534. visibility:hidden;
  1535. }
  1536. #u175991 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:0px;
  1540. top:0px;
  1541. width:0px;
  1542. height:0px;
  1543. }
  1544. #u175992_img {
  1545. border-width:0px;
  1546. position:absolute;
  1547. left:0px;
  1548. top:0px;
  1549. width:24px;
  1550. height:24px;
  1551. }
  1552. #u175992 {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:354px;
  1556. top:795px;
  1557. width:24px;
  1558. height:24px;
  1559. display:flex;
  1560. font-size:8px;
  1561. }
  1562. #u175992 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u175992_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. }
  1574. #u175993_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. #u175993 {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:354px;
  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. #u175993 .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. #u175993_text {
  1614. border-width:0px;
  1615. white-space:nowrap;
  1616. text-transform:none;
  1617. }
  1618. #u175994 {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:0px;
  1622. top:0px;
  1623. width:0px;
  1624. height:0px;
  1625. }
  1626. #u175995_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. #u175995 {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:254px;
  1647. top:789px;
  1648. width:75px;
  1649. height:50px;
  1650. display:flex;
  1651. }
  1652. #u175995 .text {
  1653. position:absolute;
  1654. align-self:center;
  1655. padding:2px 2px 2px 2px;
  1656. box-sizing:border-box;
  1657. width:100%;
  1658. }
  1659. #u175995_text {
  1660. border-width:0px;
  1661. word-wrap:break-word;
  1662. text-transform:none;
  1663. visibility:hidden;
  1664. }
  1665. #u175996 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:0px;
  1669. top:0px;
  1670. width:0px;
  1671. height:0px;
  1672. }
  1673. #u175997_img {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:24px;
  1679. height:24px;
  1680. }
  1681. #u175997 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:279px;
  1685. top:793px;
  1686. width:24px;
  1687. height:24px;
  1688. display:flex;
  1689. font-size:8px;
  1690. }
  1691. #u175997 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u175997_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. }
  1703. #u175998_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. #u175998 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:279px;
  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. #u175998 .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. #u175998_text {
  1743. border-width:0px;
  1744. white-space:nowrap;
  1745. text-transform:none;
  1746. }
  1747. #u175999 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:0px;
  1753. height:0px;
  1754. }
  1755. #u176000_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. #u176000 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:104px;
  1776. top:789px;
  1777. width:75px;
  1778. height:50px;
  1779. display:flex;
  1780. }
  1781. #u176000 .text {
  1782. position:absolute;
  1783. align-self:center;
  1784. padding:2px 2px 2px 2px;
  1785. box-sizing:border-box;
  1786. width:100%;
  1787. }
  1788. #u176000_text {
  1789. border-width:0px;
  1790. word-wrap:break-word;
  1791. text-transform:none;
  1792. visibility:hidden;
  1793. }
  1794. #u176001 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:0px;
  1800. height:0px;
  1801. }
  1802. #u176002_img {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:24px;
  1808. height:24px;
  1809. }
  1810. #u176002 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:129px;
  1814. top:793px;
  1815. width:24px;
  1816. height:24px;
  1817. display:flex;
  1818. font-size:8px;
  1819. }
  1820. #u176002 .text {
  1821. position:absolute;
  1822. align-self:center;
  1823. padding:2px 2px 2px 2px;
  1824. box-sizing:border-box;
  1825. width:100%;
  1826. }
  1827. #u176002_text {
  1828. border-width:0px;
  1829. word-wrap:break-word;
  1830. text-transform:none;
  1831. }
  1832. #u176003_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. #u176003 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:123px;
  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. #u176003 .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. #u176003_text {
  1874. border-width:0px;
  1875. white-space:nowrap;
  1876. text-transform:none;
  1877. }
  1878. #u176004 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:0px;
  1882. top:0px;
  1883. width:0px;
  1884. height:0px;
  1885. }
  1886. #u176005_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. #u176005 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:38px;
  1908. top:289px;
  1909. width:357px;
  1910. height:200px;
  1911. display:flex;
  1912. }
  1913. #u176005 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 2px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u176005_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. visibility:hidden;
  1925. }
  1926. #u176006 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:0px;
  1932. height:0px;
  1933. }
  1934. #u176007_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. #u176007 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:62px;
  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. #u176007 .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. #u176007_text {
  1979. border-width:0px;
  1980. word-wrap:break-word;
  1981. text-transform:none;
  1982. }
  1983. #u176008_img {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:30px;
  1989. height:30px;
  1990. }
  1991. #u176008 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:72px;
  1995. top:339px;
  1996. width:30px;
  1997. height:30px;
  1998. display:flex;
  1999. }
  2000. #u176008 .text {
  2001. position:absolute;
  2002. align-self:center;
  2003. padding:2px 2px 2px 2px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u176008_text {
  2008. border-width:0px;
  2009. word-wrap:break-word;
  2010. text-transform:none;
  2011. visibility:hidden;
  2012. }
  2013. #u176009_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. #u176009 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:62px;
  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. #u176009 .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. #u176009_text {
  2058. border-width:0px;
  2059. white-space:nowrap;
  2060. text-transform:none;
  2061. }
  2062. #u176010 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:0px;
  2068. height:0px;
  2069. }
  2070. #u176011 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:0px;
  2076. height:0px;
  2077. }
  2078. #u176012 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:0px;
  2084. height:0px;
  2085. }
  2086. #u176013_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. #u176013 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:57px;
  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. #u176013 .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. #u176013_text {
  2131. border-width:0px;
  2132. white-space:nowrap;
  2133. text-transform:none;
  2134. }
  2135. #u176014_img {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:30px;
  2141. height:30px;
  2142. }
  2143. #u176014 {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:73px;
  2147. top:416px;
  2148. width:30px;
  2149. height:30px;
  2150. display:flex;
  2151. }
  2152. #u176014 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:2px 2px 2px 2px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u176014_text {
  2160. border-width:0px;
  2161. word-wrap:break-word;
  2162. text-transform:none;
  2163. visibility:hidden;
  2164. }
  2165. #u176015_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. #u176015 {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:97px;
  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. #u176015 .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. #u176015_text {
  2207. border-width:0px;
  2208. white-space:nowrap;
  2209. text-transform:none;
  2210. }
  2211. #u176016 {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:0px;
  2217. height:0px;
  2218. }
  2219. #u176017_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. #u176017 {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:245px;
  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. #u176017 .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. #u176017_text {
  2264. border-width:0px;
  2265. white-space:nowrap;
  2266. text-transform:none;
  2267. }
  2268. #u176018_img {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:30px;
  2274. height:30px;
  2275. }
  2276. #u176018 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:254px;
  2280. top:339px;
  2281. width:30px;
  2282. height:30px;
  2283. display:flex;
  2284. }
  2285. #u176018 .text {
  2286. position:absolute;
  2287. align-self:center;
  2288. padding:2px 2px 2px 2px;
  2289. box-sizing:border-box;
  2290. width:100%;
  2291. }
  2292. #u176018_text {
  2293. border-width:0px;
  2294. word-wrap:break-word;
  2295. text-transform:none;
  2296. visibility:hidden;
  2297. }
  2298. #u176019 {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:0px;
  2304. height:0px;
  2305. }
  2306. #u176020_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. #u176020 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:335px;
  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. #u176020 .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. #u176020_text {
  2351. border-width:0px;
  2352. word-wrap:break-word;
  2353. text-transform:none;
  2354. }
  2355. #u176021_img {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:0px;
  2359. top:0px;
  2360. width:30px;
  2361. height:30px;
  2362. }
  2363. #u176021 {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:345px;
  2367. top:339px;
  2368. width:30px;
  2369. height:30px;
  2370. display:flex;
  2371. }
  2372. #u176021 .text {
  2373. position:absolute;
  2374. align-self:center;
  2375. padding:2px 2px 2px 2px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u176021_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. visibility:hidden;
  2384. }
  2385. #u176022 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:0px;
  2391. height:0px;
  2392. }
  2393. #u176023_div {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:51px;
  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. #u176023 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:154px;
  2421. top:379px;
  2422. width:51px;
  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. #u176023 .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. #u176023_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. }
  2442. #u176024_img {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:30px;
  2448. height:30px;
  2449. }
  2450. #u176024 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:164px;
  2454. top:339px;
  2455. width:30px;
  2456. height:30px;
  2457. display:flex;
  2458. }
  2459. #u176024 .text {
  2460. position:absolute;
  2461. align-self:center;
  2462. padding:2px 2px 2px 2px;
  2463. box-sizing:border-box;
  2464. width:100%;
  2465. }
  2466. #u176024_text {
  2467. border-width:0px;
  2468. word-wrap:break-word;
  2469. text-transform:none;
  2470. visibility:hidden;
  2471. }
  2472. #u176025 {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:0px;
  2476. top:0px;
  2477. width:0px;
  2478. height:0px;
  2479. }
  2480. #u176026_div {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:361px;
  2486. height:90px;
  2487. background:inherit;
  2488. background-color:rgba(255, 255, 255, 1);
  2489. box-sizing:border-box;
  2490. border-width:1px;
  2491. border-style:solid;
  2492. border-color:rgba(242, 242, 242, 1);
  2493. border-radius:4px;
  2494. -moz-box-shadow:none;
  2495. -webkit-box-shadow:none;
  2496. box-shadow:none;
  2497. }
  2498. #u176026 {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:36px;
  2502. top:189px;
  2503. width:361px;
  2504. height:90px;
  2505. display:flex;
  2506. }
  2507. #u176026 .text {
  2508. position:absolute;
  2509. align-self:center;
  2510. padding:2px 2px 2px 2px;
  2511. box-sizing:border-box;
  2512. width:100%;
  2513. }
  2514. #u176026_text {
  2515. border-width:0px;
  2516. word-wrap:break-word;
  2517. text-transform:none;
  2518. visibility:hidden;
  2519. }
  2520. #u176027_div {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:37px;
  2526. height:50px;
  2527. background:inherit;
  2528. background-color:rgba(255, 255, 255, 0);
  2529. border:none;
  2530. border-radius:0px;
  2531. -moz-box-shadow:none;
  2532. -webkit-box-shadow:none;
  2533. box-shadow:none;
  2534. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2535. font-weight:650;
  2536. font-style:normal;
  2537. font-size:18px;
  2538. color:#298FFF;
  2539. }
  2540. #u176027 {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:55px;
  2544. top:203px;
  2545. width:37px;
  2546. height:50px;
  2547. display:flex;
  2548. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2549. font-weight:650;
  2550. font-style:normal;
  2551. font-size:18px;
  2552. color:#298FFF;
  2553. }
  2554. #u176027 .text {
  2555. position:absolute;
  2556. align-self:flex-start;
  2557. padding:0px 0px 0px 0px;
  2558. box-sizing:border-box;
  2559. width:100%;
  2560. }
  2561. #u176027_text {
  2562. border-width:0px;
  2563. white-space:nowrap;
  2564. text-transform:none;
  2565. }
  2566. #u176028_div {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:0px;
  2570. top:0px;
  2571. width:149px;
  2572. height:18px;
  2573. background:inherit;
  2574. background-color:rgba(255, 255, 255, 0);
  2575. border:none;
  2576. border-radius:0px;
  2577. -moz-box-shadow:none;
  2578. -webkit-box-shadow:none;
  2579. box-shadow:none;
  2580. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2581. font-weight:500;
  2582. font-style:normal;
  2583. }
  2584. #u176028 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:107px;
  2588. top:199px;
  2589. width:149px;
  2590. height:18px;
  2591. display:flex;
  2592. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2593. font-weight:500;
  2594. font-style:normal;
  2595. }
  2596. #u176028 .text {
  2597. position:absolute;
  2598. align-self:flex-start;
  2599. padding:0px 0px 0px 0px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u176028_text {
  2604. border-width:0px;
  2605. white-space:nowrap;
  2606. text-transform:none;
  2607. }
  2608. #u176029_div {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:261px;
  2614. height:36px;
  2615. background:inherit;
  2616. background-color:rgba(255, 255, 255, 0);
  2617. border:none;
  2618. border-radius:0px;
  2619. -moz-box-shadow:none;
  2620. -webkit-box-shadow:none;
  2621. box-shadow:none;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:10px;
  2626. color:#7F7F7F;
  2627. line-height:18px;
  2628. }
  2629. #u176029 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:107px;
  2633. top:222px;
  2634. width:261px;
  2635. height:36px;
  2636. display:flex;
  2637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2638. font-weight:400;
  2639. font-style:normal;
  2640. font-size:10px;
  2641. color:#7F7F7F;
  2642. line-height:18px;
  2643. }
  2644. #u176029 .text {
  2645. position:absolute;
  2646. align-self:flex-start;
  2647. padding:0px 0px 0px 0px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u176029_text {
  2652. border-width:0px;
  2653. word-wrap:break-word;
  2654. text-transform:none;
  2655. }
  2656. #u176030_img {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:7px;
  2662. height:7px;
  2663. }
  2664. #u176030 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:161px;
  2668. top:266px;
  2669. width:7px;
  2670. height:7px;
  2671. display:flex;
  2672. }
  2673. #u176030 .text {
  2674. position:absolute;
  2675. align-self:center;
  2676. padding:2px 2px 2px 2px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u176030_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. visibility:hidden;
  2685. }
  2686. #u176031_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:7px;
  2692. height:7px;
  2693. }
  2694. #u176031 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:180px;
  2698. top:266px;
  2699. width:7px;
  2700. height:7px;
  2701. display:flex;
  2702. }
  2703. #u176031 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 2px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u176031_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. visibility:hidden;
  2715. }
  2716. #u176032_img {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:7px;
  2722. height:7px;
  2723. }
  2724. #u176032 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:199px;
  2728. top:266px;
  2729. width:7px;
  2730. height:7px;
  2731. display:flex;
  2732. }
  2733. #u176032 .text {
  2734. position:absolute;
  2735. align-self:center;
  2736. padding:2px 2px 2px 2px;
  2737. box-sizing:border-box;
  2738. width:100%;
  2739. }
  2740. #u176032_text {
  2741. border-width:0px;
  2742. word-wrap:break-word;
  2743. text-transform:none;
  2744. visibility:hidden;
  2745. }
  2746. #u176033_img {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:0px;
  2750. top:0px;
  2751. width:7px;
  2752. height:7px;
  2753. }
  2754. #u176033 {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:218px;
  2758. top:266px;
  2759. width:7px;
  2760. height:7px;
  2761. display:flex;
  2762. }
  2763. #u176033 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:2px 2px 2px 2px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u176033_text {
  2771. border-width:0px;
  2772. word-wrap:break-word;
  2773. text-transform:none;
  2774. visibility:hidden;
  2775. }
  2776. #u176034 {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:0px;
  2782. height:0px;
  2783. }
  2784. #u176035_div {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:357px;
  2790. height:120px;
  2791. background:inherit;
  2792. background-color:rgba(242, 242, 242, 1);
  2793. border:none;
  2794. border-bottom:0px;
  2795. border-radius:0px;
  2796. border-bottom-right-radius:0px;
  2797. border-bottom-left-radius:0px;
  2798. -moz-box-shadow:none;
  2799. -webkit-box-shadow:none;
  2800. box-shadow:none;
  2801. }
  2802. #u176035 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:38px;
  2806. top:499px;
  2807. width:357px;
  2808. height:120px;
  2809. display:flex;
  2810. }
  2811. #u176035 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 2px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u176035_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. visibility:hidden;
  2823. }
  2824. #u176036 {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:0px;
  2830. height:0px;
  2831. }
  2832. #u176037_div {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:51px;
  2838. height:17px;
  2839. background:inherit;
  2840. background-color:rgba(255, 255, 255, 0);
  2841. border:none;
  2842. border-left:0px;
  2843. border-top:0px;
  2844. border-right:0px;
  2845. border-radius:0px;
  2846. border-bottom-right-radius:0px;
  2847. border-bottom-left-radius:0px;
  2848. -moz-box-shadow:none;
  2849. -webkit-box-shadow:none;
  2850. box-shadow:none;
  2851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:12px;
  2855. }
  2856. #u176037 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:62px;
  2860. top:589px;
  2861. width:51px;
  2862. height:17px;
  2863. display:flex;
  2864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2865. font-weight:400;
  2866. font-style:normal;
  2867. font-size:12px;
  2868. }
  2869. #u176037 .text {
  2870. position:absolute;
  2871. align-self:flex-start;
  2872. padding:0px 0px 0px 0px;
  2873. box-sizing:border-box;
  2874. width:100%;
  2875. }
  2876. #u176037_text {
  2877. border-width:0px;
  2878. word-wrap:break-word;
  2879. text-transform:none;
  2880. }
  2881. #u176038_img {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:30px;
  2887. height:30px;
  2888. }
  2889. #u176038 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:72px;
  2893. top:549px;
  2894. width:30px;
  2895. height:30px;
  2896. display:flex;
  2897. }
  2898. #u176038 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 2px 2px 2px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u176038_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. visibility:hidden;
  2910. }
  2911. #u176039_div {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:57px;
  2917. height:20px;
  2918. background:inherit;
  2919. background-color:rgba(255, 255, 255, 0);
  2920. border:none;
  2921. border-left:0px;
  2922. border-top:0px;
  2923. border-right:0px;
  2924. border-radius:0px;
  2925. border-bottom-right-radius:0px;
  2926. border-bottom-left-radius:0px;
  2927. -moz-box-shadow:none;
  2928. -webkit-box-shadow:none;
  2929. box-shadow:none;
  2930. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2931. font-weight:500;
  2932. font-style:normal;
  2933. font-size:14px;
  2934. }
  2935. #u176039 {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:62px;
  2939. top:514px;
  2940. width:57px;
  2941. height:20px;
  2942. display:flex;
  2943. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2944. font-weight:500;
  2945. font-style:normal;
  2946. font-size:14px;
  2947. }
  2948. #u176039 .text {
  2949. position:absolute;
  2950. align-self:flex-start;
  2951. padding:0px 0px 0px 0px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u176039_text {
  2956. border-width:0px;
  2957. white-space:nowrap;
  2958. text-transform:none;
  2959. }
  2960. #u176040 {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:0px;
  2966. height:0px;
  2967. }
  2968. #u176041_div {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:61px;
  2974. height:17px;
  2975. background:inherit;
  2976. background-color:rgba(255, 255, 255, 0);
  2977. border:none;
  2978. border-left:0px;
  2979. border-top:0px;
  2980. border-right:0px;
  2981. border-radius:0px;
  2982. border-bottom-right-radius:0px;
  2983. border-bottom-left-radius:0px;
  2984. -moz-box-shadow:none;
  2985. -webkit-box-shadow:none;
  2986. box-shadow:none;
  2987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2988. font-weight:400;
  2989. font-style:normal;
  2990. font-size:12px;
  2991. }
  2992. #u176041 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:149px;
  2996. top:589px;
  2997. width:61px;
  2998. height:17px;
  2999. display:flex;
  3000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. font-size:12px;
  3004. }
  3005. #u176041 .text {
  3006. position:absolute;
  3007. align-self:flex-start;
  3008. padding:0px 0px 0px 0px;
  3009. box-sizing:border-box;
  3010. width:100%;
  3011. }
  3012. #u176041_text {
  3013. border-width:0px;
  3014. white-space:nowrap;
  3015. text-transform:none;
  3016. }
  3017. #u176042_img {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:0px;
  3021. top:0px;
  3022. width:30px;
  3023. height:30px;
  3024. }
  3025. #u176042 {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:164px;
  3029. top:549px;
  3030. width:30px;
  3031. height:30px;
  3032. display:flex;
  3033. }
  3034. #u176042 .text {
  3035. position:absolute;
  3036. align-self:center;
  3037. padding:2px 2px 2px 2px;
  3038. box-sizing:border-box;
  3039. width:100%;
  3040. }
  3041. #u176042_text {
  3042. border-width:0px;
  3043. word-wrap:break-word;
  3044. text-transform:none;
  3045. visibility:hidden;
  3046. }
  3047. #u176044_img {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:433px;
  3053. height:865px;
  3054. }
  3055. #u176044 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:455px;
  3059. top:0px;
  3060. width:433px;
  3061. height:865px;
  3062. display:flex;
  3063. }
  3064. #u176044 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:2px 2px 2px 2px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u176044_text {
  3072. border-width:0px;
  3073. word-wrap:break-word;
  3074. text-transform:none;
  3075. visibility:hidden;
  3076. }
  3077. #u176045_div {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:0px;
  3082. width:375px;
  3083. height:40px;
  3084. background:inherit;
  3085. background-color:rgba(255, 255, 255, 1);
  3086. box-sizing:border-box;
  3087. border-width:1px;
  3088. border-style:solid;
  3089. border-color:rgba(215, 215, 215, 1);
  3090. border-left:0px;
  3091. border-top:0px;
  3092. border-right:0px;
  3093. border-radius:0px;
  3094. border-bottom-right-radius:0px;
  3095. border-bottom-left-radius:0px;
  3096. -moz-box-shadow:none;
  3097. -webkit-box-shadow:none;
  3098. box-shadow:none;
  3099. }
  3100. #u176045 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:484px;
  3104. top:67px;
  3105. width:375px;
  3106. height:40px;
  3107. display:flex;
  3108. }
  3109. #u176045 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 2px 2px 2px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u176045_text {
  3117. border-width:0px;
  3118. word-wrap:break-word;
  3119. text-transform:none;
  3120. visibility:hidden;
  3121. }
  3122. #u176046 {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:0px;
  3128. height:0px;
  3129. }
  3130. #u176047_div {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:88px;
  3136. height:32px;
  3137. background:inherit;
  3138. background-color:rgba(255, 255, 255, 1);
  3139. box-sizing:border-box;
  3140. border-width:1px;
  3141. border-style:solid;
  3142. border-color:rgba(242, 242, 242, 1);
  3143. border-radius:33px;
  3144. -moz-box-shadow:none;
  3145. -webkit-box-shadow:none;
  3146. box-shadow:none;
  3147. }
  3148. #u176047 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:764px;
  3152. top:71px;
  3153. width:88px;
  3154. height:32px;
  3155. display:flex;
  3156. }
  3157. #u176047 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 2px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u176047_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. visibility:hidden;
  3169. }
  3170. #u176048 {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:0px;
  3176. height:0px;
  3177. }
  3178. #u176049_img {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:18px;
  3184. height:18px;
  3185. }
  3186. #u176049 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:827px;
  3190. top:78px;
  3191. width:18px;
  3192. height:18px;
  3193. display:flex;
  3194. }
  3195. #u176049 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 2px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u176049_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u176050_img {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:6px;
  3214. height:6px;
  3215. }
  3216. #u176050 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:833px;
  3220. top:84px;
  3221. width:6px;
  3222. height:6px;
  3223. display:flex;
  3224. }
  3225. #u176050 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 2px 2px 2px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u176050_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u176051 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:0px;
  3244. height:0px;
  3245. }
  3246. #u176052_img {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:5px;
  3252. height:5px;
  3253. }
  3254. #u176052 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:778px;
  3258. top:85px;
  3259. width:5px;
  3260. height:5px;
  3261. display:flex;
  3262. }
  3263. #u176052 .text {
  3264. position:absolute;
  3265. align-self:center;
  3266. padding:2px 2px 2px 2px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u176052_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. visibility:hidden;
  3275. }
  3276. #u176053_img {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:5px;
  3282. height:5px;
  3283. }
  3284. #u176053 {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:794px;
  3288. top:85px;
  3289. width:5px;
  3290. height:5px;
  3291. display:flex;
  3292. }
  3293. #u176053 .text {
  3294. position:absolute;
  3295. align-self:center;
  3296. padding:2px 2px 2px 2px;
  3297. box-sizing:border-box;
  3298. width:100%;
  3299. }
  3300. #u176053_text {
  3301. border-width:0px;
  3302. word-wrap:break-word;
  3303. text-transform:none;
  3304. visibility:hidden;
  3305. }
  3306. #u176054_img {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:7px;
  3312. height:7px;
  3313. }
  3314. #u176054 {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:785px;
  3318. top:84px;
  3319. width:7px;
  3320. height:7px;
  3321. display:flex;
  3322. }
  3323. #u176054 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 2px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u176054_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. visibility:hidden;
  3335. }
  3336. #u176055_img {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:19px;
  3342. height:2px;
  3343. }
  3344. #u176055 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:802px;
  3348. top:87px;
  3349. width:18px;
  3350. height:1px;
  3351. display:flex;
  3352. -webkit-transform:rotate(90deg);
  3353. -moz-transform:rotate(90deg);
  3354. -ms-transform:rotate(90deg);
  3355. transform:rotate(90deg);
  3356. }
  3357. #u176055 .text {
  3358. position:absolute;
  3359. align-self:center;
  3360. padding:2px 2px 2px 2px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u176055_text {
  3365. border-width:0px;
  3366. word-wrap:break-word;
  3367. text-transform:none;
  3368. visibility:hidden;
  3369. }
  3370. #u176056_img {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:375px;
  3376. height:44px;
  3377. }
  3378. #u176056 {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:484px;
  3382. top:24px;
  3383. width:375px;
  3384. height:44px;
  3385. display:flex;
  3386. }
  3387. #u176056 .text {
  3388. position:absolute;
  3389. align-self:center;
  3390. padding:2px 2px 2px 2px;
  3391. box-sizing:border-box;
  3392. width:100%;
  3393. }
  3394. #u176056_text {
  3395. border-width:0px;
  3396. word-wrap:break-word;
  3397. text-transform:none;
  3398. visibility:hidden;
  3399. }
  3400. #u176057_div {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:0px;
  3404. top:0px;
  3405. width:375px;
  3406. height:50px;
  3407. background:inherit;
  3408. background-color:rgba(255, 255, 255, 1);
  3409. box-sizing:border-box;
  3410. border-width:1px;
  3411. border-style:solid;
  3412. border-color:rgba(242, 242, 242, 1);
  3413. border-radius:26px;
  3414. border-top-left-radius:0px;
  3415. border-top-right-radius:0px;
  3416. -moz-box-shadow:none;
  3417. -webkit-box-shadow:none;
  3418. box-shadow:none;
  3419. }
  3420. #u176057 {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:484px;
  3424. top:788px;
  3425. width:375px;
  3426. height:50px;
  3427. display:flex;
  3428. }
  3429. #u176057 .text {
  3430. position:absolute;
  3431. align-self:center;
  3432. padding:2px 2px 2px 2px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u176057_text {
  3437. border-width:0px;
  3438. word-wrap:break-word;
  3439. text-transform:none;
  3440. visibility:hidden;
  3441. }
  3442. #u176058 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:0px;
  3446. top:0px;
  3447. width:0px;
  3448. height:0px;
  3449. }
  3450. #u176059_img {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:24px;
  3456. height:24px;
  3457. }
  3458. #u176059 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:524px;
  3462. top:792px;
  3463. width:24px;
  3464. height:24px;
  3465. display:flex;
  3466. font-size:8px;
  3467. }
  3468. #u176059 .text {
  3469. position:absolute;
  3470. align-self:center;
  3471. padding:2px 2px 2px 2px;
  3472. box-sizing:border-box;
  3473. width:100%;
  3474. }
  3475. #u176059_text {
  3476. border-width:0px;
  3477. word-wrap:break-word;
  3478. text-transform:none;
  3479. }
  3480. #u176060_div {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:25px;
  3486. height:17px;
  3487. background:inherit;
  3488. background-color:rgba(255, 255, 255, 0);
  3489. border:none;
  3490. border-radius:0px;
  3491. -moz-box-shadow:none;
  3492. -webkit-box-shadow:none;
  3493. box-shadow:none;
  3494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3495. font-weight:400;
  3496. font-style:normal;
  3497. font-size:12px;
  3498. }
  3499. #u176060 {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:524px;
  3503. top:817px;
  3504. width:25px;
  3505. height:17px;
  3506. display:flex;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:12px;
  3511. }
  3512. #u176060 .text {
  3513. position:absolute;
  3514. align-self:flex-start;
  3515. padding:0px 0px 0px 0px;
  3516. box-sizing:border-box;
  3517. width:100%;
  3518. }
  3519. #u176060_text {
  3520. border-width:0px;
  3521. white-space:nowrap;
  3522. text-transform:none;
  3523. }
  3524. #u176061 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:0px;
  3530. height:0px;
  3531. }
  3532. #u176062_img {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:0px;
  3536. top:0px;
  3537. width:24px;
  3538. height:24px;
  3539. }
  3540. #u176062 {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:794px;
  3544. top:794px;
  3545. width:24px;
  3546. height:24px;
  3547. display:flex;
  3548. font-size:8px;
  3549. }
  3550. #u176062 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 2px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u176062_text {
  3558. border-width:0px;
  3559. word-wrap:break-word;
  3560. text-transform:none;
  3561. }
  3562. #u176063_div {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:25px;
  3568. height:17px;
  3569. background:inherit;
  3570. background-color:rgba(255, 255, 255, 0);
  3571. border:none;
  3572. border-radius:0px;
  3573. -moz-box-shadow:none;
  3574. -webkit-box-shadow:none;
  3575. box-shadow:none;
  3576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:12px;
  3580. }
  3581. #u176063 {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:794px;
  3585. top:819px;
  3586. width:25px;
  3587. height:17px;
  3588. display:flex;
  3589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:12px;
  3593. }
  3594. #u176063 .text {
  3595. position:absolute;
  3596. align-self:flex-start;
  3597. padding:0px 0px 0px 0px;
  3598. box-sizing:border-box;
  3599. width:100%;
  3600. }
  3601. #u176063_text {
  3602. border-width:0px;
  3603. white-space:nowrap;
  3604. text-transform:none;
  3605. }
  3606. #u176064_div {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:375px;
  3612. height:681px;
  3613. background:inherit;
  3614. background-color:rgba(242, 242, 242, 0.462745098039216);
  3615. border:none;
  3616. border-radius:0px;
  3617. -moz-box-shadow:none;
  3618. -webkit-box-shadow:none;
  3619. box-shadow:none;
  3620. }
  3621. #u176064 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:484px;
  3625. top:107px;
  3626. width:375px;
  3627. height:681px;
  3628. display:flex;
  3629. }
  3630. #u176064 .text {
  3631. position:absolute;
  3632. align-self:center;
  3633. padding:2px 2px 2px 2px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u176064_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. visibility:hidden;
  3642. }
  3643. #u176065 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:0px;
  3649. height:0px;
  3650. }
  3651. #u176066_img {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:24px;
  3657. height:24px;
  3658. }
  3659. #u176066 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:706px;
  3663. top:792px;
  3664. width:24px;
  3665. height:24px;
  3666. display:flex;
  3667. font-size:8px;
  3668. }
  3669. #u176066 .text {
  3670. position:absolute;
  3671. align-self:center;
  3672. padding:2px 2px 2px 2px;
  3673. box-sizing:border-box;
  3674. width:100%;
  3675. }
  3676. #u176066_text {
  3677. border-width:0px;
  3678. word-wrap:break-word;
  3679. text-transform:none;
  3680. }
  3681. #u176067_div {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:37px;
  3687. height:17px;
  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. font-size:12px;
  3699. }
  3700. #u176067 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:700px;
  3704. top:817px;
  3705. width:37px;
  3706. height:17px;
  3707. display:flex;
  3708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3709. font-weight:400;
  3710. font-style:normal;
  3711. font-size:12px;
  3712. }
  3713. #u176067 .text {
  3714. position:absolute;
  3715. align-self:flex-start;
  3716. padding:0px 0px 0px 0px;
  3717. box-sizing:border-box;
  3718. width:100%;
  3719. }
  3720. #u176067_text {
  3721. border-width:0px;
  3722. white-space:nowrap;
  3723. text-transform:none;
  3724. }
  3725. #u176068 {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:0px;
  3731. height:0px;
  3732. }
  3733. #u176069_img {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:24px;
  3739. height:24px;
  3740. }
  3741. #u176069 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:612px;
  3745. top:792px;
  3746. width:24px;
  3747. height:24px;
  3748. display:flex;
  3749. font-size:8px;
  3750. }
  3751. #u176069 .text {
  3752. position:absolute;
  3753. align-self:center;
  3754. padding:2px 2px 2px 2px;
  3755. box-sizing:border-box;
  3756. width:100%;
  3757. }
  3758. #u176069_text {
  3759. border-width:0px;
  3760. word-wrap:break-word;
  3761. text-transform:none;
  3762. }
  3763. #u176070_div {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:37px;
  3769. height:17px;
  3770. background:inherit;
  3771. background-color:rgba(255, 255, 255, 0);
  3772. border:none;
  3773. border-radius:0px;
  3774. -moz-box-shadow:none;
  3775. -webkit-box-shadow:none;
  3776. box-shadow:none;
  3777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3778. font-weight:400;
  3779. font-style:normal;
  3780. font-size:12px;
  3781. }
  3782. #u176070 {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:606px;
  3786. top:817px;
  3787. width:37px;
  3788. height:17px;
  3789. display:flex;
  3790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3791. font-weight:400;
  3792. font-style:normal;
  3793. font-size:12px;
  3794. }
  3795. #u176070 .text {
  3796. position:absolute;
  3797. align-self:flex-start;
  3798. padding:0px 0px 0px 0px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u176070_text {
  3803. border-width:0px;
  3804. white-space:nowrap;
  3805. text-transform:none;
  3806. }
  3807. #u176071_div {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:0px;
  3811. top:0px;
  3812. width:375px;
  3813. height:734px;
  3814. background:inherit;
  3815. background-color:rgba(242, 242, 242, 1);
  3816. box-sizing:border-box;
  3817. border-width:1px;
  3818. border-style:solid;
  3819. border-color:rgba(242, 242, 242, 1);
  3820. border-radius:26px;
  3821. border-top-left-radius:0px;
  3822. border-top-right-radius:0px;
  3823. -moz-box-shadow:none;
  3824. -webkit-box-shadow:none;
  3825. box-shadow:none;
  3826. }
  3827. #u176071 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:484px;
  3831. top:105px;
  3832. width:375px;
  3833. height:734px;
  3834. display:flex;
  3835. }
  3836. #u176071 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:2px 2px 2px 2px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u176071_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. visibility:hidden;
  3848. }
  3849. #u176072 {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:0px;
  3855. height:0px;
  3856. }
  3857. #u176073_div {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:197px;
  3863. height:20px;
  3864. background:inherit;
  3865. background-color:rgba(255, 255, 255, 0);
  3866. border:none;
  3867. border-radius:0px;
  3868. -moz-box-shadow:none;
  3869. -webkit-box-shadow:none;
  3870. box-shadow:none;
  3871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3872. font-weight:400;
  3873. font-style:normal;
  3874. }
  3875. #u176073 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:500px;
  3879. top:74px;
  3880. width:197px;
  3881. height:20px;
  3882. display:flex;
  3883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3884. font-weight:400;
  3885. font-style:normal;
  3886. }
  3887. #u176073 .text {
  3888. position:absolute;
  3889. align-self:flex-start;
  3890. padding:0px 0px 0px 0px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u176073_text {
  3895. border-width:0px;
  3896. white-space:nowrap;
  3897. text-transform:none;
  3898. }
  3899. #u176074_img {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:18px;
  3905. height:14px;
  3906. }
  3907. #u176074 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:719px;
  3911. top:78px;
  3912. width:18px;
  3913. height:14px;
  3914. display:flex;
  3915. }
  3916. #u176074 .text {
  3917. position:absolute;
  3918. align-self:center;
  3919. padding:2px 2px 2px 2px;
  3920. box-sizing:border-box;
  3921. width:100%;
  3922. }
  3923. #u176074_text {
  3924. border-width:0px;
  3925. word-wrap:break-word;
  3926. text-transform:none;
  3927. visibility:hidden;
  3928. }
  3929. #u176075_div {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:29px;
  3935. height:30px;
  3936. background:inherit;
  3937. background-color:rgba(255, 255, 255, 0);
  3938. border:none;
  3939. border-left:0px;
  3940. border-top:0px;
  3941. border-right:0px;
  3942. border-radius:0px;
  3943. border-bottom-right-radius:0px;
  3944. border-bottom-left-radius:0px;
  3945. -moz-box-shadow:none;
  3946. -webkit-box-shadow:none;
  3947. box-shadow:none;
  3948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3949. font-weight:400;
  3950. font-style:normal;
  3951. }
  3952. #u176075 {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:504px;
  3956. top:105px;
  3957. width:29px;
  3958. height:30px;
  3959. display:flex;
  3960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3961. font-weight:400;
  3962. font-style:normal;
  3963. }
  3964. #u176075 .text {
  3965. position:absolute;
  3966. align-self:center;
  3967. padding:0px 0px 0px 0px;
  3968. box-sizing:border-box;
  3969. width:100%;
  3970. }
  3971. #u176075_text {
  3972. border-width:0px;
  3973. white-space:nowrap;
  3974. text-transform:none;
  3975. }
  3976. #u176076_div {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:43px;
  3982. height:30px;
  3983. background:inherit;
  3984. background-color:rgba(255, 255, 255, 0);
  3985. box-sizing:border-box;
  3986. border-width:2px;
  3987. border-style:solid;
  3988. border-color:rgba(25, 140, 251, 1);
  3989. border-left:0px;
  3990. border-top:0px;
  3991. border-right:0px;
  3992. border-radius:0px;
  3993. border-bottom-right-radius:0px;
  3994. border-bottom-left-radius:0px;
  3995. -moz-box-shadow:none;
  3996. -webkit-box-shadow:none;
  3997. box-shadow:none;
  3998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3999. font-weight:400;
  4000. font-style:normal;
  4001. color:#1890FF;
  4002. }
  4003. #u176076 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:558px;
  4007. top:105px;
  4008. width:43px;
  4009. height:30px;
  4010. display:flex;
  4011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4012. font-weight:400;
  4013. font-style:normal;
  4014. color:#1890FF;
  4015. }
  4016. #u176076 .text {
  4017. position:absolute;
  4018. align-self:center;
  4019. padding:0px 0px 0px 0px;
  4020. box-sizing:border-box;
  4021. width:100%;
  4022. }
  4023. #u176076_text {
  4024. border-width:0px;
  4025. white-space:nowrap;
  4026. text-transform:none;
  4027. }
  4028. #u176077_div {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:375px;
  4034. height:42px;
  4035. background:inherit;
  4036. background-color:rgba(255, 255, 255, 1);
  4037. border:none;
  4038. border-bottom:0px;
  4039. border-radius:0px;
  4040. border-bottom-right-radius:0px;
  4041. border-bottom-left-radius:0px;
  4042. -moz-box-shadow:none;
  4043. -webkit-box-shadow:none;
  4044. box-shadow:none;
  4045. }
  4046. #u176077 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:484px;
  4050. top:136px;
  4051. width:375px;
  4052. height:42px;
  4053. display:flex;
  4054. }
  4055. #u176077 .text {
  4056. position:absolute;
  4057. align-self:center;
  4058. padding:2px 2px 2px 2px;
  4059. box-sizing:border-box;
  4060. width:100%;
  4061. }
  4062. #u176077_text {
  4063. border-width:0px;
  4064. word-wrap:break-word;
  4065. text-transform:none;
  4066. visibility:hidden;
  4067. }
  4068. #u176078_div {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:0px;
  4072. top:0px;
  4073. width:29px;
  4074. height:30px;
  4075. background:inherit;
  4076. background-color:rgba(255, 255, 255, 0);
  4077. border:none;
  4078. border-left:0px;
  4079. border-top:0px;
  4080. border-right:0px;
  4081. border-radius:0px;
  4082. border-bottom-right-radius:0px;
  4083. border-bottom-left-radius:0px;
  4084. -moz-box-shadow:none;
  4085. -webkit-box-shadow:none;
  4086. box-shadow:none;
  4087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4088. font-weight:400;
  4089. font-style:normal;
  4090. }
  4091. #u176078 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:504px;
  4095. top:142px;
  4096. width:29px;
  4097. height:30px;
  4098. display:flex;
  4099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. }
  4103. #u176078 .text {
  4104. position:absolute;
  4105. align-self:center;
  4106. padding:0px 0px 0px 0px;
  4107. box-sizing:border-box;
  4108. width:100%;
  4109. }
  4110. #u176078_text {
  4111. border-width:0px;
  4112. white-space:nowrap;
  4113. text-transform:none;
  4114. }
  4115. #u176079_div {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:0px;
  4119. top:0px;
  4120. width:29px;
  4121. height:30px;
  4122. background:inherit;
  4123. background-color:rgba(255, 255, 255, 0);
  4124. border:none;
  4125. border-left:0px;
  4126. border-top:0px;
  4127. border-right:0px;
  4128. border-radius:0px;
  4129. border-bottom-right-radius:0px;
  4130. border-bottom-left-radius:0px;
  4131. -moz-box-shadow:none;
  4132. -webkit-box-shadow:none;
  4133. box-shadow:none;
  4134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4135. font-weight:400;
  4136. font-style:normal;
  4137. color:#1890FF;
  4138. }
  4139. #u176079 {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:553px;
  4143. top:142px;
  4144. width:29px;
  4145. height:30px;
  4146. display:flex;
  4147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4148. font-weight:400;
  4149. font-style:normal;
  4150. color:#1890FF;
  4151. }
  4152. #u176079 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:0px 0px 0px 0px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u176079_text {
  4160. border-width:0px;
  4161. white-space:nowrap;
  4162. text-transform:none;
  4163. }
  4164. #u176080_div {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:375px;
  4170. height:700px;
  4171. background:inherit;
  4172. background-color:rgba(255, 255, 255, 1);
  4173. border:none;
  4174. border-bottom:0px;
  4175. border-radius:0px;
  4176. border-bottom-right-radius:0px;
  4177. border-bottom-left-radius:0px;
  4178. -moz-box-shadow:none;
  4179. -webkit-box-shadow:none;
  4180. box-shadow:none;
  4181. }
  4182. #u176080 {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:484px;
  4186. top:179px;
  4187. width:375px;
  4188. height:700px;
  4189. display:flex;
  4190. }
  4191. #u176080 .text {
  4192. position:absolute;
  4193. align-self:center;
  4194. padding:2px 2px 2px 2px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u176080_text {
  4199. border-width:0px;
  4200. word-wrap:break-word;
  4201. text-transform:none;
  4202. visibility:hidden;
  4203. }
  4204. #u176081 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:0px;
  4210. height:0px;
  4211. }
  4212. #u176082_div {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:357px;
  4218. height:200px;
  4219. background:inherit;
  4220. background-color:rgba(242, 242, 242, 1);
  4221. border:none;
  4222. border-bottom:0px;
  4223. border-radius:0px;
  4224. border-bottom-right-radius:0px;
  4225. border-bottom-left-radius:0px;
  4226. -moz-box-shadow:none;
  4227. -webkit-box-shadow:none;
  4228. box-shadow:none;
  4229. }
  4230. #u176082 {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:493px;
  4234. top:288px;
  4235. width:357px;
  4236. height:200px;
  4237. display:flex;
  4238. }
  4239. #u176082 .text {
  4240. position:absolute;
  4241. align-self:center;
  4242. padding:2px 2px 2px 2px;
  4243. box-sizing:border-box;
  4244. width:100%;
  4245. }
  4246. #u176082_text {
  4247. border-width:0px;
  4248. word-wrap:break-word;
  4249. text-transform:none;
  4250. visibility:hidden;
  4251. }
  4252. #u176083 {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:0px;
  4256. top:0px;
  4257. width:0px;
  4258. height:0px;
  4259. }
  4260. #u176084_div {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:0px;
  4265. width:51px;
  4266. height:17px;
  4267. background:inherit;
  4268. background-color:rgba(255, 255, 255, 0);
  4269. border:none;
  4270. border-left:0px;
  4271. border-top:0px;
  4272. border-right:0px;
  4273. border-radius:0px;
  4274. border-bottom-right-radius:0px;
  4275. border-bottom-left-radius:0px;
  4276. -moz-box-shadow:none;
  4277. -webkit-box-shadow:none;
  4278. box-shadow:none;
  4279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:12px;
  4283. }
  4284. #u176084 {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:517px;
  4288. top:378px;
  4289. width:51px;
  4290. height:17px;
  4291. display:flex;
  4292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4293. font-weight:400;
  4294. font-style:normal;
  4295. font-size:12px;
  4296. }
  4297. #u176084 .text {
  4298. position:absolute;
  4299. align-self:flex-start;
  4300. padding:0px 0px 0px 0px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u176084_text {
  4305. border-width:0px;
  4306. word-wrap:break-word;
  4307. text-transform:none;
  4308. }
  4309. #u176085_img {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:0px;
  4313. top:0px;
  4314. width:30px;
  4315. height:30px;
  4316. }
  4317. #u176085 {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:527px;
  4321. top:338px;
  4322. width:30px;
  4323. height:30px;
  4324. display:flex;
  4325. }
  4326. #u176085 .text {
  4327. position:absolute;
  4328. align-self:center;
  4329. padding:2px 2px 2px 2px;
  4330. box-sizing:border-box;
  4331. width:100%;
  4332. }
  4333. #u176085_text {
  4334. border-width:0px;
  4335. word-wrap:break-word;
  4336. text-transform:none;
  4337. visibility:hidden;
  4338. }
  4339. #u176086_div {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:57px;
  4345. height:20px;
  4346. background:inherit;
  4347. background-color:rgba(255, 255, 255, 0);
  4348. border:none;
  4349. border-left:0px;
  4350. border-top:0px;
  4351. border-right:0px;
  4352. border-radius:0px;
  4353. border-bottom-right-radius:0px;
  4354. border-bottom-left-radius:0px;
  4355. -moz-box-shadow:none;
  4356. -webkit-box-shadow:none;
  4357. box-shadow:none;
  4358. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4359. font-weight:500;
  4360. font-style:normal;
  4361. font-size:14px;
  4362. }
  4363. #u176086 {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:517px;
  4367. top:303px;
  4368. width:57px;
  4369. height:20px;
  4370. display:flex;
  4371. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4372. font-weight:500;
  4373. font-style:normal;
  4374. font-size:14px;
  4375. }
  4376. #u176086 .text {
  4377. position:absolute;
  4378. align-self:flex-start;
  4379. padding:0px 0px 0px 0px;
  4380. box-sizing:border-box;
  4381. width:100%;
  4382. }
  4383. #u176086_text {
  4384. border-width:0px;
  4385. white-space:nowrap;
  4386. text-transform:none;
  4387. }
  4388. #u176087 {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:0px;
  4392. top:0px;
  4393. width:0px;
  4394. height:0px;
  4395. }
  4396. #u176088 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:0px;
  4400. top:0px;
  4401. width:0px;
  4402. height:0px;
  4403. }
  4404. #u176089 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:0px;
  4410. height:0px;
  4411. }
  4412. #u176090_div {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:61px;
  4418. height:17px;
  4419. background:inherit;
  4420. background-color:rgba(255, 255, 255, 0);
  4421. border:none;
  4422. border-left:0px;
  4423. border-top:0px;
  4424. border-right:0px;
  4425. border-radius:0px;
  4426. border-bottom-right-radius:0px;
  4427. border-bottom-left-radius:0px;
  4428. -moz-box-shadow:none;
  4429. -webkit-box-shadow:none;
  4430. box-shadow:none;
  4431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4432. font-weight:400;
  4433. font-style:normal;
  4434. font-size:12px;
  4435. }
  4436. #u176090 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:512px;
  4440. top:455px;
  4441. width:61px;
  4442. height:17px;
  4443. display:flex;
  4444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:12px;
  4448. }
  4449. #u176090 .text {
  4450. position:absolute;
  4451. align-self:flex-start;
  4452. padding:0px 0px 0px 0px;
  4453. box-sizing:border-box;
  4454. width:100%;
  4455. }
  4456. #u176090_text {
  4457. border-width:0px;
  4458. white-space:nowrap;
  4459. text-transform:none;
  4460. }
  4461. #u176091_img {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:30px;
  4467. height:30px;
  4468. }
  4469. #u176091 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:528px;
  4473. top:415px;
  4474. width:30px;
  4475. height:30px;
  4476. display:flex;
  4477. }
  4478. #u176091 .text {
  4479. position:absolute;
  4480. align-self:center;
  4481. padding:2px 2px 2px 2px;
  4482. box-sizing:border-box;
  4483. width:100%;
  4484. }
  4485. #u176091_text {
  4486. border-width:0px;
  4487. word-wrap:break-word;
  4488. text-transform:none;
  4489. visibility:hidden;
  4490. }
  4491. #u176092_div {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:0px;
  4495. top:0px;
  4496. width:13px;
  4497. height:17px;
  4498. background:inherit;
  4499. background-color:rgba(217, 0, 27, 1);
  4500. border:none;
  4501. border-radius:4px;
  4502. -moz-box-shadow:none;
  4503. -webkit-box-shadow:none;
  4504. box-shadow:none;
  4505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4506. font-weight:400;
  4507. font-style:normal;
  4508. font-size:12px;
  4509. color:#FFFFFF;
  4510. }
  4511. #u176092 {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:552px;
  4515. top:405px;
  4516. width:13px;
  4517. height:17px;
  4518. display:flex;
  4519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4520. font-weight:400;
  4521. font-style:normal;
  4522. font-size:12px;
  4523. color:#FFFFFF;
  4524. }
  4525. #u176092 .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. #u176092_text {
  4533. border-width:0px;
  4534. white-space:nowrap;
  4535. text-transform:none;
  4536. }
  4537. #u176093 {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:0px;
  4541. top:0px;
  4542. width:0px;
  4543. height:0px;
  4544. }
  4545. #u176094_div {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:0px;
  4549. top:0px;
  4550. width:49px;
  4551. height:17px;
  4552. background:inherit;
  4553. background-color:rgba(255, 255, 255, 0);
  4554. border:none;
  4555. border-left:0px;
  4556. border-top:0px;
  4557. border-right:0px;
  4558. border-radius:0px;
  4559. border-bottom-right-radius:0px;
  4560. border-bottom-left-radius:0px;
  4561. -moz-box-shadow:none;
  4562. -webkit-box-shadow:none;
  4563. box-shadow:none;
  4564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4565. font-weight:400;
  4566. font-style:normal;
  4567. font-size:12px;
  4568. }
  4569. #u176094 {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:700px;
  4573. top:378px;
  4574. width:49px;
  4575. height:17px;
  4576. display:flex;
  4577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4578. font-weight:400;
  4579. font-style:normal;
  4580. font-size:12px;
  4581. }
  4582. #u176094 .text {
  4583. position:absolute;
  4584. align-self:flex-start;
  4585. padding:0px 0px 0px 0px;
  4586. box-sizing:border-box;
  4587. width:100%;
  4588. }
  4589. #u176094_text {
  4590. border-width:0px;
  4591. white-space:nowrap;
  4592. text-transform:none;
  4593. }
  4594. #u176095_img {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:30px;
  4600. height:30px;
  4601. }
  4602. #u176095 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:709px;
  4606. top:338px;
  4607. width:30px;
  4608. height:30px;
  4609. display:flex;
  4610. }
  4611. #u176095 .text {
  4612. position:absolute;
  4613. align-self:center;
  4614. padding:2px 2px 2px 2px;
  4615. box-sizing:border-box;
  4616. width:100%;
  4617. }
  4618. #u176095_text {
  4619. border-width:0px;
  4620. word-wrap:break-word;
  4621. text-transform:none;
  4622. visibility:hidden;
  4623. }
  4624. #u176096 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:0px;
  4630. height:0px;
  4631. }
  4632. #u176097_div {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:0px;
  4636. top:0px;
  4637. width:51px;
  4638. height:17px;
  4639. background:inherit;
  4640. background-color:rgba(255, 255, 255, 0);
  4641. border:none;
  4642. border-left:0px;
  4643. border-top:0px;
  4644. border-right:0px;
  4645. border-radius:0px;
  4646. border-bottom-right-radius:0px;
  4647. border-bottom-left-radius:0px;
  4648. -moz-box-shadow:none;
  4649. -webkit-box-shadow:none;
  4650. box-shadow:none;
  4651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4652. font-weight:400;
  4653. font-style:normal;
  4654. font-size:12px;
  4655. }
  4656. #u176097 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:790px;
  4660. top:378px;
  4661. width:51px;
  4662. height:17px;
  4663. display:flex;
  4664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. font-size:12px;
  4668. }
  4669. #u176097 .text {
  4670. position:absolute;
  4671. align-self:flex-start;
  4672. padding:0px 0px 0px 0px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u176097_text {
  4677. border-width:0px;
  4678. word-wrap:break-word;
  4679. text-transform:none;
  4680. }
  4681. #u176098_img {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:30px;
  4687. height:30px;
  4688. }
  4689. #u176098 {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:800px;
  4693. top:338px;
  4694. width:30px;
  4695. height:30px;
  4696. display:flex;
  4697. }
  4698. #u176098 .text {
  4699. position:absolute;
  4700. align-self:center;
  4701. padding:2px 2px 2px 2px;
  4702. box-sizing:border-box;
  4703. width:100%;
  4704. }
  4705. #u176098_text {
  4706. border-width:0px;
  4707. word-wrap:break-word;
  4708. text-transform:none;
  4709. visibility:hidden;
  4710. }
  4711. #u176099 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:0px;
  4715. top:0px;
  4716. width:0px;
  4717. height:0px;
  4718. }
  4719. #u176100_div {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:51px;
  4725. height:17px;
  4726. background:inherit;
  4727. background-color:rgba(255, 255, 255, 0);
  4728. border:none;
  4729. border-left:0px;
  4730. border-top:0px;
  4731. border-right:0px;
  4732. border-radius:0px;
  4733. border-bottom-right-radius:0px;
  4734. border-bottom-left-radius:0px;
  4735. -moz-box-shadow:none;
  4736. -webkit-box-shadow:none;
  4737. box-shadow:none;
  4738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4739. font-weight:400;
  4740. font-style:normal;
  4741. font-size:12px;
  4742. }
  4743. #u176100 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:609px;
  4747. top:378px;
  4748. width:51px;
  4749. height:17px;
  4750. display:flex;
  4751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4752. font-weight:400;
  4753. font-style:normal;
  4754. font-size:12px;
  4755. }
  4756. #u176100 .text {
  4757. position:absolute;
  4758. align-self:flex-start;
  4759. padding:0px 0px 0px 0px;
  4760. box-sizing:border-box;
  4761. width:100%;
  4762. }
  4763. #u176100_text {
  4764. border-width:0px;
  4765. word-wrap:break-word;
  4766. text-transform:none;
  4767. }
  4768. #u176101_img {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:30px;
  4774. height:30px;
  4775. }
  4776. #u176101 {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:619px;
  4780. top:338px;
  4781. width:30px;
  4782. height:30px;
  4783. display:flex;
  4784. }
  4785. #u176101 .text {
  4786. position:absolute;
  4787. align-self:center;
  4788. padding:2px 2px 2px 2px;
  4789. box-sizing:border-box;
  4790. width:100%;
  4791. }
  4792. #u176101_text {
  4793. border-width:0px;
  4794. word-wrap:break-word;
  4795. text-transform:none;
  4796. visibility:hidden;
  4797. }
  4798. #u176102 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:0px;
  4804. height:0px;
  4805. }
  4806. #u176103_div {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:0px;
  4810. top:0px;
  4811. width:361px;
  4812. height:90px;
  4813. background:inherit;
  4814. background-color:rgba(255, 255, 255, 1);
  4815. box-sizing:border-box;
  4816. border-width:1px;
  4817. border-style:solid;
  4818. border-color:rgba(242, 242, 242, 1);
  4819. border-radius:4px;
  4820. -moz-box-shadow:none;
  4821. -webkit-box-shadow:none;
  4822. box-shadow:none;
  4823. }
  4824. #u176103 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:491px;
  4828. top:188px;
  4829. width:361px;
  4830. height:90px;
  4831. display:flex;
  4832. }
  4833. #u176103 .text {
  4834. position:absolute;
  4835. align-self:center;
  4836. padding:2px 2px 2px 2px;
  4837. box-sizing:border-box;
  4838. width:100%;
  4839. }
  4840. #u176103_text {
  4841. border-width:0px;
  4842. word-wrap:break-word;
  4843. text-transform:none;
  4844. visibility:hidden;
  4845. }
  4846. #u176104_div {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:37px;
  4852. height:50px;
  4853. background:inherit;
  4854. background-color:rgba(255, 255, 255, 0);
  4855. border:none;
  4856. border-radius:0px;
  4857. -moz-box-shadow:none;
  4858. -webkit-box-shadow:none;
  4859. box-shadow:none;
  4860. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4861. font-weight:650;
  4862. font-style:normal;
  4863. font-size:18px;
  4864. color:#298FFF;
  4865. }
  4866. #u176104 {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:510px;
  4870. top:202px;
  4871. width:37px;
  4872. height:50px;
  4873. display:flex;
  4874. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4875. font-weight:650;
  4876. font-style:normal;
  4877. font-size:18px;
  4878. color:#298FFF;
  4879. }
  4880. #u176104 .text {
  4881. position:absolute;
  4882. align-self:flex-start;
  4883. padding:0px 0px 0px 0px;
  4884. box-sizing:border-box;
  4885. width:100%;
  4886. }
  4887. #u176104_text {
  4888. border-width:0px;
  4889. white-space:nowrap;
  4890. text-transform:none;
  4891. }
  4892. #u176105_div {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:0px;
  4896. top:0px;
  4897. width:149px;
  4898. height:18px;
  4899. background:inherit;
  4900. background-color:rgba(255, 255, 255, 0);
  4901. border:none;
  4902. border-radius:0px;
  4903. -moz-box-shadow:none;
  4904. -webkit-box-shadow:none;
  4905. box-shadow:none;
  4906. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4907. font-weight:500;
  4908. font-style:normal;
  4909. }
  4910. #u176105 {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:562px;
  4914. top:198px;
  4915. width:149px;
  4916. height:18px;
  4917. display:flex;
  4918. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4919. font-weight:500;
  4920. font-style:normal;
  4921. }
  4922. #u176105 .text {
  4923. position:absolute;
  4924. align-self:flex-start;
  4925. padding:0px 0px 0px 0px;
  4926. box-sizing:border-box;
  4927. width:100%;
  4928. }
  4929. #u176105_text {
  4930. border-width:0px;
  4931. white-space:nowrap;
  4932. text-transform:none;
  4933. }
  4934. #u176106_div {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:0px;
  4938. top:0px;
  4939. width:261px;
  4940. height:36px;
  4941. background:inherit;
  4942. background-color:rgba(255, 255, 255, 0);
  4943. border:none;
  4944. border-radius:0px;
  4945. -moz-box-shadow:none;
  4946. -webkit-box-shadow:none;
  4947. box-shadow:none;
  4948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4949. font-weight:400;
  4950. font-style:normal;
  4951. font-size:10px;
  4952. color:#7F7F7F;
  4953. line-height:18px;
  4954. }
  4955. #u176106 {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:562px;
  4959. top:221px;
  4960. width:261px;
  4961. height:36px;
  4962. display:flex;
  4963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4964. font-weight:400;
  4965. font-style:normal;
  4966. font-size:10px;
  4967. color:#7F7F7F;
  4968. line-height:18px;
  4969. }
  4970. #u176106 .text {
  4971. position:absolute;
  4972. align-self:flex-start;
  4973. padding:0px 0px 0px 0px;
  4974. box-sizing:border-box;
  4975. width:100%;
  4976. }
  4977. #u176106_text {
  4978. border-width:0px;
  4979. word-wrap:break-word;
  4980. text-transform:none;
  4981. }
  4982. #u176107_img {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:0px;
  4986. top:0px;
  4987. width:7px;
  4988. height:7px;
  4989. }
  4990. #u176107 {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:616px;
  4994. top:265px;
  4995. width:7px;
  4996. height:7px;
  4997. display:flex;
  4998. }
  4999. #u176107 .text {
  5000. position:absolute;
  5001. align-self:center;
  5002. padding:2px 2px 2px 2px;
  5003. box-sizing:border-box;
  5004. width:100%;
  5005. }
  5006. #u176107_text {
  5007. border-width:0px;
  5008. word-wrap:break-word;
  5009. text-transform:none;
  5010. visibility:hidden;
  5011. }
  5012. #u176108_img {
  5013. border-width:0px;
  5014. position:absolute;
  5015. left:0px;
  5016. top:0px;
  5017. width:7px;
  5018. height:7px;
  5019. }
  5020. #u176108 {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:635px;
  5024. top:265px;
  5025. width:7px;
  5026. height:7px;
  5027. display:flex;
  5028. }
  5029. #u176108 .text {
  5030. position:absolute;
  5031. align-self:center;
  5032. padding:2px 2px 2px 2px;
  5033. box-sizing:border-box;
  5034. width:100%;
  5035. }
  5036. #u176108_text {
  5037. border-width:0px;
  5038. word-wrap:break-word;
  5039. text-transform:none;
  5040. visibility:hidden;
  5041. }
  5042. #u176109_img {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:0px;
  5046. top:0px;
  5047. width:7px;
  5048. height:7px;
  5049. }
  5050. #u176109 {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:654px;
  5054. top:265px;
  5055. width:7px;
  5056. height:7px;
  5057. display:flex;
  5058. }
  5059. #u176109 .text {
  5060. position:absolute;
  5061. align-self:center;
  5062. padding:2px 2px 2px 2px;
  5063. box-sizing:border-box;
  5064. width:100%;
  5065. }
  5066. #u176109_text {
  5067. border-width:0px;
  5068. word-wrap:break-word;
  5069. text-transform:none;
  5070. visibility:hidden;
  5071. }
  5072. #u176110_img {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:7px;
  5078. height:7px;
  5079. }
  5080. #u176110 {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:673px;
  5084. top:265px;
  5085. width:7px;
  5086. height:7px;
  5087. display:flex;
  5088. }
  5089. #u176110 .text {
  5090. position:absolute;
  5091. align-self:center;
  5092. padding:2px 2px 2px 2px;
  5093. box-sizing:border-box;
  5094. width:100%;
  5095. }
  5096. #u176110_text {
  5097. border-width:0px;
  5098. word-wrap:break-word;
  5099. text-transform:none;
  5100. visibility:hidden;
  5101. }
  5102. #u176111 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:0px;
  5108. height:0px;
  5109. }
  5110. #u176112_div {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:357px;
  5116. height:120px;
  5117. background:inherit;
  5118. background-color:rgba(242, 242, 242, 1);
  5119. border:none;
  5120. border-bottom:0px;
  5121. border-radius:0px;
  5122. border-bottom-right-radius:0px;
  5123. border-bottom-left-radius:0px;
  5124. -moz-box-shadow:none;
  5125. -webkit-box-shadow:none;
  5126. box-shadow:none;
  5127. }
  5128. #u176112 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:493px;
  5132. top:498px;
  5133. width:357px;
  5134. height:120px;
  5135. display:flex;
  5136. }
  5137. #u176112 .text {
  5138. position:absolute;
  5139. align-self:center;
  5140. padding:2px 2px 2px 2px;
  5141. box-sizing:border-box;
  5142. width:100%;
  5143. }
  5144. #u176112_text {
  5145. border-width:0px;
  5146. word-wrap:break-word;
  5147. text-transform:none;
  5148. visibility:hidden;
  5149. }
  5150. #u176113 {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:0px;
  5156. height:0px;
  5157. }
  5158. #u176114_div {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:0px;
  5162. top:0px;
  5163. width:51px;
  5164. height:17px;
  5165. background:inherit;
  5166. background-color:rgba(255, 255, 255, 0);
  5167. border:none;
  5168. border-left:0px;
  5169. border-top:0px;
  5170. border-right:0px;
  5171. border-radius:0px;
  5172. border-bottom-right-radius:0px;
  5173. border-bottom-left-radius:0px;
  5174. -moz-box-shadow:none;
  5175. -webkit-box-shadow:none;
  5176. box-shadow:none;
  5177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. font-size:12px;
  5181. }
  5182. #u176114 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:517px;
  5186. top:588px;
  5187. width:51px;
  5188. height:17px;
  5189. display:flex;
  5190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:12px;
  5194. }
  5195. #u176114 .text {
  5196. position:absolute;
  5197. align-self:flex-start;
  5198. padding:0px 0px 0px 0px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u176114_text {
  5203. border-width:0px;
  5204. word-wrap:break-word;
  5205. text-transform:none;
  5206. }
  5207. #u176115_img {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:30px;
  5213. height:30px;
  5214. }
  5215. #u176115 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:527px;
  5219. top:548px;
  5220. width:30px;
  5221. height:30px;
  5222. display:flex;
  5223. }
  5224. #u176115 .text {
  5225. position:absolute;
  5226. align-self:center;
  5227. padding:2px 2px 2px 2px;
  5228. box-sizing:border-box;
  5229. width:100%;
  5230. }
  5231. #u176115_text {
  5232. border-width:0px;
  5233. word-wrap:break-word;
  5234. text-transform:none;
  5235. visibility:hidden;
  5236. }
  5237. #u176116_div {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:57px;
  5243. height:20px;
  5244. background:inherit;
  5245. background-color:rgba(255, 255, 255, 0);
  5246. border:none;
  5247. border-left:0px;
  5248. border-top:0px;
  5249. border-right:0px;
  5250. border-radius:0px;
  5251. border-bottom-right-radius:0px;
  5252. border-bottom-left-radius:0px;
  5253. -moz-box-shadow:none;
  5254. -webkit-box-shadow:none;
  5255. box-shadow:none;
  5256. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5257. font-weight:500;
  5258. font-style:normal;
  5259. font-size:14px;
  5260. }
  5261. #u176116 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:517px;
  5265. top:513px;
  5266. width:57px;
  5267. height:20px;
  5268. display:flex;
  5269. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5270. font-weight:500;
  5271. font-style:normal;
  5272. font-size:14px;
  5273. }
  5274. #u176116 .text {
  5275. position:absolute;
  5276. align-self:flex-start;
  5277. padding:0px 0px 0px 0px;
  5278. box-sizing:border-box;
  5279. width:100%;
  5280. }
  5281. #u176116_text {
  5282. border-width:0px;
  5283. white-space:nowrap;
  5284. text-transform:none;
  5285. }
  5286. #u176117 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:0px;
  5292. height:0px;
  5293. }
  5294. #u176118_div {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:61px;
  5300. height:17px;
  5301. background:inherit;
  5302. background-color:rgba(255, 255, 255, 0);
  5303. border:none;
  5304. border-left:0px;
  5305. border-top:0px;
  5306. border-right:0px;
  5307. border-radius:0px;
  5308. border-bottom-right-radius:0px;
  5309. border-bottom-left-radius:0px;
  5310. -moz-box-shadow:none;
  5311. -webkit-box-shadow:none;
  5312. box-shadow:none;
  5313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. font-size:12px;
  5317. }
  5318. #u176118 {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:604px;
  5322. top:588px;
  5323. width:61px;
  5324. height:17px;
  5325. display:flex;
  5326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5327. font-weight:400;
  5328. font-style:normal;
  5329. font-size:12px;
  5330. }
  5331. #u176118 .text {
  5332. position:absolute;
  5333. align-self:flex-start;
  5334. padding:0px 0px 0px 0px;
  5335. box-sizing:border-box;
  5336. width:100%;
  5337. }
  5338. #u176118_text {
  5339. border-width:0px;
  5340. white-space:nowrap;
  5341. text-transform:none;
  5342. }
  5343. #u176119_img {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:0px;
  5347. top:0px;
  5348. width:30px;
  5349. height:30px;
  5350. }
  5351. #u176119 {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:619px;
  5355. top:548px;
  5356. width:30px;
  5357. height:30px;
  5358. display:flex;
  5359. }
  5360. #u176119 .text {
  5361. position:absolute;
  5362. align-self:center;
  5363. padding:2px 2px 2px 2px;
  5364. box-sizing:border-box;
  5365. width:100%;
  5366. }
  5367. #u176119_text {
  5368. border-width:0px;
  5369. word-wrap:break-word;
  5370. text-transform:none;
  5371. visibility:hidden;
  5372. }
  5373. #u176120 {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:0px;
  5377. top:0px;
  5378. width:0px;
  5379. height:0px;
  5380. }
  5381. #u176121_div {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:357px;
  5387. height:200px;
  5388. background:inherit;
  5389. background-color:rgba(242, 242, 242, 1);
  5390. border:none;
  5391. border-bottom:0px;
  5392. border-radius:0px;
  5393. border-bottom-right-radius:0px;
  5394. border-bottom-left-radius:0px;
  5395. -moz-box-shadow:none;
  5396. -webkit-box-shadow:none;
  5397. box-shadow:none;
  5398. }
  5399. #u176121 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:493px;
  5403. top:628px;
  5404. width:357px;
  5405. height:200px;
  5406. display:flex;
  5407. }
  5408. #u176121 .text {
  5409. position:absolute;
  5410. align-self:center;
  5411. padding:2px 2px 2px 2px;
  5412. box-sizing:border-box;
  5413. width:100%;
  5414. }
  5415. #u176121_text {
  5416. border-width:0px;
  5417. word-wrap:break-word;
  5418. text-transform:none;
  5419. visibility:hidden;
  5420. }
  5421. #u176122 {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:0px;
  5427. height:0px;
  5428. }
  5429. #u176123_div {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:61px;
  5435. height:17px;
  5436. background:inherit;
  5437. background-color:rgba(255, 255, 255, 0);
  5438. border:none;
  5439. border-left:0px;
  5440. border-top:0px;
  5441. border-right:0px;
  5442. border-radius:0px;
  5443. border-bottom-right-radius:0px;
  5444. border-bottom-left-radius:0px;
  5445. -moz-box-shadow:none;
  5446. -webkit-box-shadow:none;
  5447. box-shadow:none;
  5448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. font-size:12px;
  5452. }
  5453. #u176123 {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:512px;
  5457. top:718px;
  5458. width:61px;
  5459. height:17px;
  5460. display:flex;
  5461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5462. font-weight:400;
  5463. font-style:normal;
  5464. font-size:12px;
  5465. }
  5466. #u176123 .text {
  5467. position:absolute;
  5468. align-self:flex-start;
  5469. padding:0px 0px 0px 0px;
  5470. box-sizing:border-box;
  5471. width:100%;
  5472. }
  5473. #u176123_text {
  5474. border-width:0px;
  5475. white-space:nowrap;
  5476. text-transform:none;
  5477. }
  5478. #u176124_img {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:30px;
  5484. height:30px;
  5485. }
  5486. #u176124 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:527px;
  5490. top:678px;
  5491. width:30px;
  5492. height:30px;
  5493. display:flex;
  5494. }
  5495. #u176124 .text {
  5496. position:absolute;
  5497. align-self:center;
  5498. padding:2px 2px 2px 2px;
  5499. box-sizing:border-box;
  5500. width:100%;
  5501. }
  5502. #u176124_text {
  5503. border-width:0px;
  5504. word-wrap:break-word;
  5505. text-transform:none;
  5506. visibility:hidden;
  5507. }
  5508. #u176125_div {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:0px;
  5512. top:0px;
  5513. width:57px;
  5514. height:20px;
  5515. background:inherit;
  5516. background-color:rgba(255, 255, 255, 0);
  5517. border:none;
  5518. border-left:0px;
  5519. border-top:0px;
  5520. border-right:0px;
  5521. border-radius:0px;
  5522. border-bottom-right-radius:0px;
  5523. border-bottom-left-radius:0px;
  5524. -moz-box-shadow:none;
  5525. -webkit-box-shadow:none;
  5526. box-shadow:none;
  5527. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5528. font-weight:500;
  5529. font-style:normal;
  5530. font-size:14px;
  5531. }
  5532. #u176125 {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:517px;
  5536. top:643px;
  5537. width:57px;
  5538. height:20px;
  5539. display:flex;
  5540. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5541. font-weight:500;
  5542. font-style:normal;
  5543. font-size:14px;
  5544. }
  5545. #u176125 .text {
  5546. position:absolute;
  5547. align-self:flex-start;
  5548. padding:0px 0px 0px 0px;
  5549. box-sizing:border-box;
  5550. width:100%;
  5551. }
  5552. #u176125_text {
  5553. border-width:0px;
  5554. white-space:nowrap;
  5555. text-transform:none;
  5556. }
  5557. #u176126 {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:0px;
  5561. top:0px;
  5562. width:0px;
  5563. height:0px;
  5564. }
  5565. #u176127_div {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:49px;
  5571. height:17px;
  5572. background:inherit;
  5573. background-color:rgba(255, 255, 255, 0);
  5574. border:none;
  5575. border-left:0px;
  5576. border-top:0px;
  5577. border-right:0px;
  5578. border-radius:0px;
  5579. border-bottom-right-radius:0px;
  5580. border-bottom-left-radius:0px;
  5581. -moz-box-shadow:none;
  5582. -webkit-box-shadow:none;
  5583. box-shadow:none;
  5584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:12px;
  5588. }
  5589. #u176127 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:610px;
  5593. top:718px;
  5594. width:49px;
  5595. height:17px;
  5596. display:flex;
  5597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5598. font-weight:400;
  5599. font-style:normal;
  5600. font-size:12px;
  5601. }
  5602. #u176127 .text {
  5603. position:absolute;
  5604. align-self:flex-start;
  5605. padding:0px 0px 0px 0px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u176127_text {
  5610. border-width:0px;
  5611. white-space:nowrap;
  5612. text-transform:none;
  5613. }
  5614. #u176128_img {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:0px;
  5618. top:0px;
  5619. width:30px;
  5620. height:30px;
  5621. }
  5622. #u176128 {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:619px;
  5626. top:678px;
  5627. width:30px;
  5628. height:30px;
  5629. display:flex;
  5630. }
  5631. #u176128 .text {
  5632. position:absolute;
  5633. align-self:center;
  5634. padding:2px 2px 2px 2px;
  5635. box-sizing:border-box;
  5636. width:100%;
  5637. }
  5638. #u176128_text {
  5639. border-width:0px;
  5640. word-wrap:break-word;
  5641. text-transform:none;
  5642. visibility:hidden;
  5643. }
  5644. #u176129 {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:0px;
  5650. height:0px;
  5651. }
  5652. #u176130_div {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:0px;
  5656. top:0px;
  5657. width:49px;
  5658. height:17px;
  5659. background:inherit;
  5660. background-color:rgba(255, 255, 255, 0);
  5661. border:none;
  5662. border-left:0px;
  5663. border-top:0px;
  5664. border-right:0px;
  5665. border-radius:0px;
  5666. border-bottom-right-radius:0px;
  5667. border-bottom-left-radius:0px;
  5668. -moz-box-shadow:none;
  5669. -webkit-box-shadow:none;
  5670. box-shadow:none;
  5671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:12px;
  5675. }
  5676. #u176130 {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:698px;
  5680. top:718px;
  5681. width:49px;
  5682. height:17px;
  5683. display:flex;
  5684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5685. font-weight:400;
  5686. font-style:normal;
  5687. font-size:12px;
  5688. }
  5689. #u176130 .text {
  5690. position:absolute;
  5691. align-self:flex-start;
  5692. padding:0px 0px 0px 0px;
  5693. box-sizing:border-box;
  5694. width:100%;
  5695. }
  5696. #u176130_text {
  5697. border-width:0px;
  5698. white-space:nowrap;
  5699. text-transform:none;
  5700. }
  5701. #u176131_img {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:0px;
  5705. top:0px;
  5706. width:30px;
  5707. height:30px;
  5708. }
  5709. #u176131 {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:708px;
  5713. top:678px;
  5714. width:30px;
  5715. height:30px;
  5716. display:flex;
  5717. }
  5718. #u176131 .text {
  5719. position:absolute;
  5720. align-self:center;
  5721. padding:2px 2px 2px 2px;
  5722. box-sizing:border-box;
  5723. width:100%;
  5724. }
  5725. #u176131_text {
  5726. border-width:0px;
  5727. word-wrap:break-word;
  5728. text-transform:none;
  5729. visibility:hidden;
  5730. }
  5731. #u176132 {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:0px;
  5735. top:0px;
  5736. width:0px;
  5737. height:0px;
  5738. }
  5739. #u176133_div {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:0px;
  5743. top:0px;
  5744. width:49px;
  5745. height:17px;
  5746. background:inherit;
  5747. background-color:rgba(255, 255, 255, 0);
  5748. border:none;
  5749. border-left:0px;
  5750. border-top:0px;
  5751. border-right:0px;
  5752. border-radius:0px;
  5753. border-bottom-right-radius:0px;
  5754. border-bottom-left-radius:0px;
  5755. -moz-box-shadow:none;
  5756. -webkit-box-shadow:none;
  5757. box-shadow:none;
  5758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5759. font-weight:400;
  5760. font-style:normal;
  5761. font-size:12px;
  5762. }
  5763. #u176133 {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:785px;
  5767. top:718px;
  5768. width:49px;
  5769. height:17px;
  5770. display:flex;
  5771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5772. font-weight:400;
  5773. font-style:normal;
  5774. font-size:12px;
  5775. }
  5776. #u176133 .text {
  5777. position:absolute;
  5778. align-self:flex-start;
  5779. padding:0px 0px 0px 0px;
  5780. box-sizing:border-box;
  5781. width:100%;
  5782. }
  5783. #u176133_text {
  5784. border-width:0px;
  5785. white-space:nowrap;
  5786. text-transform:none;
  5787. }
  5788. #u176134_img {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:30px;
  5794. height:30px;
  5795. }
  5796. #u176134 {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:795px;
  5800. top:678px;
  5801. width:30px;
  5802. height:30px;
  5803. display:flex;
  5804. }
  5805. #u176134 .text {
  5806. position:absolute;
  5807. align-self:center;
  5808. padding:2px 2px 2px 2px;
  5809. box-sizing:border-box;
  5810. width:100%;
  5811. }
  5812. #u176134_text {
  5813. border-width:0px;
  5814. word-wrap:break-word;
  5815. text-transform:none;
  5816. visibility:hidden;
  5817. }
  5818. #u176135 {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:0px;
  5824. height:0px;
  5825. }
  5826. #u176136_div {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:49px;
  5832. height:17px;
  5833. background:inherit;
  5834. background-color:rgba(255, 255, 255, 0);
  5835. border:none;
  5836. border-left:0px;
  5837. border-top:0px;
  5838. border-right:0px;
  5839. border-radius:0px;
  5840. border-bottom-right-radius:0px;
  5841. border-bottom-left-radius:0px;
  5842. -moz-box-shadow:none;
  5843. -webkit-box-shadow:none;
  5844. box-shadow:none;
  5845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5846. font-weight:400;
  5847. font-style:normal;
  5848. font-size:12px;
  5849. }
  5850. #u176136 {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:517px;
  5854. top:792px;
  5855. width:49px;
  5856. height:17px;
  5857. display:flex;
  5858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:12px;
  5862. }
  5863. #u176136 .text {
  5864. position:absolute;
  5865. align-self:flex-start;
  5866. padding:0px 0px 0px 0px;
  5867. box-sizing:border-box;
  5868. width:100%;
  5869. }
  5870. #u176136_text {
  5871. border-width:0px;
  5872. white-space:nowrap;
  5873. text-transform:none;
  5874. }
  5875. #u176137_img {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:0px;
  5879. top:0px;
  5880. width:30px;
  5881. height:30px;
  5882. }
  5883. #u176137 {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:529px;
  5887. top:752px;
  5888. width:30px;
  5889. height:30px;
  5890. display:flex;
  5891. }
  5892. #u176137 .text {
  5893. position:absolute;
  5894. align-self:center;
  5895. padding:2px 2px 2px 2px;
  5896. box-sizing:border-box;
  5897. width:100%;
  5898. }
  5899. #u176137_text {
  5900. border-width:0px;
  5901. word-wrap:break-word;
  5902. text-transform:none;
  5903. visibility:hidden;
  5904. }
  5905. #u176138 {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:0px;
  5911. height:0px;
  5912. }
  5913. #u176139_div {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:375px;
  5919. height:50px;
  5920. background:inherit;
  5921. background-color:rgba(255, 255, 255, 1);
  5922. box-sizing:border-box;
  5923. border-width:1px;
  5924. border-style:solid;
  5925. border-color:rgba(242, 242, 242, 1);
  5926. border-radius:26px;
  5927. border-top-left-radius:0px;
  5928. border-top-right-radius:0px;
  5929. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5930. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5931. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5932. }
  5933. #u176139 {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:484px;
  5937. top:829px;
  5938. width:375px;
  5939. height:50px;
  5940. display:flex;
  5941. }
  5942. #u176139 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:2px 2px 2px 2px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u176139_text {
  5950. border-width:0px;
  5951. word-wrap:break-word;
  5952. text-transform:none;
  5953. visibility:hidden;
  5954. }
  5955. #u176140 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:0px;
  5961. height:0px;
  5962. }
  5963. #u176141_div {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:0px;
  5967. top:0px;
  5968. width:77px;
  5969. height:50px;
  5970. background:inherit;
  5971. background-color:rgba(255, 255, 255, 1);
  5972. border:none;
  5973. border-radius:0px;
  5974. border-top-left-radius:0px;
  5975. border-top-right-radius:0px;
  5976. -moz-box-shadow:none;
  5977. -webkit-box-shadow:none;
  5978. box-shadow:none;
  5979. }
  5980. #u176141 {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:633px;
  5984. top:829px;
  5985. width:77px;
  5986. height:50px;
  5987. display:flex;
  5988. }
  5989. #u176141 .text {
  5990. position:absolute;
  5991. align-self:center;
  5992. padding:2px 2px 2px 2px;
  5993. box-sizing:border-box;
  5994. width:100%;
  5995. }
  5996. #u176141_text {
  5997. border-width:0px;
  5998. word-wrap:break-word;
  5999. text-transform:none;
  6000. visibility:hidden;
  6001. }
  6002. #u176142 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:0px;
  6006. top:0px;
  6007. width:0px;
  6008. height:0px;
  6009. }
  6010. #u176143_img {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:0px;
  6014. top:0px;
  6015. width:38px;
  6016. height:38px;
  6017. }
  6018. #u176143 {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:653px;
  6022. top:819px;
  6023. width:38px;
  6024. height:38px;
  6025. display:flex;
  6026. font-size:12px;
  6027. color:#FFFFFF;
  6028. }
  6029. #u176143 .text {
  6030. position:absolute;
  6031. align-self:center;
  6032. padding:2px 2px 2px 2px;
  6033. box-sizing:border-box;
  6034. width:100%;
  6035. }
  6036. #u176143_text {
  6037. border-width:0px;
  6038. word-wrap:break-word;
  6039. text-transform:none;
  6040. }
  6041. #u176144_div {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:49px;
  6047. height:17px;
  6048. background:inherit;
  6049. background-color:rgba(255, 255, 255, 0);
  6050. border:none;
  6051. border-radius:0px;
  6052. -moz-box-shadow:none;
  6053. -webkit-box-shadow:none;
  6054. box-shadow:none;
  6055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6056. font-weight:400;
  6057. font-style:normal;
  6058. font-size:12px;
  6059. }
  6060. #u176144 {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:647px;
  6064. top:858px;
  6065. width:49px;
  6066. height:17px;
  6067. display:flex;
  6068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6069. font-weight:400;
  6070. font-style:normal;
  6071. font-size:12px;
  6072. }
  6073. #u176144 .text {
  6074. position:absolute;
  6075. align-self:flex-start;
  6076. padding:0px 0px 0px 0px;
  6077. box-sizing:border-box;
  6078. width:100%;
  6079. }
  6080. #u176144_text {
  6081. border-width:0px;
  6082. white-space:nowrap;
  6083. text-transform:none;
  6084. }
  6085. #u176145 {
  6086. border-width:0px;
  6087. position:absolute;
  6088. left:0px;
  6089. top:0px;
  6090. width:0px;
  6091. height:0px;
  6092. }
  6093. #u176146_div {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:0px;
  6097. top:0px;
  6098. width:75px;
  6099. height:50px;
  6100. background:inherit;
  6101. background-color:rgba(255, 255, 255, 1);
  6102. border:none;
  6103. border-right:0px;
  6104. border-radius:26px;
  6105. border-top-left-radius:0px;
  6106. border-top-right-radius:0px;
  6107. border-bottom-right-radius:0px;
  6108. -moz-box-shadow:none;
  6109. -webkit-box-shadow:none;
  6110. box-shadow:none;
  6111. }
  6112. #u176146 {
  6113. border-width:0px;
  6114. position:absolute;
  6115. left:484px;
  6116. top:829px;
  6117. width:75px;
  6118. height:50px;
  6119. display:flex;
  6120. }
  6121. #u176146 .text {
  6122. position:absolute;
  6123. align-self:center;
  6124. padding:2px 2px 2px 2px;
  6125. box-sizing:border-box;
  6126. width:100%;
  6127. }
  6128. #u176146_text {
  6129. border-width:0px;
  6130. word-wrap:break-word;
  6131. text-transform:none;
  6132. visibility:hidden;
  6133. }
  6134. #u176147 {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:0px;
  6138. top:0px;
  6139. width:0px;
  6140. height:0px;
  6141. }
  6142. #u176148_img {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:0px;
  6146. top:0px;
  6147. width:24px;
  6148. height:24px;
  6149. }
  6150. #u176148 {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:509px;
  6154. top:833px;
  6155. width:24px;
  6156. height:24px;
  6157. display:flex;
  6158. font-size:8px;
  6159. }
  6160. #u176148 .text {
  6161. position:absolute;
  6162. align-self:center;
  6163. padding:2px 2px 2px 2px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u176148_text {
  6168. border-width:0px;
  6169. word-wrap:break-word;
  6170. text-transform:none;
  6171. }
  6172. #u176149_div {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:25px;
  6178. height:17px;
  6179. background:inherit;
  6180. background-color:rgba(255, 255, 255, 0);
  6181. border:none;
  6182. border-radius:0px;
  6183. -moz-box-shadow:none;
  6184. -webkit-box-shadow:none;
  6185. box-shadow:none;
  6186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6187. font-weight:400;
  6188. font-style:normal;
  6189. font-size:12px;
  6190. }
  6191. #u176149 {
  6192. border-width:0px;
  6193. position:absolute;
  6194. left:509px;
  6195. top:858px;
  6196. width:25px;
  6197. height:17px;
  6198. display:flex;
  6199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6200. font-weight:400;
  6201. font-style:normal;
  6202. font-size:12px;
  6203. }
  6204. #u176149 .text {
  6205. position:absolute;
  6206. align-self:flex-start;
  6207. padding:0px 0px 0px 0px;
  6208. box-sizing:border-box;
  6209. width:100%;
  6210. }
  6211. #u176149_text {
  6212. border-width:0px;
  6213. white-space:nowrap;
  6214. text-transform:none;
  6215. }
  6216. #u176150 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:0px;
  6220. top:0px;
  6221. width:0px;
  6222. height:0px;
  6223. }
  6224. #u176151_div {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:75px;
  6230. height:50px;
  6231. background:inherit;
  6232. background-color:rgba(255, 255, 255, 1);
  6233. border:none;
  6234. border-left:0px;
  6235. border-radius:26px;
  6236. border-top-left-radius:0px;
  6237. border-top-right-radius:0px;
  6238. border-bottom-left-radius:0px;
  6239. -moz-box-shadow:none;
  6240. -webkit-box-shadow:none;
  6241. box-shadow:none;
  6242. }
  6243. #u176151 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:784px;
  6247. top:829px;
  6248. width:75px;
  6249. height:50px;
  6250. display:flex;
  6251. }
  6252. #u176151 .text {
  6253. position:absolute;
  6254. align-self:center;
  6255. padding:2px 2px 2px 2px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u176151_text {
  6260. border-width:0px;
  6261. word-wrap:break-word;
  6262. text-transform:none;
  6263. visibility:hidden;
  6264. }
  6265. #u176152 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:0px;
  6271. height:0px;
  6272. }
  6273. #u176153_img {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:0px;
  6277. top:0px;
  6278. width:24px;
  6279. height:24px;
  6280. }
  6281. #u176153 {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:809px;
  6285. top:835px;
  6286. width:24px;
  6287. height:24px;
  6288. display:flex;
  6289. font-size:8px;
  6290. }
  6291. #u176153 .text {
  6292. position:absolute;
  6293. align-self:center;
  6294. padding:2px 2px 2px 2px;
  6295. box-sizing:border-box;
  6296. width:100%;
  6297. }
  6298. #u176153_text {
  6299. border-width:0px;
  6300. word-wrap:break-word;
  6301. text-transform:none;
  6302. }
  6303. #u176154_div {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:25px;
  6309. height:17px;
  6310. background:inherit;
  6311. background-color:rgba(255, 255, 255, 0);
  6312. border:none;
  6313. border-radius:0px;
  6314. -moz-box-shadow:none;
  6315. -webkit-box-shadow:none;
  6316. box-shadow:none;
  6317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6318. font-weight:400;
  6319. font-style:normal;
  6320. font-size:12px;
  6321. }
  6322. #u176154 {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:809px;
  6326. top:860px;
  6327. width:25px;
  6328. height:17px;
  6329. display:flex;
  6330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6331. font-weight:400;
  6332. font-style:normal;
  6333. font-size:12px;
  6334. }
  6335. #u176154 .text {
  6336. position:absolute;
  6337. align-self:flex-start;
  6338. padding:0px 0px 0px 0px;
  6339. box-sizing:border-box;
  6340. width:100%;
  6341. }
  6342. #u176154_text {
  6343. border-width:0px;
  6344. white-space:nowrap;
  6345. text-transform:none;
  6346. }
  6347. #u176155 {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:0px;
  6353. height:0px;
  6354. }
  6355. #u176156_div {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:0px;
  6359. top:0px;
  6360. width:75px;
  6361. height:50px;
  6362. background:inherit;
  6363. background-color:rgba(255, 255, 255, 1);
  6364. border:none;
  6365. border-radius:0px;
  6366. border-top-left-radius:0px;
  6367. border-top-right-radius:0px;
  6368. -moz-box-shadow:none;
  6369. -webkit-box-shadow:none;
  6370. box-shadow:none;
  6371. }
  6372. #u176156 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:709px;
  6376. top:829px;
  6377. width:75px;
  6378. height:50px;
  6379. display:flex;
  6380. }
  6381. #u176156 .text {
  6382. position:absolute;
  6383. align-self:center;
  6384. padding:2px 2px 2px 2px;
  6385. box-sizing:border-box;
  6386. width:100%;
  6387. }
  6388. #u176156_text {
  6389. border-width:0px;
  6390. word-wrap:break-word;
  6391. text-transform:none;
  6392. visibility:hidden;
  6393. }
  6394. #u176157 {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:0px;
  6398. top:0px;
  6399. width:0px;
  6400. height:0px;
  6401. }
  6402. #u176158_img {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:0px;
  6406. top:0px;
  6407. width:24px;
  6408. height:24px;
  6409. }
  6410. #u176158 {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:734px;
  6414. top:833px;
  6415. width:24px;
  6416. height:24px;
  6417. display:flex;
  6418. font-size:8px;
  6419. }
  6420. #u176158 .text {
  6421. position:absolute;
  6422. align-self:center;
  6423. padding:2px 2px 2px 2px;
  6424. box-sizing:border-box;
  6425. width:100%;
  6426. }
  6427. #u176158_text {
  6428. border-width:0px;
  6429. word-wrap:break-word;
  6430. text-transform:none;
  6431. }
  6432. #u176159_div {
  6433. border-width:0px;
  6434. position:absolute;
  6435. left:0px;
  6436. top:0px;
  6437. width:25px;
  6438. height:17px;
  6439. background:inherit;
  6440. background-color:rgba(255, 255, 255, 0);
  6441. border:none;
  6442. border-radius:0px;
  6443. -moz-box-shadow:none;
  6444. -webkit-box-shadow:none;
  6445. box-shadow:none;
  6446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6447. font-weight:400;
  6448. font-style:normal;
  6449. font-size:12px;
  6450. }
  6451. #u176159 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:734px;
  6455. top:858px;
  6456. width:25px;
  6457. height:17px;
  6458. display:flex;
  6459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:12px;
  6463. }
  6464. #u176159 .text {
  6465. position:absolute;
  6466. align-self:flex-start;
  6467. padding:0px 0px 0px 0px;
  6468. box-sizing:border-box;
  6469. width:100%;
  6470. }
  6471. #u176159_text {
  6472. border-width:0px;
  6473. white-space:nowrap;
  6474. text-transform:none;
  6475. }
  6476. #u176160 {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:0px;
  6482. height:0px;
  6483. }
  6484. #u176161_div {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:0px;
  6488. top:0px;
  6489. width:75px;
  6490. height:50px;
  6491. background:inherit;
  6492. background-color:rgba(24, 144, 255, 1);
  6493. border:none;
  6494. border-radius:0px;
  6495. border-top-left-radius:0px;
  6496. border-top-right-radius:0px;
  6497. -moz-box-shadow:none;
  6498. -webkit-box-shadow:none;
  6499. box-shadow:none;
  6500. }
  6501. #u176161 {
  6502. border-width:0px;
  6503. position:absolute;
  6504. left:559px;
  6505. top:829px;
  6506. width:75px;
  6507. height:50px;
  6508. display:flex;
  6509. }
  6510. #u176161 .text {
  6511. position:absolute;
  6512. align-self:center;
  6513. padding:2px 2px 2px 2px;
  6514. box-sizing:border-box;
  6515. width:100%;
  6516. }
  6517. #u176161_text {
  6518. border-width:0px;
  6519. word-wrap:break-word;
  6520. text-transform:none;
  6521. visibility:hidden;
  6522. }
  6523. #u176162 {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:0px;
  6527. top:0px;
  6528. width:0px;
  6529. height:0px;
  6530. }
  6531. #u176163_img {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:0px;
  6535. top:0px;
  6536. width:24px;
  6537. height:24px;
  6538. }
  6539. #u176163 {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:584px;
  6543. top:833px;
  6544. width:24px;
  6545. height:24px;
  6546. display:flex;
  6547. font-size:8px;
  6548. }
  6549. #u176163 .text {
  6550. position:absolute;
  6551. align-self:center;
  6552. padding:2px 2px 2px 2px;
  6553. box-sizing:border-box;
  6554. width:100%;
  6555. }
  6556. #u176163_text {
  6557. border-width:0px;
  6558. word-wrap:break-word;
  6559. text-transform:none;
  6560. }
  6561. #u176164_div {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:37px;
  6567. height:17px;
  6568. background:inherit;
  6569. background-color:rgba(255, 255, 255, 0);
  6570. border:none;
  6571. border-radius:0px;
  6572. -moz-box-shadow:none;
  6573. -webkit-box-shadow:none;
  6574. box-shadow:none;
  6575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6576. font-weight:400;
  6577. font-style:normal;
  6578. font-size:12px;
  6579. color:#FFFFFF;
  6580. }
  6581. #u176164 {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:578px;
  6585. top:858px;
  6586. width:37px;
  6587. height:17px;
  6588. display:flex;
  6589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6590. font-weight:400;
  6591. font-style:normal;
  6592. font-size:12px;
  6593. color:#FFFFFF;
  6594. }
  6595. #u176164 .text {
  6596. position:absolute;
  6597. align-self:flex-start;
  6598. padding:0px 0px 0px 0px;
  6599. box-sizing:border-box;
  6600. width:100%;
  6601. }
  6602. #u176164_text {
  6603. border-width:0px;
  6604. white-space:nowrap;
  6605. text-transform:none;
  6606. }