styles.css 79 KB

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