styles.css 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:433px;
  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. #u189473_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u189473 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u189473 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u189473_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u189474_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. #u189474 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u189474 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u189474_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u189475 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u189476_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. #u189476 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u189476 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u189476_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u189477 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u189478_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u189478 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u189478 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u189478_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u189479_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u189479 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u189479 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u189479_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u189480 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u189481_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u189481 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u189481 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u189481_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u189482_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u189482 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u189482 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u189482_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u189483_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u189483 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u189483 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u189483_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u189484_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u189484 {
  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. #u189484 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u189484_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u189485_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u189485 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u189485 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u189485_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u189486_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. #u189486 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u189486 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u189486_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u189487 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u189488_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u189488 {
  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. #u189488 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u189488_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u189489_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. #u189489 {
  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. #u189489 .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. #u189489_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u189490 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u189491_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u189491 {
  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. #u189491 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u189491_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u189492_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. #u189492 {
  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. #u189492 .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. #u189492_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u189493_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. #u189493 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u189493 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u189493_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u189494 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u189495_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u189495 {
  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. #u189495 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u189495_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u189496_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. #u189496 {
  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. #u189496 .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. #u189496_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u189497 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u189498_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u189498 {
  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. #u189498 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u189498_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u189499_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. #u189499 {
  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. #u189499 .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. #u189499_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u189500_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:40px;
  786. background:inherit;
  787. background-color:rgba(255, 255, 255, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(215, 215, 215, 1);
  792. border-left:0px;
  793. border-top:0px;
  794. border-right:0px;
  795. border-radius:0px;
  796. border-bottom-right-radius:0px;
  797. border-bottom-left-radius:0px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. }
  802. #u189500 {
  803. border-width:0px;
  804. position:absolute;
  805. left:29px;
  806. top:67px;
  807. width:375px;
  808. height:40px;
  809. display:flex;
  810. }
  811. #u189500 .text {
  812. position:absolute;
  813. align-self:center;
  814. padding:2px 2px 2px 2px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u189500_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. visibility:hidden;
  823. }
  824. #u189501_img {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:375px;
  830. height:44px;
  831. }
  832. #u189501 {
  833. border-width:0px;
  834. position:absolute;
  835. left:29px;
  836. top:24px;
  837. width:375px;
  838. height:44px;
  839. display:flex;
  840. }
  841. #u189501 .text {
  842. position:absolute;
  843. align-self:center;
  844. padding:2px 2px 2px 2px;
  845. box-sizing:border-box;
  846. width:100%;
  847. }
  848. #u189501_text {
  849. border-width:0px;
  850. word-wrap:break-word;
  851. text-transform:none;
  852. visibility:hidden;
  853. }
  854. #u189502 {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:0px;
  860. height:0px;
  861. }
  862. #u189503_div {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:88px;
  868. height:32px;
  869. background:inherit;
  870. background-color:rgba(255, 255, 255, 1);
  871. box-sizing:border-box;
  872. border-width:1px;
  873. border-style:solid;
  874. border-color:rgba(242, 242, 242, 1);
  875. border-radius:33px;
  876. -moz-box-shadow:none;
  877. -webkit-box-shadow:none;
  878. box-shadow:none;
  879. }
  880. #u189503 {
  881. border-width:0px;
  882. position:absolute;
  883. left:309px;
  884. top:71px;
  885. width:88px;
  886. height:32px;
  887. display:flex;
  888. }
  889. #u189503 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u189503_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u189504 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u189505_img {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:18px;
  916. height:18px;
  917. }
  918. #u189505 {
  919. border-width:0px;
  920. position:absolute;
  921. left:372px;
  922. top:78px;
  923. width:18px;
  924. height:18px;
  925. display:flex;
  926. }
  927. #u189505 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:2px 2px 2px 2px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u189505_text {
  935. border-width:0px;
  936. word-wrap:break-word;
  937. text-transform:none;
  938. visibility:hidden;
  939. }
  940. #u189506_img {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:6px;
  946. height:6px;
  947. }
  948. #u189506 {
  949. border-width:0px;
  950. position:absolute;
  951. left:378px;
  952. top:84px;
  953. width:6px;
  954. height:6px;
  955. display:flex;
  956. }
  957. #u189506 .text {
  958. position:absolute;
  959. align-self:center;
  960. padding:2px 2px 2px 2px;
  961. box-sizing:border-box;
  962. width:100%;
  963. }
  964. #u189506_text {
  965. border-width:0px;
  966. word-wrap:break-word;
  967. text-transform:none;
  968. visibility:hidden;
  969. }
  970. #u189507 {
  971. border-width:0px;
  972. position:absolute;
  973. left:0px;
  974. top:0px;
  975. width:0px;
  976. height:0px;
  977. }
  978. #u189508_img {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:5px;
  984. height:5px;
  985. }
  986. #u189508 {
  987. border-width:0px;
  988. position:absolute;
  989. left:323px;
  990. top:85px;
  991. width:5px;
  992. height:5px;
  993. display:flex;
  994. }
  995. #u189508 .text {
  996. position:absolute;
  997. align-self:center;
  998. padding:2px 2px 2px 2px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u189508_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. visibility:hidden;
  1007. }
  1008. #u189509_img {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:5px;
  1014. height:5px;
  1015. }
  1016. #u189509 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:339px;
  1020. top:85px;
  1021. width:5px;
  1022. height:5px;
  1023. display:flex;
  1024. }
  1025. #u189509 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u189509_text {
  1033. border-width:0px;
  1034. word-wrap:break-word;
  1035. text-transform:none;
  1036. visibility:hidden;
  1037. }
  1038. #u189510_img {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:7px;
  1044. height:7px;
  1045. }
  1046. #u189510 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:330px;
  1050. top:84px;
  1051. width:7px;
  1052. height:7px;
  1053. display:flex;
  1054. }
  1055. #u189510 .text {
  1056. position:absolute;
  1057. align-self:center;
  1058. padding:2px 2px 2px 2px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u189510_text {
  1063. border-width:0px;
  1064. word-wrap:break-word;
  1065. text-transform:none;
  1066. visibility:hidden;
  1067. }
  1068. #u189511_img {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:0px;
  1072. top:0px;
  1073. width:19px;
  1074. height:2px;
  1075. }
  1076. #u189511 {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:347px;
  1080. top:87px;
  1081. width:18px;
  1082. height:1px;
  1083. display:flex;
  1084. -webkit-transform:rotate(90deg);
  1085. -moz-transform:rotate(90deg);
  1086. -ms-transform:rotate(90deg);
  1087. transform:rotate(90deg);
  1088. }
  1089. #u189511 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u189511_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u189512_div {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:65px;
  1108. height:22px;
  1109. background:inherit;
  1110. background-color:rgba(255, 255, 255, 0);
  1111. border:none;
  1112. border-radius:0px;
  1113. -moz-box-shadow:none;
  1114. -webkit-box-shadow:none;
  1115. box-shadow:none;
  1116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1117. font-weight:400;
  1118. font-style:normal;
  1119. font-size:16px;
  1120. color:#000000;
  1121. }
  1122. #u189512 {
  1123. border-width:0px;
  1124. position:absolute;
  1125. left:187px;
  1126. top:78px;
  1127. width:65px;
  1128. height:22px;
  1129. display:flex;
  1130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1131. font-weight:400;
  1132. font-style:normal;
  1133. font-size:16px;
  1134. color:#000000;
  1135. }
  1136. #u189512 .text {
  1137. position:absolute;
  1138. align-self:flex-start;
  1139. padding:0px 0px 0px 0px;
  1140. box-sizing:border-box;
  1141. width:100%;
  1142. }
  1143. #u189512_text {
  1144. border-width:0px;
  1145. white-space:nowrap;
  1146. text-transform:none;
  1147. }
  1148. #u189513_div {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:0px;
  1152. top:0px;
  1153. width:12px;
  1154. height:12px;
  1155. background:inherit;
  1156. background-color:rgba(255, 255, 255, 0);
  1157. box-sizing:border-box;
  1158. border-width:2px;
  1159. border-style:solid;
  1160. border-color:rgba(51, 51, 51, 1);
  1161. border-right:0px;
  1162. border-bottom:0px;
  1163. border-radius:0px;
  1164. border-top-right-radius:0px;
  1165. border-bottom-left-radius:0px;
  1166. -moz-box-shadow:none;
  1167. -webkit-box-shadow:none;
  1168. box-shadow:none;
  1169. }
  1170. #u189513 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:44px;
  1174. top:81px;
  1175. width:12px;
  1176. height:12px;
  1177. display:flex;
  1178. -webkit-transform:rotate(315deg);
  1179. -moz-transform:rotate(315deg);
  1180. -ms-transform:rotate(315deg);
  1181. transform:rotate(315deg);
  1182. }
  1183. #u189513 .text {
  1184. position:absolute;
  1185. align-self:center;
  1186. padding:2px 2px 2px 2px;
  1187. box-sizing:border-box;
  1188. width:100%;
  1189. }
  1190. #u189513_text {
  1191. border-width:0px;
  1192. word-wrap:break-word;
  1193. text-transform:none;
  1194. visibility:hidden;
  1195. }
  1196. #u189514_img {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:23px;
  1202. height:23px;
  1203. }
  1204. #u189514 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:71px;
  1208. top:76px;
  1209. width:23px;
  1210. height:23px;
  1211. display:flex;
  1212. }
  1213. #u189514 .text {
  1214. position:absolute;
  1215. align-self:center;
  1216. padding:2px 2px 2px 2px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u189514_text {
  1221. border-width:0px;
  1222. word-wrap:break-word;
  1223. text-transform:none;
  1224. visibility:hidden;
  1225. }
  1226. #u189515_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:375px;
  1232. height:733px;
  1233. background:inherit;
  1234. background-color:rgba(242, 242, 242, 0.996078431372549);
  1235. border:none;
  1236. border-top:0px;
  1237. border-radius:21px;
  1238. border-top-left-radius:0px;
  1239. border-top-right-radius:0px;
  1240. -moz-box-shadow:none;
  1241. -webkit-box-shadow:none;
  1242. box-shadow:none;
  1243. }
  1244. #u189515 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:30px;
  1248. top:107px;
  1249. width:375px;
  1250. height:733px;
  1251. display:flex;
  1252. }
  1253. #u189515 .text {
  1254. position:absolute;
  1255. align-self:center;
  1256. padding:2px 2px 2px 2px;
  1257. box-sizing:border-box;
  1258. width:100%;
  1259. }
  1260. #u189515_text {
  1261. border-width:0px;
  1262. word-wrap:break-word;
  1263. text-transform:none;
  1264. visibility:hidden;
  1265. }
  1266. #u189516_div {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:0px;
  1270. top:0px;
  1271. width:375px;
  1272. height:40px;
  1273. background:inherit;
  1274. background-color:rgba(255, 255, 255, 1);
  1275. box-sizing:border-box;
  1276. border-width:1px;
  1277. border-style:solid;
  1278. border-color:rgba(215, 215, 215, 1);
  1279. border-left:0px;
  1280. border-top:0px;
  1281. border-right:0px;
  1282. border-radius:0px;
  1283. border-bottom-right-radius:0px;
  1284. border-bottom-left-radius:0px;
  1285. -moz-box-shadow:none;
  1286. -webkit-box-shadow:none;
  1287. box-shadow:none;
  1288. }
  1289. #u189516 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:29px;
  1293. top:106px;
  1294. width:375px;
  1295. height:40px;
  1296. display:flex;
  1297. }
  1298. #u189516 .text {
  1299. position:absolute;
  1300. align-self:center;
  1301. padding:2px 2px 2px 2px;
  1302. box-sizing:border-box;
  1303. width:100%;
  1304. }
  1305. #u189516_text {
  1306. border-width:0px;
  1307. word-wrap:break-word;
  1308. text-transform:none;
  1309. visibility:hidden;
  1310. }
  1311. #u189517_div {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:57px;
  1317. height:40px;
  1318. background:inherit;
  1319. background-color:rgba(127, 127, 127, 0);
  1320. border:none;
  1321. border-radius:3px;
  1322. -moz-box-shadow:none;
  1323. -webkit-box-shadow:none;
  1324. box-shadow:none;
  1325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1326. font-weight:400;
  1327. font-style:normal;
  1328. font-size:14px;
  1329. color:#1890FF;
  1330. line-height:40px;
  1331. }
  1332. #u189517 {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:49px;
  1336. top:106px;
  1337. width:57px;
  1338. height:40px;
  1339. display:flex;
  1340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1341. font-weight:400;
  1342. font-style:normal;
  1343. font-size:14px;
  1344. color:#1890FF;
  1345. line-height:40px;
  1346. }
  1347. #u189517 .text {
  1348. position:absolute;
  1349. align-self:center;
  1350. padding:0px 0px 0px 0px;
  1351. box-sizing:border-box;
  1352. width:100%;
  1353. }
  1354. #u189517_text {
  1355. border-width:0px;
  1356. white-space:nowrap;
  1357. text-transform:none;
  1358. }
  1359. #u189518_img {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:0px;
  1363. top:0px;
  1364. width:7px;
  1365. height:4px;
  1366. }
  1367. #u189518 {
  1368. border-width:0px;
  1369. position:absolute;
  1370. left:387px;
  1371. top:124px;
  1372. width:7px;
  1373. height:4px;
  1374. display:flex;
  1375. }
  1376. #u189518 .text {
  1377. position:absolute;
  1378. align-self:center;
  1379. padding:2px 2px 2px 2px;
  1380. box-sizing:border-box;
  1381. width:100%;
  1382. }
  1383. #u189518_text {
  1384. border-width:0px;
  1385. word-wrap:break-word;
  1386. text-transform:none;
  1387. visibility:hidden;
  1388. }
  1389. #u189519 {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:29px;
  1393. top:146px;
  1394. width:375px;
  1395. height:667px;
  1396. }
  1397. #u189519_state0 {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:375px;
  1403. height:667px;
  1404. overflow:auto;
  1405. -webkit-overflow-scrolling:touch;
  1406. -ms-overflow-x:hidden;
  1407. overflow-x:hidden;
  1408. background-image:none;
  1409. border:none;
  1410. border-radius:0px;
  1411. -moz-box-shadow:none;
  1412. -webkit-box-shadow:none;
  1413. box-shadow:none;
  1414. }
  1415. #u189519_state0_content {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:0px;
  1419. top:0px;
  1420. width:1px;
  1421. height:1px;
  1422. }
  1423. #u189520 {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:0px;
  1427. top:0px;
  1428. width:0px;
  1429. height:0px;
  1430. }
  1431. #u189521_div {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:375px;
  1437. height:100px;
  1438. background:inherit;
  1439. background-color:rgba(255, 255, 255, 1);
  1440. border:none;
  1441. border-radius:0px;
  1442. -moz-box-shadow:none;
  1443. -webkit-box-shadow:none;
  1444. box-shadow:none;
  1445. }
  1446. #u189521 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:0px;
  1450. top:50px;
  1451. width:375px;
  1452. height:100px;
  1453. display:flex;
  1454. opacity:0.2;
  1455. }
  1456. #u189521 .text {
  1457. position:absolute;
  1458. align-self:center;
  1459. padding:2px 2px 2px 2px;
  1460. box-sizing:border-box;
  1461. width:100%;
  1462. }
  1463. #u189521_text {
  1464. border-width:0px;
  1465. word-wrap:break-word;
  1466. text-transform:none;
  1467. visibility:hidden;
  1468. }
  1469. #u189522_div {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:0px;
  1473. top:0px;
  1474. width:116px;
  1475. height:17px;
  1476. background:inherit;
  1477. background-color:rgba(255, 255, 255, 0);
  1478. border:none;
  1479. border-radius:0px;
  1480. -moz-box-shadow:none;
  1481. -webkit-box-shadow:none;
  1482. box-shadow:none;
  1483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1484. font-weight:400;
  1485. font-style:normal;
  1486. font-size:12px;
  1487. color:#AAAAAA;
  1488. }
  1489. #u189522 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:20px;
  1493. top:90px;
  1494. width:116px;
  1495. height:17px;
  1496. display:flex;
  1497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1498. font-weight:400;
  1499. font-style:normal;
  1500. font-size:12px;
  1501. color:#AAAAAA;
  1502. }
  1503. #u189522 .text {
  1504. position:absolute;
  1505. align-self:flex-start;
  1506. padding:0px 0px 0px 0px;
  1507. box-sizing:border-box;
  1508. width:100%;
  1509. }
  1510. #u189522_text {
  1511. border-width:0px;
  1512. white-space:nowrap;
  1513. text-transform:none;
  1514. }
  1515. #u189523_div {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:0px;
  1519. top:0px;
  1520. width:127px;
  1521. height:20px;
  1522. background:inherit;
  1523. background-color:rgba(255, 255, 255, 0);
  1524. border:none;
  1525. border-radius:0px;
  1526. -moz-box-shadow:none;
  1527. -webkit-box-shadow:none;
  1528. box-shadow:none;
  1529. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1530. font-weight:500;
  1531. font-style:normal;
  1532. color:#000000;
  1533. }
  1534. #u189523 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:20px;
  1538. top:65px;
  1539. width:127px;
  1540. height:20px;
  1541. display:flex;
  1542. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1543. font-weight:500;
  1544. font-style:normal;
  1545. color:#000000;
  1546. }
  1547. #u189523 .text {
  1548. position:absolute;
  1549. align-self:flex-start;
  1550. padding:0px 0px 0px 0px;
  1551. box-sizing:border-box;
  1552. width:100%;
  1553. }
  1554. #u189523_text {
  1555. border-width:0px;
  1556. white-space:nowrap;
  1557. text-transform:none;
  1558. }
  1559. #u189524 {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:0px;
  1565. height:0px;
  1566. }
  1567. #u189525_div {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:0px;
  1571. top:0px;
  1572. width:109px;
  1573. height:17px;
  1574. background:inherit;
  1575. background-color:rgba(255, 255, 255, 0);
  1576. border:none;
  1577. border-radius:0px;
  1578. -moz-box-shadow:none;
  1579. -webkit-box-shadow:none;
  1580. box-shadow:none;
  1581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1582. font-weight:400;
  1583. font-style:normal;
  1584. font-size:12px;
  1585. color:#000000;
  1586. }
  1587. #u189525 {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:40px;
  1591. top:117px;
  1592. width:109px;
  1593. height:17px;
  1594. display:flex;
  1595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1596. font-weight:400;
  1597. font-style:normal;
  1598. font-size:12px;
  1599. color:#000000;
  1600. }
  1601. #u189525 .text {
  1602. position:absolute;
  1603. align-self:flex-start;
  1604. padding:0px 0px 0px 0px;
  1605. box-sizing:border-box;
  1606. width:100%;
  1607. }
  1608. #u189525_text {
  1609. border-width:0px;
  1610. white-space:nowrap;
  1611. text-transform:none;
  1612. }
  1613. #u189526_img {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:0px;
  1617. top:0px;
  1618. width:14px;
  1619. height:14px;
  1620. }
  1621. #u189526 {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:20px;
  1625. top:119px;
  1626. width:14px;
  1627. height:14px;
  1628. display:flex;
  1629. }
  1630. #u189526 .text {
  1631. position:absolute;
  1632. align-self:center;
  1633. padding:2px 2px 2px 2px;
  1634. box-sizing:border-box;
  1635. width:100%;
  1636. }
  1637. #u189526_text {
  1638. border-width:0px;
  1639. word-wrap:break-word;
  1640. text-transform:none;
  1641. visibility:hidden;
  1642. }
  1643. #u189527_div {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:0px;
  1647. top:0px;
  1648. width:60px;
  1649. height:14px;
  1650. background:inherit;
  1651. background-color:rgba(245, 154, 35, 1);
  1652. border:none;
  1653. border-radius:5px;
  1654. -moz-box-shadow:none;
  1655. -webkit-box-shadow:none;
  1656. box-shadow:none;
  1657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1658. font-weight:400;
  1659. font-style:normal;
  1660. font-size:10px;
  1661. color:#FFFFFF;
  1662. text-align:center;
  1663. }
  1664. #u189527 {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:156px;
  1668. top:68px;
  1669. width:60px;
  1670. height:14px;
  1671. display:flex;
  1672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1673. font-weight:400;
  1674. font-style:normal;
  1675. font-size:10px;
  1676. color:#FFFFFF;
  1677. text-align:center;
  1678. }
  1679. #u189527 .text {
  1680. position:absolute;
  1681. align-self:flex-start;
  1682. padding:0px 0px 0px 0px;
  1683. box-sizing:border-box;
  1684. width:100%;
  1685. }
  1686. #u189527_text {
  1687. border-width:0px;
  1688. word-wrap:break-word;
  1689. text-transform:none;
  1690. }
  1691. #u189528_img {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:8px;
  1697. height:8px;
  1698. }
  1699. #u189528 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:141px;
  1703. top:95px;
  1704. width:8px;
  1705. height:8px;
  1706. display:flex;
  1707. }
  1708. #u189528 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u189528_text {
  1716. border-width:0px;
  1717. word-wrap:break-word;
  1718. text-transform:none;
  1719. visibility:hidden;
  1720. }
  1721. #u189529_div {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:59px;
  1727. height:24px;
  1728. background:inherit;
  1729. background-color:rgba(255, 255, 255, 1);
  1730. box-sizing:border-box;
  1731. border-width:1px;
  1732. border-style:solid;
  1733. border-color:rgba(77, 140, 252, 1);
  1734. border-radius:3px;
  1735. -moz-box-shadow:none;
  1736. -webkit-box-shadow:none;
  1737. box-shadow:none;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:12px;
  1742. color:#4D8CFC;
  1743. text-align:center;
  1744. }
  1745. #u189529 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:302px;
  1749. top:95px;
  1750. width:59px;
  1751. height:24px;
  1752. display:flex;
  1753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1754. font-weight:400;
  1755. font-style:normal;
  1756. font-size:12px;
  1757. color:#4D8CFC;
  1758. text-align:center;
  1759. }
  1760. #u189529 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:0px 5px 0px 5px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u189529_text {
  1768. border-width:0px;
  1769. white-space:nowrap;
  1770. text-transform:none;
  1771. }
  1772. #u189530_div {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:117px;
  1778. height:14px;
  1779. background:inherit;
  1780. background-color:rgba(255, 255, 255, 0);
  1781. border:none;
  1782. border-radius:0px;
  1783. -moz-box-shadow:none;
  1784. -webkit-box-shadow:none;
  1785. box-shadow:none;
  1786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1787. font-weight:400;
  1788. font-style:normal;
  1789. font-size:10px;
  1790. color:#555555;
  1791. }
  1792. #u189530 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:229px;
  1796. top:68px;
  1797. width:117px;
  1798. height:14px;
  1799. display:flex;
  1800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1801. font-weight:400;
  1802. font-style:normal;
  1803. font-size:10px;
  1804. color:#555555;
  1805. }
  1806. #u189530 .text {
  1807. position:absolute;
  1808. align-self:flex-start;
  1809. padding:0px 0px 0px 0px;
  1810. box-sizing:border-box;
  1811. width:100%;
  1812. }
  1813. #u189530_text {
  1814. border-width:0px;
  1815. white-space:nowrap;
  1816. text-transform:none;
  1817. }
  1818. #u189531_div {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:0px;
  1822. top:0px;
  1823. width:44px;
  1824. height:40px;
  1825. background:inherit;
  1826. background-color:rgba(127, 127, 127, 0);
  1827. border:none;
  1828. border-left:0px;
  1829. border-top:0px;
  1830. border-right:0px;
  1831. border-radius:3px;
  1832. border-bottom-right-radius:0px;
  1833. border-bottom-left-radius:0px;
  1834. -moz-box-shadow:none;
  1835. -webkit-box-shadow:none;
  1836. box-shadow:none;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:14px;
  1841. color:#555555;
  1842. line-height:40px;
  1843. }
  1844. #u189531 {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:20px;
  1848. top:0px;
  1849. width:44px;
  1850. height:40px;
  1851. display:flex;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:14px;
  1856. color:#555555;
  1857. line-height:40px;
  1858. }
  1859. #u189531 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:0px 0px 0px 0px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u189531_text {
  1867. border-width:0px;
  1868. white-space:nowrap;
  1869. text-transform:none;
  1870. }
  1871. #u189532_div {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:58px;
  1877. height:40px;
  1878. background:inherit;
  1879. background-color:rgba(127, 127, 127, 0);
  1880. border:none;
  1881. border-left:0px;
  1882. border-top:0px;
  1883. border-right:0px;
  1884. border-radius:3px;
  1885. border-bottom-right-radius:0px;
  1886. border-bottom-left-radius:0px;
  1887. -moz-box-shadow:none;
  1888. -webkit-box-shadow:none;
  1889. box-shadow:none;
  1890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1891. font-weight:400;
  1892. font-style:normal;
  1893. font-size:14px;
  1894. color:#555555;
  1895. line-height:40px;
  1896. }
  1897. #u189532 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:88px;
  1901. top:0px;
  1902. width:58px;
  1903. height:40px;
  1904. display:flex;
  1905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1906. font-weight:400;
  1907. font-style:normal;
  1908. font-size:14px;
  1909. color:#555555;
  1910. line-height:40px;
  1911. }
  1912. #u189532 .text {
  1913. position:absolute;
  1914. align-self:center;
  1915. padding:0px 0px 0px 0px;
  1916. box-sizing:border-box;
  1917. width:100%;
  1918. }
  1919. #u189532_text {
  1920. border-width:0px;
  1921. white-space:nowrap;
  1922. text-transform:none;
  1923. }
  1924. #u189533_div {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:58px;
  1930. height:40px;
  1931. background:inherit;
  1932. background-color:rgba(127, 127, 127, 0);
  1933. box-sizing:border-box;
  1934. border-width:2px;
  1935. border-style:solid;
  1936. border-color:rgba(121, 121, 121, 1);
  1937. border-left:0px;
  1938. border-top:0px;
  1939. border-right:0px;
  1940. border-radius:3px;
  1941. border-bottom-right-radius:0px;
  1942. border-bottom-left-radius:0px;
  1943. -moz-box-shadow:none;
  1944. -webkit-box-shadow:none;
  1945. box-shadow:none;
  1946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1947. font-weight:400;
  1948. font-style:normal;
  1949. font-size:14px;
  1950. color:#555555;
  1951. line-height:40px;
  1952. }
  1953. #u189533 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:169px;
  1957. top:0px;
  1958. width:58px;
  1959. height:40px;
  1960. display:flex;
  1961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:14px;
  1965. color:#555555;
  1966. line-height:40px;
  1967. }
  1968. #u189533 .text {
  1969. position:absolute;
  1970. align-self:center;
  1971. padding:0px 0px 0px 0px;
  1972. box-sizing:border-box;
  1973. width:100%;
  1974. }
  1975. #u189533_text {
  1976. border-width:0px;
  1977. white-space:nowrap;
  1978. text-transform:none;
  1979. }
  1980. #u189534_div {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:47px;
  1986. height:40px;
  1987. background:inherit;
  1988. background-color:rgba(127, 127, 127, 0);
  1989. border:none;
  1990. border-left:0px;
  1991. border-top:0px;
  1992. border-right:0px;
  1993. border-radius:3px;
  1994. border-bottom-right-radius:0px;
  1995. border-bottom-left-radius:0px;
  1996. -moz-box-shadow:none;
  1997. -webkit-box-shadow:none;
  1998. box-shadow:none;
  1999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2000. font-weight:400;
  2001. font-style:normal;
  2002. font-size:14px;
  2003. color:#555555;
  2004. line-height:40px;
  2005. }
  2006. #u189534 {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:332px;
  2010. top:0px;
  2011. width:47px;
  2012. height:40px;
  2013. display:flex;
  2014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2015. font-weight:400;
  2016. font-style:normal;
  2017. font-size:14px;
  2018. color:#555555;
  2019. line-height:40px;
  2020. }
  2021. #u189534 .text {
  2022. position:absolute;
  2023. align-self:center;
  2024. padding:0px 0px 0px 0px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u189534_text {
  2029. border-width:0px;
  2030. white-space:nowrap;
  2031. text-transform:none;
  2032. }
  2033. #u189535_div {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:58px;
  2039. height:40px;
  2040. background:inherit;
  2041. background-color:rgba(127, 127, 127, 0);
  2042. border:none;
  2043. border-left:0px;
  2044. border-top:0px;
  2045. border-right:0px;
  2046. border-radius:3px;
  2047. border-bottom-right-radius:0px;
  2048. border-bottom-left-radius:0px;
  2049. -moz-box-shadow:none;
  2050. -webkit-box-shadow:none;
  2051. box-shadow:none;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:14px;
  2056. color:#555555;
  2057. line-height:40px;
  2058. }
  2059. #u189535 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:251px;
  2063. top:0px;
  2064. width:58px;
  2065. height:40px;
  2066. display:flex;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:14px;
  2071. color:#555555;
  2072. line-height:40px;
  2073. }
  2074. #u189535 .text {
  2075. position:absolute;
  2076. align-self:center;
  2077. padding:0px 0px 0px 0px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u189535_text {
  2082. border-width:0px;
  2083. white-space:nowrap;
  2084. text-transform:none;
  2085. }
  2086. #u189519_state1 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:375px;
  2092. height:667px;
  2093. overflow:auto;
  2094. -webkit-overflow-scrolling:touch;
  2095. -ms-overflow-x:hidden;
  2096. overflow-x:hidden;
  2097. background-image:none;
  2098. border:none;
  2099. border-radius:0px;
  2100. -moz-box-shadow:none;
  2101. -webkit-box-shadow:none;
  2102. box-shadow:none;
  2103. visibility:hidden;
  2104. }
  2105. #u189519_state1_content {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:1px;
  2111. height:1px;
  2112. }
  2113. #u189536 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:0px;
  2119. height:0px;
  2120. }
  2121. #u189537_div {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:375px;
  2127. height:100px;
  2128. background:inherit;
  2129. background-color:rgba(255, 255, 255, 1);
  2130. border:none;
  2131. border-radius:0px;
  2132. -moz-box-shadow:none;
  2133. -webkit-box-shadow:none;
  2134. box-shadow:none;
  2135. }
  2136. #u189537 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:50px;
  2141. width:375px;
  2142. height:100px;
  2143. display:flex;
  2144. }
  2145. #u189537 .text {
  2146. position:absolute;
  2147. align-self:center;
  2148. padding:2px 2px 2px 2px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u189537_text {
  2153. border-width:0px;
  2154. word-wrap:break-word;
  2155. text-transform:none;
  2156. visibility:hidden;
  2157. }
  2158. #u189538_div {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:116px;
  2164. height:17px;
  2165. background:inherit;
  2166. background-color:rgba(255, 255, 255, 0);
  2167. border:none;
  2168. border-radius:0px;
  2169. -moz-box-shadow:none;
  2170. -webkit-box-shadow:none;
  2171. box-shadow:none;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:12px;
  2176. color:#AAAAAA;
  2177. }
  2178. #u189538 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:20px;
  2182. top:90px;
  2183. width:116px;
  2184. height:17px;
  2185. display:flex;
  2186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:12px;
  2190. color:#AAAAAA;
  2191. }
  2192. #u189538 .text {
  2193. position:absolute;
  2194. align-self:flex-start;
  2195. padding:0px 0px 0px 0px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u189538_text {
  2200. border-width:0px;
  2201. white-space:nowrap;
  2202. text-transform:none;
  2203. }
  2204. #u189539_div {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:127px;
  2210. height:20px;
  2211. background:inherit;
  2212. background-color:rgba(255, 255, 255, 0);
  2213. border:none;
  2214. border-radius:0px;
  2215. -moz-box-shadow:none;
  2216. -webkit-box-shadow:none;
  2217. box-shadow:none;
  2218. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2219. font-weight:500;
  2220. font-style:normal;
  2221. color:#000000;
  2222. }
  2223. #u189539 {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:20px;
  2227. top:65px;
  2228. width:127px;
  2229. height:20px;
  2230. display:flex;
  2231. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2232. font-weight:500;
  2233. font-style:normal;
  2234. color:#000000;
  2235. }
  2236. #u189539 .text {
  2237. position:absolute;
  2238. align-self:flex-start;
  2239. padding:0px 0px 0px 0px;
  2240. box-sizing:border-box;
  2241. width:100%;
  2242. }
  2243. #u189539_text {
  2244. border-width:0px;
  2245. white-space:nowrap;
  2246. text-transform:none;
  2247. }
  2248. #u189540 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:0px;
  2254. height:0px;
  2255. }
  2256. #u189541_div {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:109px;
  2262. height:17px;
  2263. background:inherit;
  2264. background-color:rgba(255, 255, 255, 0);
  2265. border:none;
  2266. border-radius:0px;
  2267. -moz-box-shadow:none;
  2268. -webkit-box-shadow:none;
  2269. box-shadow:none;
  2270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2271. font-weight:400;
  2272. font-style:normal;
  2273. font-size:12px;
  2274. color:#000000;
  2275. }
  2276. #u189541 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:40px;
  2280. top:117px;
  2281. width:109px;
  2282. height:17px;
  2283. display:flex;
  2284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2285. font-weight:400;
  2286. font-style:normal;
  2287. font-size:12px;
  2288. color:#000000;
  2289. }
  2290. #u189541 .text {
  2291. position:absolute;
  2292. align-self:flex-start;
  2293. padding:0px 0px 0px 0px;
  2294. box-sizing:border-box;
  2295. width:100%;
  2296. }
  2297. #u189541_text {
  2298. border-width:0px;
  2299. white-space:nowrap;
  2300. text-transform:none;
  2301. }
  2302. #u189542_img {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:14px;
  2308. height:14px;
  2309. }
  2310. #u189542 {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:20px;
  2314. top:119px;
  2315. width:14px;
  2316. height:14px;
  2317. display:flex;
  2318. }
  2319. #u189542 .text {
  2320. position:absolute;
  2321. align-self:center;
  2322. padding:2px 2px 2px 2px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u189542_text {
  2327. border-width:0px;
  2328. word-wrap:break-word;
  2329. text-transform:none;
  2330. visibility:hidden;
  2331. }
  2332. #u189543_div {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:0px;
  2336. top:0px;
  2337. width:36px;
  2338. height:14px;
  2339. background:inherit;
  2340. background-color:rgba(0, 191, 191, 1);
  2341. border:none;
  2342. border-radius:8px;
  2343. -moz-box-shadow:none;
  2344. -webkit-box-shadow:none;
  2345. box-shadow:none;
  2346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2347. font-weight:400;
  2348. font-style:normal;
  2349. font-size:10px;
  2350. color:#FFFFFF;
  2351. text-align:center;
  2352. }
  2353. #u189543 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:152px;
  2357. top:68px;
  2358. width:36px;
  2359. height:14px;
  2360. display:flex;
  2361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:10px;
  2365. color:#FFFFFF;
  2366. text-align:center;
  2367. }
  2368. #u189543 .text {
  2369. position:absolute;
  2370. align-self:flex-start;
  2371. padding:0px 0px 0px 0px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u189543_text {
  2376. border-width:0px;
  2377. word-wrap:break-word;
  2378. text-transform:none;
  2379. }
  2380. #u189544_img {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:8px;
  2386. height:8px;
  2387. }
  2388. #u189544 {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:141px;
  2392. top:95px;
  2393. width:8px;
  2394. height:8px;
  2395. display:flex;
  2396. }
  2397. #u189544 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 2px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u189544_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u189545_div {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:44px;
  2416. height:40px;
  2417. background:inherit;
  2418. background-color:rgba(127, 127, 127, 0);
  2419. box-sizing:border-box;
  2420. border-width:2px;
  2421. border-style:solid;
  2422. border-color:rgba(121, 121, 121, 1);
  2423. border-left:0px;
  2424. border-top:0px;
  2425. border-right:0px;
  2426. border-radius:3px;
  2427. border-bottom-right-radius:0px;
  2428. border-bottom-left-radius:0px;
  2429. -moz-box-shadow:none;
  2430. -webkit-box-shadow:none;
  2431. box-shadow:none;
  2432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2433. font-weight:400;
  2434. font-style:normal;
  2435. font-size:14px;
  2436. color:#555555;
  2437. line-height:40px;
  2438. }
  2439. #u189545 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:20px;
  2443. top:0px;
  2444. width:44px;
  2445. height:40px;
  2446. display:flex;
  2447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2448. font-weight:400;
  2449. font-style:normal;
  2450. font-size:14px;
  2451. color:#555555;
  2452. line-height:40px;
  2453. }
  2454. #u189545 .text {
  2455. position:absolute;
  2456. align-self:center;
  2457. padding:0px 0px 0px 0px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u189545_text {
  2462. border-width:0px;
  2463. white-space:nowrap;
  2464. text-transform:none;
  2465. }
  2466. #u189546_div {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:58px;
  2472. height:40px;
  2473. background:inherit;
  2474. background-color:rgba(127, 127, 127, 0);
  2475. border:none;
  2476. border-radius:3px;
  2477. -moz-box-shadow:none;
  2478. -webkit-box-shadow:none;
  2479. box-shadow:none;
  2480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2481. font-weight:400;
  2482. font-style:normal;
  2483. font-size:14px;
  2484. color:#555555;
  2485. line-height:40px;
  2486. }
  2487. #u189546 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:88px;
  2491. top:0px;
  2492. width:58px;
  2493. height:40px;
  2494. display:flex;
  2495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2496. font-weight:400;
  2497. font-style:normal;
  2498. font-size:14px;
  2499. color:#555555;
  2500. line-height:40px;
  2501. }
  2502. #u189546 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:0px 0px 0px 0px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u189546_text {
  2510. border-width:0px;
  2511. white-space:nowrap;
  2512. text-transform:none;
  2513. }
  2514. #u189547_div {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:0px;
  2518. top:0px;
  2519. width:58px;
  2520. height:40px;
  2521. background:inherit;
  2522. background-color:rgba(127, 127, 127, 0);
  2523. border:none;
  2524. border-radius:3px;
  2525. -moz-box-shadow:none;
  2526. -webkit-box-shadow:none;
  2527. box-shadow:none;
  2528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2529. font-weight:400;
  2530. font-style:normal;
  2531. font-size:14px;
  2532. color:#555555;
  2533. line-height:40px;
  2534. }
  2535. #u189547 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:169px;
  2539. top:0px;
  2540. width:58px;
  2541. height:40px;
  2542. display:flex;
  2543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2544. font-weight:400;
  2545. font-style:normal;
  2546. font-size:14px;
  2547. color:#555555;
  2548. line-height:40px;
  2549. }
  2550. #u189547 .text {
  2551. position:absolute;
  2552. align-self:center;
  2553. padding:0px 0px 0px 0px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u189547_text {
  2558. border-width:0px;
  2559. white-space:nowrap;
  2560. text-transform:none;
  2561. }
  2562. #u189548_div {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:47px;
  2568. height:40px;
  2569. background:inherit;
  2570. background-color:rgba(127, 127, 127, 0);
  2571. border:none;
  2572. border-radius:3px;
  2573. -moz-box-shadow:none;
  2574. -webkit-box-shadow:none;
  2575. box-shadow:none;
  2576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2577. font-weight:400;
  2578. font-style:normal;
  2579. font-size:14px;
  2580. color:#555555;
  2581. line-height:40px;
  2582. }
  2583. #u189548 {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:332px;
  2587. top:0px;
  2588. width:47px;
  2589. height:40px;
  2590. display:flex;
  2591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2592. font-weight:400;
  2593. font-style:normal;
  2594. font-size:14px;
  2595. color:#555555;
  2596. line-height:40px;
  2597. }
  2598. #u189548 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:0px 0px 0px 0px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u189548_text {
  2606. border-width:0px;
  2607. white-space:nowrap;
  2608. text-transform:none;
  2609. }
  2610. #u189549_div {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:58px;
  2616. height:40px;
  2617. background:inherit;
  2618. background-color:rgba(127, 127, 127, 0);
  2619. border:none;
  2620. border-radius:3px;
  2621. -moz-box-shadow:none;
  2622. -webkit-box-shadow:none;
  2623. box-shadow:none;
  2624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:14px;
  2628. color:#555555;
  2629. line-height:40px;
  2630. }
  2631. #u189549 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:251px;
  2635. top:0px;
  2636. width:58px;
  2637. height:40px;
  2638. display:flex;
  2639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2640. font-weight:400;
  2641. font-style:normal;
  2642. font-size:14px;
  2643. color:#555555;
  2644. line-height:40px;
  2645. }
  2646. #u189549 .text {
  2647. position:absolute;
  2648. align-self:center;
  2649. padding:0px 0px 0px 0px;
  2650. box-sizing:border-box;
  2651. width:100%;
  2652. }
  2653. #u189549_text {
  2654. border-width:0px;
  2655. white-space:nowrap;
  2656. text-transform:none;
  2657. }
  2658. #u189519_state2 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:375px;
  2664. height:667px;
  2665. overflow:auto;
  2666. -webkit-overflow-scrolling:touch;
  2667. -ms-overflow-x:hidden;
  2668. overflow-x:hidden;
  2669. background-image:none;
  2670. border:none;
  2671. border-radius:0px;
  2672. -moz-box-shadow:none;
  2673. -webkit-box-shadow:none;
  2674. box-shadow:none;
  2675. visibility:hidden;
  2676. }
  2677. #u189519_state2_content {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:1px;
  2683. height:1px;
  2684. }
  2685. #u189550 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:0px;
  2690. width:0px;
  2691. height:0px;
  2692. }
  2693. #u189551_div {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:375px;
  2699. height:100px;
  2700. background:inherit;
  2701. background-color:rgba(255, 255, 255, 1);
  2702. border:none;
  2703. border-radius:0px;
  2704. -moz-box-shadow:none;
  2705. -webkit-box-shadow:none;
  2706. box-shadow:none;
  2707. }
  2708. #u189551 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:0px;
  2712. top:50px;
  2713. width:375px;
  2714. height:100px;
  2715. display:flex;
  2716. }
  2717. #u189551 .text {
  2718. position:absolute;
  2719. align-self:center;
  2720. padding:2px 2px 2px 2px;
  2721. box-sizing:border-box;
  2722. width:100%;
  2723. }
  2724. #u189551_text {
  2725. border-width:0px;
  2726. word-wrap:break-word;
  2727. text-transform:none;
  2728. visibility:hidden;
  2729. }
  2730. #u189552_div {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:116px;
  2736. height:17px;
  2737. background:inherit;
  2738. background-color:rgba(255, 255, 255, 0);
  2739. border:none;
  2740. border-radius:0px;
  2741. -moz-box-shadow:none;
  2742. -webkit-box-shadow:none;
  2743. box-shadow:none;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. font-size:12px;
  2748. color:#AAAAAA;
  2749. }
  2750. #u189552 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:20px;
  2754. top:90px;
  2755. width:116px;
  2756. height:17px;
  2757. display:flex;
  2758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2759. font-weight:400;
  2760. font-style:normal;
  2761. font-size:12px;
  2762. color:#AAAAAA;
  2763. }
  2764. #u189552 .text {
  2765. position:absolute;
  2766. align-self:flex-start;
  2767. padding:0px 0px 0px 0px;
  2768. box-sizing:border-box;
  2769. width:100%;
  2770. }
  2771. #u189552_text {
  2772. border-width:0px;
  2773. white-space:nowrap;
  2774. text-transform:none;
  2775. }
  2776. #u189553_div {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:127px;
  2782. height:20px;
  2783. background:inherit;
  2784. background-color:rgba(255, 255, 255, 0);
  2785. border:none;
  2786. border-radius:0px;
  2787. -moz-box-shadow:none;
  2788. -webkit-box-shadow:none;
  2789. box-shadow:none;
  2790. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2791. font-weight:500;
  2792. font-style:normal;
  2793. color:#000000;
  2794. }
  2795. #u189553 {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:20px;
  2799. top:65px;
  2800. width:127px;
  2801. height:20px;
  2802. display:flex;
  2803. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2804. font-weight:500;
  2805. font-style:normal;
  2806. color:#000000;
  2807. }
  2808. #u189553 .text {
  2809. position:absolute;
  2810. align-self:flex-start;
  2811. padding:0px 0px 0px 0px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u189553_text {
  2816. border-width:0px;
  2817. white-space:nowrap;
  2818. text-transform:none;
  2819. }
  2820. #u189554 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:0px;
  2826. height:0px;
  2827. }
  2828. #u189555_div {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:109px;
  2834. height:17px;
  2835. background:inherit;
  2836. background-color:rgba(255, 255, 255, 0);
  2837. border:none;
  2838. border-radius:0px;
  2839. -moz-box-shadow:none;
  2840. -webkit-box-shadow:none;
  2841. box-shadow:none;
  2842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2843. font-weight:400;
  2844. font-style:normal;
  2845. font-size:12px;
  2846. color:#000000;
  2847. }
  2848. #u189555 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:40px;
  2852. top:117px;
  2853. width:109px;
  2854. height:17px;
  2855. display:flex;
  2856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2857. font-weight:400;
  2858. font-style:normal;
  2859. font-size:12px;
  2860. color:#000000;
  2861. }
  2862. #u189555 .text {
  2863. position:absolute;
  2864. align-self:flex-start;
  2865. padding:0px 0px 0px 0px;
  2866. box-sizing:border-box;
  2867. width:100%;
  2868. }
  2869. #u189555_text {
  2870. border-width:0px;
  2871. white-space:nowrap;
  2872. text-transform:none;
  2873. }
  2874. #u189556_img {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:0px;
  2878. top:0px;
  2879. width:14px;
  2880. height:14px;
  2881. }
  2882. #u189556 {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:20px;
  2886. top:119px;
  2887. width:14px;
  2888. height:14px;
  2889. display:flex;
  2890. }
  2891. #u189556 .text {
  2892. position:absolute;
  2893. align-self:center;
  2894. padding:2px 2px 2px 2px;
  2895. box-sizing:border-box;
  2896. width:100%;
  2897. }
  2898. #u189556_text {
  2899. border-width:0px;
  2900. word-wrap:break-word;
  2901. text-transform:none;
  2902. visibility:hidden;
  2903. }
  2904. #u189557_div {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:35px;
  2910. height:14px;
  2911. background:inherit;
  2912. background-color:rgba(77, 140, 252, 1);
  2913. border:none;
  2914. border-radius:5px;
  2915. -moz-box-shadow:none;
  2916. -webkit-box-shadow:none;
  2917. box-shadow:none;
  2918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2919. font-weight:400;
  2920. font-style:normal;
  2921. font-size:10px;
  2922. color:#FFFFFF;
  2923. text-align:center;
  2924. }
  2925. #u189557 {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:153px;
  2929. top:68px;
  2930. width:35px;
  2931. height:14px;
  2932. display:flex;
  2933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2934. font-weight:400;
  2935. font-style:normal;
  2936. font-size:10px;
  2937. color:#FFFFFF;
  2938. text-align:center;
  2939. }
  2940. #u189557 .text {
  2941. position:absolute;
  2942. align-self:flex-start;
  2943. padding:0px 0px 0px 0px;
  2944. box-sizing:border-box;
  2945. width:100%;
  2946. }
  2947. #u189557_text {
  2948. border-width:0px;
  2949. word-wrap:break-word;
  2950. text-transform:none;
  2951. }
  2952. #u189558_img {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:8px;
  2958. height:8px;
  2959. }
  2960. #u189558 {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:141px;
  2964. top:95px;
  2965. width:8px;
  2966. height:8px;
  2967. display:flex;
  2968. }
  2969. #u189558 .text {
  2970. position:absolute;
  2971. align-self:center;
  2972. padding:2px 2px 2px 2px;
  2973. box-sizing:border-box;
  2974. width:100%;
  2975. }
  2976. #u189558_text {
  2977. border-width:0px;
  2978. word-wrap:break-word;
  2979. text-transform:none;
  2980. visibility:hidden;
  2981. }
  2982. #u189559_div {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:0px;
  2987. width:70px;
  2988. height:11px;
  2989. background:inherit;
  2990. background-color:rgba(255, 255, 255, 0);
  2991. border:none;
  2992. border-radius:0px;
  2993. -moz-box-shadow:none;
  2994. -webkit-box-shadow:none;
  2995. box-shadow:none;
  2996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2997. font-weight:400;
  2998. font-style:normal;
  2999. font-size:8px;
  3000. color:#AAAAAA;
  3001. }
  3002. #u189559 {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:194px;
  3006. top:70px;
  3007. width:70px;
  3008. height:11px;
  3009. display:flex;
  3010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3011. font-weight:400;
  3012. font-style:normal;
  3013. font-size:8px;
  3014. color:#AAAAAA;
  3015. }
  3016. #u189559 .text {
  3017. position:absolute;
  3018. align-self:flex-start;
  3019. padding:0px 0px 0px 0px;
  3020. box-sizing:border-box;
  3021. width:100%;
  3022. }
  3023. #u189559_text {
  3024. border-width:0px;
  3025. white-space:nowrap;
  3026. text-transform:none;
  3027. }
  3028. #u189560_div {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:0px;
  3032. top:0px;
  3033. width:59px;
  3034. height:24px;
  3035. background:inherit;
  3036. background-color:rgba(255, 255, 255, 1);
  3037. box-sizing:border-box;
  3038. border-width:1px;
  3039. border-style:solid;
  3040. border-color:rgba(77, 140, 252, 1);
  3041. border-radius:3px;
  3042. -moz-box-shadow:none;
  3043. -webkit-box-shadow:none;
  3044. box-shadow:none;
  3045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3046. font-weight:400;
  3047. font-style:normal;
  3048. font-size:12px;
  3049. color:#4D8CFC;
  3050. text-align:center;
  3051. }
  3052. #u189560 {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:302px;
  3056. top:95px;
  3057. width:59px;
  3058. height:24px;
  3059. display:flex;
  3060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3061. font-weight:400;
  3062. font-style:normal;
  3063. font-size:12px;
  3064. color:#4D8CFC;
  3065. text-align:center;
  3066. }
  3067. #u189560 .text {
  3068. position:absolute;
  3069. align-self:center;
  3070. padding:0px 5px 0px 5px;
  3071. box-sizing:border-box;
  3072. width:100%;
  3073. }
  3074. #u189560_text {
  3075. border-width:0px;
  3076. white-space:nowrap;
  3077. text-transform:none;
  3078. }
  3079. #u189561_div {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:44px;
  3085. height:40px;
  3086. background:inherit;
  3087. background-color:rgba(127, 127, 127, 0);
  3088. border:none;
  3089. border-left:0px;
  3090. border-top:0px;
  3091. border-right:0px;
  3092. border-radius:3px;
  3093. border-bottom-right-radius:0px;
  3094. border-bottom-left-radius:0px;
  3095. -moz-box-shadow:none;
  3096. -webkit-box-shadow:none;
  3097. box-shadow:none;
  3098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3099. font-weight:400;
  3100. font-style:normal;
  3101. font-size:14px;
  3102. color:#555555;
  3103. line-height:40px;
  3104. }
  3105. #u189561 {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:20px;
  3109. top:0px;
  3110. width:44px;
  3111. height:40px;
  3112. display:flex;
  3113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3114. font-weight:400;
  3115. font-style:normal;
  3116. font-size:14px;
  3117. color:#555555;
  3118. line-height:40px;
  3119. }
  3120. #u189561 .text {
  3121. position:absolute;
  3122. align-self:center;
  3123. padding:0px 0px 0px 0px;
  3124. box-sizing:border-box;
  3125. width:100%;
  3126. }
  3127. #u189561_text {
  3128. border-width:0px;
  3129. white-space:nowrap;
  3130. text-transform:none;
  3131. }
  3132. #u189562_div {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:58px;
  3138. height:40px;
  3139. background:inherit;
  3140. background-color:rgba(127, 127, 127, 0);
  3141. box-sizing:border-box;
  3142. border-width:2px;
  3143. border-style:solid;
  3144. border-color:rgba(121, 121, 121, 1);
  3145. border-left:0px;
  3146. border-top:0px;
  3147. border-right:0px;
  3148. border-radius:3px;
  3149. border-bottom-right-radius:0px;
  3150. border-bottom-left-radius:0px;
  3151. -moz-box-shadow:none;
  3152. -webkit-box-shadow:none;
  3153. box-shadow:none;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:14px;
  3158. color:#555555;
  3159. line-height:40px;
  3160. }
  3161. #u189562 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:88px;
  3165. top:0px;
  3166. width:58px;
  3167. height:40px;
  3168. display:flex;
  3169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3170. font-weight:400;
  3171. font-style:normal;
  3172. font-size:14px;
  3173. color:#555555;
  3174. line-height:40px;
  3175. }
  3176. #u189562 .text {
  3177. position:absolute;
  3178. align-self:center;
  3179. padding:0px 0px 0px 0px;
  3180. box-sizing:border-box;
  3181. width:100%;
  3182. }
  3183. #u189562_text {
  3184. border-width:0px;
  3185. white-space:nowrap;
  3186. text-transform:none;
  3187. }
  3188. #u189563_div {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:0px;
  3192. top:0px;
  3193. width:58px;
  3194. height:40px;
  3195. background:inherit;
  3196. background-color:rgba(127, 127, 127, 0);
  3197. border:none;
  3198. border-left:0px;
  3199. border-top:0px;
  3200. border-right:0px;
  3201. border-radius:3px;
  3202. border-bottom-right-radius:0px;
  3203. border-bottom-left-radius:0px;
  3204. -moz-box-shadow:none;
  3205. -webkit-box-shadow:none;
  3206. box-shadow:none;
  3207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3208. font-weight:400;
  3209. font-style:normal;
  3210. font-size:14px;
  3211. color:#555555;
  3212. line-height:40px;
  3213. }
  3214. #u189563 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:169px;
  3218. top:0px;
  3219. width:58px;
  3220. height:40px;
  3221. display:flex;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:14px;
  3226. color:#555555;
  3227. line-height:40px;
  3228. }
  3229. #u189563 .text {
  3230. position:absolute;
  3231. align-self:center;
  3232. padding:0px 0px 0px 0px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u189563_text {
  3237. border-width:0px;
  3238. white-space:nowrap;
  3239. text-transform:none;
  3240. }
  3241. #u189564_div {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:47px;
  3247. height:40px;
  3248. background:inherit;
  3249. background-color:rgba(127, 127, 127, 0);
  3250. border:none;
  3251. border-left:0px;
  3252. border-top:0px;
  3253. border-right:0px;
  3254. border-radius:3px;
  3255. border-bottom-right-radius:0px;
  3256. border-bottom-left-radius:0px;
  3257. -moz-box-shadow:none;
  3258. -webkit-box-shadow:none;
  3259. box-shadow:none;
  3260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3261. font-weight:400;
  3262. font-style:normal;
  3263. font-size:14px;
  3264. color:#555555;
  3265. line-height:40px;
  3266. }
  3267. #u189564 {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:332px;
  3271. top:0px;
  3272. width:47px;
  3273. height:40px;
  3274. display:flex;
  3275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3276. font-weight:400;
  3277. font-style:normal;
  3278. font-size:14px;
  3279. color:#555555;
  3280. line-height:40px;
  3281. }
  3282. #u189564 .text {
  3283. position:absolute;
  3284. align-self:center;
  3285. padding:0px 0px 0px 0px;
  3286. box-sizing:border-box;
  3287. width:100%;
  3288. }
  3289. #u189564_text {
  3290. border-width:0px;
  3291. white-space:nowrap;
  3292. text-transform:none;
  3293. }
  3294. #u189565_div {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:0px;
  3298. top:0px;
  3299. width:58px;
  3300. height:40px;
  3301. background:inherit;
  3302. background-color:rgba(127, 127, 127, 0);
  3303. border:none;
  3304. border-left:0px;
  3305. border-top:0px;
  3306. border-right:0px;
  3307. border-radius:3px;
  3308. border-bottom-right-radius:0px;
  3309. border-bottom-left-radius:0px;
  3310. -moz-box-shadow:none;
  3311. -webkit-box-shadow:none;
  3312. box-shadow:none;
  3313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:14px;
  3317. color:#555555;
  3318. line-height:40px;
  3319. }
  3320. #u189565 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:251px;
  3324. top:0px;
  3325. width:58px;
  3326. height:40px;
  3327. display:flex;
  3328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3329. font-weight:400;
  3330. font-style:normal;
  3331. font-size:14px;
  3332. color:#555555;
  3333. line-height:40px;
  3334. }
  3335. #u189565 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:0px 0px 0px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u189565_text {
  3343. border-width:0px;
  3344. white-space:nowrap;
  3345. text-transform:none;
  3346. }
  3347. #u189519_state3 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:375px;
  3353. height:667px;
  3354. overflow:auto;
  3355. -webkit-overflow-scrolling:touch;
  3356. -ms-overflow-x:hidden;
  3357. overflow-x:hidden;
  3358. background-image:none;
  3359. border:none;
  3360. border-radius:0px;
  3361. -moz-box-shadow:none;
  3362. -webkit-box-shadow:none;
  3363. box-shadow:none;
  3364. visibility:hidden;
  3365. }
  3366. #u189519_state3_content {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:0px;
  3371. width:1px;
  3372. height:1px;
  3373. }
  3374. #u189566 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:0px;
  3380. height:0px;
  3381. }
  3382. #u189567_div {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:375px;
  3388. height:100px;
  3389. background:inherit;
  3390. background-color:rgba(255, 255, 255, 1);
  3391. border:none;
  3392. border-radius:0px;
  3393. -moz-box-shadow:none;
  3394. -webkit-box-shadow:none;
  3395. box-shadow:none;
  3396. }
  3397. #u189567 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:50px;
  3402. width:375px;
  3403. height:100px;
  3404. display:flex;
  3405. }
  3406. #u189567 .text {
  3407. position:absolute;
  3408. align-self:center;
  3409. padding:2px 2px 2px 2px;
  3410. box-sizing:border-box;
  3411. width:100%;
  3412. }
  3413. #u189567_text {
  3414. border-width:0px;
  3415. word-wrap:break-word;
  3416. text-transform:none;
  3417. visibility:hidden;
  3418. }
  3419. #u189568_div {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:116px;
  3425. height:17px;
  3426. background:inherit;
  3427. background-color:rgba(255, 255, 255, 0);
  3428. border:none;
  3429. border-radius:0px;
  3430. -moz-box-shadow:none;
  3431. -webkit-box-shadow:none;
  3432. box-shadow:none;
  3433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3434. font-weight:400;
  3435. font-style:normal;
  3436. font-size:12px;
  3437. color:#AAAAAA;
  3438. }
  3439. #u189568 {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:20px;
  3443. top:90px;
  3444. width:116px;
  3445. height:17px;
  3446. display:flex;
  3447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3448. font-weight:400;
  3449. font-style:normal;
  3450. font-size:12px;
  3451. color:#AAAAAA;
  3452. }
  3453. #u189568 .text {
  3454. position:absolute;
  3455. align-self:flex-start;
  3456. padding:0px 0px 0px 0px;
  3457. box-sizing:border-box;
  3458. width:100%;
  3459. }
  3460. #u189568_text {
  3461. border-width:0px;
  3462. white-space:nowrap;
  3463. text-transform:none;
  3464. }
  3465. #u189569_div {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:127px;
  3471. height:20px;
  3472. background:inherit;
  3473. background-color:rgba(255, 255, 255, 0);
  3474. border:none;
  3475. border-radius:0px;
  3476. -moz-box-shadow:none;
  3477. -webkit-box-shadow:none;
  3478. box-shadow:none;
  3479. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3480. font-weight:500;
  3481. font-style:normal;
  3482. color:#000000;
  3483. }
  3484. #u189569 {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:20px;
  3488. top:65px;
  3489. width:127px;
  3490. height:20px;
  3491. display:flex;
  3492. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3493. font-weight:500;
  3494. font-style:normal;
  3495. color:#000000;
  3496. }
  3497. #u189569 .text {
  3498. position:absolute;
  3499. align-self:flex-start;
  3500. padding:0px 0px 0px 0px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u189569_text {
  3505. border-width:0px;
  3506. white-space:nowrap;
  3507. text-transform:none;
  3508. }
  3509. #u189570 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:0px;
  3515. height:0px;
  3516. }
  3517. #u189571_div {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:109px;
  3523. height:17px;
  3524. background:inherit;
  3525. background-color:rgba(255, 255, 255, 0);
  3526. border:none;
  3527. border-radius:0px;
  3528. -moz-box-shadow:none;
  3529. -webkit-box-shadow:none;
  3530. box-shadow:none;
  3531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:12px;
  3535. color:#000000;
  3536. }
  3537. #u189571 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:40px;
  3541. top:117px;
  3542. width:109px;
  3543. height:17px;
  3544. display:flex;
  3545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:12px;
  3549. color:#000000;
  3550. }
  3551. #u189571 .text {
  3552. position:absolute;
  3553. align-self:flex-start;
  3554. padding:0px 0px 0px 0px;
  3555. box-sizing:border-box;
  3556. width:100%;
  3557. }
  3558. #u189571_text {
  3559. border-width:0px;
  3560. white-space:nowrap;
  3561. text-transform:none;
  3562. }
  3563. #u189572_img {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:14px;
  3569. height:14px;
  3570. }
  3571. #u189572 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:20px;
  3575. top:119px;
  3576. width:14px;
  3577. height:14px;
  3578. display:flex;
  3579. }
  3580. #u189572 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 2px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u189572_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u189573_div {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:34px;
  3599. height:14px;
  3600. background:inherit;
  3601. background-color:rgba(0, 191, 191, 1);
  3602. border:none;
  3603. border-radius:5px;
  3604. -moz-box-shadow:none;
  3605. -webkit-box-shadow:none;
  3606. box-shadow:none;
  3607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:10px;
  3611. color:#FFFFFF;
  3612. text-align:center;
  3613. }
  3614. #u189573 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:156px;
  3618. top:68px;
  3619. width:34px;
  3620. height:14px;
  3621. display:flex;
  3622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3623. font-weight:400;
  3624. font-style:normal;
  3625. font-size:10px;
  3626. color:#FFFFFF;
  3627. text-align:center;
  3628. }
  3629. #u189573 .text {
  3630. position:absolute;
  3631. align-self:flex-start;
  3632. padding:0px 0px 0px 0px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u189573_text {
  3637. border-width:0px;
  3638. word-wrap:break-word;
  3639. text-transform:none;
  3640. }
  3641. #u189574_img {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:0px;
  3645. top:0px;
  3646. width:8px;
  3647. height:8px;
  3648. }
  3649. #u189574 {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:141px;
  3653. top:95px;
  3654. width:8px;
  3655. height:8px;
  3656. display:flex;
  3657. }
  3658. #u189574 .text {
  3659. position:absolute;
  3660. align-self:center;
  3661. padding:2px 2px 2px 2px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u189574_text {
  3666. border-width:0px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. visibility:hidden;
  3670. }
  3671. #u189575_div {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:44px;
  3677. height:40px;
  3678. background:inherit;
  3679. background-color:rgba(127, 127, 127, 0);
  3680. border:none;
  3681. border-left:0px;
  3682. border-top:0px;
  3683. border-right:0px;
  3684. border-radius:3px;
  3685. border-bottom-right-radius:0px;
  3686. border-bottom-left-radius:0px;
  3687. -moz-box-shadow:none;
  3688. -webkit-box-shadow:none;
  3689. box-shadow:none;
  3690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3691. font-weight:400;
  3692. font-style:normal;
  3693. font-size:14px;
  3694. color:#555555;
  3695. line-height:40px;
  3696. }
  3697. #u189575 {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:20px;
  3701. top:0px;
  3702. width:44px;
  3703. height:40px;
  3704. display:flex;
  3705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3706. font-weight:400;
  3707. font-style:normal;
  3708. font-size:14px;
  3709. color:#555555;
  3710. line-height:40px;
  3711. }
  3712. #u189575 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:0px 0px 0px 0px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u189575_text {
  3720. border-width:0px;
  3721. white-space:nowrap;
  3722. text-transform:none;
  3723. }
  3724. #u189576_div {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:58px;
  3730. height:40px;
  3731. background:inherit;
  3732. background-color:rgba(127, 127, 127, 0);
  3733. border:none;
  3734. border-left:0px;
  3735. border-top:0px;
  3736. border-right:0px;
  3737. border-radius:3px;
  3738. border-bottom-right-radius:0px;
  3739. border-bottom-left-radius:0px;
  3740. -moz-box-shadow:none;
  3741. -webkit-box-shadow:none;
  3742. box-shadow:none;
  3743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3744. font-weight:400;
  3745. font-style:normal;
  3746. font-size:14px;
  3747. color:#555555;
  3748. line-height:40px;
  3749. }
  3750. #u189576 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:88px;
  3754. top:0px;
  3755. width:58px;
  3756. height:40px;
  3757. display:flex;
  3758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. font-size:14px;
  3762. color:#555555;
  3763. line-height:40px;
  3764. }
  3765. #u189576 .text {
  3766. position:absolute;
  3767. align-self:center;
  3768. padding:0px 0px 0px 0px;
  3769. box-sizing:border-box;
  3770. width:100%;
  3771. }
  3772. #u189576_text {
  3773. border-width:0px;
  3774. white-space:nowrap;
  3775. text-transform:none;
  3776. }
  3777. #u189577_div {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:58px;
  3783. height:40px;
  3784. background:inherit;
  3785. background-color:rgba(127, 127, 127, 0);
  3786. border:none;
  3787. border-left:0px;
  3788. border-top:0px;
  3789. border-right:0px;
  3790. border-radius:3px;
  3791. border-bottom-right-radius:0px;
  3792. border-bottom-left-radius:0px;
  3793. -moz-box-shadow:none;
  3794. -webkit-box-shadow:none;
  3795. box-shadow:none;
  3796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3797. font-weight:400;
  3798. font-style:normal;
  3799. font-size:14px;
  3800. color:#555555;
  3801. line-height:40px;
  3802. }
  3803. #u189577 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:169px;
  3807. top:0px;
  3808. width:58px;
  3809. height:40px;
  3810. display:flex;
  3811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:14px;
  3815. color:#555555;
  3816. line-height:40px;
  3817. }
  3818. #u189577 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:0px 0px 0px 0px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u189577_text {
  3826. border-width:0px;
  3827. white-space:nowrap;
  3828. text-transform:none;
  3829. }
  3830. #u189578_div {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:47px;
  3836. height:40px;
  3837. background:inherit;
  3838. background-color:rgba(127, 127, 127, 0);
  3839. border:none;
  3840. border-left:0px;
  3841. border-top:0px;
  3842. border-right:0px;
  3843. border-radius:3px;
  3844. border-bottom-right-radius:0px;
  3845. border-bottom-left-radius:0px;
  3846. -moz-box-shadow:none;
  3847. -webkit-box-shadow:none;
  3848. box-shadow:none;
  3849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3850. font-weight:400;
  3851. font-style:normal;
  3852. font-size:14px;
  3853. color:#555555;
  3854. line-height:40px;
  3855. }
  3856. #u189578 {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:332px;
  3860. top:0px;
  3861. width:47px;
  3862. height:40px;
  3863. display:flex;
  3864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3865. font-weight:400;
  3866. font-style:normal;
  3867. font-size:14px;
  3868. color:#555555;
  3869. line-height:40px;
  3870. }
  3871. #u189578 .text {
  3872. position:absolute;
  3873. align-self:center;
  3874. padding:0px 0px 0px 0px;
  3875. box-sizing:border-box;
  3876. width:100%;
  3877. }
  3878. #u189578_text {
  3879. border-width:0px;
  3880. white-space:nowrap;
  3881. text-transform:none;
  3882. }
  3883. #u189579_div {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:0px;
  3888. width:58px;
  3889. height:40px;
  3890. background:inherit;
  3891. background-color:rgba(127, 127, 127, 0);
  3892. box-sizing:border-box;
  3893. border-width:2px;
  3894. border-style:solid;
  3895. border-color:rgba(121, 121, 121, 1);
  3896. border-left:0px;
  3897. border-top:0px;
  3898. border-right:0px;
  3899. border-radius:3px;
  3900. border-bottom-right-radius:0px;
  3901. border-bottom-left-radius:0px;
  3902. -moz-box-shadow:none;
  3903. -webkit-box-shadow:none;
  3904. box-shadow:none;
  3905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3906. font-weight:400;
  3907. font-style:normal;
  3908. font-size:14px;
  3909. color:#555555;
  3910. line-height:40px;
  3911. }
  3912. #u189579 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:251px;
  3916. top:0px;
  3917. width:58px;
  3918. height:40px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:14px;
  3924. color:#555555;
  3925. line-height:40px;
  3926. }
  3927. #u189579 .text {
  3928. position:absolute;
  3929. align-self:center;
  3930. padding:0px 0px 0px 0px;
  3931. box-sizing:border-box;
  3932. width:100%;
  3933. }
  3934. #u189579_text {
  3935. border-width:0px;
  3936. white-space:nowrap;
  3937. text-transform:none;
  3938. }
  3939. #u189519_state4 {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:375px;
  3945. height:667px;
  3946. overflow:auto;
  3947. -webkit-overflow-scrolling:touch;
  3948. -ms-overflow-x:hidden;
  3949. overflow-x:hidden;
  3950. background-image:none;
  3951. border:none;
  3952. border-radius:0px;
  3953. -moz-box-shadow:none;
  3954. -webkit-box-shadow:none;
  3955. box-shadow:none;
  3956. visibility:hidden;
  3957. }
  3958. #u189519_state4_content {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:1px;
  3964. height:1px;
  3965. }
  3966. #u189580 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:0px;
  3972. height:0px;
  3973. }
  3974. #u189581_div {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:375px;
  3980. height:100px;
  3981. background:inherit;
  3982. background-color:rgba(255, 255, 255, 1);
  3983. border:none;
  3984. border-radius:0px;
  3985. -moz-box-shadow:none;
  3986. -webkit-box-shadow:none;
  3987. box-shadow:none;
  3988. }
  3989. #u189581 {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:50px;
  3994. width:375px;
  3995. height:100px;
  3996. display:flex;
  3997. }
  3998. #u189581 .text {
  3999. position:absolute;
  4000. align-self:center;
  4001. padding:2px 2px 2px 2px;
  4002. box-sizing:border-box;
  4003. width:100%;
  4004. }
  4005. #u189581_text {
  4006. border-width:0px;
  4007. word-wrap:break-word;
  4008. text-transform:none;
  4009. visibility:hidden;
  4010. }
  4011. #u189582_div {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:116px;
  4017. height:17px;
  4018. background:inherit;
  4019. background-color:rgba(255, 255, 255, 0);
  4020. border:none;
  4021. border-radius:0px;
  4022. -moz-box-shadow:none;
  4023. -webkit-box-shadow:none;
  4024. box-shadow:none;
  4025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. font-size:12px;
  4029. color:#AAAAAA;
  4030. }
  4031. #u189582 {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:20px;
  4035. top:90px;
  4036. width:116px;
  4037. height:17px;
  4038. display:flex;
  4039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4040. font-weight:400;
  4041. font-style:normal;
  4042. font-size:12px;
  4043. color:#AAAAAA;
  4044. }
  4045. #u189582 .text {
  4046. position:absolute;
  4047. align-self:flex-start;
  4048. padding:0px 0px 0px 0px;
  4049. box-sizing:border-box;
  4050. width:100%;
  4051. }
  4052. #u189582_text {
  4053. border-width:0px;
  4054. white-space:nowrap;
  4055. text-transform:none;
  4056. }
  4057. #u189583_div {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:0px;
  4061. top:0px;
  4062. width:127px;
  4063. height:20px;
  4064. background:inherit;
  4065. background-color:rgba(255, 255, 255, 0);
  4066. border:none;
  4067. border-radius:0px;
  4068. -moz-box-shadow:none;
  4069. -webkit-box-shadow:none;
  4070. box-shadow:none;
  4071. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4072. font-weight:500;
  4073. font-style:normal;
  4074. color:#000000;
  4075. }
  4076. #u189583 {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:20px;
  4080. top:65px;
  4081. width:127px;
  4082. height:20px;
  4083. display:flex;
  4084. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4085. font-weight:500;
  4086. font-style:normal;
  4087. color:#000000;
  4088. }
  4089. #u189583 .text {
  4090. position:absolute;
  4091. align-self:flex-start;
  4092. padding:0px 0px 0px 0px;
  4093. box-sizing:border-box;
  4094. width:100%;
  4095. }
  4096. #u189583_text {
  4097. border-width:0px;
  4098. white-space:nowrap;
  4099. text-transform:none;
  4100. }
  4101. #u189584 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:0px;
  4107. height:0px;
  4108. }
  4109. #u189585_div {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:109px;
  4115. height:17px;
  4116. background:inherit;
  4117. background-color:rgba(255, 255, 255, 0);
  4118. border:none;
  4119. border-radius:0px;
  4120. -moz-box-shadow:none;
  4121. -webkit-box-shadow:none;
  4122. box-shadow:none;
  4123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4124. font-weight:400;
  4125. font-style:normal;
  4126. font-size:12px;
  4127. color:#000000;
  4128. }
  4129. #u189585 {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:40px;
  4133. top:117px;
  4134. width:109px;
  4135. height:17px;
  4136. display:flex;
  4137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4138. font-weight:400;
  4139. font-style:normal;
  4140. font-size:12px;
  4141. color:#000000;
  4142. }
  4143. #u189585 .text {
  4144. position:absolute;
  4145. align-self:flex-start;
  4146. padding:0px 0px 0px 0px;
  4147. box-sizing:border-box;
  4148. width:100%;
  4149. }
  4150. #u189585_text {
  4151. border-width:0px;
  4152. white-space:nowrap;
  4153. text-transform:none;
  4154. }
  4155. #u189586_img {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:0px;
  4159. top:0px;
  4160. width:14px;
  4161. height:14px;
  4162. }
  4163. #u189586 {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:20px;
  4167. top:119px;
  4168. width:14px;
  4169. height:14px;
  4170. display:flex;
  4171. }
  4172. #u189586 .text {
  4173. position:absolute;
  4174. align-self:center;
  4175. padding:2px 2px 2px 2px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u189586_text {
  4180. border-width:0px;
  4181. word-wrap:break-word;
  4182. text-transform:none;
  4183. visibility:hidden;
  4184. }
  4185. #u189587_div {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:34px;
  4191. height:14px;
  4192. background:inherit;
  4193. background-color:rgba(217, 0, 27, 1);
  4194. border:none;
  4195. border-radius:5px;
  4196. -moz-box-shadow:none;
  4197. -webkit-box-shadow:none;
  4198. box-shadow:none;
  4199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4200. font-weight:400;
  4201. font-style:normal;
  4202. font-size:10px;
  4203. color:#FFFFFF;
  4204. text-align:center;
  4205. }
  4206. #u189587 {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:154px;
  4210. top:68px;
  4211. width:34px;
  4212. height:14px;
  4213. display:flex;
  4214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4215. font-weight:400;
  4216. font-style:normal;
  4217. font-size:10px;
  4218. color:#FFFFFF;
  4219. text-align:center;
  4220. }
  4221. #u189587 .text {
  4222. position:absolute;
  4223. align-self:flex-start;
  4224. padding:0px 0px 0px 0px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u189587_text {
  4229. border-width:0px;
  4230. word-wrap:break-word;
  4231. text-transform:none;
  4232. }
  4233. #u189588_img {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:8px;
  4239. height:8px;
  4240. }
  4241. #u189588 {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:141px;
  4245. top:95px;
  4246. width:8px;
  4247. height:8px;
  4248. display:flex;
  4249. }
  4250. #u189588 .text {
  4251. position:absolute;
  4252. align-self:center;
  4253. padding:2px 2px 2px 2px;
  4254. box-sizing:border-box;
  4255. width:100%;
  4256. }
  4257. #u189588_text {
  4258. border-width:0px;
  4259. word-wrap:break-word;
  4260. text-transform:none;
  4261. visibility:hidden;
  4262. }
  4263. #u189589_div {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:59px;
  4269. height:24px;
  4270. background:inherit;
  4271. background-color:rgba(255, 255, 255, 1);
  4272. box-sizing:border-box;
  4273. border-width:1px;
  4274. border-style:solid;
  4275. border-color:rgba(77, 140, 252, 1);
  4276. border-radius:3px;
  4277. -moz-box-shadow:none;
  4278. -webkit-box-shadow:none;
  4279. box-shadow:none;
  4280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. font-size:12px;
  4284. color:#4D8CFC;
  4285. text-align:center;
  4286. }
  4287. #u189589 {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:302px;
  4291. top:95px;
  4292. width:59px;
  4293. height:24px;
  4294. display:flex;
  4295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4296. font-weight:400;
  4297. font-style:normal;
  4298. font-size:12px;
  4299. color:#4D8CFC;
  4300. text-align:center;
  4301. }
  4302. #u189589 .text {
  4303. position:absolute;
  4304. align-self:center;
  4305. padding:0px 5px 0px 5px;
  4306. box-sizing:border-box;
  4307. width:100%;
  4308. }
  4309. #u189589_text {
  4310. border-width:0px;
  4311. white-space:nowrap;
  4312. text-transform:none;
  4313. }
  4314. #u189590 {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:0px;
  4319. width:0px;
  4320. height:0px;
  4321. }
  4322. #u189591_div {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:375px;
  4328. height:100px;
  4329. background:inherit;
  4330. background-color:rgba(255, 255, 255, 1);
  4331. border:none;
  4332. border-radius:0px;
  4333. -moz-box-shadow:none;
  4334. -webkit-box-shadow:none;
  4335. box-shadow:none;
  4336. }
  4337. #u189591 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:151px;
  4342. width:375px;
  4343. height:100px;
  4344. display:flex;
  4345. }
  4346. #u189591 .text {
  4347. position:absolute;
  4348. align-self:center;
  4349. padding:2px 2px 2px 2px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u189591_text {
  4354. border-width:0px;
  4355. word-wrap:break-word;
  4356. text-transform:none;
  4357. visibility:hidden;
  4358. }
  4359. #u189592_div {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:127px;
  4365. height:20px;
  4366. background:inherit;
  4367. background-color:rgba(255, 255, 255, 0);
  4368. border:none;
  4369. border-radius:0px;
  4370. -moz-box-shadow:none;
  4371. -webkit-box-shadow:none;
  4372. box-shadow:none;
  4373. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4374. font-weight:500;
  4375. font-style:normal;
  4376. color:#000000;
  4377. }
  4378. #u189592 {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:20px;
  4382. top:166px;
  4383. width:127px;
  4384. height:20px;
  4385. display:flex;
  4386. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4387. font-weight:500;
  4388. font-style:normal;
  4389. color:#000000;
  4390. }
  4391. #u189592 .text {
  4392. position:absolute;
  4393. align-self:flex-start;
  4394. padding:0px 0px 0px 0px;
  4395. box-sizing:border-box;
  4396. width:100%;
  4397. }
  4398. #u189592_text {
  4399. border-width:0px;
  4400. white-space:nowrap;
  4401. text-transform:none;
  4402. }
  4403. #u189593 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:0px;
  4409. height:0px;
  4410. }
  4411. #u189594_div {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:109px;
  4417. height:17px;
  4418. background:inherit;
  4419. background-color:rgba(255, 255, 255, 0);
  4420. border:none;
  4421. border-radius:0px;
  4422. -moz-box-shadow:none;
  4423. -webkit-box-shadow:none;
  4424. box-shadow:none;
  4425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:12px;
  4429. color:#000000;
  4430. }
  4431. #u189594 {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:40px;
  4435. top:218px;
  4436. width:109px;
  4437. height:17px;
  4438. display:flex;
  4439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4440. font-weight:400;
  4441. font-style:normal;
  4442. font-size:12px;
  4443. color:#000000;
  4444. }
  4445. #u189594 .text {
  4446. position:absolute;
  4447. align-self:flex-start;
  4448. padding:0px 0px 0px 0px;
  4449. box-sizing:border-box;
  4450. width:100%;
  4451. }
  4452. #u189594_text {
  4453. border-width:0px;
  4454. white-space:nowrap;
  4455. text-transform:none;
  4456. }
  4457. #u189595_img {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:0px;
  4461. top:0px;
  4462. width:14px;
  4463. height:14px;
  4464. }
  4465. #u189595 {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:20px;
  4469. top:220px;
  4470. width:14px;
  4471. height:14px;
  4472. display:flex;
  4473. }
  4474. #u189595 .text {
  4475. position:absolute;
  4476. align-self:center;
  4477. padding:2px 2px 2px 2px;
  4478. box-sizing:border-box;
  4479. width:100%;
  4480. }
  4481. #u189595_text {
  4482. border-width:0px;
  4483. word-wrap:break-word;
  4484. text-transform:none;
  4485. visibility:hidden;
  4486. }
  4487. #u189596_div {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:116px;
  4493. height:17px;
  4494. background:inherit;
  4495. background-color:rgba(255, 255, 255, 0);
  4496. border:none;
  4497. border-radius:0px;
  4498. -moz-box-shadow:none;
  4499. -webkit-box-shadow:none;
  4500. box-shadow:none;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:12px;
  4505. color:#AAAAAA;
  4506. }
  4507. #u189596 {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:20px;
  4511. top:193px;
  4512. width:116px;
  4513. height:17px;
  4514. display:flex;
  4515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4516. font-weight:400;
  4517. font-style:normal;
  4518. font-size:12px;
  4519. color:#AAAAAA;
  4520. }
  4521. #u189596 .text {
  4522. position:absolute;
  4523. align-self:flex-start;
  4524. padding:0px 0px 0px 0px;
  4525. box-sizing:border-box;
  4526. width:100%;
  4527. }
  4528. #u189596_text {
  4529. border-width:0px;
  4530. white-space:nowrap;
  4531. text-transform:none;
  4532. }
  4533. #u189597_img {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:8px;
  4539. height:8px;
  4540. }
  4541. #u189597 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:141px;
  4545. top:198px;
  4546. width:8px;
  4547. height:8px;
  4548. display:flex;
  4549. }
  4550. #u189597 .text {
  4551. position:absolute;
  4552. align-self:center;
  4553. padding:2px 2px 2px 2px;
  4554. box-sizing:border-box;
  4555. width:100%;
  4556. }
  4557. #u189597_text {
  4558. border-width:0px;
  4559. word-wrap:break-word;
  4560. text-transform:none;
  4561. visibility:hidden;
  4562. }
  4563. #u189598_div {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:34px;
  4569. height:14px;
  4570. background:inherit;
  4571. background-color:rgba(127, 127, 127, 1);
  4572. border:none;
  4573. border-radius:5px;
  4574. -moz-box-shadow:none;
  4575. -webkit-box-shadow:none;
  4576. box-shadow:none;
  4577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4578. font-weight:400;
  4579. font-style:normal;
  4580. font-size:10px;
  4581. color:#FFFFFF;
  4582. text-align:center;
  4583. }
  4584. #u189598 {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:153px;
  4588. top:169px;
  4589. width:34px;
  4590. height:14px;
  4591. display:flex;
  4592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4593. font-weight:400;
  4594. font-style:normal;
  4595. font-size:10px;
  4596. color:#FFFFFF;
  4597. text-align:center;
  4598. }
  4599. #u189598 .text {
  4600. position:absolute;
  4601. align-self:flex-start;
  4602. padding:0px 0px 0px 0px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u189598_text {
  4607. border-width:0px;
  4608. word-wrap:break-word;
  4609. text-transform:none;
  4610. }
  4611. #u189599_div {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:59px;
  4617. height:24px;
  4618. background:inherit;
  4619. background-color:rgba(255, 255, 255, 1);
  4620. box-sizing:border-box;
  4621. border-width:1px;
  4622. border-style:solid;
  4623. border-color:rgba(77, 140, 252, 1);
  4624. border-radius:3px;
  4625. -moz-box-shadow:none;
  4626. -webkit-box-shadow:none;
  4627. box-shadow:none;
  4628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4629. font-weight:400;
  4630. font-style:normal;
  4631. font-size:12px;
  4632. color:#4D8CFC;
  4633. text-align:center;
  4634. }
  4635. #u189599 {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:302px;
  4639. top:193px;
  4640. width:59px;
  4641. height:24px;
  4642. display:flex;
  4643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4644. font-weight:400;
  4645. font-style:normal;
  4646. font-size:12px;
  4647. color:#4D8CFC;
  4648. text-align:center;
  4649. }
  4650. #u189599 .text {
  4651. position:absolute;
  4652. align-self:center;
  4653. padding:0px 5px 0px 5px;
  4654. box-sizing:border-box;
  4655. width:100%;
  4656. }
  4657. #u189599_text {
  4658. border-width:0px;
  4659. white-space:nowrap;
  4660. text-transform:none;
  4661. }
  4662. #u189600_div {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:0px;
  4666. top:0px;
  4667. width:44px;
  4668. height:40px;
  4669. background:inherit;
  4670. background-color:rgba(127, 127, 127, 0);
  4671. border:none;
  4672. border-left:0px;
  4673. border-top:0px;
  4674. border-right:0px;
  4675. border-radius:3px;
  4676. border-bottom-right-radius:0px;
  4677. border-bottom-left-radius:0px;
  4678. -moz-box-shadow:none;
  4679. -webkit-box-shadow:none;
  4680. box-shadow:none;
  4681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4682. font-weight:400;
  4683. font-style:normal;
  4684. font-size:14px;
  4685. color:#555555;
  4686. line-height:40px;
  4687. }
  4688. #u189600 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:20px;
  4692. top:0px;
  4693. width:44px;
  4694. height:40px;
  4695. display:flex;
  4696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:14px;
  4700. color:#555555;
  4701. line-height:40px;
  4702. }
  4703. #u189600 .text {
  4704. position:absolute;
  4705. align-self:center;
  4706. padding:0px 0px 0px 0px;
  4707. box-sizing:border-box;
  4708. width:100%;
  4709. }
  4710. #u189600_text {
  4711. border-width:0px;
  4712. white-space:nowrap;
  4713. text-transform:none;
  4714. }
  4715. #u189601_div {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:58px;
  4721. height:40px;
  4722. background:inherit;
  4723. background-color:rgba(127, 127, 127, 0);
  4724. border:none;
  4725. border-left:0px;
  4726. border-top:0px;
  4727. border-right:0px;
  4728. border-radius:3px;
  4729. border-bottom-right-radius:0px;
  4730. border-bottom-left-radius:0px;
  4731. -moz-box-shadow:none;
  4732. -webkit-box-shadow:none;
  4733. box-shadow:none;
  4734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4735. font-weight:400;
  4736. font-style:normal;
  4737. font-size:14px;
  4738. color:#555555;
  4739. line-height:40px;
  4740. }
  4741. #u189601 {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:88px;
  4745. top:0px;
  4746. width:58px;
  4747. height:40px;
  4748. display:flex;
  4749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4750. font-weight:400;
  4751. font-style:normal;
  4752. font-size:14px;
  4753. color:#555555;
  4754. line-height:40px;
  4755. }
  4756. #u189601 .text {
  4757. position:absolute;
  4758. align-self:center;
  4759. padding:0px 0px 0px 0px;
  4760. box-sizing:border-box;
  4761. width:100%;
  4762. }
  4763. #u189601_text {
  4764. border-width:0px;
  4765. white-space:nowrap;
  4766. text-transform:none;
  4767. }
  4768. #u189602_div {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:58px;
  4774. height:40px;
  4775. background:inherit;
  4776. background-color:rgba(127, 127, 127, 0);
  4777. border:none;
  4778. border-left:0px;
  4779. border-top:0px;
  4780. border-right:0px;
  4781. border-radius:3px;
  4782. border-bottom-right-radius:0px;
  4783. border-bottom-left-radius:0px;
  4784. -moz-box-shadow:none;
  4785. -webkit-box-shadow:none;
  4786. box-shadow:none;
  4787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4788. font-weight:400;
  4789. font-style:normal;
  4790. font-size:14px;
  4791. color:#555555;
  4792. line-height:40px;
  4793. }
  4794. #u189602 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:169px;
  4798. top:0px;
  4799. width:58px;
  4800. height:40px;
  4801. display:flex;
  4802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4803. font-weight:400;
  4804. font-style:normal;
  4805. font-size:14px;
  4806. color:#555555;
  4807. line-height:40px;
  4808. }
  4809. #u189602 .text {
  4810. position:absolute;
  4811. align-self:center;
  4812. padding:0px 0px 0px 0px;
  4813. box-sizing:border-box;
  4814. width:100%;
  4815. }
  4816. #u189602_text {
  4817. border-width:0px;
  4818. white-space:nowrap;
  4819. text-transform:none;
  4820. }
  4821. #u189603_div {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:44px;
  4827. height:40px;
  4828. background:inherit;
  4829. background-color:rgba(127, 127, 127, 0);
  4830. box-sizing:border-box;
  4831. border-width:2px;
  4832. border-style:solid;
  4833. border-color:rgba(121, 121, 121, 1);
  4834. border-left:0px;
  4835. border-top:0px;
  4836. border-right:0px;
  4837. border-radius:3px;
  4838. border-bottom-right-radius:0px;
  4839. border-bottom-left-radius:0px;
  4840. -moz-box-shadow:none;
  4841. -webkit-box-shadow:none;
  4842. box-shadow:none;
  4843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4844. font-weight:400;
  4845. font-style:normal;
  4846. font-size:14px;
  4847. color:#555555;
  4848. line-height:40px;
  4849. }
  4850. #u189603 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:332px;
  4854. top:0px;
  4855. width:44px;
  4856. height:40px;
  4857. display:flex;
  4858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4859. font-weight:400;
  4860. font-style:normal;
  4861. font-size:14px;
  4862. color:#555555;
  4863. line-height:40px;
  4864. }
  4865. #u189603 .text {
  4866. position:absolute;
  4867. align-self:center;
  4868. padding:0px 0px 0px 0px;
  4869. box-sizing:border-box;
  4870. width:100%;
  4871. }
  4872. #u189603_text {
  4873. border-width:0px;
  4874. white-space:nowrap;
  4875. text-transform:none;
  4876. }
  4877. #u189604_div {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:0px;
  4881. top:0px;
  4882. width:58px;
  4883. height:40px;
  4884. background:inherit;
  4885. background-color:rgba(127, 127, 127, 0);
  4886. border:none;
  4887. border-left:0px;
  4888. border-top:0px;
  4889. border-right:0px;
  4890. border-radius:3px;
  4891. border-bottom-right-radius:0px;
  4892. border-bottom-left-radius:0px;
  4893. -moz-box-shadow:none;
  4894. -webkit-box-shadow:none;
  4895. box-shadow:none;
  4896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4897. font-weight:400;
  4898. font-style:normal;
  4899. font-size:14px;
  4900. color:#555555;
  4901. line-height:40px;
  4902. }
  4903. #u189604 {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:251px;
  4907. top:0px;
  4908. width:58px;
  4909. height:40px;
  4910. display:flex;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. font-size:14px;
  4915. color:#555555;
  4916. line-height:40px;
  4917. }
  4918. #u189604 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:0px 0px 0px 0px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u189604_text {
  4926. border-width:0px;
  4927. white-space:nowrap;
  4928. text-transform:none;
  4929. }