styles.css 101 KB

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