styles.css 85 KB

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