styles.css 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1811px;
  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. #u176298_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u176298 {
  28. border-width:0px;
  29. position:absolute;
  30. left:453px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u176298 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u176298_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u176300_img {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:433px;
  55. height:865px;
  56. }
  57. #u176300 {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:433px;
  63. height:865px;
  64. display:flex;
  65. }
  66. #u176300 .text {
  67. position:absolute;
  68. align-self:center;
  69. padding:2px 2px 2px 2px;
  70. box-sizing:border-box;
  71. width:100%;
  72. }
  73. #u176300_text {
  74. border-width:0px;
  75. word-wrap:break-word;
  76. text-transform:none;
  77. visibility:hidden;
  78. }
  79. #u176301_div {
  80. border-width:0px;
  81. position:absolute;
  82. left:0px;
  83. top:0px;
  84. width:375px;
  85. height:40px;
  86. background:inherit;
  87. background-color:rgba(255, 255, 255, 1);
  88. box-sizing:border-box;
  89. border-width:1px;
  90. border-style:solid;
  91. border-color:rgba(215, 215, 215, 1);
  92. border-left:0px;
  93. border-top:0px;
  94. border-right:0px;
  95. border-radius:0px;
  96. border-bottom-right-radius:0px;
  97. border-bottom-left-radius:0px;
  98. -moz-box-shadow:none;
  99. -webkit-box-shadow:none;
  100. box-shadow:none;
  101. }
  102. #u176301 {
  103. border-width:0px;
  104. position:absolute;
  105. left:29px;
  106. top:67px;
  107. width:375px;
  108. height:40px;
  109. display:flex;
  110. }
  111. #u176301 .text {
  112. position:absolute;
  113. align-self:center;
  114. padding:2px 2px 2px 2px;
  115. box-sizing:border-box;
  116. width:100%;
  117. }
  118. #u176301_text {
  119. border-width:0px;
  120. word-wrap:break-word;
  121. text-transform:none;
  122. visibility:hidden;
  123. }
  124. #u176302 {
  125. border-width:0px;
  126. position:absolute;
  127. left:0px;
  128. top:0px;
  129. width:0px;
  130. height:0px;
  131. }
  132. #u176303_div {
  133. border-width:0px;
  134. position:absolute;
  135. left:0px;
  136. top:0px;
  137. width:88px;
  138. height:32px;
  139. background:inherit;
  140. background-color:rgba(255, 255, 255, 1);
  141. box-sizing:border-box;
  142. border-width:1px;
  143. border-style:solid;
  144. border-color:rgba(242, 242, 242, 1);
  145. border-radius:33px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. }
  150. #u176303 {
  151. border-width:0px;
  152. position:absolute;
  153. left:309px;
  154. top:71px;
  155. width:88px;
  156. height:32px;
  157. display:flex;
  158. }
  159. #u176303 .text {
  160. position:absolute;
  161. align-self:center;
  162. padding:2px 2px 2px 2px;
  163. box-sizing:border-box;
  164. width:100%;
  165. }
  166. #u176303_text {
  167. border-width:0px;
  168. word-wrap:break-word;
  169. text-transform:none;
  170. visibility:hidden;
  171. }
  172. #u176304 {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:0px;
  178. height:0px;
  179. }
  180. #u176305_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:18px;
  186. height:18px;
  187. }
  188. #u176305 {
  189. border-width:0px;
  190. position:absolute;
  191. left:372px;
  192. top:78px;
  193. width:18px;
  194. height:18px;
  195. display:flex;
  196. }
  197. #u176305 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u176305_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u176306_img {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:6px;
  216. height:6px;
  217. }
  218. #u176306 {
  219. border-width:0px;
  220. position:absolute;
  221. left:378px;
  222. top:84px;
  223. width:6px;
  224. height:6px;
  225. display:flex;
  226. }
  227. #u176306 .text {
  228. position:absolute;
  229. align-self:center;
  230. padding:2px 2px 2px 2px;
  231. box-sizing:border-box;
  232. width:100%;
  233. }
  234. #u176306_text {
  235. border-width:0px;
  236. word-wrap:break-word;
  237. text-transform:none;
  238. visibility:hidden;
  239. }
  240. #u176307 {
  241. border-width:0px;
  242. position:absolute;
  243. left:0px;
  244. top:0px;
  245. width:0px;
  246. height:0px;
  247. }
  248. #u176308_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u176308 {
  257. border-width:0px;
  258. position:absolute;
  259. left:323px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u176308 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u176308_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u176309_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:5px;
  284. height:5px;
  285. }
  286. #u176309 {
  287. border-width:0px;
  288. position:absolute;
  289. left:339px;
  290. top:85px;
  291. width:5px;
  292. height:5px;
  293. display:flex;
  294. }
  295. #u176309 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u176309_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u176310_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:7px;
  314. height:7px;
  315. }
  316. #u176310 {
  317. border-width:0px;
  318. position:absolute;
  319. left:330px;
  320. top:84px;
  321. width:7px;
  322. height:7px;
  323. display:flex;
  324. }
  325. #u176310 .text {
  326. position:absolute;
  327. align-self:center;
  328. padding:2px 2px 2px 2px;
  329. box-sizing:border-box;
  330. width:100%;
  331. }
  332. #u176310_text {
  333. border-width:0px;
  334. word-wrap:break-word;
  335. text-transform:none;
  336. visibility:hidden;
  337. }
  338. #u176311_img {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:19px;
  344. height:2px;
  345. }
  346. #u176311 {
  347. border-width:0px;
  348. position:absolute;
  349. left:347px;
  350. top:87px;
  351. width:18px;
  352. height:1px;
  353. display:flex;
  354. -webkit-transform:rotate(90deg);
  355. -moz-transform:rotate(90deg);
  356. -ms-transform:rotate(90deg);
  357. transform:rotate(90deg);
  358. }
  359. #u176311 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u176311_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u176312_img {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:44px;
  379. }
  380. #u176312 {
  381. border-width:0px;
  382. position:absolute;
  383. left:29px;
  384. top:24px;
  385. width:375px;
  386. height:44px;
  387. display:flex;
  388. }
  389. #u176312 .text {
  390. position:absolute;
  391. align-self:center;
  392. padding:2px 2px 2px 2px;
  393. box-sizing:border-box;
  394. width:100%;
  395. }
  396. #u176312_text {
  397. border-width:0px;
  398. word-wrap:break-word;
  399. text-transform:none;
  400. visibility:hidden;
  401. }
  402. #u176313_div {
  403. border-width:0px;
  404. position:absolute;
  405. left:0px;
  406. top:0px;
  407. width:375px;
  408. height:50px;
  409. background:inherit;
  410. background-color:rgba(255, 255, 255, 1);
  411. box-sizing:border-box;
  412. border-width:1px;
  413. border-style:solid;
  414. border-color:rgba(242, 242, 242, 1);
  415. border-radius:26px;
  416. border-top-left-radius:0px;
  417. border-top-right-radius:0px;
  418. -moz-box-shadow:none;
  419. -webkit-box-shadow:none;
  420. box-shadow:none;
  421. }
  422. #u176313 {
  423. border-width:0px;
  424. position:absolute;
  425. left:29px;
  426. top:788px;
  427. width:375px;
  428. height:50px;
  429. display:flex;
  430. }
  431. #u176313 .text {
  432. position:absolute;
  433. align-self:center;
  434. padding:2px 2px 2px 2px;
  435. box-sizing:border-box;
  436. width:100%;
  437. }
  438. #u176313_text {
  439. border-width:0px;
  440. word-wrap:break-word;
  441. text-transform:none;
  442. visibility:hidden;
  443. }
  444. #u176314 {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:0px;
  450. height:0px;
  451. }
  452. #u176315_img {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:24px;
  458. height:24px;
  459. }
  460. #u176315 {
  461. border-width:0px;
  462. position:absolute;
  463. left:69px;
  464. top:792px;
  465. width:24px;
  466. height:24px;
  467. display:flex;
  468. font-size:8px;
  469. }
  470. #u176315 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:2px 2px 2px 2px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u176315_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u176316_div {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:25px;
  488. height:17px;
  489. background:inherit;
  490. background-color:rgba(255, 255, 255, 0);
  491. border:none;
  492. border-radius:0px;
  493. -moz-box-shadow:none;
  494. -webkit-box-shadow:none;
  495. box-shadow:none;
  496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  497. font-weight:400;
  498. font-style:normal;
  499. font-size:12px;
  500. }
  501. #u176316 {
  502. border-width:0px;
  503. position:absolute;
  504. left:69px;
  505. top:817px;
  506. width:25px;
  507. height:17px;
  508. display:flex;
  509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  510. font-weight:400;
  511. font-style:normal;
  512. font-size:12px;
  513. }
  514. #u176316 .text {
  515. position:absolute;
  516. align-self:flex-start;
  517. padding:0px 0px 0px 0px;
  518. box-sizing:border-box;
  519. width:100%;
  520. }
  521. #u176316_text {
  522. border-width:0px;
  523. white-space:nowrap;
  524. text-transform:none;
  525. }
  526. #u176317 {
  527. border-width:0px;
  528. position:absolute;
  529. left:0px;
  530. top:0px;
  531. width:0px;
  532. height:0px;
  533. }
  534. #u176318_img {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:24px;
  540. height:24px;
  541. }
  542. #u176318 {
  543. border-width:0px;
  544. position:absolute;
  545. left:339px;
  546. top:794px;
  547. width:24px;
  548. height:24px;
  549. display:flex;
  550. font-size:8px;
  551. }
  552. #u176318 .text {
  553. position:absolute;
  554. align-self:center;
  555. padding:2px 2px 2px 2px;
  556. box-sizing:border-box;
  557. width:100%;
  558. }
  559. #u176318_text {
  560. border-width:0px;
  561. word-wrap:break-word;
  562. text-transform:none;
  563. }
  564. #u176319_div {
  565. border-width:0px;
  566. position:absolute;
  567. left:0px;
  568. top:0px;
  569. width:25px;
  570. height:17px;
  571. background:inherit;
  572. background-color:rgba(255, 255, 255, 0);
  573. border:none;
  574. border-radius:0px;
  575. -moz-box-shadow:none;
  576. -webkit-box-shadow:none;
  577. box-shadow:none;
  578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  579. font-weight:400;
  580. font-style:normal;
  581. font-size:12px;
  582. }
  583. #u176319 {
  584. border-width:0px;
  585. position:absolute;
  586. left:339px;
  587. top:819px;
  588. width:25px;
  589. height:17px;
  590. display:flex;
  591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  592. font-weight:400;
  593. font-style:normal;
  594. font-size:12px;
  595. }
  596. #u176319 .text {
  597. position:absolute;
  598. align-self:flex-start;
  599. padding:0px 0px 0px 0px;
  600. box-sizing:border-box;
  601. width:100%;
  602. }
  603. #u176319_text {
  604. border-width:0px;
  605. white-space:nowrap;
  606. text-transform:none;
  607. }
  608. #u176320_div {
  609. border-width:0px;
  610. position:absolute;
  611. left:0px;
  612. top:0px;
  613. width:375px;
  614. height:681px;
  615. background:inherit;
  616. background-color:rgba(242, 242, 242, 0.462745098039216);
  617. border:none;
  618. border-radius:0px;
  619. -moz-box-shadow:none;
  620. -webkit-box-shadow:none;
  621. box-shadow:none;
  622. }
  623. #u176320 {
  624. border-width:0px;
  625. position:absolute;
  626. left:29px;
  627. top:107px;
  628. width:375px;
  629. height:681px;
  630. display:flex;
  631. }
  632. #u176320 .text {
  633. position:absolute;
  634. align-self:center;
  635. padding:2px 2px 2px 2px;
  636. box-sizing:border-box;
  637. width:100%;
  638. }
  639. #u176320_text {
  640. border-width:0px;
  641. word-wrap:break-word;
  642. text-transform:none;
  643. visibility:hidden;
  644. }
  645. #u176321 {
  646. border-width:0px;
  647. position:absolute;
  648. left:0px;
  649. top:0px;
  650. width:0px;
  651. height:0px;
  652. }
  653. #u176322_img {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:24px;
  659. height:24px;
  660. }
  661. #u176322 {
  662. border-width:0px;
  663. position:absolute;
  664. left:251px;
  665. top:792px;
  666. width:24px;
  667. height:24px;
  668. display:flex;
  669. font-size:8px;
  670. }
  671. #u176322 .text {
  672. position:absolute;
  673. align-self:center;
  674. padding:2px 2px 2px 2px;
  675. box-sizing:border-box;
  676. width:100%;
  677. }
  678. #u176322_text {
  679. border-width:0px;
  680. word-wrap:break-word;
  681. text-transform:none;
  682. }
  683. #u176323_div {
  684. border-width:0px;
  685. position:absolute;
  686. left:0px;
  687. top:0px;
  688. width:37px;
  689. height:17px;
  690. background:inherit;
  691. background-color:rgba(255, 255, 255, 0);
  692. border:none;
  693. border-radius:0px;
  694. -moz-box-shadow:none;
  695. -webkit-box-shadow:none;
  696. box-shadow:none;
  697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  698. font-weight:400;
  699. font-style:normal;
  700. font-size:12px;
  701. }
  702. #u176323 {
  703. border-width:0px;
  704. position:absolute;
  705. left:245px;
  706. top:817px;
  707. width:37px;
  708. height:17px;
  709. display:flex;
  710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  711. font-weight:400;
  712. font-style:normal;
  713. font-size:12px;
  714. }
  715. #u176323 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u176323_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u176324 {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:0px;
  733. height:0px;
  734. }
  735. #u176325_img {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:24px;
  741. height:24px;
  742. }
  743. #u176325 {
  744. border-width:0px;
  745. position:absolute;
  746. left:157px;
  747. top:792px;
  748. width:24px;
  749. height:24px;
  750. display:flex;
  751. font-size:8px;
  752. }
  753. #u176325 .text {
  754. position:absolute;
  755. align-self:center;
  756. padding:2px 2px 2px 2px;
  757. box-sizing:border-box;
  758. width:100%;
  759. }
  760. #u176325_text {
  761. border-width:0px;
  762. word-wrap:break-word;
  763. text-transform:none;
  764. }
  765. #u176326_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:37px;
  771. height:17px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:12px;
  783. }
  784. #u176326 {
  785. border-width:0px;
  786. position:absolute;
  787. left:151px;
  788. top:817px;
  789. width:37px;
  790. height:17px;
  791. display:flex;
  792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  793. font-weight:400;
  794. font-style:normal;
  795. font-size:12px;
  796. }
  797. #u176326 .text {
  798. position:absolute;
  799. align-self:flex-start;
  800. padding:0px 0px 0px 0px;
  801. box-sizing:border-box;
  802. width:100%;
  803. }
  804. #u176326_text {
  805. border-width:0px;
  806. white-space:nowrap;
  807. text-transform:none;
  808. }
  809. #u176327_img {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:375px;
  815. height:734px;
  816. }
  817. #u176327 {
  818. border-width:0px;
  819. position:absolute;
  820. left:29px;
  821. top:106px;
  822. width:375px;
  823. height:734px;
  824. display:flex;
  825. }
  826. #u176327 .text {
  827. position:absolute;
  828. align-self:center;
  829. padding:2px 2px 2px 2px;
  830. box-sizing:border-box;
  831. width:100%;
  832. }
  833. #u176327_text {
  834. border-width:0px;
  835. word-wrap:break-word;
  836. text-transform:none;
  837. visibility:hidden;
  838. }
  839. #u176328 {
  840. border-width:0px;
  841. position:absolute;
  842. left:0px;
  843. top:0px;
  844. width:0px;
  845. height:0px;
  846. }
  847. #u176329_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:11px;
  853. height:18px;
  854. }
  855. #u176329 {
  856. border-width:0px;
  857. position:absolute;
  858. left:40px;
  859. top:79px;
  860. width:11px;
  861. height:18px;
  862. display:flex;
  863. }
  864. #u176329 .text {
  865. position:absolute;
  866. align-self:center;
  867. padding:2px 2px 2px 2px;
  868. box-sizing:border-box;
  869. width:100%;
  870. }
  871. #u176329_text {
  872. border-width:0px;
  873. word-wrap:break-word;
  874. text-transform:none;
  875. visibility:hidden;
  876. }
  877. #u176330_div {
  878. border-width:0px;
  879. position:absolute;
  880. left:0px;
  881. top:0px;
  882. width:57px;
  883. height:30px;
  884. background:inherit;
  885. background-color:rgba(255, 255, 255, 0);
  886. border:none;
  887. border-left:0px;
  888. border-top:0px;
  889. border-right:0px;
  890. border-radius:0px;
  891. border-bottom-right-radius:0px;
  892. border-bottom-left-radius:0px;
  893. -moz-box-shadow:none;
  894. -webkit-box-shadow:none;
  895. box-shadow:none;
  896. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  897. font-weight:500;
  898. font-style:normal;
  899. font-size:14px;
  900. line-height:30px;
  901. }
  902. #u176330 {
  903. border-width:0px;
  904. position:absolute;
  905. left:188px;
  906. top:73px;
  907. width:57px;
  908. height:30px;
  909. display:flex;
  910. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  911. font-weight:500;
  912. font-style:normal;
  913. font-size:14px;
  914. line-height:30px;
  915. }
  916. #u176330 .text {
  917. position:absolute;
  918. align-self:flex-start;
  919. padding:0px 0px 0px 0px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u176330_text {
  924. border-width:0px;
  925. white-space:nowrap;
  926. text-transform:none;
  927. }
  928. #u176331 {
  929. border-width:0px;
  930. position:absolute;
  931. left:0px;
  932. top:0px;
  933. width:0px;
  934. height:0px;
  935. }
  936. #u176332_div {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:0px;
  941. width:375px;
  942. height:60px;
  943. background:inherit;
  944. background-color:rgba(255, 255, 255, 1);
  945. box-sizing:border-box;
  946. border-width:1px;
  947. border-style:solid;
  948. border-color:rgba(242, 242, 242, 1);
  949. border-radius:4px;
  950. -moz-box-shadow:none;
  951. -webkit-box-shadow:none;
  952. box-shadow:none;
  953. }
  954. #u176332 {
  955. border-width:0px;
  956. position:absolute;
  957. left:29px;
  958. top:106px;
  959. width:375px;
  960. height:60px;
  961. display:flex;
  962. }
  963. #u176332 .text {
  964. position:absolute;
  965. align-self:center;
  966. padding:2px 2px 2px 2px;
  967. box-sizing:border-box;
  968. width:100%;
  969. }
  970. #u176332_text {
  971. border-width:0px;
  972. word-wrap:break-word;
  973. text-transform:none;
  974. visibility:hidden;
  975. }
  976. #u176333 {
  977. border-width:0px;
  978. position:absolute;
  979. left:0px;
  980. top:0px;
  981. width:0px;
  982. height:0px;
  983. }
  984. #u176334_div {
  985. border-width:0px;
  986. position:absolute;
  987. left:0px;
  988. top:0px;
  989. width:145px;
  990. height:30px;
  991. background:inherit;
  992. background-color:rgba(255, 255, 255, 0);
  993. border:none;
  994. border-left:0px;
  995. border-top:0px;
  996. border-right:0px;
  997. border-radius:0px;
  998. border-bottom-right-radius:0px;
  999. border-bottom-left-radius:0px;
  1000. -moz-box-shadow:none;
  1001. -webkit-box-shadow:none;
  1002. box-shadow:none;
  1003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1004. font-weight:400;
  1005. font-style:normal;
  1006. font-size:18px;
  1007. line-height:30px;
  1008. }
  1009. #u176334 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:46px;
  1013. top:120px;
  1014. width:145px;
  1015. height:30px;
  1016. display:flex;
  1017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1018. font-weight:400;
  1019. font-style:normal;
  1020. font-size:18px;
  1021. line-height:30px;
  1022. }
  1023. #u176334 .text {
  1024. position:absolute;
  1025. align-self:flex-start;
  1026. padding:0px 0px 0px 0px;
  1027. box-sizing:border-box;
  1028. width:100%;
  1029. }
  1030. #u176334_text {
  1031. border-width:0px;
  1032. white-space:nowrap;
  1033. text-transform:none;
  1034. }
  1035. #u176335_div {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:375px;
  1041. height:60px;
  1042. background:inherit;
  1043. background-color:rgba(255, 255, 255, 1);
  1044. box-sizing:border-box;
  1045. border-width:1px;
  1046. border-style:solid;
  1047. border-color:rgba(242, 242, 242, 1);
  1048. border-radius:4px;
  1049. -moz-box-shadow:none;
  1050. -webkit-box-shadow:none;
  1051. box-shadow:none;
  1052. }
  1053. #u176335 {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:29px;
  1057. top:236px;
  1058. width:375px;
  1059. height:60px;
  1060. display:flex;
  1061. }
  1062. #u176335 .text {
  1063. position:absolute;
  1064. align-self:center;
  1065. padding:2px 2px 2px 2px;
  1066. box-sizing:border-box;
  1067. width:100%;
  1068. }
  1069. #u176335_text {
  1070. border-width:0px;
  1071. word-wrap:break-word;
  1072. text-transform:none;
  1073. visibility:hidden;
  1074. }
  1075. #u176336_div {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:0px;
  1079. top:0px;
  1080. width:92px;
  1081. height:30px;
  1082. background:inherit;
  1083. background-color:rgba(255, 255, 255, 0);
  1084. border:none;
  1085. border-left:0px;
  1086. border-top:0px;
  1087. border-right:0px;
  1088. border-radius:0px;
  1089. border-bottom-right-radius:0px;
  1090. border-bottom-left-radius:0px;
  1091. -moz-box-shadow:none;
  1092. -webkit-box-shadow:none;
  1093. box-shadow:none;
  1094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1095. font-weight:400;
  1096. font-style:normal;
  1097. font-size:14px;
  1098. line-height:30px;
  1099. }
  1100. #u176336 {
  1101. border-width:0px;
  1102. position:absolute;
  1103. left:46px;
  1104. top:251px;
  1105. width:92px;
  1106. height:30px;
  1107. display:flex;
  1108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1109. font-weight:400;
  1110. font-style:normal;
  1111. font-size:14px;
  1112. line-height:30px;
  1113. }
  1114. #u176336 .text {
  1115. position:absolute;
  1116. align-self:flex-start;
  1117. padding:0px 0px 0px 0px;
  1118. box-sizing:border-box;
  1119. width:100%;
  1120. }
  1121. #u176336_text {
  1122. border-width:0px;
  1123. white-space:nowrap;
  1124. text-transform:none;
  1125. }
  1126. #u176337_div {
  1127. border-width:0px;
  1128. position:absolute;
  1129. left:0px;
  1130. top:0px;
  1131. width:375px;
  1132. height:120px;
  1133. background:inherit;
  1134. background-color:rgba(255, 255, 255, 1);
  1135. box-sizing:border-box;
  1136. border-width:1px;
  1137. border-style:solid;
  1138. border-color:rgba(242, 242, 242, 1);
  1139. border-radius:4px;
  1140. -moz-box-shadow:none;
  1141. -webkit-box-shadow:none;
  1142. box-shadow:none;
  1143. }
  1144. #u176337 {
  1145. border-width:0px;
  1146. position:absolute;
  1147. left:29px;
  1148. top:295px;
  1149. width:375px;
  1150. height:120px;
  1151. display:flex;
  1152. }
  1153. #u176337 .text {
  1154. position:absolute;
  1155. align-self:center;
  1156. padding:2px 2px 2px 2px;
  1157. box-sizing:border-box;
  1158. width:100%;
  1159. }
  1160. #u176337_text {
  1161. border-width:0px;
  1162. word-wrap:break-word;
  1163. text-transform:none;
  1164. visibility:hidden;
  1165. }
  1166. #u176338_div {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:57px;
  1172. height:30px;
  1173. background:inherit;
  1174. background-color:rgba(255, 255, 255, 0);
  1175. border:none;
  1176. border-left:0px;
  1177. border-top:0px;
  1178. border-right:0px;
  1179. border-radius:0px;
  1180. border-bottom-right-radius:0px;
  1181. border-bottom-left-radius:0px;
  1182. -moz-box-shadow:none;
  1183. -webkit-box-shadow:none;
  1184. box-shadow:none;
  1185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1186. font-weight:400;
  1187. font-style:normal;
  1188. font-size:14px;
  1189. line-height:30px;
  1190. }
  1191. #u176338 {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:46px;
  1195. top:305px;
  1196. width:57px;
  1197. height:30px;
  1198. display:flex;
  1199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1200. font-weight:400;
  1201. font-style:normal;
  1202. font-size:14px;
  1203. line-height:30px;
  1204. }
  1205. #u176338 .text {
  1206. position:absolute;
  1207. align-self:flex-start;
  1208. padding:0px 0px 0px 0px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u176338_text {
  1213. border-width:0px;
  1214. white-space:nowrap;
  1215. text-transform:none;
  1216. }
  1217. #u176339 {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:0px;
  1221. top:0px;
  1222. width:0px;
  1223. height:0px;
  1224. }
  1225. #u176340 {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:0px;
  1229. top:0px;
  1230. width:0px;
  1231. height:0px;
  1232. }
  1233. #u176341_img {
  1234. border-width:0px;
  1235. position:absolute;
  1236. left:0px;
  1237. top:0px;
  1238. width:9px;
  1239. height:15px;
  1240. }
  1241. #u176341 {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:380px;
  1245. top:259px;
  1246. width:9px;
  1247. height:15px;
  1248. display:flex;
  1249. -webkit-transform:rotate(180deg);
  1250. -moz-transform:rotate(180deg);
  1251. -ms-transform:rotate(180deg);
  1252. transform:rotate(180deg);
  1253. }
  1254. #u176341 .text {
  1255. position:absolute;
  1256. align-self:center;
  1257. padding:2px 2px 2px 2px;
  1258. box-sizing:border-box;
  1259. width:100%;
  1260. }
  1261. #u176341_text {
  1262. border-width:0px;
  1263. word-wrap:break-word;
  1264. text-transform:none;
  1265. visibility:hidden;
  1266. }
  1267. #u176342_div {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:0px;
  1271. top:0px;
  1272. width:43px;
  1273. height:30px;
  1274. background:inherit;
  1275. background-color:rgba(255, 255, 255, 0);
  1276. border:none;
  1277. border-left:0px;
  1278. border-top:0px;
  1279. border-right:0px;
  1280. border-radius:0px;
  1281. border-bottom-right-radius:0px;
  1282. border-bottom-left-radius:0px;
  1283. -moz-box-shadow:none;
  1284. -webkit-box-shadow:none;
  1285. box-shadow:none;
  1286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1287. font-weight:400;
  1288. font-style:normal;
  1289. font-size:14px;
  1290. color:#AAAAAA;
  1291. text-align:right;
  1292. line-height:30px;
  1293. }
  1294. #u176342 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:332px;
  1298. top:251px;
  1299. width:43px;
  1300. height:30px;
  1301. display:flex;
  1302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1303. font-weight:400;
  1304. font-style:normal;
  1305. font-size:14px;
  1306. color:#AAAAAA;
  1307. text-align:right;
  1308. line-height:30px;
  1309. }
  1310. #u176342 .text {
  1311. position:absolute;
  1312. align-self:flex-start;
  1313. padding:0px 0px 0px 0px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u176342_text {
  1318. border-width:0px;
  1319. white-space:nowrap;
  1320. text-transform:none;
  1321. }
  1322. #u176343 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:0px;
  1328. height:0px;
  1329. }
  1330. #u176344_div {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:0px;
  1335. width:341px;
  1336. height:55px;
  1337. background:inherit;
  1338. background-color:rgba(242, 242, 242, 1);
  1339. box-sizing:border-box;
  1340. border-width:1px;
  1341. border-style:solid;
  1342. border-color:rgba(242, 242, 242, 1);
  1343. border-radius:4px;
  1344. -moz-box-shadow:none;
  1345. -webkit-box-shadow:none;
  1346. box-shadow:none;
  1347. }
  1348. #u176344 {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:46px;
  1352. top:340px;
  1353. width:341px;
  1354. height:55px;
  1355. display:flex;
  1356. }
  1357. #u176344 .text {
  1358. position:absolute;
  1359. align-self:center;
  1360. padding:2px 2px 2px 2px;
  1361. box-sizing:border-box;
  1362. width:100%;
  1363. }
  1364. #u176344_text {
  1365. border-width:0px;
  1366. word-wrap:break-word;
  1367. text-transform:none;
  1368. visibility:hidden;
  1369. }
  1370. #u176345_div {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:49px;
  1376. height:30px;
  1377. background:inherit;
  1378. background-color:rgba(255, 255, 255, 0);
  1379. border:none;
  1380. border-left:0px;
  1381. border-top:0px;
  1382. border-right:0px;
  1383. border-radius:0px;
  1384. border-bottom-right-radius:0px;
  1385. border-bottom-left-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1390. font-weight:400;
  1391. font-style:normal;
  1392. font-size:12px;
  1393. line-height:30px;
  1394. }
  1395. #u176345 {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:64px;
  1399. top:353px;
  1400. width:49px;
  1401. height:30px;
  1402. display:flex;
  1403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1404. font-weight:400;
  1405. font-style:normal;
  1406. font-size:12px;
  1407. line-height:30px;
  1408. }
  1409. #u176345 .text {
  1410. position:absolute;
  1411. align-self:flex-start;
  1412. padding:0px 0px 0px 0px;
  1413. box-sizing:border-box;
  1414. width:100%;
  1415. }
  1416. #u176345_text {
  1417. border-width:0px;
  1418. white-space:nowrap;
  1419. text-transform:none;
  1420. }
  1421. #u176346_div {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:0px;
  1425. top:0px;
  1426. width:13px;
  1427. height:30px;
  1428. background:inherit;
  1429. background-color:rgba(255, 255, 255, 0);
  1430. border:none;
  1431. border-left:0px;
  1432. border-top:0px;
  1433. border-right:0px;
  1434. border-radius:0px;
  1435. border-bottom-right-radius:0px;
  1436. border-bottom-left-radius:0px;
  1437. -moz-box-shadow:none;
  1438. -webkit-box-shadow:none;
  1439. box-shadow:none;
  1440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1441. font-weight:400;
  1442. font-style:normal;
  1443. font-size:12px;
  1444. line-height:30px;
  1445. }
  1446. #u176346 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:364px;
  1450. top:353px;
  1451. width:13px;
  1452. height:30px;
  1453. display:flex;
  1454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1455. font-weight:400;
  1456. font-style:normal;
  1457. font-size:12px;
  1458. line-height:30px;
  1459. }
  1460. #u176346 .text {
  1461. position:absolute;
  1462. align-self:flex-start;
  1463. padding:0px 0px 0px 0px;
  1464. box-sizing:border-box;
  1465. width:100%;
  1466. }
  1467. #u176346_text {
  1468. border-width:0px;
  1469. white-space:nowrap;
  1470. text-transform:none;
  1471. }
  1472. #u176347_div {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:0px;
  1476. top:0px;
  1477. width:43px;
  1478. height:30px;
  1479. background:inherit;
  1480. background-color:rgba(255, 255, 255, 0);
  1481. border:none;
  1482. border-left:0px;
  1483. border-top:0px;
  1484. border-right:0px;
  1485. border-radius:0px;
  1486. border-bottom-right-radius:0px;
  1487. border-bottom-left-radius:0px;
  1488. -moz-box-shadow:none;
  1489. -webkit-box-shadow:none;
  1490. box-shadow:none;
  1491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1492. font-weight:400;
  1493. font-style:normal;
  1494. font-size:14px;
  1495. color:#AAAAAA;
  1496. text-align:right;
  1497. line-height:30px;
  1498. }
  1499. #u176347 {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:311px;
  1503. top:353px;
  1504. width:43px;
  1505. height:30px;
  1506. display:flex;
  1507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1508. font-weight:400;
  1509. font-style:normal;
  1510. font-size:14px;
  1511. color:#AAAAAA;
  1512. text-align:right;
  1513. line-height:30px;
  1514. }
  1515. #u176347 .text {
  1516. position:absolute;
  1517. align-self:flex-start;
  1518. padding:0px 0px 0px 0px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u176347_text {
  1523. border-width:0px;
  1524. white-space:nowrap;
  1525. text-transform:none;
  1526. }
  1527. #u176348_div {
  1528. border-width:0px;
  1529. position:absolute;
  1530. left:0px;
  1531. top:0px;
  1532. width:375px;
  1533. height:420px;
  1534. background:inherit;
  1535. background-color:rgba(255, 255, 255, 1);
  1536. box-sizing:border-box;
  1537. border-width:1px;
  1538. border-style:solid;
  1539. border-color:rgba(242, 242, 242, 1);
  1540. border-top:0px;
  1541. border-radius:27px;
  1542. border-top-left-radius:0px;
  1543. border-top-right-radius:0px;
  1544. -moz-box-shadow:none;
  1545. -webkit-box-shadow:none;
  1546. box-shadow:none;
  1547. }
  1548. #u176348 {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:29px;
  1552. top:425px;
  1553. width:375px;
  1554. height:420px;
  1555. display:flex;
  1556. }
  1557. #u176348 .text {
  1558. position:absolute;
  1559. align-self:center;
  1560. padding:2px 2px 2px 2px;
  1561. box-sizing:border-box;
  1562. width:100%;
  1563. }
  1564. #u176348_text {
  1565. border-width:0px;
  1566. word-wrap:break-word;
  1567. text-transform:none;
  1568. visibility:hidden;
  1569. }
  1570. #u176349 {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:0px;
  1574. top:0px;
  1575. width:0px;
  1576. height:0px;
  1577. }
  1578. #u176350_img {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:14px;
  1584. height:14px;
  1585. }
  1586. #u176350 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:46px;
  1590. top:443px;
  1591. width:14px;
  1592. height:14px;
  1593. display:flex;
  1594. }
  1595. #u176350 .text {
  1596. position:absolute;
  1597. align-self:center;
  1598. padding:2px 2px 2px 2px;
  1599. box-sizing:border-box;
  1600. width:100%;
  1601. }
  1602. #u176350_text {
  1603. border-width:0px;
  1604. word-wrap:break-word;
  1605. text-transform:none;
  1606. visibility:hidden;
  1607. }
  1608. #u176351_div {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:121px;
  1614. height:30px;
  1615. background:inherit;
  1616. background-color:rgba(255, 255, 255, 0);
  1617. border:none;
  1618. border-left:0px;
  1619. border-top:0px;
  1620. border-right:0px;
  1621. border-radius:0px;
  1622. border-bottom-right-radius:0px;
  1623. border-bottom-left-radius:0px;
  1624. -moz-box-shadow:none;
  1625. -webkit-box-shadow:none;
  1626. box-shadow:none;
  1627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1628. font-weight:400;
  1629. font-style:normal;
  1630. font-size:12px;
  1631. line-height:30px;
  1632. }
  1633. #u176351 {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:70px;
  1637. top:435px;
  1638. width:121px;
  1639. height:30px;
  1640. display:flex;
  1641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1642. font-weight:400;
  1643. font-style:normal;
  1644. font-size:12px;
  1645. line-height:30px;
  1646. }
  1647. #u176351 .text {
  1648. position:absolute;
  1649. align-self:flex-start;
  1650. padding:0px 0px 0px 0px;
  1651. box-sizing:border-box;
  1652. width:100%;
  1653. }
  1654. #u176351_text {
  1655. border-width:0px;
  1656. white-space:nowrap;
  1657. text-transform:none;
  1658. }
  1659. #u176352_div {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:0px;
  1663. top:0px;
  1664. width:375px;
  1665. height:80px;
  1666. background:inherit;
  1667. background-color:rgba(255, 255, 255, 1);
  1668. border:none;
  1669. border-top:0px;
  1670. border-radius:23px;
  1671. border-top-left-radius:0px;
  1672. border-top-right-radius:0px;
  1673. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1674. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1675. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1676. }
  1677. #u176352 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:29px;
  1681. top:765px;
  1682. width:375px;
  1683. height:80px;
  1684. display:flex;
  1685. }
  1686. #u176352 .text {
  1687. position:absolute;
  1688. align-self:center;
  1689. padding:2px 2px 2px 2px;
  1690. box-sizing:border-box;
  1691. width:100%;
  1692. }
  1693. #u176352_text {
  1694. border-width:0px;
  1695. word-wrap:break-word;
  1696. text-transform:none;
  1697. visibility:hidden;
  1698. }
  1699. #u176353_div {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:43px;
  1705. height:30px;
  1706. background:inherit;
  1707. background-color:rgba(255, 255, 255, 0);
  1708. border:none;
  1709. border-left:0px;
  1710. border-top:0px;
  1711. border-right:0px;
  1712. border-radius:0px;
  1713. border-bottom-right-radius:0px;
  1714. border-bottom-left-radius:0px;
  1715. -moz-box-shadow:none;
  1716. -webkit-box-shadow:none;
  1717. box-shadow:none;
  1718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1719. font-weight:400;
  1720. font-style:normal;
  1721. font-size:14px;
  1722. color:#555555;
  1723. line-height:30px;
  1724. }
  1725. #u176353 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:46px;
  1729. top:790px;
  1730. width:43px;
  1731. height:30px;
  1732. display:flex;
  1733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1734. font-weight:400;
  1735. font-style:normal;
  1736. font-size:14px;
  1737. color:#555555;
  1738. line-height:30px;
  1739. }
  1740. #u176353 .text {
  1741. position:absolute;
  1742. align-self:flex-start;
  1743. padding:0px 0px 0px 0px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u176353_text {
  1748. border-width:0px;
  1749. white-space:nowrap;
  1750. text-transform:none;
  1751. }
  1752. #u176354_div {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:100px;
  1758. height:40px;
  1759. background:inherit;
  1760. background-color:rgba(24, 144, 255, 1);
  1761. box-sizing:border-box;
  1762. border-width:1px;
  1763. border-style:solid;
  1764. border-color:rgba(24, 144, 255, 1);
  1765. border-radius:19px;
  1766. -moz-box-shadow:none;
  1767. -webkit-box-shadow:none;
  1768. box-shadow:none;
  1769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1770. font-weight:400;
  1771. font-style:normal;
  1772. font-size:14px;
  1773. color:#FFFFFF;
  1774. text-align:center;
  1775. line-height:30px;
  1776. }
  1777. #u176354 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:272px;
  1781. top:785px;
  1782. width:100px;
  1783. height:40px;
  1784. display:flex;
  1785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. color:#FFFFFF;
  1790. text-align:center;
  1791. line-height:30px;
  1792. }
  1793. #u176354 .text {
  1794. position:absolute;
  1795. align-self:center;
  1796. padding:0px 0px 0px 0px;
  1797. box-sizing:border-box;
  1798. width:100%;
  1799. }
  1800. #u176354_text {
  1801. border-width:0px;
  1802. word-wrap:break-word;
  1803. text-transform:none;
  1804. }
  1805. #u176355 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:0px;
  1811. height:0px;
  1812. }
  1813. #u176356_div {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:0px;
  1817. top:0px;
  1818. width:375px;
  1819. height:780px;
  1820. background:inherit;
  1821. background-color:rgba(51, 51, 51, 0.533333333333333);
  1822. border:none;
  1823. border-top:0px;
  1824. border-radius:25px;
  1825. border-top-left-radius:0px;
  1826. border-top-right-radius:0px;
  1827. -moz-box-shadow:none;
  1828. -webkit-box-shadow:none;
  1829. box-shadow:none;
  1830. }
  1831. #u176356 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:482px;
  1835. top:65px;
  1836. width:375px;
  1837. height:780px;
  1838. display:flex;
  1839. }
  1840. #u176356 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:2px 2px 2px 2px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u176356_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. visibility:hidden;
  1852. }
  1853. #u176357_div {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:375px;
  1859. height:364px;
  1860. background:inherit;
  1861. background-color:rgba(255, 255, 255, 1);
  1862. border:none;
  1863. border-top:0px;
  1864. border-radius:25px;
  1865. border-top-left-radius:0px;
  1866. border-top-right-radius:0px;
  1867. -moz-box-shadow:none;
  1868. -webkit-box-shadow:none;
  1869. box-shadow:none;
  1870. }
  1871. #u176357 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:482px;
  1875. top:481px;
  1876. width:375px;
  1877. height:364px;
  1878. display:flex;
  1879. }
  1880. #u176357 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 2px 2px 2px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u176357_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. visibility:hidden;
  1892. }
  1893. #u176358_div {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:109px;
  1899. height:30px;
  1900. background:inherit;
  1901. background-color:rgba(255, 255, 255, 0);
  1902. border:none;
  1903. border-left:0px;
  1904. border-top:0px;
  1905. border-right:0px;
  1906. border-radius:0px;
  1907. border-bottom-right-radius:0px;
  1908. border-bottom-left-radius:0px;
  1909. -moz-box-shadow:none;
  1910. -webkit-box-shadow:none;
  1911. box-shadow:none;
  1912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1913. font-weight:400;
  1914. font-style:normal;
  1915. font-size:18px;
  1916. line-height:30px;
  1917. }
  1918. #u176358 {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:506px;
  1922. top:501px;
  1923. width:109px;
  1924. height:30px;
  1925. display:flex;
  1926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1927. font-weight:400;
  1928. font-style:normal;
  1929. font-size:18px;
  1930. line-height:30px;
  1931. }
  1932. #u176358 .text {
  1933. position:absolute;
  1934. align-self:flex-start;
  1935. padding:0px 0px 0px 0px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u176358_text {
  1940. border-width:0px;
  1941. white-space:nowrap;
  1942. text-transform:none;
  1943. }
  1944. #u176359 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:0px;
  1950. height:0px;
  1951. }
  1952. #u176360_div {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:375px;
  1958. height:60px;
  1959. background:inherit;
  1960. background-color:rgba(255, 255, 255, 1);
  1961. border:none;
  1962. border-radius:0px;
  1963. -moz-box-shadow:none;
  1964. -webkit-box-shadow:none;
  1965. box-shadow:none;
  1966. }
  1967. #u176360 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:482px;
  1971. top:575px;
  1972. width:375px;
  1973. height:60px;
  1974. display:flex;
  1975. }
  1976. #u176360 .text {
  1977. position:absolute;
  1978. align-self:center;
  1979. padding:2px 2px 2px 2px;
  1980. box-sizing:border-box;
  1981. width:100%;
  1982. }
  1983. #u176360_text {
  1984. border-width:0px;
  1985. word-wrap:break-word;
  1986. text-transform:none;
  1987. visibility:hidden;
  1988. }
  1989. #u176361_div {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:71px;
  1995. height:30px;
  1996. background:inherit;
  1997. background-color:rgba(255, 255, 255, 0);
  1998. border:none;
  1999. border-left:0px;
  2000. border-top:0px;
  2001. border-right:0px;
  2002. border-radius:0px;
  2003. border-bottom-right-radius:0px;
  2004. border-bottom-left-radius:0px;
  2005. -moz-box-shadow:none;
  2006. -webkit-box-shadow:none;
  2007. box-shadow:none;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:14px;
  2012. line-height:30px;
  2013. }
  2014. #u176361 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:502px;
  2018. top:590px;
  2019. width:71px;
  2020. height:30px;
  2021. display:flex;
  2022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2023. font-weight:400;
  2024. font-style:normal;
  2025. font-size:14px;
  2026. line-height:30px;
  2027. }
  2028. #u176361 .text {
  2029. position:absolute;
  2030. align-self:flex-start;
  2031. padding:0px 0px 0px 0px;
  2032. box-sizing:border-box;
  2033. width:100%;
  2034. }
  2035. #u176361_text {
  2036. border-width:0px;
  2037. white-space:nowrap;
  2038. text-transform:none;
  2039. }
  2040. #u176362_div {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:33px;
  2046. height:30px;
  2047. background:inherit;
  2048. background-color:rgba(255, 255, 255, 0);
  2049. border:none;
  2050. border-left:0px;
  2051. border-top:0px;
  2052. border-right:0px;
  2053. border-radius:0px;
  2054. border-bottom-right-radius:0px;
  2055. border-bottom-left-radius:0px;
  2056. -moz-box-shadow:none;
  2057. -webkit-box-shadow:none;
  2058. box-shadow:none;
  2059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2060. font-weight:400;
  2061. font-style:normal;
  2062. font-size:12px;
  2063. color:#AAAAAA;
  2064. line-height:30px;
  2065. }
  2066. #u176362 {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:795px;
  2070. top:591px;
  2071. width:33px;
  2072. height:30px;
  2073. display:flex;
  2074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2075. font-weight:400;
  2076. font-style:normal;
  2077. font-size:12px;
  2078. color:#AAAAAA;
  2079. line-height:30px;
  2080. }
  2081. #u176362 .text {
  2082. position:absolute;
  2083. align-self:flex-start;
  2084. padding:0px 0px 0px 0px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u176362_text {
  2089. border-width:0px;
  2090. white-space:nowrap;
  2091. text-transform:none;
  2092. }
  2093. #u176363 {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:0px;
  2099. height:0px;
  2100. }
  2101. #u176364_img {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:5px;
  2107. height:9px;
  2108. }
  2109. #u176364 {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:832px;
  2113. top:601px;
  2114. width:5px;
  2115. height:9px;
  2116. display:flex;
  2117. -webkit-transform:rotate(180deg);
  2118. -moz-transform:rotate(180deg);
  2119. -ms-transform:rotate(180deg);
  2120. transform:rotate(180deg);
  2121. }
  2122. #u176364 .text {
  2123. position:absolute;
  2124. align-self:center;
  2125. padding:2px 2px 2px 2px;
  2126. box-sizing:border-box;
  2127. width:100%;
  2128. }
  2129. #u176364_text {
  2130. border-width:0px;
  2131. word-wrap:break-word;
  2132. text-transform:none;
  2133. visibility:hidden;
  2134. }
  2135. #u176365_div {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:183px;
  2141. height:34px;
  2142. background:inherit;
  2143. background-color:rgba(255, 255, 255, 0);
  2144. border:none;
  2145. border-left:0px;
  2146. border-top:0px;
  2147. border-right:0px;
  2148. border-radius:0px;
  2149. border-bottom-right-radius:0px;
  2150. border-bottom-left-radius:0px;
  2151. -moz-box-shadow:none;
  2152. -webkit-box-shadow:none;
  2153. box-shadow:none;
  2154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2155. font-weight:400;
  2156. font-style:normal;
  2157. font-size:12px;
  2158. color:#AAAAAA;
  2159. }
  2160. #u176365 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:506px;
  2164. top:531px;
  2165. width:183px;
  2166. height:34px;
  2167. display:flex;
  2168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2169. font-weight:400;
  2170. font-style:normal;
  2171. font-size:12px;
  2172. color:#AAAAAA;
  2173. }
  2174. #u176365 .text {
  2175. position:absolute;
  2176. align-self:flex-start;
  2177. padding:0px 0px 0px 0px;
  2178. box-sizing:border-box;
  2179. width:100%;
  2180. }
  2181. #u176365_text {
  2182. border-width:0px;
  2183. white-space:nowrap;
  2184. text-transform:none;
  2185. }
  2186. #u176366 {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:0px;
  2192. height:0px;
  2193. }
  2194. #u176367_div {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:0px;
  2198. top:0px;
  2199. width:375px;
  2200. height:60px;
  2201. background:inherit;
  2202. background-color:rgba(255, 255, 255, 1);
  2203. border:none;
  2204. border-radius:0px;
  2205. -moz-box-shadow:none;
  2206. -webkit-box-shadow:none;
  2207. box-shadow:none;
  2208. }
  2209. #u176367 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:482px;
  2213. top:635px;
  2214. width:375px;
  2215. height:60px;
  2216. display:flex;
  2217. }
  2218. #u176367 .text {
  2219. position:absolute;
  2220. align-self:center;
  2221. padding:2px 2px 2px 2px;
  2222. box-sizing:border-box;
  2223. width:100%;
  2224. }
  2225. #u176367_text {
  2226. border-width:0px;
  2227. word-wrap:break-word;
  2228. text-transform:none;
  2229. visibility:hidden;
  2230. }
  2231. #u176368_div {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:74px;
  2237. height:30px;
  2238. background:inherit;
  2239. background-color:rgba(255, 255, 255, 0);
  2240. border:none;
  2241. border-left:0px;
  2242. border-top:0px;
  2243. border-right:0px;
  2244. border-radius:0px;
  2245. border-bottom-right-radius:0px;
  2246. border-bottom-left-radius:0px;
  2247. -moz-box-shadow:none;
  2248. -webkit-box-shadow:none;
  2249. box-shadow:none;
  2250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2251. font-weight:400;
  2252. font-style:normal;
  2253. font-size:14px;
  2254. line-height:30px;
  2255. }
  2256. #u176368 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:502px;
  2260. top:650px;
  2261. width:74px;
  2262. height:30px;
  2263. display:flex;
  2264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:14px;
  2268. line-height:30px;
  2269. }
  2270. #u176368 .text {
  2271. position:absolute;
  2272. align-self:flex-start;
  2273. padding:0px 0px 0px 0px;
  2274. box-sizing:border-box;
  2275. width:100%;
  2276. }
  2277. #u176368_text {
  2278. border-width:0px;
  2279. white-space:nowrap;
  2280. text-transform:none;
  2281. }
  2282. #u176369_div {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:33px;
  2288. height:30px;
  2289. background:inherit;
  2290. background-color:rgba(255, 255, 255, 0);
  2291. border:none;
  2292. border-left:0px;
  2293. border-top:0px;
  2294. border-right:0px;
  2295. border-radius:0px;
  2296. border-bottom-right-radius:0px;
  2297. border-bottom-left-radius:0px;
  2298. -moz-box-shadow:none;
  2299. -webkit-box-shadow:none;
  2300. box-shadow:none;
  2301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2302. font-weight:400;
  2303. font-style:normal;
  2304. font-size:12px;
  2305. color:#AAAAAA;
  2306. line-height:30px;
  2307. }
  2308. #u176369 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:795px;
  2312. top:651px;
  2313. width:33px;
  2314. height:30px;
  2315. display:flex;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:12px;
  2320. color:#AAAAAA;
  2321. line-height:30px;
  2322. }
  2323. #u176369 .text {
  2324. position:absolute;
  2325. align-self:flex-start;
  2326. padding:0px 0px 0px 0px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u176369_text {
  2331. border-width:0px;
  2332. white-space:nowrap;
  2333. text-transform:none;
  2334. }
  2335. #u176370 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:0px;
  2341. height:0px;
  2342. }
  2343. #u176371_img {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:5px;
  2349. height:9px;
  2350. }
  2351. #u176371 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:832px;
  2355. top:661px;
  2356. width:5px;
  2357. height:9px;
  2358. display:flex;
  2359. -webkit-transform:rotate(180deg);
  2360. -moz-transform:rotate(180deg);
  2361. -ms-transform:rotate(180deg);
  2362. transform:rotate(180deg);
  2363. }
  2364. #u176371 .text {
  2365. position:absolute;
  2366. align-self:center;
  2367. padding:2px 2px 2px 2px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u176371_text {
  2372. border-width:0px;
  2373. word-wrap:break-word;
  2374. text-transform:none;
  2375. visibility:hidden;
  2376. }
  2377. #u176372_img {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:341px;
  2383. height:2px;
  2384. }
  2385. #u176372 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:502px;
  2389. top:635px;
  2390. width:340px;
  2391. height:1px;
  2392. display:flex;
  2393. }
  2394. #u176372 .text {
  2395. position:absolute;
  2396. align-self:center;
  2397. padding:2px 2px 2px 2px;
  2398. box-sizing:border-box;
  2399. width:100%;
  2400. }
  2401. #u176372_text {
  2402. border-width:0px;
  2403. word-wrap:break-word;
  2404. text-transform:none;
  2405. visibility:hidden;
  2406. }
  2407. #u176373_img {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:0px;
  2411. top:0px;
  2412. width:341px;
  2413. height:2px;
  2414. }
  2415. #u176373 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:502px;
  2419. top:694px;
  2420. width:340px;
  2421. height:1px;
  2422. display:flex;
  2423. }
  2424. #u176373 .text {
  2425. position:absolute;
  2426. align-self:center;
  2427. padding:2px 2px 2px 2px;
  2428. box-sizing:border-box;
  2429. width:100%;
  2430. }
  2431. #u176373_text {
  2432. border-width:0px;
  2433. word-wrap:break-word;
  2434. text-transform:none;
  2435. visibility:hidden;
  2436. }
  2437. #u176374_img {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:376px;
  2443. height:2px;
  2444. }
  2445. #u176374 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:482px;
  2449. top:575px;
  2450. width:375px;
  2451. height:1px;
  2452. display:flex;
  2453. }
  2454. #u176374 .text {
  2455. position:absolute;
  2456. align-self:center;
  2457. padding:2px 2px 2px 2px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u176374_text {
  2462. border-width:0px;
  2463. word-wrap:break-word;
  2464. text-transform:none;
  2465. visibility:hidden;
  2466. }
  2467. #u176376_img {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:433px;
  2473. height:865px;
  2474. }
  2475. #u176376 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:915px;
  2479. top:0px;
  2480. width:433px;
  2481. height:865px;
  2482. display:flex;
  2483. }
  2484. #u176376 .text {
  2485. position:absolute;
  2486. align-self:center;
  2487. padding:2px 2px 2px 2px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u176376_text {
  2492. border-width:0px;
  2493. word-wrap:break-word;
  2494. text-transform:none;
  2495. visibility:hidden;
  2496. }
  2497. #u176377_div {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:375px;
  2503. height:40px;
  2504. background:inherit;
  2505. background-color:rgba(255, 255, 255, 1);
  2506. box-sizing:border-box;
  2507. border-width:1px;
  2508. border-style:solid;
  2509. border-color:rgba(215, 215, 215, 1);
  2510. border-left:0px;
  2511. border-top:0px;
  2512. border-right:0px;
  2513. border-radius:0px;
  2514. border-bottom-right-radius:0px;
  2515. border-bottom-left-radius:0px;
  2516. -moz-box-shadow:none;
  2517. -webkit-box-shadow:none;
  2518. box-shadow:none;
  2519. }
  2520. #u176377 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:944px;
  2524. top:67px;
  2525. width:375px;
  2526. height:40px;
  2527. display:flex;
  2528. }
  2529. #u176377 .text {
  2530. position:absolute;
  2531. align-self:center;
  2532. padding:2px 2px 2px 2px;
  2533. box-sizing:border-box;
  2534. width:100%;
  2535. }
  2536. #u176377_text {
  2537. border-width:0px;
  2538. word-wrap:break-word;
  2539. text-transform:none;
  2540. visibility:hidden;
  2541. }
  2542. #u176378 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:0px;
  2548. height:0px;
  2549. }
  2550. #u176379_div {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:88px;
  2556. height:32px;
  2557. background:inherit;
  2558. background-color:rgba(255, 255, 255, 1);
  2559. box-sizing:border-box;
  2560. border-width:1px;
  2561. border-style:solid;
  2562. border-color:rgba(242, 242, 242, 1);
  2563. border-radius:33px;
  2564. -moz-box-shadow:none;
  2565. -webkit-box-shadow:none;
  2566. box-shadow:none;
  2567. }
  2568. #u176379 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:1224px;
  2572. top:71px;
  2573. width:88px;
  2574. height:32px;
  2575. display:flex;
  2576. }
  2577. #u176379 .text {
  2578. position:absolute;
  2579. align-self:center;
  2580. padding:2px 2px 2px 2px;
  2581. box-sizing:border-box;
  2582. width:100%;
  2583. }
  2584. #u176379_text {
  2585. border-width:0px;
  2586. word-wrap:break-word;
  2587. text-transform:none;
  2588. visibility:hidden;
  2589. }
  2590. #u176380 {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:0px;
  2596. height:0px;
  2597. }
  2598. #u176381_img {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:18px;
  2604. height:18px;
  2605. }
  2606. #u176381 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:1287px;
  2610. top:78px;
  2611. width:18px;
  2612. height:18px;
  2613. display:flex;
  2614. }
  2615. #u176381 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:2px 2px 2px 2px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u176381_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. visibility:hidden;
  2627. }
  2628. #u176382_img {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:6px;
  2634. height:6px;
  2635. }
  2636. #u176382 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:1293px;
  2640. top:84px;
  2641. width:6px;
  2642. height:6px;
  2643. display:flex;
  2644. }
  2645. #u176382 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 2px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u176382_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. visibility:hidden;
  2657. }
  2658. #u176383 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:0px;
  2664. height:0px;
  2665. }
  2666. #u176384_img {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:5px;
  2672. height:5px;
  2673. }
  2674. #u176384 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:1238px;
  2678. top:85px;
  2679. width:5px;
  2680. height:5px;
  2681. display:flex;
  2682. }
  2683. #u176384 .text {
  2684. position:absolute;
  2685. align-self:center;
  2686. padding:2px 2px 2px 2px;
  2687. box-sizing:border-box;
  2688. width:100%;
  2689. }
  2690. #u176384_text {
  2691. border-width:0px;
  2692. word-wrap:break-word;
  2693. text-transform:none;
  2694. visibility:hidden;
  2695. }
  2696. #u176385_img {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:0px;
  2701. width:5px;
  2702. height:5px;
  2703. }
  2704. #u176385 {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:1254px;
  2708. top:85px;
  2709. width:5px;
  2710. height:5px;
  2711. display:flex;
  2712. }
  2713. #u176385 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:2px 2px 2px 2px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u176385_text {
  2721. border-width:0px;
  2722. word-wrap:break-word;
  2723. text-transform:none;
  2724. visibility:hidden;
  2725. }
  2726. #u176386_img {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:7px;
  2732. height:7px;
  2733. }
  2734. #u176386 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:1245px;
  2738. top:84px;
  2739. width:7px;
  2740. height:7px;
  2741. display:flex;
  2742. }
  2743. #u176386 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 2px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u176386_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. visibility:hidden;
  2755. }
  2756. #u176387_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:19px;
  2762. height:2px;
  2763. }
  2764. #u176387 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:1262px;
  2768. top:87px;
  2769. width:18px;
  2770. height:1px;
  2771. display:flex;
  2772. -webkit-transform:rotate(90deg);
  2773. -moz-transform:rotate(90deg);
  2774. -ms-transform:rotate(90deg);
  2775. transform:rotate(90deg);
  2776. }
  2777. #u176387 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 2px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u176387_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. visibility:hidden;
  2789. }
  2790. #u176388_img {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:375px;
  2796. height:44px;
  2797. }
  2798. #u176388 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:944px;
  2802. top:24px;
  2803. width:375px;
  2804. height:44px;
  2805. display:flex;
  2806. }
  2807. #u176388 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:2px 2px 2px 2px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u176388_text {
  2815. border-width:0px;
  2816. word-wrap:break-word;
  2817. text-transform:none;
  2818. visibility:hidden;
  2819. }
  2820. #u176389_div {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:375px;
  2826. height:50px;
  2827. background:inherit;
  2828. background-color:rgba(255, 255, 255, 1);
  2829. box-sizing:border-box;
  2830. border-width:1px;
  2831. border-style:solid;
  2832. border-color:rgba(242, 242, 242, 1);
  2833. border-radius:26px;
  2834. border-top-left-radius:0px;
  2835. border-top-right-radius:0px;
  2836. -moz-box-shadow:none;
  2837. -webkit-box-shadow:none;
  2838. box-shadow:none;
  2839. }
  2840. #u176389 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:944px;
  2844. top:788px;
  2845. width:375px;
  2846. height:50px;
  2847. display:flex;
  2848. }
  2849. #u176389 .text {
  2850. position:absolute;
  2851. align-self:center;
  2852. padding:2px 2px 2px 2px;
  2853. box-sizing:border-box;
  2854. width:100%;
  2855. }
  2856. #u176389_text {
  2857. border-width:0px;
  2858. word-wrap:break-word;
  2859. text-transform:none;
  2860. visibility:hidden;
  2861. }
  2862. #u176390 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:0px;
  2866. top:0px;
  2867. width:0px;
  2868. height:0px;
  2869. }
  2870. #u176391_img {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:24px;
  2876. height:24px;
  2877. }
  2878. #u176391 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:984px;
  2882. top:792px;
  2883. width:24px;
  2884. height:24px;
  2885. display:flex;
  2886. font-size:8px;
  2887. }
  2888. #u176391 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:2px 2px 2px 2px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u176391_text {
  2896. border-width:0px;
  2897. word-wrap:break-word;
  2898. text-transform:none;
  2899. }
  2900. #u176392_div {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:25px;
  2906. height:17px;
  2907. background:inherit;
  2908. background-color:rgba(255, 255, 255, 0);
  2909. border:none;
  2910. border-radius:0px;
  2911. -moz-box-shadow:none;
  2912. -webkit-box-shadow:none;
  2913. box-shadow:none;
  2914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2915. font-weight:400;
  2916. font-style:normal;
  2917. font-size:12px;
  2918. }
  2919. #u176392 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:984px;
  2923. top:817px;
  2924. width:25px;
  2925. height:17px;
  2926. display:flex;
  2927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2928. font-weight:400;
  2929. font-style:normal;
  2930. font-size:12px;
  2931. }
  2932. #u176392 .text {
  2933. position:absolute;
  2934. align-self:flex-start;
  2935. padding:0px 0px 0px 0px;
  2936. box-sizing:border-box;
  2937. width:100%;
  2938. }
  2939. #u176392_text {
  2940. border-width:0px;
  2941. white-space:nowrap;
  2942. text-transform:none;
  2943. }
  2944. #u176393 {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:0px;
  2948. top:0px;
  2949. width:0px;
  2950. height:0px;
  2951. }
  2952. #u176394_img {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:24px;
  2958. height:24px;
  2959. }
  2960. #u176394 {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:1254px;
  2964. top:794px;
  2965. width:24px;
  2966. height:24px;
  2967. display:flex;
  2968. font-size:8px;
  2969. }
  2970. #u176394 .text {
  2971. position:absolute;
  2972. align-self:center;
  2973. padding:2px 2px 2px 2px;
  2974. box-sizing:border-box;
  2975. width:100%;
  2976. }
  2977. #u176394_text {
  2978. border-width:0px;
  2979. word-wrap:break-word;
  2980. text-transform:none;
  2981. }
  2982. #u176395_div {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:0px;
  2987. width:25px;
  2988. height:17px;
  2989. background:inherit;
  2990. background-color:rgba(255, 255, 255, 0);
  2991. border:none;
  2992. border-radius:0px;
  2993. -moz-box-shadow:none;
  2994. -webkit-box-shadow:none;
  2995. box-shadow:none;
  2996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2997. font-weight:400;
  2998. font-style:normal;
  2999. font-size:12px;
  3000. }
  3001. #u176395 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:1254px;
  3005. top:819px;
  3006. width:25px;
  3007. height:17px;
  3008. display:flex;
  3009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3010. font-weight:400;
  3011. font-style:normal;
  3012. font-size:12px;
  3013. }
  3014. #u176395 .text {
  3015. position:absolute;
  3016. align-self:flex-start;
  3017. padding:0px 0px 0px 0px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u176395_text {
  3022. border-width:0px;
  3023. white-space:nowrap;
  3024. text-transform:none;
  3025. }
  3026. #u176396_div {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:0px;
  3030. top:0px;
  3031. width:375px;
  3032. height:681px;
  3033. background:inherit;
  3034. background-color:rgba(242, 242, 242, 0.462745098039216);
  3035. border:none;
  3036. border-radius:0px;
  3037. -moz-box-shadow:none;
  3038. -webkit-box-shadow:none;
  3039. box-shadow:none;
  3040. }
  3041. #u176396 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:944px;
  3045. top:107px;
  3046. width:375px;
  3047. height:681px;
  3048. display:flex;
  3049. }
  3050. #u176396 .text {
  3051. position:absolute;
  3052. align-self:center;
  3053. padding:2px 2px 2px 2px;
  3054. box-sizing:border-box;
  3055. width:100%;
  3056. }
  3057. #u176396_text {
  3058. border-width:0px;
  3059. word-wrap:break-word;
  3060. text-transform:none;
  3061. visibility:hidden;
  3062. }
  3063. #u176397 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:0px;
  3069. height:0px;
  3070. }
  3071. #u176398_img {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:24px;
  3077. height:24px;
  3078. }
  3079. #u176398 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:1166px;
  3083. top:792px;
  3084. width:24px;
  3085. height:24px;
  3086. display:flex;
  3087. font-size:8px;
  3088. }
  3089. #u176398 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 2px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u176398_text {
  3097. border-width:0px;
  3098. word-wrap:break-word;
  3099. text-transform:none;
  3100. }
  3101. #u176399_div {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:37px;
  3107. height:17px;
  3108. background:inherit;
  3109. background-color:rgba(255, 255, 255, 0);
  3110. border:none;
  3111. border-radius:0px;
  3112. -moz-box-shadow:none;
  3113. -webkit-box-shadow:none;
  3114. box-shadow:none;
  3115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3116. font-weight:400;
  3117. font-style:normal;
  3118. font-size:12px;
  3119. }
  3120. #u176399 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:1160px;
  3124. top:817px;
  3125. width:37px;
  3126. height:17px;
  3127. display:flex;
  3128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3129. font-weight:400;
  3130. font-style:normal;
  3131. font-size:12px;
  3132. }
  3133. #u176399 .text {
  3134. position:absolute;
  3135. align-self:flex-start;
  3136. padding:0px 0px 0px 0px;
  3137. box-sizing:border-box;
  3138. width:100%;
  3139. }
  3140. #u176399_text {
  3141. border-width:0px;
  3142. white-space:nowrap;
  3143. text-transform:none;
  3144. }
  3145. #u176400 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:0px;
  3149. top:0px;
  3150. width:0px;
  3151. height:0px;
  3152. }
  3153. #u176401_img {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:24px;
  3159. height:24px;
  3160. }
  3161. #u176401 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:1072px;
  3165. top:792px;
  3166. width:24px;
  3167. height:24px;
  3168. display:flex;
  3169. font-size:8px;
  3170. }
  3171. #u176401 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:2px 2px 2px 2px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u176401_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. }
  3183. #u176402_div {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:0px;
  3187. top:0px;
  3188. width:37px;
  3189. height:17px;
  3190. background:inherit;
  3191. background-color:rgba(255, 255, 255, 0);
  3192. border:none;
  3193. border-radius:0px;
  3194. -moz-box-shadow:none;
  3195. -webkit-box-shadow:none;
  3196. box-shadow:none;
  3197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3198. font-weight:400;
  3199. font-style:normal;
  3200. font-size:12px;
  3201. }
  3202. #u176402 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:1066px;
  3206. top:817px;
  3207. width:37px;
  3208. height:17px;
  3209. display:flex;
  3210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3211. font-weight:400;
  3212. font-style:normal;
  3213. font-size:12px;
  3214. }
  3215. #u176402 .text {
  3216. position:absolute;
  3217. align-self:flex-start;
  3218. padding:0px 0px 0px 0px;
  3219. box-sizing:border-box;
  3220. width:100%;
  3221. }
  3222. #u176402_text {
  3223. border-width:0px;
  3224. white-space:nowrap;
  3225. text-transform:none;
  3226. }
  3227. #u176403_img {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:375px;
  3233. height:734px;
  3234. }
  3235. #u176403 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:944px;
  3239. top:106px;
  3240. width:375px;
  3241. height:734px;
  3242. display:flex;
  3243. }
  3244. #u176403 .text {
  3245. position:absolute;
  3246. align-self:center;
  3247. padding:2px 2px 2px 2px;
  3248. box-sizing:border-box;
  3249. width:100%;
  3250. }
  3251. #u176403_text {
  3252. border-width:0px;
  3253. word-wrap:break-word;
  3254. text-transform:none;
  3255. visibility:hidden;
  3256. }
  3257. #u176404 {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:0px;
  3263. height:0px;
  3264. }
  3265. #u176405_img {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:11px;
  3271. height:18px;
  3272. }
  3273. #u176405 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:955px;
  3277. top:79px;
  3278. width:11px;
  3279. height:18px;
  3280. display:flex;
  3281. }
  3282. #u176405 .text {
  3283. position:absolute;
  3284. align-self:center;
  3285. padding:2px 2px 2px 2px;
  3286. box-sizing:border-box;
  3287. width:100%;
  3288. }
  3289. #u176405_text {
  3290. border-width:0px;
  3291. word-wrap:break-word;
  3292. text-transform:none;
  3293. visibility:hidden;
  3294. }
  3295. #u176406_div {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:57px;
  3301. height:30px;
  3302. background:inherit;
  3303. background-color:rgba(255, 255, 255, 0);
  3304. border:none;
  3305. border-left:0px;
  3306. border-top:0px;
  3307. border-right:0px;
  3308. border-radius:0px;
  3309. border-bottom-right-radius:0px;
  3310. border-bottom-left-radius:0px;
  3311. -moz-box-shadow:none;
  3312. -webkit-box-shadow:none;
  3313. box-shadow:none;
  3314. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3315. font-weight:500;
  3316. font-style:normal;
  3317. font-size:14px;
  3318. line-height:30px;
  3319. }
  3320. #u176406 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:1103px;
  3324. top:73px;
  3325. width:57px;
  3326. height:30px;
  3327. display:flex;
  3328. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3329. font-weight:500;
  3330. font-style:normal;
  3331. font-size:14px;
  3332. line-height:30px;
  3333. }
  3334. #u176406 .text {
  3335. position:absolute;
  3336. align-self:flex-start;
  3337. padding:0px 0px 0px 0px;
  3338. box-sizing:border-box;
  3339. width:100%;
  3340. }
  3341. #u176406_text {
  3342. border-width:0px;
  3343. white-space:nowrap;
  3344. text-transform:none;
  3345. }
  3346. #u176407 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:0px;
  3352. height:0px;
  3353. }
  3354. #u176408_div {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:0px;
  3358. top:0px;
  3359. width:375px;
  3360. height:60px;
  3361. background:inherit;
  3362. background-color:rgba(255, 255, 255, 1);
  3363. box-sizing:border-box;
  3364. border-width:1px;
  3365. border-style:solid;
  3366. border-color:rgba(242, 242, 242, 1);
  3367. border-radius:4px;
  3368. -moz-box-shadow:none;
  3369. -webkit-box-shadow:none;
  3370. box-shadow:none;
  3371. }
  3372. #u176408 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:944px;
  3376. top:106px;
  3377. width:375px;
  3378. height:60px;
  3379. display:flex;
  3380. }
  3381. #u176408 .text {
  3382. position:absolute;
  3383. align-self:center;
  3384. padding:2px 2px 2px 2px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u176408_text {
  3389. border-width:0px;
  3390. word-wrap:break-word;
  3391. text-transform:none;
  3392. visibility:hidden;
  3393. }
  3394. #u176409 {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:0px;
  3398. top:0px;
  3399. width:0px;
  3400. height:0px;
  3401. }
  3402. #u176410_div {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:145px;
  3408. height:30px;
  3409. background:inherit;
  3410. background-color:rgba(255, 255, 255, 0);
  3411. border:none;
  3412. border-left:0px;
  3413. border-top:0px;
  3414. border-right:0px;
  3415. border-radius:0px;
  3416. border-bottom-right-radius:0px;
  3417. border-bottom-left-radius:0px;
  3418. -moz-box-shadow:none;
  3419. -webkit-box-shadow:none;
  3420. box-shadow:none;
  3421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3422. font-weight:400;
  3423. font-style:normal;
  3424. font-size:18px;
  3425. line-height:30px;
  3426. }
  3427. #u176410 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:961px;
  3431. top:120px;
  3432. width:145px;
  3433. height:30px;
  3434. display:flex;
  3435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:18px;
  3439. line-height:30px;
  3440. }
  3441. #u176410 .text {
  3442. position:absolute;
  3443. align-self:flex-start;
  3444. padding:0px 0px 0px 0px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u176410_text {
  3449. border-width:0px;
  3450. white-space:nowrap;
  3451. text-transform:none;
  3452. }
  3453. #u176411 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:0px;
  3459. height:0px;
  3460. }
  3461. #u176412_div {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:375px;
  3467. height:60px;
  3468. background:inherit;
  3469. background-color:rgba(255, 255, 255, 1);
  3470. box-sizing:border-box;
  3471. border-width:1px;
  3472. border-style:solid;
  3473. border-color:rgba(242, 242, 242, 1);
  3474. border-radius:4px;
  3475. -moz-box-shadow:none;
  3476. -webkit-box-shadow:none;
  3477. box-shadow:none;
  3478. }
  3479. #u176412 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:944px;
  3483. top:236px;
  3484. width:375px;
  3485. height:60px;
  3486. display:flex;
  3487. }
  3488. #u176412 .text {
  3489. position:absolute;
  3490. align-self:center;
  3491. padding:2px 2px 2px 2px;
  3492. box-sizing:border-box;
  3493. width:100%;
  3494. }
  3495. #u176412_text {
  3496. border-width:0px;
  3497. word-wrap:break-word;
  3498. text-transform:none;
  3499. visibility:hidden;
  3500. }
  3501. #u176413_div {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:92px;
  3507. height:30px;
  3508. background:inherit;
  3509. background-color:rgba(255, 255, 255, 0);
  3510. border:none;
  3511. border-left:0px;
  3512. border-top:0px;
  3513. border-right:0px;
  3514. border-radius:0px;
  3515. border-bottom-right-radius:0px;
  3516. border-bottom-left-radius:0px;
  3517. -moz-box-shadow:none;
  3518. -webkit-box-shadow:none;
  3519. box-shadow:none;
  3520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3521. font-weight:400;
  3522. font-style:normal;
  3523. font-size:14px;
  3524. line-height:30px;
  3525. }
  3526. #u176413 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:961px;
  3530. top:251px;
  3531. width:92px;
  3532. height:30px;
  3533. display:flex;
  3534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:14px;
  3538. line-height:30px;
  3539. }
  3540. #u176413 .text {
  3541. position:absolute;
  3542. align-self:flex-start;
  3543. padding:0px 0px 0px 0px;
  3544. box-sizing:border-box;
  3545. width:100%;
  3546. }
  3547. #u176413_text {
  3548. border-width:0px;
  3549. white-space:nowrap;
  3550. text-transform:none;
  3551. }
  3552. #u176414_div {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:375px;
  3558. height:200px;
  3559. background:inherit;
  3560. background-color:rgba(255, 255, 255, 1);
  3561. box-sizing:border-box;
  3562. border-width:1px;
  3563. border-style:solid;
  3564. border-color:rgba(242, 242, 242, 1);
  3565. border-radius:4px;
  3566. -moz-box-shadow:none;
  3567. -webkit-box-shadow:none;
  3568. box-shadow:none;
  3569. }
  3570. #u176414 {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:944px;
  3574. top:295px;
  3575. width:375px;
  3576. height:200px;
  3577. display:flex;
  3578. }
  3579. #u176414 .text {
  3580. position:absolute;
  3581. align-self:center;
  3582. padding:2px 2px 2px 2px;
  3583. box-sizing:border-box;
  3584. width:100%;
  3585. }
  3586. #u176414_text {
  3587. border-width:0px;
  3588. word-wrap:break-word;
  3589. text-transform:none;
  3590. visibility:hidden;
  3591. }
  3592. #u176415_div {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:0px;
  3596. top:0px;
  3597. width:57px;
  3598. height:30px;
  3599. background:inherit;
  3600. background-color:rgba(255, 255, 255, 0);
  3601. border:none;
  3602. border-left:0px;
  3603. border-top:0px;
  3604. border-right:0px;
  3605. border-radius:0px;
  3606. border-bottom-right-radius:0px;
  3607. border-bottom-left-radius:0px;
  3608. -moz-box-shadow:none;
  3609. -webkit-box-shadow:none;
  3610. box-shadow:none;
  3611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3612. font-weight:400;
  3613. font-style:normal;
  3614. font-size:14px;
  3615. line-height:30px;
  3616. }
  3617. #u176415 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:961px;
  3621. top:305px;
  3622. width:57px;
  3623. height:30px;
  3624. display:flex;
  3625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:14px;
  3629. line-height:30px;
  3630. }
  3631. #u176415 .text {
  3632. position:absolute;
  3633. align-self:flex-start;
  3634. padding:0px 0px 0px 0px;
  3635. box-sizing:border-box;
  3636. width:100%;
  3637. }
  3638. #u176415_text {
  3639. border-width:0px;
  3640. white-space:nowrap;
  3641. text-transform:none;
  3642. }
  3643. #u176416 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:0px;
  3649. height:0px;
  3650. }
  3651. #u176417 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:0px;
  3657. height:0px;
  3658. }
  3659. #u176418_img {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:9px;
  3665. height:15px;
  3666. }
  3667. #u176418 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:1295px;
  3671. top:259px;
  3672. width:9px;
  3673. height:15px;
  3674. display:flex;
  3675. -webkit-transform:rotate(180deg);
  3676. -moz-transform:rotate(180deg);
  3677. -ms-transform:rotate(180deg);
  3678. transform:rotate(180deg);
  3679. }
  3680. #u176418 .text {
  3681. position:absolute;
  3682. align-self:center;
  3683. padding:2px 2px 2px 2px;
  3684. box-sizing:border-box;
  3685. width:100%;
  3686. }
  3687. #u176418_text {
  3688. border-width:0px;
  3689. word-wrap:break-word;
  3690. text-transform:none;
  3691. visibility:hidden;
  3692. }
  3693. #u176419_div {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:0px;
  3697. top:0px;
  3698. width:74px;
  3699. height:30px;
  3700. background:inherit;
  3701. background-color:rgba(255, 255, 255, 0);
  3702. border:none;
  3703. border-left:0px;
  3704. border-top:0px;
  3705. border-right:0px;
  3706. border-radius:0px;
  3707. border-bottom-right-radius:0px;
  3708. border-bottom-left-radius:0px;
  3709. -moz-box-shadow:none;
  3710. -webkit-box-shadow:none;
  3711. box-shadow:none;
  3712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:14px;
  3716. text-align:right;
  3717. line-height:30px;
  3718. }
  3719. #u176419 {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:1216px;
  3723. top:251px;
  3724. width:74px;
  3725. height:30px;
  3726. display:flex;
  3727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. font-size:14px;
  3731. text-align:right;
  3732. line-height:30px;
  3733. }
  3734. #u176419 .text {
  3735. position:absolute;
  3736. align-self:flex-start;
  3737. padding:0px 0px 0px 0px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u176419_text {
  3742. border-width:0px;
  3743. white-space:nowrap;
  3744. text-transform:none;
  3745. }
  3746. #u176420 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:0px;
  3752. height:0px;
  3753. }
  3754. #u176421_div {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:341px;
  3760. height:55px;
  3761. background:inherit;
  3762. background-color:rgba(242, 242, 242, 1);
  3763. box-sizing:border-box;
  3764. border-width:1px;
  3765. border-style:solid;
  3766. border-color:rgba(242, 242, 242, 1);
  3767. border-radius:4px;
  3768. -moz-box-shadow:none;
  3769. -webkit-box-shadow:none;
  3770. box-shadow:none;
  3771. }
  3772. #u176421 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:961px;
  3776. top:425px;
  3777. width:341px;
  3778. height:55px;
  3779. display:flex;
  3780. }
  3781. #u176421 .text {
  3782. position:absolute;
  3783. align-self:center;
  3784. padding:2px 2px 2px 2px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u176421_text {
  3789. border-width:0px;
  3790. word-wrap:break-word;
  3791. text-transform:none;
  3792. visibility:hidden;
  3793. }
  3794. #u176422_div {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:49px;
  3800. height:30px;
  3801. background:inherit;
  3802. background-color:rgba(255, 255, 255, 0);
  3803. border:none;
  3804. border-left:0px;
  3805. border-top:0px;
  3806. border-right:0px;
  3807. border-radius:0px;
  3808. border-bottom-right-radius:0px;
  3809. border-bottom-left-radius:0px;
  3810. -moz-box-shadow:none;
  3811. -webkit-box-shadow:none;
  3812. box-shadow:none;
  3813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3814. font-weight:400;
  3815. font-style:normal;
  3816. font-size:12px;
  3817. line-height:30px;
  3818. }
  3819. #u176422 {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:979px;
  3823. top:438px;
  3824. width:49px;
  3825. height:30px;
  3826. display:flex;
  3827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3828. font-weight:400;
  3829. font-style:normal;
  3830. font-size:12px;
  3831. line-height:30px;
  3832. }
  3833. #u176422 .text {
  3834. position:absolute;
  3835. align-self:flex-start;
  3836. padding:0px 0px 0px 0px;
  3837. box-sizing:border-box;
  3838. width:100%;
  3839. }
  3840. #u176422_text {
  3841. border-width:0px;
  3842. white-space:nowrap;
  3843. text-transform:none;
  3844. }
  3845. #u176423_div {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:0px;
  3849. top:0px;
  3850. width:13px;
  3851. height:30px;
  3852. background:inherit;
  3853. background-color:rgba(255, 255, 255, 0);
  3854. border:none;
  3855. border-left:0px;
  3856. border-top:0px;
  3857. border-right:0px;
  3858. border-radius:0px;
  3859. border-bottom-right-radius:0px;
  3860. border-bottom-left-radius:0px;
  3861. -moz-box-shadow:none;
  3862. -webkit-box-shadow:none;
  3863. box-shadow:none;
  3864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3865. font-weight:400;
  3866. font-style:normal;
  3867. font-size:12px;
  3868. line-height:30px;
  3869. }
  3870. #u176423 {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:1279px;
  3874. top:438px;
  3875. width:13px;
  3876. height:30px;
  3877. display:flex;
  3878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3879. font-weight:400;
  3880. font-style:normal;
  3881. font-size:12px;
  3882. line-height:30px;
  3883. }
  3884. #u176423 .text {
  3885. position:absolute;
  3886. align-self:flex-start;
  3887. padding:0px 0px 0px 0px;
  3888. box-sizing:border-box;
  3889. width:100%;
  3890. }
  3891. #u176423_text {
  3892. border-width:0px;
  3893. white-space:nowrap;
  3894. text-transform:none;
  3895. }
  3896. #u176424_div {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:0px;
  3901. width:43px;
  3902. height:30px;
  3903. background:inherit;
  3904. background-color:rgba(255, 255, 255, 0);
  3905. border:none;
  3906. border-left:0px;
  3907. border-top:0px;
  3908. border-right:0px;
  3909. border-radius:0px;
  3910. border-bottom-right-radius:0px;
  3911. border-bottom-left-radius:0px;
  3912. -moz-box-shadow:none;
  3913. -webkit-box-shadow:none;
  3914. box-shadow:none;
  3915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3916. font-weight:400;
  3917. font-style:normal;
  3918. font-size:14px;
  3919. color:#AAAAAA;
  3920. text-align:right;
  3921. line-height:30px;
  3922. }
  3923. #u176424 {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:1226px;
  3927. top:438px;
  3928. width:43px;
  3929. height:30px;
  3930. display:flex;
  3931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3932. font-weight:400;
  3933. font-style:normal;
  3934. font-size:14px;
  3935. color:#AAAAAA;
  3936. text-align:right;
  3937. line-height:30px;
  3938. }
  3939. #u176424 .text {
  3940. position:absolute;
  3941. align-self:flex-start;
  3942. padding:0px 0px 0px 0px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u176424_text {
  3947. border-width:0px;
  3948. white-space:nowrap;
  3949. text-transform:none;
  3950. }
  3951. #u176425_div {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:375px;
  3957. height:340px;
  3958. background:inherit;
  3959. background-color:rgba(255, 255, 255, 1);
  3960. box-sizing:border-box;
  3961. border-width:1px;
  3962. border-style:solid;
  3963. border-color:rgba(242, 242, 242, 1);
  3964. border-top:0px;
  3965. border-radius:27px;
  3966. border-top-left-radius:0px;
  3967. border-top-right-radius:0px;
  3968. -moz-box-shadow:none;
  3969. -webkit-box-shadow:none;
  3970. box-shadow:none;
  3971. }
  3972. #u176425 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:944px;
  3976. top:505px;
  3977. width:375px;
  3978. height:340px;
  3979. display:flex;
  3980. }
  3981. #u176425 .text {
  3982. position:absolute;
  3983. align-self:center;
  3984. padding:2px 2px 2px 2px;
  3985. box-sizing:border-box;
  3986. width:100%;
  3987. }
  3988. #u176425_text {
  3989. border-width:0px;
  3990. word-wrap:break-word;
  3991. text-transform:none;
  3992. visibility:hidden;
  3993. }
  3994. #u176426 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:0px;
  4000. height:0px;
  4001. }
  4002. #u176427_img {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:14px;
  4008. height:14px;
  4009. }
  4010. #u176427 {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:961px;
  4014. top:523px;
  4015. width:14px;
  4016. height:14px;
  4017. display:flex;
  4018. }
  4019. #u176427 .text {
  4020. position:absolute;
  4021. align-self:center;
  4022. padding:2px 2px 2px 2px;
  4023. box-sizing:border-box;
  4024. width:100%;
  4025. }
  4026. #u176427_text {
  4027. border-width:0px;
  4028. word-wrap:break-word;
  4029. text-transform:none;
  4030. visibility:hidden;
  4031. }
  4032. #u176428_div {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:121px;
  4038. height:30px;
  4039. background:inherit;
  4040. background-color:rgba(255, 255, 255, 0);
  4041. border:none;
  4042. border-left:0px;
  4043. border-top:0px;
  4044. border-right:0px;
  4045. border-radius:0px;
  4046. border-bottom-right-radius:0px;
  4047. border-bottom-left-radius:0px;
  4048. -moz-box-shadow:none;
  4049. -webkit-box-shadow:none;
  4050. box-shadow:none;
  4051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4052. font-weight:400;
  4053. font-style:normal;
  4054. font-size:12px;
  4055. line-height:30px;
  4056. }
  4057. #u176428 {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:985px;
  4061. top:515px;
  4062. width:121px;
  4063. height:30px;
  4064. display:flex;
  4065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4066. font-weight:400;
  4067. font-style:normal;
  4068. font-size:12px;
  4069. line-height:30px;
  4070. }
  4071. #u176428 .text {
  4072. position:absolute;
  4073. align-self:flex-start;
  4074. padding:0px 0px 0px 0px;
  4075. box-sizing:border-box;
  4076. width:100%;
  4077. }
  4078. #u176428_text {
  4079. border-width:0px;
  4080. white-space:nowrap;
  4081. text-transform:none;
  4082. }
  4083. #u176429 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:0px;
  4089. height:0px;
  4090. }
  4091. #u176430_div {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:0px;
  4095. top:0px;
  4096. width:80px;
  4097. height:60px;
  4098. background:inherit;
  4099. background-color:rgba(129, 211, 248, 0.0980392156862745);
  4100. box-sizing:border-box;
  4101. border-width:1px;
  4102. border-style:solid;
  4103. border-color:rgba(24, 144, 255, 1);
  4104. border-radius:4px;
  4105. -moz-box-shadow:none;
  4106. -webkit-box-shadow:none;
  4107. box-shadow:none;
  4108. color:#1890FF;
  4109. }
  4110. #u176430 {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:961px;
  4114. top:350px;
  4115. width:80px;
  4116. height:60px;
  4117. display:flex;
  4118. color:#1890FF;
  4119. }
  4120. #u176430 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 2px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u176430_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u176431_div {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:67px;
  4139. height:40px;
  4140. background:inherit;
  4141. background-color:rgba(255, 255, 255, 0);
  4142. border:none;
  4143. border-left:0px;
  4144. border-top:0px;
  4145. border-right:0px;
  4146. border-radius:0px;
  4147. border-bottom-right-radius:0px;
  4148. border-bottom-left-radius:0px;
  4149. -moz-box-shadow:none;
  4150. -webkit-box-shadow:none;
  4151. box-shadow:none;
  4152. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4153. font-style:normal;
  4154. color:#1890FF;
  4155. text-align:center;
  4156. line-height:20px;
  4157. }
  4158. #u176431 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:967px;
  4162. top:360px;
  4163. width:67px;
  4164. height:40px;
  4165. display:flex;
  4166. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4167. font-style:normal;
  4168. color:#1890FF;
  4169. text-align:center;
  4170. line-height:20px;
  4171. }
  4172. #u176431 .text {
  4173. position:absolute;
  4174. align-self:flex-start;
  4175. padding:0px 0px 0px 0px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u176431_text {
  4180. border-width:0px;
  4181. white-space:nowrap;
  4182. text-transform:none;
  4183. }
  4184. #u176432 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:0px;
  4190. height:0px;
  4191. }
  4192. #u176433_div {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:80px;
  4198. height:60px;
  4199. background:inherit;
  4200. background-color:rgba(236, 128, 141, 0);
  4201. box-sizing:border-box;
  4202. border-width:1px;
  4203. border-style:solid;
  4204. border-color:rgba(215, 215, 215, 1);
  4205. border-radius:4px;
  4206. -moz-box-shadow:none;
  4207. -webkit-box-shadow:none;
  4208. box-shadow:none;
  4209. }
  4210. #u176433 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:1047px;
  4214. top:350px;
  4215. width:80px;
  4216. height:60px;
  4217. display:flex;
  4218. }
  4219. #u176433 .text {
  4220. position:absolute;
  4221. align-self:center;
  4222. padding:2px 2px 2px 2px;
  4223. box-sizing:border-box;
  4224. width:100%;
  4225. }
  4226. #u176433_text {
  4227. border-width:0px;
  4228. word-wrap:break-word;
  4229. text-transform:none;
  4230. visibility:hidden;
  4231. }
  4232. #u176434_div {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:67px;
  4238. height:40px;
  4239. background:inherit;
  4240. background-color:rgba(255, 255, 255, 0);
  4241. border:none;
  4242. border-left:0px;
  4243. border-top:0px;
  4244. border-right:0px;
  4245. border-radius:0px;
  4246. border-bottom-right-radius:0px;
  4247. border-bottom-left-radius:0px;
  4248. -moz-box-shadow:none;
  4249. -webkit-box-shadow:none;
  4250. box-shadow:none;
  4251. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4252. font-style:normal;
  4253. text-align:center;
  4254. line-height:20px;
  4255. }
  4256. #u176434 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:1053px;
  4260. top:360px;
  4261. width:67px;
  4262. height:40px;
  4263. display:flex;
  4264. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4265. font-style:normal;
  4266. text-align:center;
  4267. line-height:20px;
  4268. }
  4269. #u176434 .text {
  4270. position:absolute;
  4271. align-self:flex-start;
  4272. padding:0px 0px 0px 0px;
  4273. box-sizing:border-box;
  4274. width:100%;
  4275. }
  4276. #u176434_text {
  4277. border-width:0px;
  4278. white-space:nowrap;
  4279. text-transform:none;
  4280. }
  4281. #u176435 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:0px;
  4287. height:0px;
  4288. }
  4289. #u176436_div {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:80px;
  4295. height:60px;
  4296. background:inherit;
  4297. background-color:rgba(236, 128, 141, 0);
  4298. box-sizing:border-box;
  4299. border-width:1px;
  4300. border-style:solid;
  4301. border-color:rgba(215, 215, 215, 1);
  4302. border-radius:4px;
  4303. -moz-box-shadow:none;
  4304. -webkit-box-shadow:none;
  4305. box-shadow:none;
  4306. }
  4307. #u176436 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:1133px;
  4311. top:350px;
  4312. width:80px;
  4313. height:60px;
  4314. display:flex;
  4315. }
  4316. #u176436 .text {
  4317. position:absolute;
  4318. align-self:center;
  4319. padding:2px 2px 2px 2px;
  4320. box-sizing:border-box;
  4321. width:100%;
  4322. }
  4323. #u176436_text {
  4324. border-width:0px;
  4325. word-wrap:break-word;
  4326. text-transform:none;
  4327. visibility:hidden;
  4328. }
  4329. #u176437_div {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:65px;
  4335. height:40px;
  4336. background:inherit;
  4337. background-color:rgba(255, 255, 255, 0);
  4338. border:none;
  4339. border-left:0px;
  4340. border-top:0px;
  4341. border-right:0px;
  4342. border-radius:0px;
  4343. border-bottom-right-radius:0px;
  4344. border-bottom-left-radius:0px;
  4345. -moz-box-shadow:none;
  4346. -webkit-box-shadow:none;
  4347. box-shadow:none;
  4348. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4349. font-style:normal;
  4350. text-align:center;
  4351. line-height:20px;
  4352. }
  4353. #u176437 {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:1140px;
  4357. top:360px;
  4358. width:65px;
  4359. height:40px;
  4360. display:flex;
  4361. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4362. font-style:normal;
  4363. text-align:center;
  4364. line-height:20px;
  4365. }
  4366. #u176437 .text {
  4367. position:absolute;
  4368. align-self:flex-start;
  4369. padding:0px 0px 0px 0px;
  4370. box-sizing:border-box;
  4371. width:100%;
  4372. }
  4373. #u176437_text {
  4374. border-width:0px;
  4375. white-space:nowrap;
  4376. text-transform:none;
  4377. }
  4378. #u176438 {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:0px;
  4384. height:0px;
  4385. }
  4386. #u176439_div {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:0px;
  4390. top:0px;
  4391. width:80px;
  4392. height:60px;
  4393. background:inherit;
  4394. background-color:rgba(236, 128, 141, 0);
  4395. box-sizing:border-box;
  4396. border-width:1px;
  4397. border-style:solid;
  4398. border-color:rgba(215, 215, 215, 1);
  4399. border-radius:4px;
  4400. -moz-box-shadow:none;
  4401. -webkit-box-shadow:none;
  4402. box-shadow:none;
  4403. }
  4404. #u176439 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:1219px;
  4408. top:350px;
  4409. width:80px;
  4410. height:60px;
  4411. display:flex;
  4412. }
  4413. #u176439 .text {
  4414. position:absolute;
  4415. align-self:center;
  4416. padding:2px 2px 2px 2px;
  4417. box-sizing:border-box;
  4418. width:100%;
  4419. }
  4420. #u176439_text {
  4421. border-width:0px;
  4422. word-wrap:break-word;
  4423. text-transform:none;
  4424. visibility:hidden;
  4425. }
  4426. #u176440_div {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:59px;
  4432. height:40px;
  4433. background:inherit;
  4434. background-color:rgba(255, 255, 255, 0);
  4435. border:none;
  4436. border-left:0px;
  4437. border-top:0px;
  4438. border-right:0px;
  4439. border-radius:0px;
  4440. border-bottom-right-radius:0px;
  4441. border-bottom-left-radius:0px;
  4442. -moz-box-shadow:none;
  4443. -webkit-box-shadow:none;
  4444. box-shadow:none;
  4445. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4446. font-style:normal;
  4447. text-align:center;
  4448. line-height:20px;
  4449. }
  4450. #u176440 {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:1229px;
  4454. top:360px;
  4455. width:59px;
  4456. height:40px;
  4457. display:flex;
  4458. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4459. font-style:normal;
  4460. text-align:center;
  4461. line-height:20px;
  4462. }
  4463. #u176440 .text {
  4464. position:absolute;
  4465. align-self:flex-start;
  4466. padding:0px 0px 0px 0px;
  4467. box-sizing:border-box;
  4468. width:100%;
  4469. }
  4470. #u176440_text {
  4471. border-width:0px;
  4472. white-space:nowrap;
  4473. text-transform:none;
  4474. }
  4475. #u176441_div {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:347px;
  4481. height:90px;
  4482. background:inherit;
  4483. background-color:rgba(255, 255, 255, 0);
  4484. border:none;
  4485. border-left:0px;
  4486. border-top:0px;
  4487. border-right:0px;
  4488. border-radius:0px;
  4489. border-bottom-right-radius:0px;
  4490. border-bottom-left-radius:0px;
  4491. -moz-box-shadow:none;
  4492. -webkit-box-shadow:none;
  4493. box-shadow:none;
  4494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4495. font-weight:400;
  4496. font-style:normal;
  4497. font-size:12px;
  4498. color:#D9001B;
  4499. line-height:30px;
  4500. }
  4501. #u176441 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:955px;
  4505. top:550px;
  4506. width:347px;
  4507. height:90px;
  4508. display:flex;
  4509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. font-size:12px;
  4513. color:#D9001B;
  4514. line-height:30px;
  4515. }
  4516. #u176441 .text {
  4517. position:absolute;
  4518. align-self:flex-start;
  4519. padding:0px 0px 0px 0px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u176441_text {
  4524. border-width:0px;
  4525. word-wrap:break-word;
  4526. text-transform:none;
  4527. }
  4528. #u176442_div {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:375px;
  4534. height:80px;
  4535. background:inherit;
  4536. background-color:rgba(255, 255, 255, 1);
  4537. border:none;
  4538. border-top:0px;
  4539. border-radius:23px;
  4540. border-top-left-radius:0px;
  4541. border-top-right-radius:0px;
  4542. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4543. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4544. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4545. }
  4546. #u176442 {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:944px;
  4550. top:765px;
  4551. width:375px;
  4552. height:80px;
  4553. display:flex;
  4554. }
  4555. #u176442 .text {
  4556. position:absolute;
  4557. align-self:center;
  4558. padding:2px 2px 2px 2px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u176442_text {
  4563. border-width:0px;
  4564. word-wrap:break-word;
  4565. text-transform:none;
  4566. visibility:hidden;
  4567. }
  4568. #u176443_div {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:43px;
  4574. height:30px;
  4575. background:inherit;
  4576. background-color:rgba(255, 255, 255, 0);
  4577. border:none;
  4578. border-left:0px;
  4579. border-top:0px;
  4580. border-right:0px;
  4581. border-radius:0px;
  4582. border-bottom-right-radius:0px;
  4583. border-bottom-left-radius:0px;
  4584. -moz-box-shadow:none;
  4585. -webkit-box-shadow:none;
  4586. box-shadow:none;
  4587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. font-size:14px;
  4591. color:#555555;
  4592. line-height:30px;
  4593. }
  4594. #u176443 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:961px;
  4598. top:790px;
  4599. width:43px;
  4600. height:30px;
  4601. display:flex;
  4602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4603. font-weight:400;
  4604. font-style:normal;
  4605. font-size:14px;
  4606. color:#555555;
  4607. line-height:30px;
  4608. }
  4609. #u176443 .text {
  4610. position:absolute;
  4611. align-self:flex-start;
  4612. padding:0px 0px 0px 0px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u176443_text {
  4617. border-width:0px;
  4618. white-space:nowrap;
  4619. text-transform:none;
  4620. }
  4621. #u176444_div {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:0px;
  4625. top:0px;
  4626. width:100px;
  4627. height:40px;
  4628. background:inherit;
  4629. background-color:rgba(24, 144, 255, 1);
  4630. box-sizing:border-box;
  4631. border-width:1px;
  4632. border-style:solid;
  4633. border-color:rgba(24, 144, 255, 1);
  4634. border-radius:19px;
  4635. -moz-box-shadow:none;
  4636. -webkit-box-shadow:none;
  4637. box-shadow:none;
  4638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:14px;
  4642. color:#FFFFFF;
  4643. text-align:center;
  4644. line-height:30px;
  4645. }
  4646. #u176444 {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:1187px;
  4650. top:785px;
  4651. width:100px;
  4652. height:40px;
  4653. display:flex;
  4654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4655. font-weight:400;
  4656. font-style:normal;
  4657. font-size:14px;
  4658. color:#FFFFFF;
  4659. text-align:center;
  4660. line-height:30px;
  4661. }
  4662. #u176444 .text {
  4663. position:absolute;
  4664. align-self:center;
  4665. padding:0px 0px 0px 0px;
  4666. box-sizing:border-box;
  4667. width:100%;
  4668. }
  4669. #u176444_text {
  4670. border-width:0px;
  4671. word-wrap:break-word;
  4672. text-transform:none;
  4673. }
  4674. #u176446_img {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:0px;
  4678. top:0px;
  4679. width:433px;
  4680. height:865px;
  4681. }
  4682. #u176446 {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:1378px;
  4686. top:0px;
  4687. width:433px;
  4688. height:865px;
  4689. display:flex;
  4690. }
  4691. #u176446 .text {
  4692. position:absolute;
  4693. align-self:center;
  4694. padding:2px 2px 2px 2px;
  4695. box-sizing:border-box;
  4696. width:100%;
  4697. }
  4698. #u176446_text {
  4699. border-width:0px;
  4700. word-wrap:break-word;
  4701. text-transform:none;
  4702. visibility:hidden;
  4703. }
  4704. #u176447_div {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:0px;
  4708. top:0px;
  4709. width:375px;
  4710. height:40px;
  4711. background:inherit;
  4712. background-color:rgba(255, 255, 255, 1);
  4713. box-sizing:border-box;
  4714. border-width:1px;
  4715. border-style:solid;
  4716. border-color:rgba(215, 215, 215, 1);
  4717. border-left:0px;
  4718. border-top:0px;
  4719. border-right:0px;
  4720. border-radius:0px;
  4721. border-bottom-right-radius:0px;
  4722. border-bottom-left-radius:0px;
  4723. -moz-box-shadow:none;
  4724. -webkit-box-shadow:none;
  4725. box-shadow:none;
  4726. }
  4727. #u176447 {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:1407px;
  4731. top:67px;
  4732. width:375px;
  4733. height:40px;
  4734. display:flex;
  4735. }
  4736. #u176447 .text {
  4737. position:absolute;
  4738. align-self:center;
  4739. padding:2px 2px 2px 2px;
  4740. box-sizing:border-box;
  4741. width:100%;
  4742. }
  4743. #u176447_text {
  4744. border-width:0px;
  4745. word-wrap:break-word;
  4746. text-transform:none;
  4747. visibility:hidden;
  4748. }
  4749. #u176448 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:0px;
  4753. top:0px;
  4754. width:0px;
  4755. height:0px;
  4756. }
  4757. #u176449_div {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:0px;
  4761. top:0px;
  4762. width:88px;
  4763. height:32px;
  4764. background:inherit;
  4765. background-color:rgba(255, 255, 255, 1);
  4766. box-sizing:border-box;
  4767. border-width:1px;
  4768. border-style:solid;
  4769. border-color:rgba(242, 242, 242, 1);
  4770. border-radius:33px;
  4771. -moz-box-shadow:none;
  4772. -webkit-box-shadow:none;
  4773. box-shadow:none;
  4774. }
  4775. #u176449 {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:1687px;
  4779. top:71px;
  4780. width:88px;
  4781. height:32px;
  4782. display:flex;
  4783. }
  4784. #u176449 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:2px 2px 2px 2px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u176449_text {
  4792. border-width:0px;
  4793. word-wrap:break-word;
  4794. text-transform:none;
  4795. visibility:hidden;
  4796. }
  4797. #u176450 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:0px;
  4803. height:0px;
  4804. }
  4805. #u176451_img {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:18px;
  4811. height:18px;
  4812. }
  4813. #u176451 {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:1750px;
  4817. top:78px;
  4818. width:18px;
  4819. height:18px;
  4820. display:flex;
  4821. }
  4822. #u176451 .text {
  4823. position:absolute;
  4824. align-self:center;
  4825. padding:2px 2px 2px 2px;
  4826. box-sizing:border-box;
  4827. width:100%;
  4828. }
  4829. #u176451_text {
  4830. border-width:0px;
  4831. word-wrap:break-word;
  4832. text-transform:none;
  4833. visibility:hidden;
  4834. }
  4835. #u176452_img {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:0px;
  4839. top:0px;
  4840. width:6px;
  4841. height:6px;
  4842. }
  4843. #u176452 {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:1756px;
  4847. top:84px;
  4848. width:6px;
  4849. height:6px;
  4850. display:flex;
  4851. }
  4852. #u176452 .text {
  4853. position:absolute;
  4854. align-self:center;
  4855. padding:2px 2px 2px 2px;
  4856. box-sizing:border-box;
  4857. width:100%;
  4858. }
  4859. #u176452_text {
  4860. border-width:0px;
  4861. word-wrap:break-word;
  4862. text-transform:none;
  4863. visibility:hidden;
  4864. }
  4865. #u176453 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:0px;
  4871. height:0px;
  4872. }
  4873. #u176454_img {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:5px;
  4879. height:5px;
  4880. }
  4881. #u176454 {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:1701px;
  4885. top:85px;
  4886. width:5px;
  4887. height:5px;
  4888. display:flex;
  4889. }
  4890. #u176454 .text {
  4891. position:absolute;
  4892. align-self:center;
  4893. padding:2px 2px 2px 2px;
  4894. box-sizing:border-box;
  4895. width:100%;
  4896. }
  4897. #u176454_text {
  4898. border-width:0px;
  4899. word-wrap:break-word;
  4900. text-transform:none;
  4901. visibility:hidden;
  4902. }
  4903. #u176455_img {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:5px;
  4909. height:5px;
  4910. }
  4911. #u176455 {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:1717px;
  4915. top:85px;
  4916. width:5px;
  4917. height:5px;
  4918. display:flex;
  4919. }
  4920. #u176455 .text {
  4921. position:absolute;
  4922. align-self:center;
  4923. padding:2px 2px 2px 2px;
  4924. box-sizing:border-box;
  4925. width:100%;
  4926. }
  4927. #u176455_text {
  4928. border-width:0px;
  4929. word-wrap:break-word;
  4930. text-transform:none;
  4931. visibility:hidden;
  4932. }
  4933. #u176456_img {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:7px;
  4939. height:7px;
  4940. }
  4941. #u176456 {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:1708px;
  4945. top:84px;
  4946. width:7px;
  4947. height:7px;
  4948. display:flex;
  4949. }
  4950. #u176456 .text {
  4951. position:absolute;
  4952. align-self:center;
  4953. padding:2px 2px 2px 2px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u176456_text {
  4958. border-width:0px;
  4959. word-wrap:break-word;
  4960. text-transform:none;
  4961. visibility:hidden;
  4962. }
  4963. #u176457_img {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:19px;
  4969. height:2px;
  4970. }
  4971. #u176457 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:1725px;
  4975. top:87px;
  4976. width:18px;
  4977. height:1px;
  4978. display:flex;
  4979. -webkit-transform:rotate(90deg);
  4980. -moz-transform:rotate(90deg);
  4981. -ms-transform:rotate(90deg);
  4982. transform:rotate(90deg);
  4983. }
  4984. #u176457 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:2px 2px 2px 2px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u176457_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. visibility:hidden;
  4996. }
  4997. #u176458_img {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:375px;
  5003. height:44px;
  5004. }
  5005. #u176458 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:1407px;
  5009. top:24px;
  5010. width:375px;
  5011. height:44px;
  5012. display:flex;
  5013. }
  5014. #u176458 .text {
  5015. position:absolute;
  5016. align-self:center;
  5017. padding:2px 2px 2px 2px;
  5018. box-sizing:border-box;
  5019. width:100%;
  5020. }
  5021. #u176458_text {
  5022. border-width:0px;
  5023. word-wrap:break-word;
  5024. text-transform:none;
  5025. visibility:hidden;
  5026. }
  5027. #u176459_div {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:0px;
  5031. top:0px;
  5032. width:375px;
  5033. height:50px;
  5034. background:inherit;
  5035. background-color:rgba(255, 255, 255, 1);
  5036. box-sizing:border-box;
  5037. border-width:1px;
  5038. border-style:solid;
  5039. border-color:rgba(242, 242, 242, 1);
  5040. border-radius:26px;
  5041. border-top-left-radius:0px;
  5042. border-top-right-radius:0px;
  5043. -moz-box-shadow:none;
  5044. -webkit-box-shadow:none;
  5045. box-shadow:none;
  5046. }
  5047. #u176459 {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:1407px;
  5051. top:788px;
  5052. width:375px;
  5053. height:50px;
  5054. display:flex;
  5055. }
  5056. #u176459 .text {
  5057. position:absolute;
  5058. align-self:center;
  5059. padding:2px 2px 2px 2px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u176459_text {
  5064. border-width:0px;
  5065. word-wrap:break-word;
  5066. text-transform:none;
  5067. visibility:hidden;
  5068. }
  5069. #u176460 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:0px;
  5075. height:0px;
  5076. }
  5077. #u176461_img {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:0px;
  5081. top:0px;
  5082. width:24px;
  5083. height:24px;
  5084. }
  5085. #u176461 {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:1447px;
  5089. top:792px;
  5090. width:24px;
  5091. height:24px;
  5092. display:flex;
  5093. font-size:8px;
  5094. }
  5095. #u176461 .text {
  5096. position:absolute;
  5097. align-self:center;
  5098. padding:2px 2px 2px 2px;
  5099. box-sizing:border-box;
  5100. width:100%;
  5101. }
  5102. #u176461_text {
  5103. border-width:0px;
  5104. word-wrap:break-word;
  5105. text-transform:none;
  5106. }
  5107. #u176462_div {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:0px;
  5111. top:0px;
  5112. width:25px;
  5113. height:17px;
  5114. background:inherit;
  5115. background-color:rgba(255, 255, 255, 0);
  5116. border:none;
  5117. border-radius:0px;
  5118. -moz-box-shadow:none;
  5119. -webkit-box-shadow:none;
  5120. box-shadow:none;
  5121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5122. font-weight:400;
  5123. font-style:normal;
  5124. font-size:12px;
  5125. }
  5126. #u176462 {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:1447px;
  5130. top:817px;
  5131. width:25px;
  5132. height:17px;
  5133. display:flex;
  5134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5135. font-weight:400;
  5136. font-style:normal;
  5137. font-size:12px;
  5138. }
  5139. #u176462 .text {
  5140. position:absolute;
  5141. align-self:flex-start;
  5142. padding:0px 0px 0px 0px;
  5143. box-sizing:border-box;
  5144. width:100%;
  5145. }
  5146. #u176462_text {
  5147. border-width:0px;
  5148. white-space:nowrap;
  5149. text-transform:none;
  5150. }
  5151. #u176463 {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:0px;
  5155. top:0px;
  5156. width:0px;
  5157. height:0px;
  5158. }
  5159. #u176464_img {
  5160. border-width:0px;
  5161. position:absolute;
  5162. left:0px;
  5163. top:0px;
  5164. width:24px;
  5165. height:24px;
  5166. }
  5167. #u176464 {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:1717px;
  5171. top:794px;
  5172. width:24px;
  5173. height:24px;
  5174. display:flex;
  5175. font-size:8px;
  5176. }
  5177. #u176464 .text {
  5178. position:absolute;
  5179. align-self:center;
  5180. padding:2px 2px 2px 2px;
  5181. box-sizing:border-box;
  5182. width:100%;
  5183. }
  5184. #u176464_text {
  5185. border-width:0px;
  5186. word-wrap:break-word;
  5187. text-transform:none;
  5188. }
  5189. #u176465_div {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:25px;
  5195. height:17px;
  5196. background:inherit;
  5197. background-color:rgba(255, 255, 255, 0);
  5198. border:none;
  5199. border-radius:0px;
  5200. -moz-box-shadow:none;
  5201. -webkit-box-shadow:none;
  5202. box-shadow:none;
  5203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. font-size:12px;
  5207. }
  5208. #u176465 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:1717px;
  5212. top:819px;
  5213. width:25px;
  5214. height:17px;
  5215. display:flex;
  5216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5217. font-weight:400;
  5218. font-style:normal;
  5219. font-size:12px;
  5220. }
  5221. #u176465 .text {
  5222. position:absolute;
  5223. align-self:flex-start;
  5224. padding:0px 0px 0px 0px;
  5225. box-sizing:border-box;
  5226. width:100%;
  5227. }
  5228. #u176465_text {
  5229. border-width:0px;
  5230. white-space:nowrap;
  5231. text-transform:none;
  5232. }
  5233. #u176466_div {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:0px;
  5237. top:0px;
  5238. width:375px;
  5239. height:681px;
  5240. background:inherit;
  5241. background-color:rgba(242, 242, 242, 0.462745098039216);
  5242. border:none;
  5243. border-radius:0px;
  5244. -moz-box-shadow:none;
  5245. -webkit-box-shadow:none;
  5246. box-shadow:none;
  5247. }
  5248. #u176466 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:1407px;
  5252. top:107px;
  5253. width:375px;
  5254. height:681px;
  5255. display:flex;
  5256. }
  5257. #u176466 .text {
  5258. position:absolute;
  5259. align-self:center;
  5260. padding:2px 2px 2px 2px;
  5261. box-sizing:border-box;
  5262. width:100%;
  5263. }
  5264. #u176466_text {
  5265. border-width:0px;
  5266. word-wrap:break-word;
  5267. text-transform:none;
  5268. visibility:hidden;
  5269. }
  5270. #u176467 {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:0px;
  5274. top:0px;
  5275. width:0px;
  5276. height:0px;
  5277. }
  5278. #u176468_img {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:24px;
  5284. height:24px;
  5285. }
  5286. #u176468 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:1629px;
  5290. top:792px;
  5291. width:24px;
  5292. height:24px;
  5293. display:flex;
  5294. font-size:8px;
  5295. }
  5296. #u176468 .text {
  5297. position:absolute;
  5298. align-self:center;
  5299. padding:2px 2px 2px 2px;
  5300. box-sizing:border-box;
  5301. width:100%;
  5302. }
  5303. #u176468_text {
  5304. border-width:0px;
  5305. word-wrap:break-word;
  5306. text-transform:none;
  5307. }
  5308. #u176469_div {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:0px;
  5312. top:0px;
  5313. width:37px;
  5314. height:17px;
  5315. background:inherit;
  5316. background-color:rgba(255, 255, 255, 0);
  5317. border:none;
  5318. border-radius:0px;
  5319. -moz-box-shadow:none;
  5320. -webkit-box-shadow:none;
  5321. box-shadow:none;
  5322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5323. font-weight:400;
  5324. font-style:normal;
  5325. font-size:12px;
  5326. }
  5327. #u176469 {
  5328. border-width:0px;
  5329. position:absolute;
  5330. left:1623px;
  5331. top:817px;
  5332. width:37px;
  5333. height:17px;
  5334. display:flex;
  5335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5336. font-weight:400;
  5337. font-style:normal;
  5338. font-size:12px;
  5339. }
  5340. #u176469 .text {
  5341. position:absolute;
  5342. align-self:flex-start;
  5343. padding:0px 0px 0px 0px;
  5344. box-sizing:border-box;
  5345. width:100%;
  5346. }
  5347. #u176469_text {
  5348. border-width:0px;
  5349. white-space:nowrap;
  5350. text-transform:none;
  5351. }
  5352. #u176470 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:0px;
  5356. top:0px;
  5357. width:0px;
  5358. height:0px;
  5359. }
  5360. #u176471_img {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:0px;
  5364. top:0px;
  5365. width:24px;
  5366. height:24px;
  5367. }
  5368. #u176471 {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:1535px;
  5372. top:792px;
  5373. width:24px;
  5374. height:24px;
  5375. display:flex;
  5376. font-size:8px;
  5377. }
  5378. #u176471 .text {
  5379. position:absolute;
  5380. align-self:center;
  5381. padding:2px 2px 2px 2px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u176471_text {
  5386. border-width:0px;
  5387. word-wrap:break-word;
  5388. text-transform:none;
  5389. }
  5390. #u176472_div {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:37px;
  5396. height:17px;
  5397. background:inherit;
  5398. background-color:rgba(255, 255, 255, 0);
  5399. border:none;
  5400. border-radius:0px;
  5401. -moz-box-shadow:none;
  5402. -webkit-box-shadow:none;
  5403. box-shadow:none;
  5404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:12px;
  5408. }
  5409. #u176472 {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:1529px;
  5413. top:817px;
  5414. width:37px;
  5415. height:17px;
  5416. display:flex;
  5417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5418. font-weight:400;
  5419. font-style:normal;
  5420. font-size:12px;
  5421. }
  5422. #u176472 .text {
  5423. position:absolute;
  5424. align-self:flex-start;
  5425. padding:0px 0px 0px 0px;
  5426. box-sizing:border-box;
  5427. width:100%;
  5428. }
  5429. #u176472_text {
  5430. border-width:0px;
  5431. white-space:nowrap;
  5432. text-transform:none;
  5433. }
  5434. #u176473 {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:0px;
  5438. top:0px;
  5439. width:0px;
  5440. height:0px;
  5441. }
  5442. #u176474_img {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:0px;
  5446. top:0px;
  5447. width:11px;
  5448. height:18px;
  5449. }
  5450. #u176474 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:1418px;
  5454. top:79px;
  5455. width:11px;
  5456. height:18px;
  5457. display:flex;
  5458. }
  5459. #u176474 .text {
  5460. position:absolute;
  5461. align-self:center;
  5462. padding:2px 2px 2px 2px;
  5463. box-sizing:border-box;
  5464. width:100%;
  5465. }
  5466. #u176474_text {
  5467. border-width:0px;
  5468. word-wrap:break-word;
  5469. text-transform:none;
  5470. visibility:hidden;
  5471. }
  5472. #u176475_div {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:375px;
  5478. height:734px;
  5479. background:inherit;
  5480. background-color:rgba(255, 255, 255, 1);
  5481. box-sizing:border-box;
  5482. border-width:1px;
  5483. border-style:solid;
  5484. border-color:rgba(242, 242, 242, 1);
  5485. border-top:0px;
  5486. border-radius:27px;
  5487. border-top-left-radius:0px;
  5488. border-top-right-radius:0px;
  5489. -moz-box-shadow:none;
  5490. -webkit-box-shadow:none;
  5491. box-shadow:none;
  5492. }
  5493. #u176475 {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:1407px;
  5497. top:106px;
  5498. width:375px;
  5499. height:734px;
  5500. display:flex;
  5501. }
  5502. #u176475 .text {
  5503. position:absolute;
  5504. align-self:center;
  5505. padding:2px 2px 2px 2px;
  5506. box-sizing:border-box;
  5507. width:100%;
  5508. }
  5509. #u176475_text {
  5510. border-width:0px;
  5511. word-wrap:break-word;
  5512. text-transform:none;
  5513. visibility:hidden;
  5514. }
  5515. #u176476_div {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:0px;
  5519. top:0px;
  5520. width:347px;
  5521. height:376px;
  5522. background:inherit;
  5523. background-color:rgba(255, 255, 255, 0);
  5524. border:none;
  5525. border-radius:0px;
  5526. -moz-box-shadow:none;
  5527. -webkit-box-shadow:none;
  5528. box-shadow:none;
  5529. line-height:30px;
  5530. }
  5531. #u176476 {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:1424px;
  5535. top:129px;
  5536. width:347px;
  5537. height:376px;
  5538. display:flex;
  5539. line-height:30px;
  5540. }
  5541. #u176476 .text {
  5542. position:absolute;
  5543. align-self:flex-start;
  5544. padding:0px 0px 0px 0px;
  5545. box-sizing:border-box;
  5546. width:100%;
  5547. }
  5548. #u176476_text {
  5549. border-width:0px;
  5550. word-wrap:break-word;
  5551. text-transform:none;
  5552. }
  5553. #u176477 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:0px;
  5557. top:0px;
  5558. width:0px;
  5559. height:0px;
  5560. }
  5561. #u176478_div {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:375px;
  5567. height:60px;
  5568. background:inherit;
  5569. background-color:rgba(255, 255, 255, 1);
  5570. box-sizing:border-box;
  5571. border-width:1px;
  5572. border-style:solid;
  5573. border-color:rgba(242, 242, 242, 1);
  5574. border-radius:4px;
  5575. -moz-box-shadow:none;
  5576. -webkit-box-shadow:none;
  5577. box-shadow:none;
  5578. }
  5579. #u176478 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:29px;
  5583. top:166px;
  5584. width:375px;
  5585. height:60px;
  5586. display:flex;
  5587. }
  5588. #u176478 .text {
  5589. position:absolute;
  5590. align-self:center;
  5591. padding:2px 2px 2px 2px;
  5592. box-sizing:border-box;
  5593. width:100%;
  5594. }
  5595. #u176478_text {
  5596. border-width:0px;
  5597. word-wrap:break-word;
  5598. text-transform:none;
  5599. visibility:hidden;
  5600. }
  5601. #u176479_div {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:0px;
  5605. top:0px;
  5606. width:92px;
  5607. height:30px;
  5608. background:inherit;
  5609. background-color:rgba(255, 255, 255, 0);
  5610. border:none;
  5611. border-left:0px;
  5612. border-top:0px;
  5613. border-right:0px;
  5614. border-radius:0px;
  5615. border-bottom-right-radius:0px;
  5616. border-bottom-left-radius:0px;
  5617. -moz-box-shadow:none;
  5618. -webkit-box-shadow:none;
  5619. box-shadow:none;
  5620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5621. font-weight:400;
  5622. font-style:normal;
  5623. font-size:14px;
  5624. line-height:30px;
  5625. }
  5626. #u176479 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:46px;
  5630. top:181px;
  5631. width:92px;
  5632. height:30px;
  5633. display:flex;
  5634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:14px;
  5638. line-height:30px;
  5639. }
  5640. #u176479 .text {
  5641. position:absolute;
  5642. align-self:flex-start;
  5643. padding:0px 0px 0px 0px;
  5644. box-sizing:border-box;
  5645. width:100%;
  5646. }
  5647. #u176479_text {
  5648. border-width:0px;
  5649. white-space:nowrap;
  5650. text-transform:none;
  5651. }
  5652. #u176480 {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:0px;
  5656. top:0px;
  5657. width:0px;
  5658. height:0px;
  5659. }
  5660. #u176481 {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:0px;
  5664. top:0px;
  5665. width:0px;
  5666. height:0px;
  5667. }
  5668. #u176482_img {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:9px;
  5674. height:15px;
  5675. }
  5676. #u176482 {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:380px;
  5680. top:189px;
  5681. width:9px;
  5682. height:15px;
  5683. display:flex;
  5684. -webkit-transform:rotate(180deg);
  5685. -moz-transform:rotate(180deg);
  5686. -ms-transform:rotate(180deg);
  5687. transform:rotate(180deg);
  5688. }
  5689. #u176482 .text {
  5690. position:absolute;
  5691. align-self:center;
  5692. padding:2px 2px 2px 2px;
  5693. box-sizing:border-box;
  5694. width:100%;
  5695. }
  5696. #u176482_text {
  5697. border-width:0px;
  5698. word-wrap:break-word;
  5699. text-transform:none;
  5700. visibility:hidden;
  5701. }
  5702. #u176483_div {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:60px;
  5708. height:30px;
  5709. background:inherit;
  5710. background-color:rgba(255, 255, 255, 0);
  5711. border:none;
  5712. border-left:0px;
  5713. border-top:0px;
  5714. border-right:0px;
  5715. border-radius:0px;
  5716. border-bottom-right-radius:0px;
  5717. border-bottom-left-radius:0px;
  5718. -moz-box-shadow:none;
  5719. -webkit-box-shadow:none;
  5720. box-shadow:none;
  5721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5722. font-weight:400;
  5723. font-style:normal;
  5724. font-size:14px;
  5725. color:#AAAAAA;
  5726. text-align:right;
  5727. line-height:30px;
  5728. }
  5729. #u176483 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:315px;
  5733. top:181px;
  5734. width:60px;
  5735. height:30px;
  5736. display:flex;
  5737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:14px;
  5741. color:#AAAAAA;
  5742. text-align:right;
  5743. line-height:30px;
  5744. }
  5745. #u176483 .text {
  5746. position:absolute;
  5747. align-self:flex-start;
  5748. padding:0px 0px 0px 0px;
  5749. box-sizing:border-box;
  5750. width:100%;
  5751. }
  5752. #u176483_text {
  5753. border-width:0px;
  5754. white-space:nowrap;
  5755. text-transform:none;
  5756. }
  5757. #u176484 {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:0px;
  5761. top:0px;
  5762. width:0px;
  5763. height:0px;
  5764. }
  5765. #u176485_img {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:0px;
  5769. top:0px;
  5770. width:10px;
  5771. height:16px;
  5772. }
  5773. #u176485 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:380px;
  5777. top:127px;
  5778. width:10px;
  5779. height:16px;
  5780. display:flex;
  5781. -webkit-transform:rotate(180deg);
  5782. -moz-transform:rotate(180deg);
  5783. -ms-transform:rotate(180deg);
  5784. transform:rotate(180deg);
  5785. }
  5786. #u176485 .text {
  5787. position:absolute;
  5788. align-self:center;
  5789. padding:2px 2px 2px 2px;
  5790. box-sizing:border-box;
  5791. width:100%;
  5792. }
  5793. #u176485_text {
  5794. border-width:0px;
  5795. word-wrap:break-word;
  5796. text-transform:none;
  5797. visibility:hidden;
  5798. }
  5799. #u176486 {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:0px;
  5803. top:0px;
  5804. width:0px;
  5805. height:0px;
  5806. }
  5807. #u176487_div {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:0px;
  5811. top:0px;
  5812. width:375px;
  5813. height:60px;
  5814. background:inherit;
  5815. background-color:rgba(255, 255, 255, 1);
  5816. box-sizing:border-box;
  5817. border-width:1px;
  5818. border-style:solid;
  5819. border-color:rgba(242, 242, 242, 1);
  5820. border-radius:4px;
  5821. -moz-box-shadow:none;
  5822. -webkit-box-shadow:none;
  5823. box-shadow:none;
  5824. }
  5825. #u176487 {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:944px;
  5829. top:166px;
  5830. width:375px;
  5831. height:60px;
  5832. display:flex;
  5833. }
  5834. #u176487 .text {
  5835. position:absolute;
  5836. align-self:center;
  5837. padding:2px 2px 2px 2px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u176487_text {
  5842. border-width:0px;
  5843. word-wrap:break-word;
  5844. text-transform:none;
  5845. visibility:hidden;
  5846. }
  5847. #u176488_div {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:92px;
  5853. height:30px;
  5854. background:inherit;
  5855. background-color:rgba(255, 255, 255, 0);
  5856. border:none;
  5857. border-left:0px;
  5858. border-top:0px;
  5859. border-right:0px;
  5860. border-radius:0px;
  5861. border-bottom-right-radius:0px;
  5862. border-bottom-left-radius:0px;
  5863. -moz-box-shadow:none;
  5864. -webkit-box-shadow:none;
  5865. box-shadow:none;
  5866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5867. font-weight:400;
  5868. font-style:normal;
  5869. font-size:14px;
  5870. line-height:30px;
  5871. }
  5872. #u176488 {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:961px;
  5876. top:181px;
  5877. width:92px;
  5878. height:30px;
  5879. display:flex;
  5880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5881. font-weight:400;
  5882. font-style:normal;
  5883. font-size:14px;
  5884. line-height:30px;
  5885. }
  5886. #u176488 .text {
  5887. position:absolute;
  5888. align-self:flex-start;
  5889. padding:0px 0px 0px 0px;
  5890. box-sizing:border-box;
  5891. width:100%;
  5892. }
  5893. #u176488_text {
  5894. border-width:0px;
  5895. white-space:nowrap;
  5896. text-transform:none;
  5897. }
  5898. #u176489 {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:0px;
  5904. height:0px;
  5905. }
  5906. #u176490 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:0px;
  5912. height:0px;
  5913. }
  5914. #u176491_img {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:9px;
  5920. height:15px;
  5921. }
  5922. #u176491 {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:1295px;
  5926. top:189px;
  5927. width:9px;
  5928. height:15px;
  5929. display:flex;
  5930. -webkit-transform:rotate(180deg);
  5931. -moz-transform:rotate(180deg);
  5932. -ms-transform:rotate(180deg);
  5933. transform:rotate(180deg);
  5934. }
  5935. #u176491 .text {
  5936. position:absolute;
  5937. align-self:center;
  5938. padding:2px 2px 2px 2px;
  5939. box-sizing:border-box;
  5940. width:100%;
  5941. }
  5942. #u176491_text {
  5943. border-width:0px;
  5944. word-wrap:break-word;
  5945. text-transform:none;
  5946. visibility:hidden;
  5947. }
  5948. #u176492_div {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:60px;
  5954. height:30px;
  5955. background:inherit;
  5956. background-color:rgba(255, 255, 255, 0);
  5957. border:none;
  5958. border-left:0px;
  5959. border-top:0px;
  5960. border-right:0px;
  5961. border-radius:0px;
  5962. border-bottom-right-radius:0px;
  5963. border-bottom-left-radius:0px;
  5964. -moz-box-shadow:none;
  5965. -webkit-box-shadow:none;
  5966. box-shadow:none;
  5967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5968. font-weight:400;
  5969. font-style:normal;
  5970. font-size:14px;
  5971. text-align:right;
  5972. line-height:30px;
  5973. }
  5974. #u176492 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:1230px;
  5978. top:181px;
  5979. width:60px;
  5980. height:30px;
  5981. display:flex;
  5982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5983. font-weight:400;
  5984. font-style:normal;
  5985. font-size:14px;
  5986. text-align:right;
  5987. line-height:30px;
  5988. }
  5989. #u176492 .text {
  5990. position:absolute;
  5991. align-self:flex-start;
  5992. padding:0px 0px 0px 0px;
  5993. box-sizing:border-box;
  5994. width:100%;
  5995. }
  5996. #u176492_text {
  5997. border-width:0px;
  5998. white-space:nowrap;
  5999. text-transform:none;
  6000. }