styles.css 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:896px;
  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. #u165714_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u165714 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u165714 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u165714_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u165715_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. #u165715 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u165715 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u165715_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u165716 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u165717_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. #u165717 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u165717 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u165717_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u165718 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u165719_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u165719 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u165719 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u165719_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u165720_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u165720 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u165720 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u165720_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u165721 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u165722_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u165722 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u165722 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u165722_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u165723_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u165723 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u165723 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u165723_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u165724_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u165724 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u165724 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u165724_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u165725_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u165725 {
  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. #u165725 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u165725_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u165726_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u165726 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u165726 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u165726_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u165727_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. #u165727 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u165727 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u165727_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u165728 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u165729_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u165729 {
  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. #u165729 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u165729_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u165730_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. #u165730 {
  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. #u165730 .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. #u165730_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u165731 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u165732_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u165732 {
  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. #u165732 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u165732_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u165733_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. #u165733 {
  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. #u165733 .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. #u165733_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u165734_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. #u165734 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u165734 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u165734_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u165735 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u165736_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u165736 {
  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. #u165736 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u165736_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u165737_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. #u165737 {
  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. #u165737 .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. #u165737_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u165738 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u165739_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u165739 {
  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. #u165739 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u165739_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u165740_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. #u165740 {
  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. #u165740 .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. #u165740_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u165741 {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:0px;
  785. height:0px;
  786. }
  787. #u165742_div {
  788. border-width:0px;
  789. position:absolute;
  790. left:0px;
  791. top:0px;
  792. width:188px;
  793. height:35px;
  794. background:inherit;
  795. background-color:rgba(255, 255, 255, 1);
  796. border:none;
  797. border-radius:0px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  802. font-weight:400;
  803. font-style:normal;
  804. font-size:14px;
  805. text-align:left;
  806. }
  807. #u165742 {
  808. border-width:0px;
  809. position:absolute;
  810. left:29px;
  811. top:70px;
  812. width:188px;
  813. height:35px;
  814. display:flex;
  815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  816. font-weight:400;
  817. font-style:normal;
  818. font-size:14px;
  819. text-align:left;
  820. }
  821. #u165742 .text {
  822. position:absolute;
  823. align-self:center;
  824. padding:2px 2px 2px 40px;
  825. box-sizing:border-box;
  826. width:100%;
  827. }
  828. #u165742_text {
  829. border-width:0px;
  830. word-wrap:break-word;
  831. text-transform:none;
  832. }
  833. #u165743_img {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:11px;
  839. height:18px;
  840. }
  841. #u165743 {
  842. border-width:0px;
  843. position:absolute;
  844. left:40px;
  845. top:79px;
  846. width:11px;
  847. height:18px;
  848. display:flex;
  849. }
  850. #u165743 .text {
  851. position:absolute;
  852. align-self:center;
  853. padding:2px 2px 2px 2px;
  854. box-sizing:border-box;
  855. width:100%;
  856. }
  857. #u165743_text {
  858. border-width:0px;
  859. word-wrap:break-word;
  860. text-transform:none;
  861. visibility:hidden;
  862. }
  863. #u165744_img {
  864. border-width:0px;
  865. position:absolute;
  866. left:0px;
  867. top:0px;
  868. width:375px;
  869. height:734px;
  870. }
  871. #u165744 {
  872. border-width:0px;
  873. position:absolute;
  874. left:29px;
  875. top:106px;
  876. width:375px;
  877. height:734px;
  878. display:flex;
  879. }
  880. #u165744 .text {
  881. position:absolute;
  882. align-self:center;
  883. padding:2px 2px 2px 2px;
  884. box-sizing:border-box;
  885. width:100%;
  886. }
  887. #u165744_text {
  888. border-width:0px;
  889. word-wrap:break-word;
  890. text-transform:none;
  891. visibility:hidden;
  892. }
  893. #u165745_div {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:375px;
  899. height:594px;
  900. background:inherit;
  901. background-color:rgba(255, 255, 255, 1);
  902. border:none;
  903. border-top:0px;
  904. border-radius:29px;
  905. border-top-left-radius:0px;
  906. border-top-right-radius:0px;
  907. -moz-box-shadow:none;
  908. -webkit-box-shadow:none;
  909. box-shadow:none;
  910. }
  911. #u165745 {
  912. border-width:0px;
  913. position:absolute;
  914. left:29px;
  915. top:246px;
  916. width:375px;
  917. height:594px;
  918. display:flex;
  919. }
  920. #u165745 .text {
  921. position:absolute;
  922. align-self:center;
  923. padding:2px 2px 2px 2px;
  924. box-sizing:border-box;
  925. width:100%;
  926. }
  927. #u165745_text {
  928. border-width:0px;
  929. word-wrap:break-word;
  930. text-transform:none;
  931. visibility:hidden;
  932. }
  933. #u165746 {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:0px;
  939. height:0px;
  940. }
  941. #u165747_div {
  942. border-width:0px;
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:100px;
  947. height:30px;
  948. background:inherit;
  949. background-color:rgba(255, 255, 255, 0);
  950. border:none;
  951. border-left:0px;
  952. border-top:0px;
  953. border-right:0px;
  954. border-radius:0px;
  955. border-bottom-right-radius:0px;
  956. border-bottom-left-radius:0px;
  957. -moz-box-shadow:none;
  958. -webkit-box-shadow:none;
  959. box-shadow:none;
  960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  961. font-weight:400;
  962. font-style:normal;
  963. font-size:14px;
  964. line-height:30px;
  965. }
  966. #u165747 {
  967. border-width:0px;
  968. position:absolute;
  969. left:46px;
  970. top:260px;
  971. width:100px;
  972. height:30px;
  973. display:flex;
  974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  975. font-weight:400;
  976. font-style:normal;
  977. font-size:14px;
  978. line-height:30px;
  979. }
  980. #u165747 .text {
  981. position:absolute;
  982. align-self:flex-start;
  983. padding:0px 0px 0px 0px;
  984. box-sizing:border-box;
  985. width:100%;
  986. }
  987. #u165747_text {
  988. border-width:0px;
  989. word-wrap:break-word;
  990. text-transform:none;
  991. }
  992. #u165748_div {
  993. border-width:0px;
  994. position:absolute;
  995. left:0px;
  996. top:0px;
  997. width:132px;
  998. height:20px;
  999. background:inherit;
  1000. background-color:rgba(255, 255, 255, 0);
  1001. border:none;
  1002. border-left:0px;
  1003. border-top:0px;
  1004. border-right:0px;
  1005. border-radius:0px;
  1006. border-bottom-right-radius:0px;
  1007. border-bottom-left-radius:0px;
  1008. -moz-box-shadow:none;
  1009. -webkit-box-shadow:none;
  1010. box-shadow:none;
  1011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1012. font-weight:400;
  1013. font-style:normal;
  1014. font-size:12px;
  1015. color:#7F7F7F;
  1016. line-height:20px;
  1017. }
  1018. #u165748 {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:46px;
  1022. top:290px;
  1023. width:132px;
  1024. height:20px;
  1025. display:flex;
  1026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1027. font-weight:400;
  1028. font-style:normal;
  1029. font-size:12px;
  1030. color:#7F7F7F;
  1031. line-height:20px;
  1032. }
  1033. #u165748 .text {
  1034. position:absolute;
  1035. align-self:flex-start;
  1036. padding:0px 0px 0px 0px;
  1037. box-sizing:border-box;
  1038. width:100%;
  1039. }
  1040. #u165748_text {
  1041. border-width:0px;
  1042. word-wrap:break-word;
  1043. text-transform:none;
  1044. }
  1045. #u165749_div {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:0px;
  1049. top:0px;
  1050. width:85px;
  1051. height:30px;
  1052. background:inherit;
  1053. background-color:rgba(255, 255, 255, 0);
  1054. border:none;
  1055. border-left:0px;
  1056. border-top:0px;
  1057. border-right:0px;
  1058. border-radius:0px;
  1059. border-bottom-right-radius:0px;
  1060. border-bottom-left-radius:0px;
  1061. -moz-box-shadow:none;
  1062. -webkit-box-shadow:none;
  1063. box-shadow:none;
  1064. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1065. font-style:normal;
  1066. text-align:right;
  1067. line-height:30px;
  1068. }
  1069. #u165749 {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:292px;
  1073. top:258px;
  1074. width:85px;
  1075. height:30px;
  1076. display:flex;
  1077. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1078. font-style:normal;
  1079. text-align:right;
  1080. line-height:30px;
  1081. }
  1082. #u165749 .text {
  1083. position:absolute;
  1084. align-self:flex-start;
  1085. padding:0px 0px 0px 0px;
  1086. box-sizing:border-box;
  1087. width:100%;
  1088. }
  1089. #u165749_text {
  1090. border-width:0px;
  1091. word-wrap:break-word;
  1092. text-transform:none;
  1093. }
  1094. #u165750_img {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:348px;
  1100. height:2px;
  1101. }
  1102. #u165750 {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:46px;
  1106. top:320px;
  1107. width:347px;
  1108. height:1px;
  1109. display:flex;
  1110. }
  1111. #u165750 .text {
  1112. position:absolute;
  1113. align-self:center;
  1114. padding:2px 2px 2px 2px;
  1115. box-sizing:border-box;
  1116. width:100%;
  1117. }
  1118. #u165750_text {
  1119. border-width:0px;
  1120. word-wrap:break-word;
  1121. text-transform:none;
  1122. visibility:hidden;
  1123. }
  1124. #u165751_div {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:77px;
  1130. height:20px;
  1131. background:inherit;
  1132. background-color:rgba(255, 255, 255, 0);
  1133. border:none;
  1134. border-left:0px;
  1135. border-top:0px;
  1136. border-right:0px;
  1137. border-radius:0px;
  1138. border-bottom-right-radius:0px;
  1139. border-bottom-left-radius:0px;
  1140. -moz-box-shadow:none;
  1141. -webkit-box-shadow:none;
  1142. box-shadow:none;
  1143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1144. font-weight:400;
  1145. font-style:normal;
  1146. font-size:11px;
  1147. color:#AAAAAA;
  1148. line-height:20px;
  1149. }
  1150. #u165751 {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:300px;
  1154. top:293px;
  1155. width:77px;
  1156. height:20px;
  1157. display:flex;
  1158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1159. font-weight:400;
  1160. font-style:normal;
  1161. font-size:11px;
  1162. color:#AAAAAA;
  1163. line-height:20px;
  1164. }
  1165. #u165751 .text {
  1166. position:absolute;
  1167. align-self:flex-start;
  1168. padding:0px 0px 0px 0px;
  1169. box-sizing:border-box;
  1170. width:100%;
  1171. }
  1172. #u165751_text {
  1173. border-width:0px;
  1174. white-space:nowrap;
  1175. text-transform:none;
  1176. }
  1177. #u165752_div {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:375px;
  1183. height:100px;
  1184. background:inherit;
  1185. background-color:rgba(89, 179, 141, 1);
  1186. border:none;
  1187. border-radius:0px;
  1188. -moz-box-shadow:none;
  1189. -webkit-box-shadow:none;
  1190. box-shadow:none;
  1191. }
  1192. #u165752 {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:29px;
  1196. top:106px;
  1197. width:375px;
  1198. height:100px;
  1199. display:flex;
  1200. }
  1201. #u165752 .text {
  1202. position:absolute;
  1203. align-self:center;
  1204. padding:2px 2px 2px 2px;
  1205. box-sizing:border-box;
  1206. width:100%;
  1207. }
  1208. #u165752_text {
  1209. border-width:0px;
  1210. word-wrap:break-word;
  1211. text-transform:none;
  1212. visibility:hidden;
  1213. }
  1214. #u165753_div {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:0px;
  1218. top:0px;
  1219. width:37px;
  1220. height:30px;
  1221. background:inherit;
  1222. background-color:rgba(255, 255, 255, 0);
  1223. border:none;
  1224. border-left:0px;
  1225. border-top:0px;
  1226. border-right:0px;
  1227. border-radius:0px;
  1228. border-bottom-right-radius:0px;
  1229. border-bottom-left-radius:0px;
  1230. -moz-box-shadow:none;
  1231. -webkit-box-shadow:none;
  1232. box-shadow:none;
  1233. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1234. font-weight:500;
  1235. font-style:normal;
  1236. font-size:18px;
  1237. color:#FFFFFF;
  1238. line-height:30px;
  1239. }
  1240. #u165753 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:51px;
  1244. top:126px;
  1245. width:37px;
  1246. height:30px;
  1247. display:flex;
  1248. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1249. font-weight:500;
  1250. font-style:normal;
  1251. font-size:18px;
  1252. color:#FFFFFF;
  1253. line-height:30px;
  1254. }
  1255. #u165753 .text {
  1256. position:absolute;
  1257. align-self:flex-start;
  1258. padding:0px 0px 0px 0px;
  1259. box-sizing:border-box;
  1260. width:100%;
  1261. }
  1262. #u165753_text {
  1263. border-width:0px;
  1264. white-space:nowrap;
  1265. text-transform:none;
  1266. }
  1267. #u165754_div {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:0px;
  1271. top:0px;
  1272. width:119px;
  1273. height:20px;
  1274. background:inherit;
  1275. background-color:rgba(255, 255, 255, 0);
  1276. border:none;
  1277. border-left:0px;
  1278. border-top:0px;
  1279. border-right:0px;
  1280. border-radius:0px;
  1281. border-bottom-right-radius:0px;
  1282. border-bottom-left-radius:0px;
  1283. -moz-box-shadow:none;
  1284. -webkit-box-shadow:none;
  1285. box-shadow:none;
  1286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1287. font-weight:400;
  1288. font-style:normal;
  1289. font-size:12px;
  1290. color:#FFFFFF;
  1291. line-height:20px;
  1292. }
  1293. #u165754 {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:51px;
  1297. top:176px;
  1298. width:119px;
  1299. height:20px;
  1300. display:flex;
  1301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1302. font-weight:400;
  1303. font-style:normal;
  1304. font-size:12px;
  1305. color:#FFFFFF;
  1306. line-height:20px;
  1307. }
  1308. #u165754 .text {
  1309. position:absolute;
  1310. align-self:flex-start;
  1311. padding:0px 0px 0px 0px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u165754_text {
  1316. border-width:0px;
  1317. white-space:nowrap;
  1318. text-transform:none;
  1319. }
  1320. #u165755_div {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:0px;
  1324. top:0px;
  1325. width:121px;
  1326. height:20px;
  1327. background:inherit;
  1328. background-color:rgba(255, 255, 255, 0);
  1329. border:none;
  1330. border-left:0px;
  1331. border-top:0px;
  1332. border-right:0px;
  1333. border-radius:0px;
  1334. border-bottom-right-radius:0px;
  1335. border-bottom-left-radius:0px;
  1336. -moz-box-shadow:none;
  1337. -webkit-box-shadow:none;
  1338. box-shadow:none;
  1339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1340. font-weight:400;
  1341. font-style:normal;
  1342. font-size:12px;
  1343. color:#FFFFFF;
  1344. line-height:20px;
  1345. }
  1346. #u165755 {
  1347. border-width:0px;
  1348. position:absolute;
  1349. left:243px;
  1350. top:176px;
  1351. width:121px;
  1352. height:20px;
  1353. display:flex;
  1354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1355. font-weight:400;
  1356. font-style:normal;
  1357. font-size:12px;
  1358. color:#FFFFFF;
  1359. line-height:20px;
  1360. }
  1361. #u165755 .text {
  1362. position:absolute;
  1363. align-self:flex-start;
  1364. padding:0px 0px 0px 0px;
  1365. box-sizing:border-box;
  1366. width:100%;
  1367. }
  1368. #u165755_text {
  1369. border-width:0px;
  1370. white-space:nowrap;
  1371. text-transform:none;
  1372. }
  1373. #u165756 {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:0px;
  1377. top:0px;
  1378. width:0px;
  1379. height:0px;
  1380. }
  1381. #u165757_div {
  1382. border-width:0px;
  1383. position:absolute;
  1384. left:0px;
  1385. top:0px;
  1386. width:375px;
  1387. height:40px;
  1388. background:inherit;
  1389. background-color:rgba(242, 242, 242, 1);
  1390. border:none;
  1391. border-left:0px;
  1392. border-top:0px;
  1393. border-right:0px;
  1394. border-radius:0px;
  1395. border-bottom-right-radius:0px;
  1396. border-bottom-left-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. }
  1401. #u165757 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:29px;
  1405. top:206px;
  1406. width:375px;
  1407. height:40px;
  1408. display:flex;
  1409. }
  1410. #u165757 .text {
  1411. position:absolute;
  1412. align-self:center;
  1413. padding:2px 2px 2px 2px;
  1414. box-sizing:border-box;
  1415. width:100%;
  1416. }
  1417. #u165757_text {
  1418. border-width:0px;
  1419. word-wrap:break-word;
  1420. text-transform:none;
  1421. visibility:hidden;
  1422. }
  1423. #u165758_input {
  1424. position:absolute;
  1425. left:0px;
  1426. top:0px;
  1427. width:100px;
  1428. height:26px;
  1429. padding:2px 2px 2px 2px;
  1430. font-family:'ArialMT', 'Arial', sans-serif;
  1431. font-weight:400;
  1432. font-style:normal;
  1433. font-size:14px;
  1434. letter-spacing:normal;
  1435. color:#000000;
  1436. vertical-align:none;
  1437. text-align:left;
  1438. text-transform:none;
  1439. background-color:transparent;
  1440. border-color:transparent;
  1441. }
  1442. #u165758_input.disabled {
  1443. position:absolute;
  1444. left:0px;
  1445. top:0px;
  1446. width:100px;
  1447. height:26px;
  1448. padding:2px 2px 2px 2px;
  1449. font-family:'ArialMT', 'Arial', sans-serif;
  1450. font-weight:400;
  1451. font-style:normal;
  1452. font-size:14px;
  1453. letter-spacing:normal;
  1454. color:#000000;
  1455. vertical-align:none;
  1456. text-align:left;
  1457. text-transform:none;
  1458. background-color:transparent;
  1459. border-color:transparent;
  1460. }
  1461. #u165758_div {
  1462. border-width:0px;
  1463. position:absolute;
  1464. left:0px;
  1465. top:0px;
  1466. width:100px;
  1467. height:26px;
  1468. background:inherit;
  1469. background-color:rgba(242, 242, 242, 1);
  1470. border:none;
  1471. border-radius:0px;
  1472. -moz-box-shadow:none;
  1473. -webkit-box-shadow:none;
  1474. box-shadow:none;
  1475. font-size:14px;
  1476. }
  1477. #u165758 {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:39px;
  1481. top:212px;
  1482. width:100px;
  1483. height:26px;
  1484. display:flex;
  1485. font-size:14px;
  1486. }
  1487. #u165758 .text {
  1488. position:absolute;
  1489. align-self:flex-start;
  1490. padding:2px 2px 2px 2px;
  1491. box-sizing:border-box;
  1492. width:100%;
  1493. }
  1494. #u165758_div.disabled {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:0px;
  1498. top:0px;
  1499. width:100px;
  1500. height:26px;
  1501. background:inherit;
  1502. background-color:rgba(240, 240, 240, 1);
  1503. border:none;
  1504. border-radius:0px;
  1505. -moz-box-shadow:none;
  1506. -webkit-box-shadow:none;
  1507. box-shadow:none;
  1508. font-size:14px;
  1509. }
  1510. #u165758.disabled {
  1511. }
  1512. .u165758_input_option {
  1513. font-size:14px;
  1514. }
  1515. #u165759_input {
  1516. position:absolute;
  1517. left:0px;
  1518. top:0px;
  1519. width:100px;
  1520. height:26px;
  1521. padding:2px 2px 2px 2px;
  1522. font-family:'ArialMT', 'Arial', sans-serif;
  1523. font-weight:400;
  1524. font-style:normal;
  1525. font-size:14px;
  1526. letter-spacing:normal;
  1527. color:#000000;
  1528. vertical-align:none;
  1529. text-align:left;
  1530. text-transform:none;
  1531. background-color:transparent;
  1532. border-color:transparent;
  1533. }
  1534. #u165759_input.disabled {
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:100px;
  1539. height:26px;
  1540. padding:2px 2px 2px 2px;
  1541. font-family:'ArialMT', 'Arial', sans-serif;
  1542. font-weight:400;
  1543. font-style:normal;
  1544. font-size:14px;
  1545. letter-spacing:normal;
  1546. color:#000000;
  1547. vertical-align:none;
  1548. text-align:left;
  1549. text-transform:none;
  1550. background-color:transparent;
  1551. border-color:transparent;
  1552. }
  1553. #u165759_div {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:0px;
  1557. top:0px;
  1558. width:100px;
  1559. height:26px;
  1560. background:inherit;
  1561. background-color:rgba(242, 242, 242, 1);
  1562. border:none;
  1563. border-radius:0px;
  1564. -moz-box-shadow:none;
  1565. -webkit-box-shadow:none;
  1566. box-shadow:none;
  1567. font-size:14px;
  1568. }
  1569. #u165759 {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:170px;
  1573. top:212px;
  1574. width:100px;
  1575. height:26px;
  1576. display:flex;
  1577. font-size:14px;
  1578. }
  1579. #u165759 .text {
  1580. position:absolute;
  1581. align-self:flex-start;
  1582. padding:2px 2px 2px 2px;
  1583. box-sizing:border-box;
  1584. width:100%;
  1585. }
  1586. #u165759_div.disabled {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:0px;
  1590. top:0px;
  1591. width:100px;
  1592. height:26px;
  1593. background:inherit;
  1594. background-color:rgba(240, 240, 240, 1);
  1595. border:none;
  1596. border-radius:0px;
  1597. -moz-box-shadow:none;
  1598. -webkit-box-shadow:none;
  1599. box-shadow:none;
  1600. font-size:14px;
  1601. }
  1602. #u165759.disabled {
  1603. }
  1604. .u165759_input_option {
  1605. font-size:14px;
  1606. }
  1607. #u165760_input {
  1608. position:absolute;
  1609. left:0px;
  1610. top:0px;
  1611. width:100px;
  1612. height:26px;
  1613. padding:2px 2px 2px 2px;
  1614. font-family:'ArialMT', 'Arial', sans-serif;
  1615. font-weight:400;
  1616. font-style:normal;
  1617. font-size:14px;
  1618. letter-spacing:normal;
  1619. color:#000000;
  1620. vertical-align:none;
  1621. text-align:left;
  1622. text-transform:none;
  1623. background-color:transparent;
  1624. border-color:transparent;
  1625. }
  1626. #u165760_input.disabled {
  1627. position:absolute;
  1628. left:0px;
  1629. top:0px;
  1630. width:100px;
  1631. height:26px;
  1632. padding:2px 2px 2px 2px;
  1633. font-family:'ArialMT', 'Arial', sans-serif;
  1634. font-weight:400;
  1635. font-style:normal;
  1636. font-size:14px;
  1637. letter-spacing:normal;
  1638. color:#000000;
  1639. vertical-align:none;
  1640. text-align:left;
  1641. text-transform:none;
  1642. background-color:transparent;
  1643. border-color:transparent;
  1644. }
  1645. #u165760_div {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:0px;
  1649. top:0px;
  1650. width:100px;
  1651. height:26px;
  1652. background:inherit;
  1653. background-color:rgba(242, 242, 242, 1);
  1654. border:none;
  1655. border-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. font-size:14px;
  1660. }
  1661. #u165760 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:293px;
  1665. top:212px;
  1666. width:100px;
  1667. height:26px;
  1668. display:flex;
  1669. font-size:14px;
  1670. }
  1671. #u165760 .text {
  1672. position:absolute;
  1673. align-self:flex-start;
  1674. padding:2px 2px 2px 2px;
  1675. box-sizing:border-box;
  1676. width:100%;
  1677. }
  1678. #u165760_div.disabled {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:0px;
  1682. top:0px;
  1683. width:100px;
  1684. height:26px;
  1685. background:inherit;
  1686. background-color:rgba(240, 240, 240, 1);
  1687. border:none;
  1688. border-radius:0px;
  1689. -moz-box-shadow:none;
  1690. -webkit-box-shadow:none;
  1691. box-shadow:none;
  1692. font-size:14px;
  1693. }
  1694. #u165760.disabled {
  1695. }
  1696. .u165760_input_option {
  1697. font-size:14px;
  1698. }
  1699. #u165761 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:0px;
  1705. height:0px;
  1706. }
  1707. #u165762_div {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:0px;
  1711. top:0px;
  1712. width:100px;
  1713. height:30px;
  1714. background:inherit;
  1715. background-color:rgba(255, 255, 255, 0);
  1716. border:none;
  1717. border-left:0px;
  1718. border-top:0px;
  1719. border-right:0px;
  1720. border-radius:0px;
  1721. border-bottom-right-radius:0px;
  1722. border-bottom-left-radius:0px;
  1723. -moz-box-shadow:none;
  1724. -webkit-box-shadow:none;
  1725. box-shadow:none;
  1726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1727. font-weight:400;
  1728. font-style:normal;
  1729. font-size:14px;
  1730. line-height:30px;
  1731. }
  1732. #u165762 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:46px;
  1736. top:332px;
  1737. width:100px;
  1738. height:30px;
  1739. display:flex;
  1740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:14px;
  1744. line-height:30px;
  1745. }
  1746. #u165762 .text {
  1747. position:absolute;
  1748. align-self:flex-start;
  1749. padding:0px 0px 0px 0px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u165762_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. }
  1758. #u165763_div {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:132px;
  1764. height:20px;
  1765. background:inherit;
  1766. background-color:rgba(255, 255, 255, 0);
  1767. border:none;
  1768. border-left:0px;
  1769. border-top:0px;
  1770. border-right:0px;
  1771. border-radius:0px;
  1772. border-bottom-right-radius:0px;
  1773. border-bottom-left-radius:0px;
  1774. -moz-box-shadow:none;
  1775. -webkit-box-shadow:none;
  1776. box-shadow:none;
  1777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:12px;
  1781. color:#7F7F7F;
  1782. line-height:20px;
  1783. }
  1784. #u165763 {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:46px;
  1788. top:362px;
  1789. width:132px;
  1790. height:20px;
  1791. display:flex;
  1792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1793. font-weight:400;
  1794. font-style:normal;
  1795. font-size:12px;
  1796. color:#7F7F7F;
  1797. line-height:20px;
  1798. }
  1799. #u165763 .text {
  1800. position:absolute;
  1801. align-self:flex-start;
  1802. padding:0px 0px 0px 0px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u165763_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. }
  1811. #u165764_div {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:85px;
  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-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1831. font-style:normal;
  1832. text-align:right;
  1833. line-height:30px;
  1834. }
  1835. #u165764 {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:292px;
  1839. top:330px;
  1840. width:85px;
  1841. height:30px;
  1842. display:flex;
  1843. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1844. font-style:normal;
  1845. text-align:right;
  1846. line-height:30px;
  1847. }
  1848. #u165764 .text {
  1849. position:absolute;
  1850. align-self:flex-start;
  1851. padding:0px 0px 0px 0px;
  1852. box-sizing:border-box;
  1853. width:100%;
  1854. }
  1855. #u165764_text {
  1856. border-width:0px;
  1857. word-wrap:break-word;
  1858. text-transform:none;
  1859. }
  1860. #u165765_img {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:348px;
  1866. height:2px;
  1867. }
  1868. #u165765 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:46px;
  1872. top:392px;
  1873. width:347px;
  1874. height:1px;
  1875. display:flex;
  1876. }
  1877. #u165765 .text {
  1878. position:absolute;
  1879. align-self:center;
  1880. padding:2px 2px 2px 2px;
  1881. box-sizing:border-box;
  1882. width:100%;
  1883. }
  1884. #u165765_text {
  1885. border-width:0px;
  1886. word-wrap:break-word;
  1887. text-transform:none;
  1888. visibility:hidden;
  1889. }
  1890. #u165766_div {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:77px;
  1896. height:20px;
  1897. background:inherit;
  1898. background-color:rgba(255, 255, 255, 0);
  1899. border:none;
  1900. border-left:0px;
  1901. border-top:0px;
  1902. border-right:0px;
  1903. border-radius:0px;
  1904. border-bottom-right-radius:0px;
  1905. border-bottom-left-radius:0px;
  1906. -moz-box-shadow:none;
  1907. -webkit-box-shadow:none;
  1908. box-shadow:none;
  1909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1910. font-weight:400;
  1911. font-style:normal;
  1912. font-size:11px;
  1913. color:#AAAAAA;
  1914. line-height:20px;
  1915. }
  1916. #u165766 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:300px;
  1920. top:365px;
  1921. width:77px;
  1922. height:20px;
  1923. display:flex;
  1924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. font-size:11px;
  1928. color:#AAAAAA;
  1929. line-height:20px;
  1930. }
  1931. #u165766 .text {
  1932. position:absolute;
  1933. align-self:flex-start;
  1934. padding:0px 0px 0px 0px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u165766_text {
  1939. border-width:0px;
  1940. white-space:nowrap;
  1941. text-transform:none;
  1942. }
  1943. #u165767 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:0px;
  1949. height:0px;
  1950. }
  1951. #u165768_div {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:100px;
  1957. height:30px;
  1958. background:inherit;
  1959. background-color:rgba(255, 255, 255, 0);
  1960. border:none;
  1961. border-left:0px;
  1962. border-top:0px;
  1963. border-right:0px;
  1964. border-radius:0px;
  1965. border-bottom-right-radius:0px;
  1966. border-bottom-left-radius:0px;
  1967. -moz-box-shadow:none;
  1968. -webkit-box-shadow:none;
  1969. box-shadow:none;
  1970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1971. font-weight:400;
  1972. font-style:normal;
  1973. font-size:14px;
  1974. line-height:30px;
  1975. }
  1976. #u165768 {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:46px;
  1980. top:405px;
  1981. width:100px;
  1982. height:30px;
  1983. display:flex;
  1984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. font-size:14px;
  1988. line-height:30px;
  1989. }
  1990. #u165768 .text {
  1991. position:absolute;
  1992. align-self:flex-start;
  1993. padding:0px 0px 0px 0px;
  1994. box-sizing:border-box;
  1995. width:100%;
  1996. }
  1997. #u165768_text {
  1998. border-width:0px;
  1999. word-wrap:break-word;
  2000. text-transform:none;
  2001. }
  2002. #u165769_div {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:132px;
  2008. height:20px;
  2009. background:inherit;
  2010. background-color:rgba(255, 255, 255, 0);
  2011. border:none;
  2012. border-left:0px;
  2013. border-top:0px;
  2014. border-right:0px;
  2015. border-radius:0px;
  2016. border-bottom-right-radius:0px;
  2017. border-bottom-left-radius:0px;
  2018. -moz-box-shadow:none;
  2019. -webkit-box-shadow:none;
  2020. box-shadow:none;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:12px;
  2025. color:#7F7F7F;
  2026. line-height:20px;
  2027. }
  2028. #u165769 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:46px;
  2032. top:435px;
  2033. width:132px;
  2034. height:20px;
  2035. display:flex;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. color:#7F7F7F;
  2041. line-height:20px;
  2042. }
  2043. #u165769 .text {
  2044. position:absolute;
  2045. align-self:flex-start;
  2046. padding:0px 0px 0px 0px;
  2047. box-sizing:border-box;
  2048. width:100%;
  2049. }
  2050. #u165769_text {
  2051. border-width:0px;
  2052. word-wrap:break-word;
  2053. text-transform:none;
  2054. }
  2055. #u165770_div {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:0px;
  2059. top:0px;
  2060. width:85px;
  2061. height:30px;
  2062. background:inherit;
  2063. background-color:rgba(255, 255, 255, 0);
  2064. border:none;
  2065. border-left:0px;
  2066. border-top:0px;
  2067. border-right:0px;
  2068. border-radius:0px;
  2069. border-bottom-right-radius:0px;
  2070. border-bottom-left-radius:0px;
  2071. -moz-box-shadow:none;
  2072. -webkit-box-shadow:none;
  2073. box-shadow:none;
  2074. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2075. font-style:normal;
  2076. text-align:right;
  2077. line-height:30px;
  2078. }
  2079. #u165770 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:292px;
  2083. top:403px;
  2084. width:85px;
  2085. height:30px;
  2086. display:flex;
  2087. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2088. font-style:normal;
  2089. text-align:right;
  2090. line-height:30px;
  2091. }
  2092. #u165770 .text {
  2093. position:absolute;
  2094. align-self:flex-start;
  2095. padding:0px 0px 0px 0px;
  2096. box-sizing:border-box;
  2097. width:100%;
  2098. }
  2099. #u165770_text {
  2100. border-width:0px;
  2101. word-wrap:break-word;
  2102. text-transform:none;
  2103. }
  2104. #u165771_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:348px;
  2110. height:2px;
  2111. }
  2112. #u165771 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:46px;
  2116. top:465px;
  2117. width:347px;
  2118. height:1px;
  2119. display:flex;
  2120. }
  2121. #u165771 .text {
  2122. position:absolute;
  2123. align-self:center;
  2124. padding:2px 2px 2px 2px;
  2125. box-sizing:border-box;
  2126. width:100%;
  2127. }
  2128. #u165771_text {
  2129. border-width:0px;
  2130. word-wrap:break-word;
  2131. text-transform:none;
  2132. visibility:hidden;
  2133. }
  2134. #u165772_div {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:0px;
  2139. width:77px;
  2140. height:20px;
  2141. background:inherit;
  2142. background-color:rgba(255, 255, 255, 0);
  2143. border:none;
  2144. border-left:0px;
  2145. border-top:0px;
  2146. border-right:0px;
  2147. border-radius:0px;
  2148. border-bottom-right-radius:0px;
  2149. border-bottom-left-radius:0px;
  2150. -moz-box-shadow:none;
  2151. -webkit-box-shadow:none;
  2152. box-shadow:none;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:11px;
  2157. color:#AAAAAA;
  2158. line-height:20px;
  2159. }
  2160. #u165772 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:300px;
  2164. top:438px;
  2165. width:77px;
  2166. height:20px;
  2167. display:flex;
  2168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2169. font-weight:400;
  2170. font-style:normal;
  2171. font-size:11px;
  2172. color:#AAAAAA;
  2173. line-height:20px;
  2174. }
  2175. #u165772 .text {
  2176. position:absolute;
  2177. align-self:flex-start;
  2178. padding:0px 0px 0px 0px;
  2179. box-sizing:border-box;
  2180. width:100%;
  2181. }
  2182. #u165772_text {
  2183. border-width:0px;
  2184. white-space:nowrap;
  2185. text-transform:none;
  2186. }
  2187. #u165773 {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:0px;
  2191. top:0px;
  2192. width:0px;
  2193. height:0px;
  2194. }
  2195. #u165774_div {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:100px;
  2201. height:30px;
  2202. background:inherit;
  2203. background-color:rgba(255, 255, 255, 0);
  2204. border:none;
  2205. border-left:0px;
  2206. border-top:0px;
  2207. border-right:0px;
  2208. border-radius:0px;
  2209. border-bottom-right-radius:0px;
  2210. border-bottom-left-radius:0px;
  2211. -moz-box-shadow:none;
  2212. -webkit-box-shadow:none;
  2213. box-shadow:none;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:14px;
  2218. line-height:30px;
  2219. }
  2220. #u165774 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:46px;
  2224. top:478px;
  2225. width:100px;
  2226. height:30px;
  2227. display:flex;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:14px;
  2232. line-height:30px;
  2233. }
  2234. #u165774 .text {
  2235. position:absolute;
  2236. align-self:flex-start;
  2237. padding:0px 0px 0px 0px;
  2238. box-sizing:border-box;
  2239. width:100%;
  2240. }
  2241. #u165774_text {
  2242. border-width:0px;
  2243. word-wrap:break-word;
  2244. text-transform:none;
  2245. }
  2246. #u165775_div {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:132px;
  2252. height:20px;
  2253. background:inherit;
  2254. background-color:rgba(255, 255, 255, 0);
  2255. border:none;
  2256. border-left:0px;
  2257. border-top:0px;
  2258. border-right:0px;
  2259. border-radius:0px;
  2260. border-bottom-right-radius:0px;
  2261. border-bottom-left-radius:0px;
  2262. -moz-box-shadow:none;
  2263. -webkit-box-shadow:none;
  2264. box-shadow:none;
  2265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:12px;
  2269. color:#7F7F7F;
  2270. line-height:20px;
  2271. }
  2272. #u165775 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:46px;
  2276. top:508px;
  2277. width:132px;
  2278. height:20px;
  2279. display:flex;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:12px;
  2284. color:#7F7F7F;
  2285. line-height:20px;
  2286. }
  2287. #u165775 .text {
  2288. position:absolute;
  2289. align-self:flex-start;
  2290. padding:0px 0px 0px 0px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u165775_text {
  2295. border-width:0px;
  2296. word-wrap:break-word;
  2297. text-transform:none;
  2298. }
  2299. #u165776_div {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:85px;
  2305. height:30px;
  2306. background:inherit;
  2307. background-color:rgba(255, 255, 255, 0);
  2308. border:none;
  2309. border-left:0px;
  2310. border-top:0px;
  2311. border-right:0px;
  2312. border-radius:0px;
  2313. border-bottom-right-radius:0px;
  2314. border-bottom-left-radius:0px;
  2315. -moz-box-shadow:none;
  2316. -webkit-box-shadow:none;
  2317. box-shadow:none;
  2318. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2319. font-style:normal;
  2320. text-align:right;
  2321. line-height:30px;
  2322. }
  2323. #u165776 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:292px;
  2327. top:476px;
  2328. width:85px;
  2329. height:30px;
  2330. display:flex;
  2331. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2332. font-style:normal;
  2333. text-align:right;
  2334. line-height:30px;
  2335. }
  2336. #u165776 .text {
  2337. position:absolute;
  2338. align-self:flex-start;
  2339. padding:0px 0px 0px 0px;
  2340. box-sizing:border-box;
  2341. width:100%;
  2342. }
  2343. #u165776_text {
  2344. border-width:0px;
  2345. word-wrap:break-word;
  2346. text-transform:none;
  2347. }
  2348. #u165777_img {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:348px;
  2354. height:2px;
  2355. }
  2356. #u165777 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:46px;
  2360. top:538px;
  2361. width:347px;
  2362. height:1px;
  2363. display:flex;
  2364. }
  2365. #u165777 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:2px 2px 2px 2px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u165777_text {
  2373. border-width:0px;
  2374. word-wrap:break-word;
  2375. text-transform:none;
  2376. visibility:hidden;
  2377. }
  2378. #u165778_div {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:77px;
  2384. height:20px;
  2385. background:inherit;
  2386. background-color:rgba(255, 255, 255, 0);
  2387. border:none;
  2388. border-left:0px;
  2389. border-top:0px;
  2390. border-right:0px;
  2391. border-radius:0px;
  2392. border-bottom-right-radius:0px;
  2393. border-bottom-left-radius:0px;
  2394. -moz-box-shadow:none;
  2395. -webkit-box-shadow:none;
  2396. box-shadow:none;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:11px;
  2401. color:#AAAAAA;
  2402. line-height:20px;
  2403. }
  2404. #u165778 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:300px;
  2408. top:511px;
  2409. width:77px;
  2410. height:20px;
  2411. display:flex;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:11px;
  2416. color:#AAAAAA;
  2417. line-height:20px;
  2418. }
  2419. #u165778 .text {
  2420. position:absolute;
  2421. align-self:flex-start;
  2422. padding:0px 0px 0px 0px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u165778_text {
  2427. border-width:0px;
  2428. white-space:nowrap;
  2429. text-transform:none;
  2430. }
  2431. #u165780_img {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:433px;
  2437. height:865px;
  2438. }
  2439. #u165780 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:463px;
  2443. top:0px;
  2444. width:433px;
  2445. height:865px;
  2446. display:flex;
  2447. }
  2448. #u165780 .text {
  2449. position:absolute;
  2450. align-self:center;
  2451. padding:2px 2px 2px 2px;
  2452. box-sizing:border-box;
  2453. width:100%;
  2454. }
  2455. #u165780_text {
  2456. border-width:0px;
  2457. word-wrap:break-word;
  2458. text-transform:none;
  2459. visibility:hidden;
  2460. }
  2461. #u165781_div {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:375px;
  2467. height:40px;
  2468. background:inherit;
  2469. background-color:rgba(255, 255, 255, 1);
  2470. box-sizing:border-box;
  2471. border-width:1px;
  2472. border-style:solid;
  2473. border-color:rgba(215, 215, 215, 1);
  2474. border-left:0px;
  2475. border-top:0px;
  2476. border-right:0px;
  2477. border-radius:0px;
  2478. border-bottom-right-radius:0px;
  2479. border-bottom-left-radius:0px;
  2480. -moz-box-shadow:none;
  2481. -webkit-box-shadow:none;
  2482. box-shadow:none;
  2483. }
  2484. #u165781 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:492px;
  2488. top:67px;
  2489. width:375px;
  2490. height:40px;
  2491. display:flex;
  2492. }
  2493. #u165781 .text {
  2494. position:absolute;
  2495. align-self:center;
  2496. padding:2px 2px 2px 2px;
  2497. box-sizing:border-box;
  2498. width:100%;
  2499. }
  2500. #u165781_text {
  2501. border-width:0px;
  2502. word-wrap:break-word;
  2503. text-transform:none;
  2504. visibility:hidden;
  2505. }
  2506. #u165782 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:0px;
  2512. height:0px;
  2513. }
  2514. #u165783_div {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:0px;
  2518. top:0px;
  2519. width:88px;
  2520. height:32px;
  2521. background:inherit;
  2522. background-color:rgba(255, 255, 255, 1);
  2523. box-sizing:border-box;
  2524. border-width:1px;
  2525. border-style:solid;
  2526. border-color:rgba(242, 242, 242, 1);
  2527. border-radius:33px;
  2528. -moz-box-shadow:none;
  2529. -webkit-box-shadow:none;
  2530. box-shadow:none;
  2531. }
  2532. #u165783 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:772px;
  2536. top:71px;
  2537. width:88px;
  2538. height:32px;
  2539. display:flex;
  2540. }
  2541. #u165783 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:2px 2px 2px 2px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u165783_text {
  2549. border-width:0px;
  2550. word-wrap:break-word;
  2551. text-transform:none;
  2552. visibility:hidden;
  2553. }
  2554. #u165784 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:0px;
  2560. height:0px;
  2561. }
  2562. #u165785_img {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:18px;
  2568. height:18px;
  2569. }
  2570. #u165785 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:835px;
  2574. top:78px;
  2575. width:18px;
  2576. height:18px;
  2577. display:flex;
  2578. }
  2579. #u165785 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 2px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u165785_text {
  2587. border-width:0px;
  2588. word-wrap:break-word;
  2589. text-transform:none;
  2590. visibility:hidden;
  2591. }
  2592. #u165786_img {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:6px;
  2598. height:6px;
  2599. }
  2600. #u165786 {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:841px;
  2604. top:84px;
  2605. width:6px;
  2606. height:6px;
  2607. display:flex;
  2608. }
  2609. #u165786 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 2px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u165786_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. visibility:hidden;
  2621. }
  2622. #u165787 {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:0px;
  2628. height:0px;
  2629. }
  2630. #u165788_img {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:5px;
  2636. height:5px;
  2637. }
  2638. #u165788 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:786px;
  2642. top:85px;
  2643. width:5px;
  2644. height:5px;
  2645. display:flex;
  2646. }
  2647. #u165788 .text {
  2648. position:absolute;
  2649. align-self:center;
  2650. padding:2px 2px 2px 2px;
  2651. box-sizing:border-box;
  2652. width:100%;
  2653. }
  2654. #u165788_text {
  2655. border-width:0px;
  2656. word-wrap:break-word;
  2657. text-transform:none;
  2658. visibility:hidden;
  2659. }
  2660. #u165789_img {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:0px;
  2664. top:0px;
  2665. width:5px;
  2666. height:5px;
  2667. }
  2668. #u165789 {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:802px;
  2672. top:85px;
  2673. width:5px;
  2674. height:5px;
  2675. display:flex;
  2676. }
  2677. #u165789 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:2px 2px 2px 2px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u165789_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. visibility:hidden;
  2689. }
  2690. #u165790_img {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:7px;
  2696. height:7px;
  2697. }
  2698. #u165790 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:793px;
  2702. top:84px;
  2703. width:7px;
  2704. height:7px;
  2705. display:flex;
  2706. }
  2707. #u165790 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 2px 2px 2px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u165790_text {
  2715. border-width:0px;
  2716. word-wrap:break-word;
  2717. text-transform:none;
  2718. visibility:hidden;
  2719. }
  2720. #u165791_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:19px;
  2726. height:2px;
  2727. }
  2728. #u165791 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:810px;
  2732. top:87px;
  2733. width:18px;
  2734. height:1px;
  2735. display:flex;
  2736. -webkit-transform:rotate(90deg);
  2737. -moz-transform:rotate(90deg);
  2738. -ms-transform:rotate(90deg);
  2739. transform:rotate(90deg);
  2740. }
  2741. #u165791 .text {
  2742. position:absolute;
  2743. align-self:center;
  2744. padding:2px 2px 2px 2px;
  2745. box-sizing:border-box;
  2746. width:100%;
  2747. }
  2748. #u165791_text {
  2749. border-width:0px;
  2750. word-wrap:break-word;
  2751. text-transform:none;
  2752. visibility:hidden;
  2753. }
  2754. #u165792_img {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:375px;
  2760. height:44px;
  2761. }
  2762. #u165792 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:492px;
  2766. top:24px;
  2767. width:375px;
  2768. height:44px;
  2769. display:flex;
  2770. }
  2771. #u165792 .text {
  2772. position:absolute;
  2773. align-self:center;
  2774. padding:2px 2px 2px 2px;
  2775. box-sizing:border-box;
  2776. width:100%;
  2777. }
  2778. #u165792_text {
  2779. border-width:0px;
  2780. word-wrap:break-word;
  2781. text-transform:none;
  2782. visibility:hidden;
  2783. }
  2784. #u165793_div {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:375px;
  2790. height:50px;
  2791. background:inherit;
  2792. background-color:rgba(255, 255, 255, 1);
  2793. box-sizing:border-box;
  2794. border-width:1px;
  2795. border-style:solid;
  2796. border-color:rgba(242, 242, 242, 1);
  2797. border-radius:26px;
  2798. border-top-left-radius:0px;
  2799. border-top-right-radius:0px;
  2800. -moz-box-shadow:none;
  2801. -webkit-box-shadow:none;
  2802. box-shadow:none;
  2803. }
  2804. #u165793 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:492px;
  2808. top:788px;
  2809. width:375px;
  2810. height:50px;
  2811. display:flex;
  2812. }
  2813. #u165793 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 2px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u165793_text {
  2821. border-width:0px;
  2822. word-wrap:break-word;
  2823. text-transform:none;
  2824. visibility:hidden;
  2825. }
  2826. #u165794 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:0px;
  2832. height:0px;
  2833. }
  2834. #u165795_img {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:24px;
  2840. height:24px;
  2841. }
  2842. #u165795 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:532px;
  2846. top:792px;
  2847. width:24px;
  2848. height:24px;
  2849. display:flex;
  2850. font-size:8px;
  2851. }
  2852. #u165795 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:2px 2px 2px 2px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u165795_text {
  2860. border-width:0px;
  2861. word-wrap:break-word;
  2862. text-transform:none;
  2863. }
  2864. #u165796_div {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:25px;
  2870. height:17px;
  2871. background:inherit;
  2872. background-color:rgba(255, 255, 255, 0);
  2873. border:none;
  2874. border-radius:0px;
  2875. -moz-box-shadow:none;
  2876. -webkit-box-shadow:none;
  2877. box-shadow:none;
  2878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2879. font-weight:400;
  2880. font-style:normal;
  2881. font-size:12px;
  2882. }
  2883. #u165796 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:532px;
  2887. top:817px;
  2888. width:25px;
  2889. height:17px;
  2890. display:flex;
  2891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2892. font-weight:400;
  2893. font-style:normal;
  2894. font-size:12px;
  2895. }
  2896. #u165796 .text {
  2897. position:absolute;
  2898. align-self:flex-start;
  2899. padding:0px 0px 0px 0px;
  2900. box-sizing:border-box;
  2901. width:100%;
  2902. }
  2903. #u165796_text {
  2904. border-width:0px;
  2905. white-space:nowrap;
  2906. text-transform:none;
  2907. }
  2908. #u165797 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:0px;
  2912. top:0px;
  2913. width:0px;
  2914. height:0px;
  2915. }
  2916. #u165798_img {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:24px;
  2922. height:24px;
  2923. }
  2924. #u165798 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:802px;
  2928. top:794px;
  2929. width:24px;
  2930. height:24px;
  2931. display:flex;
  2932. font-size:8px;
  2933. }
  2934. #u165798 .text {
  2935. position:absolute;
  2936. align-self:center;
  2937. padding:2px 2px 2px 2px;
  2938. box-sizing:border-box;
  2939. width:100%;
  2940. }
  2941. #u165798_text {
  2942. border-width:0px;
  2943. word-wrap:break-word;
  2944. text-transform:none;
  2945. }
  2946. #u165799_div {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:25px;
  2952. height:17px;
  2953. background:inherit;
  2954. background-color:rgba(255, 255, 255, 0);
  2955. border:none;
  2956. border-radius:0px;
  2957. -moz-box-shadow:none;
  2958. -webkit-box-shadow:none;
  2959. box-shadow:none;
  2960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2961. font-weight:400;
  2962. font-style:normal;
  2963. font-size:12px;
  2964. }
  2965. #u165799 {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:802px;
  2969. top:819px;
  2970. width:25px;
  2971. height:17px;
  2972. display:flex;
  2973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2974. font-weight:400;
  2975. font-style:normal;
  2976. font-size:12px;
  2977. }
  2978. #u165799 .text {
  2979. position:absolute;
  2980. align-self:flex-start;
  2981. padding:0px 0px 0px 0px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u165799_text {
  2986. border-width:0px;
  2987. white-space:nowrap;
  2988. text-transform:none;
  2989. }
  2990. #u165800_div {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:0px;
  2994. top:0px;
  2995. width:375px;
  2996. height:681px;
  2997. background:inherit;
  2998. background-color:rgba(242, 242, 242, 0.462745098039216);
  2999. border:none;
  3000. border-radius:0px;
  3001. -moz-box-shadow:none;
  3002. -webkit-box-shadow:none;
  3003. box-shadow:none;
  3004. }
  3005. #u165800 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:492px;
  3009. top:107px;
  3010. width:375px;
  3011. height:681px;
  3012. display:flex;
  3013. }
  3014. #u165800 .text {
  3015. position:absolute;
  3016. align-self:center;
  3017. padding:2px 2px 2px 2px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u165800_text {
  3022. border-width:0px;
  3023. word-wrap:break-word;
  3024. text-transform:none;
  3025. visibility:hidden;
  3026. }
  3027. #u165801 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:0px;
  3033. height:0px;
  3034. }
  3035. #u165802_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:24px;
  3041. height:24px;
  3042. }
  3043. #u165802 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:714px;
  3047. top:792px;
  3048. width:24px;
  3049. height:24px;
  3050. display:flex;
  3051. font-size:8px;
  3052. }
  3053. #u165802 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 2px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u165802_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. }
  3065. #u165803_div {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:37px;
  3071. height:17px;
  3072. background:inherit;
  3073. background-color:rgba(255, 255, 255, 0);
  3074. border:none;
  3075. border-radius:0px;
  3076. -moz-box-shadow:none;
  3077. -webkit-box-shadow:none;
  3078. box-shadow:none;
  3079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:12px;
  3083. }
  3084. #u165803 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:708px;
  3088. top:817px;
  3089. width:37px;
  3090. height:17px;
  3091. display:flex;
  3092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:12px;
  3096. }
  3097. #u165803 .text {
  3098. position:absolute;
  3099. align-self:flex-start;
  3100. padding:0px 0px 0px 0px;
  3101. box-sizing:border-box;
  3102. width:100%;
  3103. }
  3104. #u165803_text {
  3105. border-width:0px;
  3106. white-space:nowrap;
  3107. text-transform:none;
  3108. }
  3109. #u165804 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:0px;
  3115. height:0px;
  3116. }
  3117. #u165805_img {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:24px;
  3123. height:24px;
  3124. }
  3125. #u165805 {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:620px;
  3129. top:792px;
  3130. width:24px;
  3131. height:24px;
  3132. display:flex;
  3133. font-size:8px;
  3134. }
  3135. #u165805 .text {
  3136. position:absolute;
  3137. align-self:center;
  3138. padding:2px 2px 2px 2px;
  3139. box-sizing:border-box;
  3140. width:100%;
  3141. }
  3142. #u165805_text {
  3143. border-width:0px;
  3144. word-wrap:break-word;
  3145. text-transform:none;
  3146. }
  3147. #u165806_div {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:0px;
  3151. top:0px;
  3152. width:37px;
  3153. height:17px;
  3154. background:inherit;
  3155. background-color:rgba(255, 255, 255, 0);
  3156. border:none;
  3157. border-radius:0px;
  3158. -moz-box-shadow:none;
  3159. -webkit-box-shadow:none;
  3160. box-shadow:none;
  3161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3162. font-weight:400;
  3163. font-style:normal;
  3164. font-size:12px;
  3165. }
  3166. #u165806 {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:614px;
  3170. top:817px;
  3171. width:37px;
  3172. height:17px;
  3173. display:flex;
  3174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3175. font-weight:400;
  3176. font-style:normal;
  3177. font-size:12px;
  3178. }
  3179. #u165806 .text {
  3180. position:absolute;
  3181. align-self:flex-start;
  3182. padding:0px 0px 0px 0px;
  3183. box-sizing:border-box;
  3184. width:100%;
  3185. }
  3186. #u165806_text {
  3187. border-width:0px;
  3188. white-space:nowrap;
  3189. text-transform:none;
  3190. }
  3191. #u165807 {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:0px;
  3197. height:0px;
  3198. }
  3199. #u165808_div {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:188px;
  3205. height:35px;
  3206. background:inherit;
  3207. background-color:rgba(255, 255, 255, 1);
  3208. border:none;
  3209. border-radius:0px;
  3210. -moz-box-shadow:none;
  3211. -webkit-box-shadow:none;
  3212. box-shadow:none;
  3213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3214. font-weight:400;
  3215. font-style:normal;
  3216. font-size:14px;
  3217. text-align:left;
  3218. }
  3219. #u165808 {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:492px;
  3223. top:70px;
  3224. width:188px;
  3225. height:35px;
  3226. display:flex;
  3227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3228. font-weight:400;
  3229. font-style:normal;
  3230. font-size:14px;
  3231. text-align:left;
  3232. }
  3233. #u165808 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 40px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u165808_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. }
  3245. #u165809_img {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:11px;
  3251. height:18px;
  3252. }
  3253. #u165809 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:503px;
  3257. top:79px;
  3258. width:11px;
  3259. height:18px;
  3260. display:flex;
  3261. }
  3262. #u165809 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:2px 2px 2px 2px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u165809_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. visibility:hidden;
  3274. }
  3275. #u165810_img {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:375px;
  3281. height:734px;
  3282. }
  3283. #u165810 {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:492px;
  3287. top:106px;
  3288. width:375px;
  3289. height:734px;
  3290. display:flex;
  3291. }
  3292. #u165810 .text {
  3293. position:absolute;
  3294. align-self:center;
  3295. padding:2px 2px 2px 2px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u165810_text {
  3300. border-width:0px;
  3301. word-wrap:break-word;
  3302. text-transform:none;
  3303. visibility:hidden;
  3304. }
  3305. #u165811_div {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:375px;
  3311. height:594px;
  3312. background:inherit;
  3313. background-color:rgba(255, 255, 255, 1);
  3314. border:none;
  3315. border-top:0px;
  3316. border-radius:29px;
  3317. border-top-left-radius:0px;
  3318. border-top-right-radius:0px;
  3319. -moz-box-shadow:none;
  3320. -webkit-box-shadow:none;
  3321. box-shadow:none;
  3322. }
  3323. #u165811 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:492px;
  3327. top:246px;
  3328. width:375px;
  3329. height:594px;
  3330. display:flex;
  3331. }
  3332. #u165811 .text {
  3333. position:absolute;
  3334. align-self:center;
  3335. padding:2px 2px 2px 2px;
  3336. box-sizing:border-box;
  3337. width:100%;
  3338. }
  3339. #u165811_text {
  3340. border-width:0px;
  3341. word-wrap:break-word;
  3342. text-transform:none;
  3343. visibility:hidden;
  3344. }
  3345. #u165812 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:0px;
  3351. height:0px;
  3352. }
  3353. #u165813_div {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:375px;
  3359. height:40px;
  3360. background:inherit;
  3361. background-color:rgba(242, 242, 242, 1);
  3362. border:none;
  3363. border-left:0px;
  3364. border-top:0px;
  3365. border-right:0px;
  3366. border-radius:0px;
  3367. border-bottom-right-radius:0px;
  3368. border-bottom-left-radius:0px;
  3369. -moz-box-shadow:none;
  3370. -webkit-box-shadow:none;
  3371. box-shadow:none;
  3372. }
  3373. #u165813 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:492px;
  3377. top:206px;
  3378. width:375px;
  3379. height:40px;
  3380. display:flex;
  3381. }
  3382. #u165813 .text {
  3383. position:absolute;
  3384. align-self:center;
  3385. padding:2px 2px 2px 2px;
  3386. box-sizing:border-box;
  3387. width:100%;
  3388. }
  3389. #u165813_text {
  3390. border-width:0px;
  3391. word-wrap:break-word;
  3392. text-transform:none;
  3393. visibility:hidden;
  3394. }
  3395. #u165814_input {
  3396. position:absolute;
  3397. left:0px;
  3398. top:0px;
  3399. width:100px;
  3400. height:26px;
  3401. padding:2px 2px 2px 2px;
  3402. font-family:'ArialMT', 'Arial', sans-serif;
  3403. font-weight:400;
  3404. font-style:normal;
  3405. font-size:14px;
  3406. letter-spacing:normal;
  3407. color:#000000;
  3408. vertical-align:none;
  3409. text-align:left;
  3410. text-transform:none;
  3411. background-color:transparent;
  3412. border-color:transparent;
  3413. }
  3414. #u165814_input.disabled {
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:100px;
  3419. height:26px;
  3420. padding:2px 2px 2px 2px;
  3421. font-family:'ArialMT', 'Arial', sans-serif;
  3422. font-weight:400;
  3423. font-style:normal;
  3424. font-size:14px;
  3425. letter-spacing:normal;
  3426. color:#000000;
  3427. vertical-align:none;
  3428. text-align:left;
  3429. text-transform:none;
  3430. background-color:transparent;
  3431. border-color:transparent;
  3432. }
  3433. #u165814_div {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:100px;
  3439. height:26px;
  3440. background:inherit;
  3441. background-color:rgba(242, 242, 242, 1);
  3442. border:none;
  3443. border-radius:0px;
  3444. -moz-box-shadow:none;
  3445. -webkit-box-shadow:none;
  3446. box-shadow:none;
  3447. font-size:14px;
  3448. }
  3449. #u165814 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:502px;
  3453. top:212px;
  3454. width:100px;
  3455. height:26px;
  3456. display:flex;
  3457. font-size:14px;
  3458. }
  3459. #u165814 .text {
  3460. position:absolute;
  3461. align-self:flex-start;
  3462. padding:2px 2px 2px 2px;
  3463. box-sizing:border-box;
  3464. width:100%;
  3465. }
  3466. #u165814_div.disabled {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:100px;
  3472. height:26px;
  3473. background:inherit;
  3474. background-color:rgba(240, 240, 240, 1);
  3475. border:none;
  3476. border-radius:0px;
  3477. -moz-box-shadow:none;
  3478. -webkit-box-shadow:none;
  3479. box-shadow:none;
  3480. font-size:14px;
  3481. }
  3482. #u165814.disabled {
  3483. }
  3484. .u165814_input_option {
  3485. font-size:14px;
  3486. }
  3487. #u165815_input {
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:100px;
  3492. height:26px;
  3493. padding:2px 2px 2px 2px;
  3494. font-family:'ArialMT', 'Arial', sans-serif;
  3495. font-weight:400;
  3496. font-style:normal;
  3497. font-size:14px;
  3498. letter-spacing:normal;
  3499. color:#000000;
  3500. vertical-align:none;
  3501. text-align:left;
  3502. text-transform:none;
  3503. background-color:transparent;
  3504. border-color:transparent;
  3505. }
  3506. #u165815_input.disabled {
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:100px;
  3511. height:26px;
  3512. padding:2px 2px 2px 2px;
  3513. font-family:'ArialMT', 'Arial', sans-serif;
  3514. font-weight:400;
  3515. font-style:normal;
  3516. font-size:14px;
  3517. letter-spacing:normal;
  3518. color:#000000;
  3519. vertical-align:none;
  3520. text-align:left;
  3521. text-transform:none;
  3522. background-color:transparent;
  3523. border-color:transparent;
  3524. }
  3525. #u165815_div {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:100px;
  3531. height:26px;
  3532. background:inherit;
  3533. background-color:rgba(242, 242, 242, 1);
  3534. border:none;
  3535. border-radius:0px;
  3536. -moz-box-shadow:none;
  3537. -webkit-box-shadow:none;
  3538. box-shadow:none;
  3539. font-size:14px;
  3540. }
  3541. #u165815 {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:633px;
  3545. top:212px;
  3546. width:100px;
  3547. height:26px;
  3548. display:flex;
  3549. font-size:14px;
  3550. }
  3551. #u165815 .text {
  3552. position:absolute;
  3553. align-self:flex-start;
  3554. padding:2px 2px 2px 2px;
  3555. box-sizing:border-box;
  3556. width:100%;
  3557. }
  3558. #u165815_div.disabled {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:100px;
  3564. height:26px;
  3565. background:inherit;
  3566. background-color:rgba(240, 240, 240, 1);
  3567. border:none;
  3568. border-radius:0px;
  3569. -moz-box-shadow:none;
  3570. -webkit-box-shadow:none;
  3571. box-shadow:none;
  3572. font-size:14px;
  3573. }
  3574. #u165815.disabled {
  3575. }
  3576. .u165815_input_option {
  3577. font-size:14px;
  3578. }
  3579. #u165816_input {
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:100px;
  3584. height:26px;
  3585. padding:2px 2px 2px 2px;
  3586. font-family:'ArialMT', 'Arial', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:14px;
  3590. letter-spacing:normal;
  3591. color:#000000;
  3592. vertical-align:none;
  3593. text-align:left;
  3594. text-transform:none;
  3595. background-color:transparent;
  3596. border-color:transparent;
  3597. }
  3598. #u165816_input.disabled {
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:100px;
  3603. height:26px;
  3604. padding:2px 2px 2px 2px;
  3605. font-family:'ArialMT', 'Arial', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:14px;
  3609. letter-spacing:normal;
  3610. color:#000000;
  3611. vertical-align:none;
  3612. text-align:left;
  3613. text-transform:none;
  3614. background-color:transparent;
  3615. border-color:transparent;
  3616. }
  3617. #u165816_div {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:100px;
  3623. height:26px;
  3624. background:inherit;
  3625. background-color:rgba(242, 242, 242, 1);
  3626. border:none;
  3627. border-radius:0px;
  3628. -moz-box-shadow:none;
  3629. -webkit-box-shadow:none;
  3630. box-shadow:none;
  3631. font-size:14px;
  3632. }
  3633. #u165816 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:756px;
  3637. top:212px;
  3638. width:100px;
  3639. height:26px;
  3640. display:flex;
  3641. font-size:14px;
  3642. }
  3643. #u165816 .text {
  3644. position:absolute;
  3645. align-self:flex-start;
  3646. padding:2px 2px 2px 2px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u165816_div.disabled {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:100px;
  3656. height:26px;
  3657. background:inherit;
  3658. background-color:rgba(240, 240, 240, 1);
  3659. border:none;
  3660. border-radius:0px;
  3661. -moz-box-shadow:none;
  3662. -webkit-box-shadow:none;
  3663. box-shadow:none;
  3664. font-size:14px;
  3665. }
  3666. #u165816.disabled {
  3667. }
  3668. .u165816_input_option {
  3669. font-size:14px;
  3670. }
  3671. #u165817_div {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:375px;
  3677. height:100px;
  3678. background:inherit;
  3679. background-color:rgba(89, 179, 141, 1);
  3680. border:none;
  3681. border-radius:0px;
  3682. -moz-box-shadow:none;
  3683. -webkit-box-shadow:none;
  3684. box-shadow:none;
  3685. }
  3686. #u165817 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:492px;
  3690. top:106px;
  3691. width:375px;
  3692. height:100px;
  3693. display:flex;
  3694. }
  3695. #u165817 .text {
  3696. position:absolute;
  3697. align-self:center;
  3698. padding:2px 2px 2px 2px;
  3699. box-sizing:border-box;
  3700. width:100%;
  3701. }
  3702. #u165817_text {
  3703. border-width:0px;
  3704. word-wrap:break-word;
  3705. text-transform:none;
  3706. visibility:hidden;
  3707. }
  3708. #u165818_div {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:0px;
  3712. top:0px;
  3713. width:79px;
  3714. height:30px;
  3715. background:inherit;
  3716. background-color:rgba(255, 255, 255, 0);
  3717. border:none;
  3718. border-left:0px;
  3719. border-top:0px;
  3720. border-right:0px;
  3721. border-radius:0px;
  3722. border-bottom-right-radius:0px;
  3723. border-bottom-left-radius:0px;
  3724. -moz-box-shadow:none;
  3725. -webkit-box-shadow:none;
  3726. box-shadow:none;
  3727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. color:#FFFFFF;
  3731. line-height:30px;
  3732. }
  3733. #u165818 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:514px;
  3737. top:126px;
  3738. width:79px;
  3739. height:30px;
  3740. display:flex;
  3741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. color:#FFFFFF;
  3745. line-height:30px;
  3746. }
  3747. #u165818 .text {
  3748. position:absolute;
  3749. align-self:flex-start;
  3750. padding:0px 0px 0px 0px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u165818_text {
  3755. border-width:0px;
  3756. white-space:nowrap;
  3757. text-transform:none;
  3758. }
  3759. #u165819_div {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:119px;
  3765. height:20px;
  3766. background:inherit;
  3767. background-color:rgba(255, 255, 255, 0);
  3768. border:none;
  3769. border-left:0px;
  3770. border-top:0px;
  3771. border-right:0px;
  3772. border-radius:0px;
  3773. border-bottom-right-radius:0px;
  3774. border-bottom-left-radius:0px;
  3775. -moz-box-shadow:none;
  3776. -webkit-box-shadow:none;
  3777. box-shadow:none;
  3778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3779. font-weight:400;
  3780. font-style:normal;
  3781. font-size:12px;
  3782. color:#FFFFFF;
  3783. line-height:20px;
  3784. }
  3785. #u165819 {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:514px;
  3789. top:176px;
  3790. width:119px;
  3791. height:20px;
  3792. display:flex;
  3793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3794. font-weight:400;
  3795. font-style:normal;
  3796. font-size:12px;
  3797. color:#FFFFFF;
  3798. line-height:20px;
  3799. }
  3800. #u165819 .text {
  3801. position:absolute;
  3802. align-self:flex-start;
  3803. padding:0px 0px 0px 0px;
  3804. box-sizing:border-box;
  3805. width:100%;
  3806. }
  3807. #u165819_text {
  3808. border-width:0px;
  3809. white-space:nowrap;
  3810. text-transform:none;
  3811. }
  3812. #u165820_div {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:121px;
  3818. height:20px;
  3819. background:inherit;
  3820. background-color:rgba(255, 255, 255, 0);
  3821. border:none;
  3822. border-left:0px;
  3823. border-top:0px;
  3824. border-right:0px;
  3825. border-radius:0px;
  3826. border-bottom-right-radius:0px;
  3827. border-bottom-left-radius:0px;
  3828. -moz-box-shadow:none;
  3829. -webkit-box-shadow:none;
  3830. box-shadow:none;
  3831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. font-size:12px;
  3835. color:#FFFFFF;
  3836. line-height:20px;
  3837. }
  3838. #u165820 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:706px;
  3842. top:176px;
  3843. width:121px;
  3844. height:20px;
  3845. display:flex;
  3846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3847. font-weight:400;
  3848. font-style:normal;
  3849. font-size:12px;
  3850. color:#FFFFFF;
  3851. line-height:20px;
  3852. }
  3853. #u165820 .text {
  3854. position:absolute;
  3855. align-self:flex-start;
  3856. padding:0px 0px 0px 0px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u165820_text {
  3861. border-width:0px;
  3862. white-space:nowrap;
  3863. text-transform:none;
  3864. }
  3865. #u165821 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:0px;
  3871. height:0px;
  3872. }
  3873. #u165822_div {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:100px;
  3879. height:30px;
  3880. background:inherit;
  3881. background-color:rgba(255, 255, 255, 0);
  3882. border:none;
  3883. border-left:0px;
  3884. border-top:0px;
  3885. border-right:0px;
  3886. border-radius:0px;
  3887. border-bottom-right-radius:0px;
  3888. border-bottom-left-radius:0px;
  3889. -moz-box-shadow:none;
  3890. -webkit-box-shadow:none;
  3891. box-shadow:none;
  3892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. font-size:14px;
  3896. line-height:30px;
  3897. }
  3898. #u165822 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:506px;
  3902. top:260px;
  3903. width:100px;
  3904. height:30px;
  3905. display:flex;
  3906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3907. font-weight:400;
  3908. font-style:normal;
  3909. font-size:14px;
  3910. line-height:30px;
  3911. }
  3912. #u165822 .text {
  3913. position:absolute;
  3914. align-self:flex-start;
  3915. padding:0px 0px 0px 0px;
  3916. box-sizing:border-box;
  3917. width:100%;
  3918. }
  3919. #u165822_text {
  3920. border-width:0px;
  3921. word-wrap:break-word;
  3922. text-transform:none;
  3923. }
  3924. #u165823_div {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:0px;
  3928. top:0px;
  3929. width:132px;
  3930. height:20px;
  3931. background:inherit;
  3932. background-color:rgba(255, 255, 255, 0);
  3933. border:none;
  3934. border-left:0px;
  3935. border-top:0px;
  3936. border-right:0px;
  3937. border-radius:0px;
  3938. border-bottom-right-radius:0px;
  3939. border-bottom-left-radius:0px;
  3940. -moz-box-shadow:none;
  3941. -webkit-box-shadow:none;
  3942. box-shadow:none;
  3943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3944. font-weight:400;
  3945. font-style:normal;
  3946. font-size:12px;
  3947. color:#7F7F7F;
  3948. line-height:20px;
  3949. }
  3950. #u165823 {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:506px;
  3954. top:290px;
  3955. width:132px;
  3956. height:20px;
  3957. display:flex;
  3958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3959. font-weight:400;
  3960. font-style:normal;
  3961. font-size:12px;
  3962. color:#7F7F7F;
  3963. line-height:20px;
  3964. }
  3965. #u165823 .text {
  3966. position:absolute;
  3967. align-self:flex-start;
  3968. padding:0px 0px 0px 0px;
  3969. box-sizing:border-box;
  3970. width:100%;
  3971. }
  3972. #u165823_text {
  3973. border-width:0px;
  3974. word-wrap:break-word;
  3975. text-transform:none;
  3976. }
  3977. #u165824_div {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:0px;
  3982. width:85px;
  3983. height:30px;
  3984. background:inherit;
  3985. background-color:rgba(255, 255, 255, 0);
  3986. border:none;
  3987. border-left:0px;
  3988. border-top:0px;
  3989. border-right:0px;
  3990. border-radius:0px;
  3991. border-bottom-right-radius:0px;
  3992. border-bottom-left-radius:0px;
  3993. -moz-box-shadow:none;
  3994. -webkit-box-shadow:none;
  3995. box-shadow:none;
  3996. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3997. font-style:normal;
  3998. text-align:right;
  3999. line-height:30px;
  4000. }
  4001. #u165824 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:752px;
  4005. top:258px;
  4006. width:85px;
  4007. height:30px;
  4008. display:flex;
  4009. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4010. font-style:normal;
  4011. text-align:right;
  4012. line-height:30px;
  4013. }
  4014. #u165824 .text {
  4015. position:absolute;
  4016. align-self:flex-start;
  4017. padding:0px 0px 0px 0px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u165824_text {
  4022. border-width:0px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. }
  4026. #u165825_img {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:348px;
  4032. height:2px;
  4033. }
  4034. #u165825 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:506px;
  4038. top:320px;
  4039. width:347px;
  4040. height:1px;
  4041. display:flex;
  4042. }
  4043. #u165825 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 2px 2px 2px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u165825_text {
  4051. border-width:0px;
  4052. word-wrap:break-word;
  4053. text-transform:none;
  4054. visibility:hidden;
  4055. }
  4056. #u165826_div {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:77px;
  4062. height:20px;
  4063. background:inherit;
  4064. background-color:rgba(255, 255, 255, 0);
  4065. border:none;
  4066. border-left:0px;
  4067. border-top:0px;
  4068. border-right:0px;
  4069. border-radius:0px;
  4070. border-bottom-right-radius:0px;
  4071. border-bottom-left-radius:0px;
  4072. -moz-box-shadow:none;
  4073. -webkit-box-shadow:none;
  4074. box-shadow:none;
  4075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4076. font-weight:400;
  4077. font-style:normal;
  4078. font-size:11px;
  4079. color:#AAAAAA;
  4080. line-height:20px;
  4081. }
  4082. #u165826 {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:760px;
  4086. top:293px;
  4087. width:77px;
  4088. height:20px;
  4089. display:flex;
  4090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4091. font-weight:400;
  4092. font-style:normal;
  4093. font-size:11px;
  4094. color:#AAAAAA;
  4095. line-height:20px;
  4096. }
  4097. #u165826 .text {
  4098. position:absolute;
  4099. align-self:flex-start;
  4100. padding:0px 0px 0px 0px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u165826_text {
  4105. border-width:0px;
  4106. white-space:nowrap;
  4107. text-transform:none;
  4108. }
  4109. #u165827 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:0px;
  4115. height:0px;
  4116. }
  4117. #u165828_div {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:100px;
  4123. height:30px;
  4124. background:inherit;
  4125. background-color:rgba(255, 255, 255, 0);
  4126. border:none;
  4127. border-left:0px;
  4128. border-top:0px;
  4129. border-right:0px;
  4130. border-radius:0px;
  4131. border-bottom-right-radius:0px;
  4132. border-bottom-left-radius:0px;
  4133. -moz-box-shadow:none;
  4134. -webkit-box-shadow:none;
  4135. box-shadow:none;
  4136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4137. font-weight:400;
  4138. font-style:normal;
  4139. font-size:14px;
  4140. line-height:30px;
  4141. }
  4142. #u165828 {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:506px;
  4146. top:332px;
  4147. width:100px;
  4148. height:30px;
  4149. display:flex;
  4150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4151. font-weight:400;
  4152. font-style:normal;
  4153. font-size:14px;
  4154. line-height:30px;
  4155. }
  4156. #u165828 .text {
  4157. position:absolute;
  4158. align-self:flex-start;
  4159. padding:0px 0px 0px 0px;
  4160. box-sizing:border-box;
  4161. width:100%;
  4162. }
  4163. #u165828_text {
  4164. border-width:0px;
  4165. word-wrap:break-word;
  4166. text-transform:none;
  4167. }
  4168. #u165829_div {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:132px;
  4174. height:20px;
  4175. background:inherit;
  4176. background-color:rgba(255, 255, 255, 0);
  4177. border:none;
  4178. border-left:0px;
  4179. border-top:0px;
  4180. border-right:0px;
  4181. border-radius:0px;
  4182. border-bottom-right-radius:0px;
  4183. border-bottom-left-radius:0px;
  4184. -moz-box-shadow:none;
  4185. -webkit-box-shadow:none;
  4186. box-shadow:none;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:12px;
  4191. color:#7F7F7F;
  4192. line-height:20px;
  4193. }
  4194. #u165829 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:506px;
  4198. top:362px;
  4199. width:132px;
  4200. height:20px;
  4201. display:flex;
  4202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4203. font-weight:400;
  4204. font-style:normal;
  4205. font-size:12px;
  4206. color:#7F7F7F;
  4207. line-height:20px;
  4208. }
  4209. #u165829 .text {
  4210. position:absolute;
  4211. align-self:flex-start;
  4212. padding:0px 0px 0px 0px;
  4213. box-sizing:border-box;
  4214. width:100%;
  4215. }
  4216. #u165829_text {
  4217. border-width:0px;
  4218. word-wrap:break-word;
  4219. text-transform:none;
  4220. }
  4221. #u165830_div {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:85px;
  4227. height:30px;
  4228. background:inherit;
  4229. background-color:rgba(255, 255, 255, 0);
  4230. border:none;
  4231. border-left:0px;
  4232. border-top:0px;
  4233. border-right:0px;
  4234. border-radius:0px;
  4235. border-bottom-right-radius:0px;
  4236. border-bottom-left-radius:0px;
  4237. -moz-box-shadow:none;
  4238. -webkit-box-shadow:none;
  4239. box-shadow:none;
  4240. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4241. font-style:normal;
  4242. text-align:right;
  4243. line-height:30px;
  4244. }
  4245. #u165830 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:752px;
  4249. top:330px;
  4250. width:85px;
  4251. height:30px;
  4252. display:flex;
  4253. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4254. font-style:normal;
  4255. text-align:right;
  4256. line-height:30px;
  4257. }
  4258. #u165830 .text {
  4259. position:absolute;
  4260. align-self:flex-start;
  4261. padding:0px 0px 0px 0px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u165830_text {
  4266. border-width:0px;
  4267. word-wrap:break-word;
  4268. text-transform:none;
  4269. }
  4270. #u165831_img {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:348px;
  4276. height:2px;
  4277. }
  4278. #u165831 {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:506px;
  4282. top:392px;
  4283. width:347px;
  4284. height:1px;
  4285. display:flex;
  4286. }
  4287. #u165831 .text {
  4288. position:absolute;
  4289. align-self:center;
  4290. padding:2px 2px 2px 2px;
  4291. box-sizing:border-box;
  4292. width:100%;
  4293. }
  4294. #u165831_text {
  4295. border-width:0px;
  4296. word-wrap:break-word;
  4297. text-transform:none;
  4298. visibility:hidden;
  4299. }
  4300. #u165832_div {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:0px;
  4304. top:0px;
  4305. width:77px;
  4306. height:20px;
  4307. background:inherit;
  4308. background-color:rgba(255, 255, 255, 0);
  4309. border:none;
  4310. border-left:0px;
  4311. border-top:0px;
  4312. border-right:0px;
  4313. border-radius:0px;
  4314. border-bottom-right-radius:0px;
  4315. border-bottom-left-radius:0px;
  4316. -moz-box-shadow:none;
  4317. -webkit-box-shadow:none;
  4318. box-shadow:none;
  4319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4320. font-weight:400;
  4321. font-style:normal;
  4322. font-size:11px;
  4323. color:#AAAAAA;
  4324. line-height:20px;
  4325. }
  4326. #u165832 {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:760px;
  4330. top:365px;
  4331. width:77px;
  4332. height:20px;
  4333. display:flex;
  4334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4335. font-weight:400;
  4336. font-style:normal;
  4337. font-size:11px;
  4338. color:#AAAAAA;
  4339. line-height:20px;
  4340. }
  4341. #u165832 .text {
  4342. position:absolute;
  4343. align-self:flex-start;
  4344. padding:0px 0px 0px 0px;
  4345. box-sizing:border-box;
  4346. width:100%;
  4347. }
  4348. #u165832_text {
  4349. border-width:0px;
  4350. white-space:nowrap;
  4351. text-transform:none;
  4352. }
  4353. #u165833 {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:0px;
  4359. height:0px;
  4360. }
  4361. #u165834_div {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:100px;
  4367. height:30px;
  4368. background:inherit;
  4369. background-color:rgba(255, 255, 255, 0);
  4370. border:none;
  4371. border-left:0px;
  4372. border-top:0px;
  4373. border-right:0px;
  4374. border-radius:0px;
  4375. border-bottom-right-radius:0px;
  4376. border-bottom-left-radius:0px;
  4377. -moz-box-shadow:none;
  4378. -webkit-box-shadow:none;
  4379. box-shadow:none;
  4380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4381. font-weight:400;
  4382. font-style:normal;
  4383. font-size:14px;
  4384. line-height:30px;
  4385. }
  4386. #u165834 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:506px;
  4390. top:405px;
  4391. width:100px;
  4392. height:30px;
  4393. display:flex;
  4394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:14px;
  4398. line-height:30px;
  4399. }
  4400. #u165834 .text {
  4401. position:absolute;
  4402. align-self:flex-start;
  4403. padding:0px 0px 0px 0px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u165834_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. }
  4412. #u165835_div {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:132px;
  4418. height:20px;
  4419. background:inherit;
  4420. background-color:rgba(255, 255, 255, 0);
  4421. border:none;
  4422. border-left:0px;
  4423. border-top:0px;
  4424. border-right:0px;
  4425. border-radius:0px;
  4426. border-bottom-right-radius:0px;
  4427. border-bottom-left-radius:0px;
  4428. -moz-box-shadow:none;
  4429. -webkit-box-shadow:none;
  4430. box-shadow:none;
  4431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4432. font-weight:400;
  4433. font-style:normal;
  4434. font-size:12px;
  4435. color:#7F7F7F;
  4436. line-height:20px;
  4437. }
  4438. #u165835 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:506px;
  4442. top:435px;
  4443. width:132px;
  4444. height:20px;
  4445. display:flex;
  4446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4447. font-weight:400;
  4448. font-style:normal;
  4449. font-size:12px;
  4450. color:#7F7F7F;
  4451. line-height:20px;
  4452. }
  4453. #u165835 .text {
  4454. position:absolute;
  4455. align-self:flex-start;
  4456. padding:0px 0px 0px 0px;
  4457. box-sizing:border-box;
  4458. width:100%;
  4459. }
  4460. #u165835_text {
  4461. border-width:0px;
  4462. word-wrap:break-word;
  4463. text-transform:none;
  4464. }
  4465. #u165836_div {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:85px;
  4471. height:30px;
  4472. background:inherit;
  4473. background-color:rgba(255, 255, 255, 0);
  4474. border:none;
  4475. border-left:0px;
  4476. border-top:0px;
  4477. border-right:0px;
  4478. border-radius:0px;
  4479. border-bottom-right-radius:0px;
  4480. border-bottom-left-radius:0px;
  4481. -moz-box-shadow:none;
  4482. -webkit-box-shadow:none;
  4483. box-shadow:none;
  4484. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4485. font-style:normal;
  4486. text-align:right;
  4487. line-height:30px;
  4488. }
  4489. #u165836 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:752px;
  4493. top:403px;
  4494. width:85px;
  4495. height:30px;
  4496. display:flex;
  4497. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4498. font-style:normal;
  4499. text-align:right;
  4500. line-height:30px;
  4501. }
  4502. #u165836 .text {
  4503. position:absolute;
  4504. align-self:flex-start;
  4505. padding:0px 0px 0px 0px;
  4506. box-sizing:border-box;
  4507. width:100%;
  4508. }
  4509. #u165836_text {
  4510. border-width:0px;
  4511. word-wrap:break-word;
  4512. text-transform:none;
  4513. }
  4514. #u165837_img {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:348px;
  4520. height:2px;
  4521. }
  4522. #u165837 {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:506px;
  4526. top:465px;
  4527. width:347px;
  4528. height:1px;
  4529. display:flex;
  4530. }
  4531. #u165837 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:2px 2px 2px 2px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u165837_text {
  4539. border-width:0px;
  4540. word-wrap:break-word;
  4541. text-transform:none;
  4542. visibility:hidden;
  4543. }
  4544. #u165838_div {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:77px;
  4550. height:20px;
  4551. background:inherit;
  4552. background-color:rgba(255, 255, 255, 0);
  4553. border:none;
  4554. border-left:0px;
  4555. border-top:0px;
  4556. border-right:0px;
  4557. border-radius:0px;
  4558. border-bottom-right-radius:0px;
  4559. border-bottom-left-radius:0px;
  4560. -moz-box-shadow:none;
  4561. -webkit-box-shadow:none;
  4562. box-shadow:none;
  4563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4564. font-weight:400;
  4565. font-style:normal;
  4566. font-size:11px;
  4567. color:#AAAAAA;
  4568. line-height:20px;
  4569. }
  4570. #u165838 {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:760px;
  4574. top:438px;
  4575. width:77px;
  4576. height:20px;
  4577. display:flex;
  4578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4579. font-weight:400;
  4580. font-style:normal;
  4581. font-size:11px;
  4582. color:#AAAAAA;
  4583. line-height:20px;
  4584. }
  4585. #u165838 .text {
  4586. position:absolute;
  4587. align-self:flex-start;
  4588. padding:0px 0px 0px 0px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u165838_text {
  4593. border-width:0px;
  4594. white-space:nowrap;
  4595. text-transform:none;
  4596. }
  4597. #u165839 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:0px;
  4603. height:0px;
  4604. }
  4605. #u165840_div {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:100px;
  4611. height:30px;
  4612. background:inherit;
  4613. background-color:rgba(255, 255, 255, 0);
  4614. border:none;
  4615. border-left:0px;
  4616. border-top:0px;
  4617. border-right:0px;
  4618. border-radius:0px;
  4619. border-bottom-right-radius:0px;
  4620. border-bottom-left-radius:0px;
  4621. -moz-box-shadow:none;
  4622. -webkit-box-shadow:none;
  4623. box-shadow:none;
  4624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4625. font-weight:400;
  4626. font-style:normal;
  4627. font-size:14px;
  4628. line-height:30px;
  4629. }
  4630. #u165840 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:506px;
  4634. top:478px;
  4635. width:100px;
  4636. height:30px;
  4637. display:flex;
  4638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:14px;
  4642. line-height:30px;
  4643. }
  4644. #u165840 .text {
  4645. position:absolute;
  4646. align-self:flex-start;
  4647. padding:0px 0px 0px 0px;
  4648. box-sizing:border-box;
  4649. width:100%;
  4650. }
  4651. #u165840_text {
  4652. border-width:0px;
  4653. word-wrap:break-word;
  4654. text-transform:none;
  4655. }
  4656. #u165841_div {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:0px;
  4660. top:0px;
  4661. width:132px;
  4662. height:20px;
  4663. background:inherit;
  4664. background-color:rgba(255, 255, 255, 0);
  4665. border:none;
  4666. border-left:0px;
  4667. border-top:0px;
  4668. border-right:0px;
  4669. border-radius:0px;
  4670. border-bottom-right-radius:0px;
  4671. border-bottom-left-radius:0px;
  4672. -moz-box-shadow:none;
  4673. -webkit-box-shadow:none;
  4674. box-shadow:none;
  4675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4676. font-weight:400;
  4677. font-style:normal;
  4678. font-size:12px;
  4679. color:#7F7F7F;
  4680. line-height:20px;
  4681. }
  4682. #u165841 {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:506px;
  4686. top:508px;
  4687. width:132px;
  4688. height:20px;
  4689. display:flex;
  4690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4691. font-weight:400;
  4692. font-style:normal;
  4693. font-size:12px;
  4694. color:#7F7F7F;
  4695. line-height:20px;
  4696. }
  4697. #u165841 .text {
  4698. position:absolute;
  4699. align-self:flex-start;
  4700. padding:0px 0px 0px 0px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u165841_text {
  4705. border-width:0px;
  4706. word-wrap:break-word;
  4707. text-transform:none;
  4708. }
  4709. #u165842_div {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:85px;
  4715. height:30px;
  4716. background:inherit;
  4717. background-color:rgba(255, 255, 255, 0);
  4718. border:none;
  4719. border-left:0px;
  4720. border-top:0px;
  4721. border-right:0px;
  4722. border-radius:0px;
  4723. border-bottom-right-radius:0px;
  4724. border-bottom-left-radius:0px;
  4725. -moz-box-shadow:none;
  4726. -webkit-box-shadow:none;
  4727. box-shadow:none;
  4728. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4729. font-style:normal;
  4730. text-align:right;
  4731. line-height:30px;
  4732. }
  4733. #u165842 {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:752px;
  4737. top:476px;
  4738. width:85px;
  4739. height:30px;
  4740. display:flex;
  4741. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4742. font-style:normal;
  4743. text-align:right;
  4744. line-height:30px;
  4745. }
  4746. #u165842 .text {
  4747. position:absolute;
  4748. align-self:flex-start;
  4749. padding:0px 0px 0px 0px;
  4750. box-sizing:border-box;
  4751. width:100%;
  4752. }
  4753. #u165842_text {
  4754. border-width:0px;
  4755. word-wrap:break-word;
  4756. text-transform:none;
  4757. }
  4758. #u165843_img {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:348px;
  4764. height:2px;
  4765. }
  4766. #u165843 {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:506px;
  4770. top:538px;
  4771. width:347px;
  4772. height:1px;
  4773. display:flex;
  4774. }
  4775. #u165843 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:2px 2px 2px 2px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u165843_text {
  4783. border-width:0px;
  4784. word-wrap:break-word;
  4785. text-transform:none;
  4786. visibility:hidden;
  4787. }
  4788. #u165844_div {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:77px;
  4794. height:20px;
  4795. background:inherit;
  4796. background-color:rgba(255, 255, 255, 0);
  4797. border:none;
  4798. border-left:0px;
  4799. border-top:0px;
  4800. border-right:0px;
  4801. border-radius:0px;
  4802. border-bottom-right-radius:0px;
  4803. border-bottom-left-radius:0px;
  4804. -moz-box-shadow:none;
  4805. -webkit-box-shadow:none;
  4806. box-shadow:none;
  4807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4808. font-weight:400;
  4809. font-style:normal;
  4810. font-size:11px;
  4811. color:#AAAAAA;
  4812. line-height:20px;
  4813. }
  4814. #u165844 {
  4815. border-width:0px;
  4816. position:absolute;
  4817. left:760px;
  4818. top:511px;
  4819. width:77px;
  4820. height:20px;
  4821. display:flex;
  4822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4823. font-weight:400;
  4824. font-style:normal;
  4825. font-size:11px;
  4826. color:#AAAAAA;
  4827. line-height:20px;
  4828. }
  4829. #u165844 .text {
  4830. position:absolute;
  4831. align-self:flex-start;
  4832. padding:0px 0px 0px 0px;
  4833. box-sizing:border-box;
  4834. width:100%;
  4835. }
  4836. #u165844_text {
  4837. border-width:0px;
  4838. white-space:nowrap;
  4839. text-transform:none;
  4840. }
  4841. #u165845 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:0px;
  4847. height:0px;
  4848. }
  4849. #u165846_div {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:100px;
  4855. height:30px;
  4856. background:inherit;
  4857. background-color:rgba(255, 255, 255, 0);
  4858. border:none;
  4859. border-left:0px;
  4860. border-top:0px;
  4861. border-right:0px;
  4862. border-radius:0px;
  4863. border-bottom-right-radius:0px;
  4864. border-bottom-left-radius:0px;
  4865. -moz-box-shadow:none;
  4866. -webkit-box-shadow:none;
  4867. box-shadow:none;
  4868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:14px;
  4872. line-height:30px;
  4873. }
  4874. #u165846 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:46px;
  4878. top:551px;
  4879. width:100px;
  4880. height:30px;
  4881. display:flex;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:14px;
  4886. line-height:30px;
  4887. }
  4888. #u165846 .text {
  4889. position:absolute;
  4890. align-self:flex-start;
  4891. padding:0px 0px 0px 0px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u165846_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. }
  4900. #u165847_div {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:132px;
  4906. height:20px;
  4907. background:inherit;
  4908. background-color:rgba(255, 255, 255, 0);
  4909. border:none;
  4910. border-left:0px;
  4911. border-top:0px;
  4912. border-right:0px;
  4913. border-radius:0px;
  4914. border-bottom-right-radius:0px;
  4915. border-bottom-left-radius:0px;
  4916. -moz-box-shadow:none;
  4917. -webkit-box-shadow:none;
  4918. box-shadow:none;
  4919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. font-size:12px;
  4923. color:#7F7F7F;
  4924. line-height:20px;
  4925. }
  4926. #u165847 {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:46px;
  4930. top:581px;
  4931. width:132px;
  4932. height:20px;
  4933. display:flex;
  4934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4935. font-weight:400;
  4936. font-style:normal;
  4937. font-size:12px;
  4938. color:#7F7F7F;
  4939. line-height:20px;
  4940. }
  4941. #u165847 .text {
  4942. position:absolute;
  4943. align-self:flex-start;
  4944. padding:0px 0px 0px 0px;
  4945. box-sizing:border-box;
  4946. width:100%;
  4947. }
  4948. #u165847_text {
  4949. border-width:0px;
  4950. word-wrap:break-word;
  4951. text-transform:none;
  4952. }
  4953. #u165848_div {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:0px;
  4957. top:0px;
  4958. width:85px;
  4959. height:30px;
  4960. background:inherit;
  4961. background-color:rgba(255, 255, 255, 0);
  4962. border:none;
  4963. border-left:0px;
  4964. border-top:0px;
  4965. border-right:0px;
  4966. border-radius:0px;
  4967. border-bottom-right-radius:0px;
  4968. border-bottom-left-radius:0px;
  4969. -moz-box-shadow:none;
  4970. -webkit-box-shadow:none;
  4971. box-shadow:none;
  4972. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4973. font-style:normal;
  4974. text-align:right;
  4975. line-height:30px;
  4976. }
  4977. #u165848 {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:292px;
  4981. top:549px;
  4982. width:85px;
  4983. height:30px;
  4984. display:flex;
  4985. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4986. font-style:normal;
  4987. text-align:right;
  4988. line-height:30px;
  4989. }
  4990. #u165848 .text {
  4991. position:absolute;
  4992. align-self:flex-start;
  4993. padding:0px 0px 0px 0px;
  4994. box-sizing:border-box;
  4995. width:100%;
  4996. }
  4997. #u165848_text {
  4998. border-width:0px;
  4999. word-wrap:break-word;
  5000. text-transform:none;
  5001. }
  5002. #u165849_img {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:348px;
  5008. height:2px;
  5009. }
  5010. #u165849 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:46px;
  5014. top:611px;
  5015. width:347px;
  5016. height:1px;
  5017. display:flex;
  5018. }
  5019. #u165849 .text {
  5020. position:absolute;
  5021. align-self:center;
  5022. padding:2px 2px 2px 2px;
  5023. box-sizing:border-box;
  5024. width:100%;
  5025. }
  5026. #u165849_text {
  5027. border-width:0px;
  5028. word-wrap:break-word;
  5029. text-transform:none;
  5030. visibility:hidden;
  5031. }
  5032. #u165850_div {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:77px;
  5038. height:20px;
  5039. background:inherit;
  5040. background-color:rgba(255, 255, 255, 0);
  5041. border:none;
  5042. border-left:0px;
  5043. border-top:0px;
  5044. border-right:0px;
  5045. border-radius:0px;
  5046. border-bottom-right-radius:0px;
  5047. border-bottom-left-radius:0px;
  5048. -moz-box-shadow:none;
  5049. -webkit-box-shadow:none;
  5050. box-shadow:none;
  5051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5052. font-weight:400;
  5053. font-style:normal;
  5054. font-size:11px;
  5055. color:#AAAAAA;
  5056. line-height:20px;
  5057. }
  5058. #u165850 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:300px;
  5062. top:584px;
  5063. width:77px;
  5064. height:20px;
  5065. display:flex;
  5066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5067. font-weight:400;
  5068. font-style:normal;
  5069. font-size:11px;
  5070. color:#AAAAAA;
  5071. line-height:20px;
  5072. }
  5073. #u165850 .text {
  5074. position:absolute;
  5075. align-self:flex-start;
  5076. padding:0px 0px 0px 0px;
  5077. box-sizing:border-box;
  5078. width:100%;
  5079. }
  5080. #u165850_text {
  5081. border-width:0px;
  5082. white-space:nowrap;
  5083. text-transform:none;
  5084. }
  5085. #u165851 {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:0px;
  5091. height:0px;
  5092. }
  5093. #u165852_div {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:100px;
  5099. height:30px;
  5100. background:inherit;
  5101. background-color:rgba(255, 255, 255, 0);
  5102. border:none;
  5103. border-left:0px;
  5104. border-top:0px;
  5105. border-right:0px;
  5106. border-radius:0px;
  5107. border-bottom-right-radius:0px;
  5108. border-bottom-left-radius:0px;
  5109. -moz-box-shadow:none;
  5110. -webkit-box-shadow:none;
  5111. box-shadow:none;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:14px;
  5116. line-height:30px;
  5117. }
  5118. #u165852 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:46px;
  5122. top:624px;
  5123. width:100px;
  5124. height:30px;
  5125. display:flex;
  5126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5127. font-weight:400;
  5128. font-style:normal;
  5129. font-size:14px;
  5130. line-height:30px;
  5131. }
  5132. #u165852 .text {
  5133. position:absolute;
  5134. align-self:flex-start;
  5135. padding:0px 0px 0px 0px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u165852_text {
  5140. border-width:0px;
  5141. word-wrap:break-word;
  5142. text-transform:none;
  5143. }
  5144. #u165853_div {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:132px;
  5150. height:20px;
  5151. background:inherit;
  5152. background-color:rgba(255, 255, 255, 0);
  5153. border:none;
  5154. border-left:0px;
  5155. border-top:0px;
  5156. border-right:0px;
  5157. border-radius:0px;
  5158. border-bottom-right-radius:0px;
  5159. border-bottom-left-radius:0px;
  5160. -moz-box-shadow:none;
  5161. -webkit-box-shadow:none;
  5162. box-shadow:none;
  5163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:12px;
  5167. color:#7F7F7F;
  5168. line-height:20px;
  5169. }
  5170. #u165853 {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:46px;
  5174. top:654px;
  5175. width:132px;
  5176. height:20px;
  5177. display:flex;
  5178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5179. font-weight:400;
  5180. font-style:normal;
  5181. font-size:12px;
  5182. color:#7F7F7F;
  5183. line-height:20px;
  5184. }
  5185. #u165853 .text {
  5186. position:absolute;
  5187. align-self:flex-start;
  5188. padding:0px 0px 0px 0px;
  5189. box-sizing:border-box;
  5190. width:100%;
  5191. }
  5192. #u165853_text {
  5193. border-width:0px;
  5194. word-wrap:break-word;
  5195. text-transform:none;
  5196. }
  5197. #u165854_div {
  5198. border-width:0px;
  5199. position:absolute;
  5200. left:0px;
  5201. top:0px;
  5202. width:85px;
  5203. height:30px;
  5204. background:inherit;
  5205. background-color:rgba(255, 255, 255, 0);
  5206. border:none;
  5207. border-left:0px;
  5208. border-top:0px;
  5209. border-right:0px;
  5210. border-radius:0px;
  5211. border-bottom-right-radius:0px;
  5212. border-bottom-left-radius:0px;
  5213. -moz-box-shadow:none;
  5214. -webkit-box-shadow:none;
  5215. box-shadow:none;
  5216. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5217. font-style:normal;
  5218. text-align:right;
  5219. line-height:30px;
  5220. }
  5221. #u165854 {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:292px;
  5225. top:622px;
  5226. width:85px;
  5227. height:30px;
  5228. display:flex;
  5229. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5230. font-style:normal;
  5231. text-align:right;
  5232. line-height:30px;
  5233. }
  5234. #u165854 .text {
  5235. position:absolute;
  5236. align-self:flex-start;
  5237. padding:0px 0px 0px 0px;
  5238. box-sizing:border-box;
  5239. width:100%;
  5240. }
  5241. #u165854_text {
  5242. border-width:0px;
  5243. word-wrap:break-word;
  5244. text-transform:none;
  5245. }
  5246. #u165855_img {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:348px;
  5252. height:2px;
  5253. }
  5254. #u165855 {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:46px;
  5258. top:684px;
  5259. width:347px;
  5260. height:1px;
  5261. display:flex;
  5262. }
  5263. #u165855 .text {
  5264. position:absolute;
  5265. align-self:center;
  5266. padding:2px 2px 2px 2px;
  5267. box-sizing:border-box;
  5268. width:100%;
  5269. }
  5270. #u165855_text {
  5271. border-width:0px;
  5272. word-wrap:break-word;
  5273. text-transform:none;
  5274. visibility:hidden;
  5275. }
  5276. #u165856_div {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:0px;
  5280. top:0px;
  5281. width:77px;
  5282. height:20px;
  5283. background:inherit;
  5284. background-color:rgba(255, 255, 255, 0);
  5285. border:none;
  5286. border-left:0px;
  5287. border-top:0px;
  5288. border-right:0px;
  5289. border-radius:0px;
  5290. border-bottom-right-radius:0px;
  5291. border-bottom-left-radius:0px;
  5292. -moz-box-shadow:none;
  5293. -webkit-box-shadow:none;
  5294. box-shadow:none;
  5295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5296. font-weight:400;
  5297. font-style:normal;
  5298. font-size:11px;
  5299. color:#AAAAAA;
  5300. line-height:20px;
  5301. }
  5302. #u165856 {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:300px;
  5306. top:657px;
  5307. width:77px;
  5308. height:20px;
  5309. display:flex;
  5310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5311. font-weight:400;
  5312. font-style:normal;
  5313. font-size:11px;
  5314. color:#AAAAAA;
  5315. line-height:20px;
  5316. }
  5317. #u165856 .text {
  5318. position:absolute;
  5319. align-self:flex-start;
  5320. padding:0px 0px 0px 0px;
  5321. box-sizing:border-box;
  5322. width:100%;
  5323. }
  5324. #u165856_text {
  5325. border-width:0px;
  5326. white-space:nowrap;
  5327. text-transform:none;
  5328. }