styles.css 97 KB

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