styles.css 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:433px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u208440_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u208440 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u208440 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u208440_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u208441_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. #u208441 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u208441 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u208441_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u208442 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u208443_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. #u208443 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u208443 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u208443_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u208444 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u208445_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u208445 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u208445 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u208445_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u208446_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u208446 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u208446 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u208446_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u208447 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u208448_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u208448 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u208448 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u208448_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u208449_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u208449 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u208449 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u208449_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u208450_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u208450 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u208450 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u208450_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u208451_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u208451 {
  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. #u208451 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u208451_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u208452_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u208452 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u208452 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u208452_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u208453_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. #u208453 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u208453 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u208453_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u208454 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u208455_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u208455 {
  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. #u208455 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u208455_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u208456_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. #u208456 {
  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. #u208456 .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. #u208456_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u208457 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u208458_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u208458 {
  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. #u208458 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u208458_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u208459_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. #u208459 {
  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. #u208459 .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. #u208459_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u208460_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. #u208460 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u208460 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u208460_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u208461 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u208462_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u208462 {
  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. #u208462 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u208462_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u208463_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. #u208463 {
  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. #u208463 .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. #u208463_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u208464 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u208465_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u208465 {
  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. #u208465 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u208465_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u208466_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. #u208466 {
  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. #u208466 .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. #u208466_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u208467_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:1603px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(242, 242, 242, 1);
  792. border-radius:26px;
  793. border-top-left-radius:0px;
  794. border-top-right-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. }
  799. #u208467 {
  800. border-width:0px;
  801. position:absolute;
  802. left:29px;
  803. top:105px;
  804. width:375px;
  805. height:1603px;
  806. display:flex;
  807. }
  808. #u208467 .text {
  809. position:absolute;
  810. align-self:center;
  811. padding:2px 2px 2px 2px;
  812. box-sizing:border-box;
  813. width:100%;
  814. }
  815. #u208467_text {
  816. border-width:0px;
  817. word-wrap:break-word;
  818. text-transform:none;
  819. visibility:hidden;
  820. }
  821. #u208468_div {
  822. border-width:0px;
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:109px;
  827. height:25px;
  828. background:inherit;
  829. background-color:rgba(255, 255, 255, 0);
  830. border:none;
  831. border-radius:0px;
  832. -moz-box-shadow:none;
  833. -webkit-box-shadow:none;
  834. box-shadow:none;
  835. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  836. font-weight:500;
  837. font-style:normal;
  838. font-size:18px;
  839. }
  840. #u208468 {
  841. border-width:0px;
  842. position:absolute;
  843. left:66px;
  844. top:74px;
  845. width:109px;
  846. height:25px;
  847. display:flex;
  848. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  849. font-weight:500;
  850. font-style:normal;
  851. font-size:18px;
  852. }
  853. #u208468 .text {
  854. position:absolute;
  855. align-self:flex-start;
  856. padding:0px 0px 0px 0px;
  857. box-sizing:border-box;
  858. width:100%;
  859. }
  860. #u208468_text {
  861. border-width:0px;
  862. white-space:nowrap;
  863. text-transform:none;
  864. }
  865. #u208469 {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:0px;
  871. height:0px;
  872. }
  873. #u208470_img {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:375px;
  879. height:126px;
  880. }
  881. #u208470 {
  882. border-width:0px;
  883. position:absolute;
  884. left:29px;
  885. top:145px;
  886. width:375px;
  887. height:126px;
  888. display:flex;
  889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  890. font-weight:400;
  891. font-style:normal;
  892. }
  893. #u208470 .text {
  894. position:absolute;
  895. align-self:center;
  896. padding:2px 2px 2px 2px;
  897. box-sizing:border-box;
  898. width:100%;
  899. }
  900. #u208470_text {
  901. border-width:0px;
  902. word-wrap:break-word;
  903. text-transform:none;
  904. }
  905. #u208471 {
  906. border-width:0px;
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:0px;
  911. height:0px;
  912. }
  913. #u208472_img {
  914. border-width:0px;
  915. position:absolute;
  916. left:0px;
  917. top:0px;
  918. width:10px;
  919. height:10px;
  920. }
  921. #u208472 {
  922. border-width:0px;
  923. position:absolute;
  924. left:191px;
  925. top:252px;
  926. width:10px;
  927. height:10px;
  928. display:flex;
  929. }
  930. #u208472 .text {
  931. position:absolute;
  932. align-self:center;
  933. padding:2px 2px 2px 2px;
  934. box-sizing:border-box;
  935. width:100%;
  936. }
  937. #u208472_text {
  938. border-width:0px;
  939. word-wrap:break-word;
  940. text-transform:none;
  941. visibility:hidden;
  942. }
  943. #u208473_img {
  944. border-width:0px;
  945. position:absolute;
  946. left:0px;
  947. top:0px;
  948. width:10px;
  949. height:10px;
  950. }
  951. #u208473 {
  952. border-width:0px;
  953. position:absolute;
  954. left:210px;
  955. top:252px;
  956. width:10px;
  957. height:10px;
  958. display:flex;
  959. }
  960. #u208473 .text {
  961. position:absolute;
  962. align-self:center;
  963. padding:2px 2px 2px 2px;
  964. box-sizing:border-box;
  965. width:100%;
  966. }
  967. #u208473_text {
  968. border-width:0px;
  969. word-wrap:break-word;
  970. text-transform:none;
  971. visibility:hidden;
  972. }
  973. #u208474_img {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:10px;
  979. height:10px;
  980. }
  981. #u208474 {
  982. border-width:0px;
  983. position:absolute;
  984. left:229px;
  985. top:252px;
  986. width:10px;
  987. height:10px;
  988. display:flex;
  989. }
  990. #u208474 .text {
  991. position:absolute;
  992. align-self:center;
  993. padding:2px 2px 2px 2px;
  994. box-sizing:border-box;
  995. width:100%;
  996. }
  997. #u208474_text {
  998. border-width:0px;
  999. word-wrap:break-word;
  1000. text-transform:none;
  1001. visibility:hidden;
  1002. }
  1003. #u208475 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:0px;
  1009. height:0px;
  1010. }
  1011. #u208476_div {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:355px;
  1017. height:100px;
  1018. background:inherit;
  1019. background-color:rgba(51, 51, 51, 1);
  1020. border:none;
  1021. border-radius:4px;
  1022. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1023. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1024. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1025. }
  1026. #u208476 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:39px;
  1030. top:280px;
  1031. width:355px;
  1032. height:100px;
  1033. display:flex;
  1034. }
  1035. #u208476 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u208476_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u208477_div {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:255px;
  1054. height:17px;
  1055. background:inherit;
  1056. background-color:rgba(255, 255, 255, 0);
  1057. border:none;
  1058. border-radius:0px;
  1059. -moz-box-shadow:none;
  1060. -webkit-box-shadow:none;
  1061. box-shadow:none;
  1062. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1063. font-weight:500;
  1064. font-style:normal;
  1065. font-size:12px;
  1066. color:#FFFFFF;
  1067. }
  1068. #u208477 {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:122px;
  1072. top:291px;
  1073. width:255px;
  1074. height:17px;
  1075. display:flex;
  1076. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1077. font-weight:500;
  1078. font-style:normal;
  1079. font-size:12px;
  1080. color:#FFFFFF;
  1081. }
  1082. #u208477 .text {
  1083. position:absolute;
  1084. align-self:flex-start;
  1085. padding:0px 0px 0px 0px;
  1086. box-sizing:border-box;
  1087. width:100%;
  1088. }
  1089. #u208477_text {
  1090. border-width:0px;
  1091. white-space:nowrap;
  1092. text-transform:none;
  1093. }
  1094. #u208478_div {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:49px;
  1100. height:66px;
  1101. background:inherit;
  1102. background-color:rgba(255, 255, 255, 0);
  1103. border:none;
  1104. border-radius:0px;
  1105. -moz-box-shadow:none;
  1106. -webkit-box-shadow:none;
  1107. box-shadow:none;
  1108. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1109. font-weight:500;
  1110. font-style:normal;
  1111. font-size:24px;
  1112. color:#FFFFFF;
  1113. }
  1114. #u208478 {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:55px;
  1118. top:295px;
  1119. width:49px;
  1120. height:66px;
  1121. display:flex;
  1122. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1123. font-weight:500;
  1124. font-style:normal;
  1125. font-size:24px;
  1126. color:#FFFFFF;
  1127. }
  1128. #u208478 .text {
  1129. position:absolute;
  1130. align-self:flex-start;
  1131. padding:0px 0px 0px 0px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u208478_text {
  1136. border-width:0px;
  1137. white-space:nowrap;
  1138. text-transform:none;
  1139. }
  1140. #u208479_div {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:0px;
  1145. width:253px;
  1146. height:17px;
  1147. background:inherit;
  1148. background-color:rgba(255, 255, 255, 0);
  1149. border:none;
  1150. border-radius:0px;
  1151. -moz-box-shadow:none;
  1152. -webkit-box-shadow:none;
  1153. box-shadow:none;
  1154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1155. font-weight:500;
  1156. font-style:normal;
  1157. font-size:12px;
  1158. color:#FFFFFF;
  1159. }
  1160. #u208479 {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:122px;
  1164. top:318px;
  1165. width:253px;
  1166. height:17px;
  1167. display:flex;
  1168. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1169. font-weight:500;
  1170. font-style:normal;
  1171. font-size:12px;
  1172. color:#FFFFFF;
  1173. }
  1174. #u208479 .text {
  1175. position:absolute;
  1176. align-self:flex-start;
  1177. padding:0px 0px 0px 0px;
  1178. box-sizing:border-box;
  1179. width:100%;
  1180. }
  1181. #u208479_text {
  1182. border-width:0px;
  1183. white-space:nowrap;
  1184. text-transform:none;
  1185. }
  1186. #u208480_div {
  1187. border-width:0px;
  1188. position:absolute;
  1189. left:0px;
  1190. top:0px;
  1191. width:253px;
  1192. height:17px;
  1193. background:inherit;
  1194. background-color:rgba(255, 255, 255, 0);
  1195. border:none;
  1196. border-radius:0px;
  1197. -moz-box-shadow:none;
  1198. -webkit-box-shadow:none;
  1199. box-shadow:none;
  1200. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1201. font-weight:500;
  1202. font-style:normal;
  1203. font-size:12px;
  1204. color:#FFFFFF;
  1205. }
  1206. #u208480 {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:122px;
  1210. top:345px;
  1211. width:253px;
  1212. height:17px;
  1213. display:flex;
  1214. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1215. font-weight:500;
  1216. font-style:normal;
  1217. font-size:12px;
  1218. color:#FFFFFF;
  1219. }
  1220. #u208480 .text {
  1221. position:absolute;
  1222. align-self:flex-start;
  1223. padding:0px 0px 0px 0px;
  1224. box-sizing:border-box;
  1225. width:100%;
  1226. }
  1227. #u208480_text {
  1228. border-width:0px;
  1229. white-space:nowrap;
  1230. text-transform:none;
  1231. }
  1232. #u208481_div {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:0px;
  1236. top:0px;
  1237. width:375px;
  1238. height:310px;
  1239. background:inherit;
  1240. background-color:rgba(255, 255, 255, 1);
  1241. box-sizing:border-box;
  1242. border-width:1px;
  1243. border-style:solid;
  1244. border-color:rgba(242, 242, 242, 1);
  1245. border-left:0px;
  1246. border-top:0px;
  1247. border-right:0px;
  1248. border-radius:0px;
  1249. border-bottom-right-radius:0px;
  1250. border-bottom-left-radius:0px;
  1251. -moz-box-shadow:none;
  1252. -webkit-box-shadow:none;
  1253. box-shadow:none;
  1254. }
  1255. #u208481 {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:29px;
  1259. top:391px;
  1260. width:375px;
  1261. height:310px;
  1262. display:flex;
  1263. }
  1264. #u208481 .text {
  1265. position:absolute;
  1266. align-self:center;
  1267. padding:2px 2px 2px 2px;
  1268. box-sizing:border-box;
  1269. width:100%;
  1270. }
  1271. #u208481_text {
  1272. border-width:0px;
  1273. word-wrap:break-word;
  1274. text-transform:none;
  1275. visibility:hidden;
  1276. }
  1277. #u208482 {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:0px;
  1283. height:0px;
  1284. }
  1285. #u208483_div {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:0px;
  1289. top:0px;
  1290. width:30px;
  1291. height:30px;
  1292. background:inherit;
  1293. background-color:rgba(255, 255, 255, 1);
  1294. box-sizing:border-box;
  1295. border-width:1px;
  1296. border-style:solid;
  1297. border-color:rgba(121, 121, 121, 1);
  1298. border-radius:4px;
  1299. -moz-box-shadow:none;
  1300. -webkit-box-shadow:none;
  1301. box-shadow:none;
  1302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1303. font-weight:400;
  1304. font-style:normal;
  1305. font-size:8px;
  1306. }
  1307. #u208483 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:147px;
  1311. top:411px;
  1312. width:30px;
  1313. height:30px;
  1314. display:flex;
  1315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1316. font-weight:400;
  1317. font-style:normal;
  1318. font-size:8px;
  1319. }
  1320. #u208483 .text {
  1321. position:absolute;
  1322. align-self:center;
  1323. padding:2px 2px 2px 2px;
  1324. box-sizing:border-box;
  1325. width:100%;
  1326. }
  1327. #u208483_text {
  1328. border-width:0px;
  1329. word-wrap:break-word;
  1330. text-transform:none;
  1331. }
  1332. #u208484_div {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:0px;
  1336. top:0px;
  1337. width:49px;
  1338. height:17px;
  1339. background:inherit;
  1340. background-color:rgba(255, 255, 255, 0);
  1341. border:none;
  1342. border-radius:0px;
  1343. -moz-box-shadow:none;
  1344. -webkit-box-shadow:none;
  1345. box-shadow:none;
  1346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1347. font-weight:400;
  1348. font-style:normal;
  1349. font-size:12px;
  1350. }
  1351. #u208484 {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:138px;
  1355. top:446px;
  1356. width:49px;
  1357. height:17px;
  1358. display:flex;
  1359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1360. font-weight:400;
  1361. font-style:normal;
  1362. font-size:12px;
  1363. }
  1364. #u208484 .text {
  1365. position:absolute;
  1366. align-self:flex-start;
  1367. padding:0px 0px 0px 0px;
  1368. box-sizing:border-box;
  1369. width:100%;
  1370. }
  1371. #u208484_text {
  1372. border-width:0px;
  1373. white-space:nowrap;
  1374. text-transform:none;
  1375. }
  1376. #u208485 {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:0px;
  1380. top:0px;
  1381. width:0px;
  1382. height:0px;
  1383. }
  1384. #u208486_div {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:30px;
  1390. height:30px;
  1391. background:inherit;
  1392. background-color:rgba(255, 255, 255, 1);
  1393. box-sizing:border-box;
  1394. border-width:1px;
  1395. border-style:solid;
  1396. border-color:rgba(121, 121, 121, 1);
  1397. border-radius:4px;
  1398. -moz-box-shadow:none;
  1399. -webkit-box-shadow:none;
  1400. box-shadow:none;
  1401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1402. font-weight:400;
  1403. font-style:normal;
  1404. font-size:8px;
  1405. }
  1406. #u208486 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:59px;
  1410. top:411px;
  1411. width:30px;
  1412. height:30px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:8px;
  1418. }
  1419. #u208486 .text {
  1420. position:absolute;
  1421. align-self:center;
  1422. padding:2px 2px 2px 2px;
  1423. box-sizing:border-box;
  1424. width:100%;
  1425. }
  1426. #u208486_text {
  1427. border-width:0px;
  1428. word-wrap:break-word;
  1429. text-transform:none;
  1430. }
  1431. #u208487_div {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:49px;
  1437. height:17px;
  1438. background:inherit;
  1439. background-color:rgba(255, 255, 255, 0);
  1440. border:none;
  1441. border-radius:0px;
  1442. -moz-box-shadow:none;
  1443. -webkit-box-shadow:none;
  1444. box-shadow:none;
  1445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1446. font-weight:400;
  1447. font-style:normal;
  1448. font-size:12px;
  1449. }
  1450. #u208487 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:49px;
  1454. top:445px;
  1455. width:49px;
  1456. height:17px;
  1457. display:flex;
  1458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1459. font-weight:400;
  1460. font-style:normal;
  1461. font-size:12px;
  1462. }
  1463. #u208487 .text {
  1464. position:absolute;
  1465. align-self:flex-start;
  1466. padding:0px 0px 0px 0px;
  1467. box-sizing:border-box;
  1468. width:100%;
  1469. }
  1470. #u208487_text {
  1471. border-width:0px;
  1472. white-space:nowrap;
  1473. text-transform:none;
  1474. }
  1475. #u208488 {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:0px;
  1481. height:0px;
  1482. }
  1483. #u208489_div {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:0px;
  1487. top:0px;
  1488. width:30px;
  1489. height:30px;
  1490. background:inherit;
  1491. background-color:rgba(255, 255, 255, 1);
  1492. box-sizing:border-box;
  1493. border-width:1px;
  1494. border-style:solid;
  1495. border-color:rgba(121, 121, 121, 1);
  1496. border-radius:4px;
  1497. -moz-box-shadow:none;
  1498. -webkit-box-shadow:none;
  1499. box-shadow:none;
  1500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1501. font-weight:400;
  1502. font-style:normal;
  1503. font-size:8px;
  1504. }
  1505. #u208489 {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:325px;
  1509. top:482px;
  1510. width:30px;
  1511. height:30px;
  1512. display:flex;
  1513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1514. font-weight:400;
  1515. font-style:normal;
  1516. font-size:8px;
  1517. }
  1518. #u208489 .text {
  1519. position:absolute;
  1520. align-self:center;
  1521. padding:2px 2px 2px 2px;
  1522. box-sizing:border-box;
  1523. width:100%;
  1524. }
  1525. #u208489_text {
  1526. border-width:0px;
  1527. word-wrap:break-word;
  1528. text-transform:none;
  1529. }
  1530. #u208490_div {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:0px;
  1534. top:0px;
  1535. width:49px;
  1536. height:17px;
  1537. background:inherit;
  1538. background-color:rgba(255, 255, 255, 0);
  1539. border:none;
  1540. border-radius:0px;
  1541. -moz-box-shadow:none;
  1542. -webkit-box-shadow:none;
  1543. box-shadow:none;
  1544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1545. font-weight:400;
  1546. font-style:normal;
  1547. font-size:12px;
  1548. }
  1549. #u208490 {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:316px;
  1553. top:517px;
  1554. width:49px;
  1555. height:17px;
  1556. display:flex;
  1557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1558. font-weight:400;
  1559. font-style:normal;
  1560. font-size:12px;
  1561. }
  1562. #u208490 .text {
  1563. position:absolute;
  1564. align-self:flex-start;
  1565. padding:0px 0px 0px 0px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u208490_text {
  1570. border-width:0px;
  1571. white-space:nowrap;
  1572. text-transform:none;
  1573. }
  1574. #u208491 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:0px;
  1580. height:0px;
  1581. }
  1582. #u208492_div {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:30px;
  1588. height:30px;
  1589. background:inherit;
  1590. background-color:rgba(255, 255, 255, 1);
  1591. box-sizing:border-box;
  1592. border-width:1px;
  1593. border-style:solid;
  1594. border-color:rgba(121, 121, 121, 1);
  1595. border-radius:4px;
  1596. -moz-box-shadow:none;
  1597. -webkit-box-shadow:none;
  1598. box-shadow:none;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:8px;
  1603. }
  1604. #u208492 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:237px;
  1608. top:482px;
  1609. width:30px;
  1610. height:30px;
  1611. display:flex;
  1612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1613. font-weight:400;
  1614. font-style:normal;
  1615. font-size:8px;
  1616. }
  1617. #u208492 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u208492_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. }
  1629. #u208493_div {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:49px;
  1635. height:17px;
  1636. background:inherit;
  1637. background-color:rgba(255, 255, 255, 0);
  1638. border:none;
  1639. border-radius:0px;
  1640. -moz-box-shadow:none;
  1641. -webkit-box-shadow:none;
  1642. box-shadow:none;
  1643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1644. font-weight:400;
  1645. font-style:normal;
  1646. font-size:12px;
  1647. }
  1648. #u208493 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:227px;
  1652. top:516px;
  1653. width:49px;
  1654. height:17px;
  1655. display:flex;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:12px;
  1660. }
  1661. #u208493 .text {
  1662. position:absolute;
  1663. align-self:flex-start;
  1664. padding:0px 0px 0px 0px;
  1665. box-sizing:border-box;
  1666. width:100%;
  1667. }
  1668. #u208493_text {
  1669. border-width:0px;
  1670. white-space:nowrap;
  1671. text-transform:none;
  1672. }
  1673. #u208494 {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:0px;
  1679. height:0px;
  1680. }
  1681. #u208495_div {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:375px;
  1687. height:213px;
  1688. background:inherit;
  1689. background-color:rgba(255, 255, 255, 1);
  1690. box-sizing:border-box;
  1691. border-width:1px;
  1692. border-style:solid;
  1693. border-color:rgba(242, 242, 242, 1);
  1694. border-left:0px;
  1695. border-top:0px;
  1696. border-right:0px;
  1697. border-radius:0px;
  1698. border-bottom-right-radius:0px;
  1699. border-bottom-left-radius:0px;
  1700. -moz-box-shadow:none;
  1701. -webkit-box-shadow:none;
  1702. box-shadow:none;
  1703. }
  1704. #u208495 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:29px;
  1708. top:710px;
  1709. width:375px;
  1710. height:213px;
  1711. display:flex;
  1712. }
  1713. #u208495 .text {
  1714. position:absolute;
  1715. align-self:center;
  1716. padding:2px 2px 2px 2px;
  1717. box-sizing:border-box;
  1718. width:100%;
  1719. }
  1720. #u208495_text {
  1721. border-width:0px;
  1722. word-wrap:break-word;
  1723. text-transform:none;
  1724. visibility:hidden;
  1725. }
  1726. #u208496_div {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:57px;
  1732. height:20px;
  1733. background:inherit;
  1734. background-color:rgba(255, 255, 255, 0);
  1735. border:none;
  1736. border-radius:0px;
  1737. -moz-box-shadow:none;
  1738. -webkit-box-shadow:none;
  1739. box-shadow:none;
  1740. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1741. font-weight:500;
  1742. font-style:normal;
  1743. }
  1744. #u208496 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:39px;
  1748. top:725px;
  1749. width:57px;
  1750. height:20px;
  1751. display:flex;
  1752. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1753. font-weight:500;
  1754. font-style:normal;
  1755. }
  1756. #u208496 .text {
  1757. position:absolute;
  1758. align-self:flex-start;
  1759. padding:0px 0px 0px 0px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u208496_text {
  1764. border-width:0px;
  1765. white-space:nowrap;
  1766. text-transform:none;
  1767. }
  1768. #u208497_div {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:355px;
  1774. height:70px;
  1775. background:inherit;
  1776. background-color:rgba(51, 51, 51, 1);
  1777. border:none;
  1778. border-radius:4px;
  1779. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1780. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1781. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1782. }
  1783. #u208497 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:39px;
  1787. top:754px;
  1788. width:355px;
  1789. height:70px;
  1790. display:flex;
  1791. }
  1792. #u208497 .text {
  1793. position:absolute;
  1794. align-self:center;
  1795. padding:2px 2px 2px 2px;
  1796. box-sizing:border-box;
  1797. width:100%;
  1798. }
  1799. #u208497_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. visibility:hidden;
  1804. }
  1805. #u208498_img {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:29px;
  1811. height:29px;
  1812. }
  1813. #u208498 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:49px;
  1817. top:768px;
  1818. width:29px;
  1819. height:29px;
  1820. display:flex;
  1821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1822. font-weight:400;
  1823. font-style:normal;
  1824. font-size:14px;
  1825. }
  1826. #u208498 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:2px 2px 2px 2px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u208498_text {
  1834. border-width:0px;
  1835. word-wrap:break-word;
  1836. text-transform:none;
  1837. }
  1838. #u208499_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:73px;
  1844. height:25px;
  1845. background:inherit;
  1846. background-color:rgba(255, 255, 255, 0);
  1847. border:none;
  1848. border-radius:0px;
  1849. -moz-box-shadow:none;
  1850. -webkit-box-shadow:none;
  1851. box-shadow:none;
  1852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1853. font-weight:500;
  1854. font-style:normal;
  1855. font-size:18px;
  1856. color:#FFFFFF;
  1857. }
  1858. #u208499 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:92px;
  1862. top:770px;
  1863. width:73px;
  1864. height:25px;
  1865. display:flex;
  1866. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1867. font-weight:500;
  1868. font-style:normal;
  1869. font-size:18px;
  1870. color:#FFFFFF;
  1871. }
  1872. #u208499 .text {
  1873. position:absolute;
  1874. align-self:flex-start;
  1875. padding:0px 0px 0px 0px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u208499_text {
  1880. border-width:0px;
  1881. white-space:nowrap;
  1882. text-transform:none;
  1883. }
  1884. #u208500_img {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:20px;
  1890. height:20px;
  1891. }
  1892. #u208500 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:356px;
  1896. top:783px;
  1897. width:20px;
  1898. height:20px;
  1899. display:flex;
  1900. }
  1901. #u208500 .text {
  1902. position:absolute;
  1903. align-self:center;
  1904. padding:2px 2px 2px 2px;
  1905. box-sizing:border-box;
  1906. width:100%;
  1907. }
  1908. #u208500_text {
  1909. border-width:0px;
  1910. word-wrap:break-word;
  1911. text-transform:none;
  1912. visibility:hidden;
  1913. }
  1914. #u208501_div {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:189px;
  1920. height:17px;
  1921. background:inherit;
  1922. background-color:rgba(255, 255, 255, 0);
  1923. border:none;
  1924. border-radius:0px;
  1925. -moz-box-shadow:none;
  1926. -webkit-box-shadow:none;
  1927. box-shadow:none;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:12px;
  1932. color:#FFFFFF;
  1933. }
  1934. #u208501 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:92px;
  1938. top:795px;
  1939. width:189px;
  1940. height:17px;
  1941. display:flex;
  1942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:12px;
  1946. color:#FFFFFF;
  1947. }
  1948. #u208501 .text {
  1949. position:absolute;
  1950. align-self:flex-start;
  1951. padding:0px 0px 0px 0px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u208501_text {
  1956. border-width:0px;
  1957. white-space:nowrap;
  1958. text-transform:none;
  1959. }
  1960. #u208502 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:0px;
  1966. height:0px;
  1967. }
  1968. #u208503_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:170px;
  1974. height:70px;
  1975. background:inherit;
  1976. background-color:rgba(51, 51, 51, 1);
  1977. border:none;
  1978. border-radius:4px;
  1979. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1980. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1981. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1982. }
  1983. #u208503 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:39px;
  1987. top:834px;
  1988. width:170px;
  1989. height:70px;
  1990. display:flex;
  1991. }
  1992. #u208503 .text {
  1993. position:absolute;
  1994. align-self:center;
  1995. padding:2px 2px 2px 2px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u208503_text {
  2000. border-width:0px;
  2001. word-wrap:break-word;
  2002. text-transform:none;
  2003. visibility:hidden;
  2004. }
  2005. #u208504_img {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:29px;
  2011. height:29px;
  2012. }
  2013. #u208504 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:49px;
  2017. top:848px;
  2018. width:29px;
  2019. height:29px;
  2020. display:flex;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:14px;
  2025. }
  2026. #u208504 .text {
  2027. position:absolute;
  2028. align-self:center;
  2029. padding:2px 2px 2px 2px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u208504_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. }
  2038. #u208505_div {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:73px;
  2044. height:25px;
  2045. background:inherit;
  2046. background-color:rgba(255, 255, 255, 0);
  2047. border:none;
  2048. border-radius:0px;
  2049. -moz-box-shadow:none;
  2050. -webkit-box-shadow:none;
  2051. box-shadow:none;
  2052. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2053. font-weight:500;
  2054. font-style:normal;
  2055. font-size:18px;
  2056. color:#FFFFFF;
  2057. }
  2058. #u208505 {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:92px;
  2062. top:850px;
  2063. width:73px;
  2064. height:25px;
  2065. display:flex;
  2066. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2067. font-weight:500;
  2068. font-style:normal;
  2069. font-size:18px;
  2070. color:#FFFFFF;
  2071. }
  2072. #u208505 .text {
  2073. position:absolute;
  2074. align-self:flex-start;
  2075. padding:0px 0px 0px 0px;
  2076. box-sizing:border-box;
  2077. width:100%;
  2078. }
  2079. #u208505_text {
  2080. border-width:0px;
  2081. white-space:nowrap;
  2082. text-transform:none;
  2083. }
  2084. #u208506_div {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:97px;
  2090. height:17px;
  2091. background:inherit;
  2092. background-color:rgba(255, 255, 255, 0);
  2093. border:none;
  2094. border-radius:0px;
  2095. -moz-box-shadow:none;
  2096. -webkit-box-shadow:none;
  2097. box-shadow:none;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:12px;
  2102. color:#FFFFFF;
  2103. }
  2104. #u208506 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:92px;
  2108. top:875px;
  2109. width:97px;
  2110. height:17px;
  2111. display:flex;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:12px;
  2116. color:#FFFFFF;
  2117. }
  2118. #u208506 .text {
  2119. position:absolute;
  2120. align-self:flex-start;
  2121. padding:0px 0px 0px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u208506_text {
  2126. border-width:0px;
  2127. white-space:nowrap;
  2128. text-transform:none;
  2129. }
  2130. #u208507 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:0px;
  2136. height:0px;
  2137. }
  2138. #u208508_div {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:170px;
  2144. height:70px;
  2145. background:inherit;
  2146. background-color:rgba(51, 51, 51, 1);
  2147. border:none;
  2148. border-radius:4px;
  2149. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2150. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2151. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2152. }
  2153. #u208508 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:224px;
  2157. top:834px;
  2158. width:170px;
  2159. height:70px;
  2160. display:flex;
  2161. }
  2162. #u208508 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:2px 2px 2px 2px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u208508_text {
  2170. border-width:0px;
  2171. word-wrap:break-word;
  2172. text-transform:none;
  2173. visibility:hidden;
  2174. }
  2175. #u208509_img {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:29px;
  2181. height:29px;
  2182. }
  2183. #u208509 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:234px;
  2187. top:848px;
  2188. width:29px;
  2189. height:29px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:14px;
  2195. }
  2196. #u208509 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:2px 2px 2px 2px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u208509_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. }
  2208. #u208510_div {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:73px;
  2214. height:25px;
  2215. background:inherit;
  2216. background-color:rgba(255, 255, 255, 0);
  2217. border:none;
  2218. border-radius:0px;
  2219. -moz-box-shadow:none;
  2220. -webkit-box-shadow:none;
  2221. box-shadow:none;
  2222. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2223. font-weight:500;
  2224. font-style:normal;
  2225. font-size:18px;
  2226. color:#FFFFFF;
  2227. }
  2228. #u208510 {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:277px;
  2232. top:850px;
  2233. width:73px;
  2234. height:25px;
  2235. display:flex;
  2236. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2237. font-weight:500;
  2238. font-style:normal;
  2239. font-size:18px;
  2240. color:#FFFFFF;
  2241. }
  2242. #u208510 .text {
  2243. position:absolute;
  2244. align-self:flex-start;
  2245. padding:0px 0px 0px 0px;
  2246. box-sizing:border-box;
  2247. width:100%;
  2248. }
  2249. #u208510_text {
  2250. border-width:0px;
  2251. white-space:nowrap;
  2252. text-transform:none;
  2253. }
  2254. #u208511_div {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:0px;
  2259. width:97px;
  2260. height:17px;
  2261. background:inherit;
  2262. background-color:rgba(255, 255, 255, 0);
  2263. border:none;
  2264. border-radius:0px;
  2265. -moz-box-shadow:none;
  2266. -webkit-box-shadow:none;
  2267. box-shadow:none;
  2268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2269. font-weight:400;
  2270. font-style:normal;
  2271. font-size:12px;
  2272. color:#FFFFFF;
  2273. }
  2274. #u208511 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:277px;
  2278. top:875px;
  2279. width:97px;
  2280. height:17px;
  2281. display:flex;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:12px;
  2286. color:#FFFFFF;
  2287. }
  2288. #u208511 .text {
  2289. position:absolute;
  2290. align-self:flex-start;
  2291. padding:0px 0px 0px 0px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u208511_text {
  2296. border-width:0px;
  2297. white-space:nowrap;
  2298. text-transform:none;
  2299. }
  2300. #u208512_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:13px;
  2306. height:19px;
  2307. }
  2308. #u208512 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:44px;
  2312. top:77px;
  2313. width:13px;
  2314. height:19px;
  2315. display:flex;
  2316. }
  2317. #u208512 .text {
  2318. position:absolute;
  2319. align-self:center;
  2320. padding:2px 2px 2px 2px;
  2321. box-sizing:border-box;
  2322. width:100%;
  2323. }
  2324. #u208512_text {
  2325. border-width:0px;
  2326. word-wrap:break-word;
  2327. text-transform:none;
  2328. visibility:hidden;
  2329. }
  2330. #u208513 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:0px;
  2336. height:0px;
  2337. }
  2338. #u208514_div {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:30px;
  2344. height:30px;
  2345. background:inherit;
  2346. background-color:rgba(255, 255, 255, 1);
  2347. box-sizing:border-box;
  2348. border-width:1px;
  2349. border-style:solid;
  2350. border-color:rgba(121, 121, 121, 1);
  2351. border-radius:4px;
  2352. -moz-box-shadow:none;
  2353. -webkit-box-shadow:none;
  2354. box-shadow:none;
  2355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2356. font-weight:400;
  2357. font-style:normal;
  2358. font-size:8px;
  2359. }
  2360. #u208514 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:147px;
  2364. top:482px;
  2365. width:30px;
  2366. height:30px;
  2367. display:flex;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:8px;
  2372. }
  2373. #u208514 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 2px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u208514_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. }
  2385. #u208515_div {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:49px;
  2391. height:17px;
  2392. background:inherit;
  2393. background-color:rgba(255, 255, 255, 0);
  2394. border:none;
  2395. border-radius:0px;
  2396. -moz-box-shadow:none;
  2397. -webkit-box-shadow:none;
  2398. box-shadow:none;
  2399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:12px;
  2403. }
  2404. #u208515 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:138px;
  2408. top:517px;
  2409. width:49px;
  2410. height:17px;
  2411. display:flex;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:12px;
  2416. }
  2417. #u208515 .text {
  2418. position:absolute;
  2419. align-self:flex-start;
  2420. padding:0px 0px 0px 0px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u208515_text {
  2425. border-width:0px;
  2426. white-space:nowrap;
  2427. text-transform:none;
  2428. }
  2429. #u208516 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:0px;
  2435. height:0px;
  2436. }
  2437. #u208517_div {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:30px;
  2443. height:30px;
  2444. background:inherit;
  2445. background-color:rgba(255, 255, 255, 1);
  2446. box-sizing:border-box;
  2447. border-width:1px;
  2448. border-style:solid;
  2449. border-color:rgba(121, 121, 121, 1);
  2450. border-radius:4px;
  2451. -moz-box-shadow:none;
  2452. -webkit-box-shadow:none;
  2453. box-shadow:none;
  2454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:8px;
  2458. }
  2459. #u208517 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:59px;
  2463. top:482px;
  2464. width:30px;
  2465. height:30px;
  2466. display:flex;
  2467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2468. font-weight:400;
  2469. font-style:normal;
  2470. font-size:8px;
  2471. }
  2472. #u208517 .text {
  2473. position:absolute;
  2474. align-self:center;
  2475. padding:2px 2px 2px 2px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u208517_text {
  2480. border-width:0px;
  2481. word-wrap:break-word;
  2482. text-transform:none;
  2483. }
  2484. #u208518_div {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:0px;
  2488. top:0px;
  2489. width:49px;
  2490. height:17px;
  2491. background:inherit;
  2492. background-color:rgba(255, 255, 255, 0);
  2493. border:none;
  2494. border-radius:0px;
  2495. -moz-box-shadow:none;
  2496. -webkit-box-shadow:none;
  2497. box-shadow:none;
  2498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:12px;
  2502. }
  2503. #u208518 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:49px;
  2507. top:516px;
  2508. width:49px;
  2509. height:17px;
  2510. display:flex;
  2511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2512. font-weight:400;
  2513. font-style:normal;
  2514. font-size:12px;
  2515. }
  2516. #u208518 .text {
  2517. position:absolute;
  2518. align-self:flex-start;
  2519. padding:0px 0px 0px 0px;
  2520. box-sizing:border-box;
  2521. width:100%;
  2522. }
  2523. #u208518_text {
  2524. border-width:0px;
  2525. white-space:nowrap;
  2526. text-transform:none;
  2527. }
  2528. #u208519_div {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:0px;
  2532. top:0px;
  2533. width:57px;
  2534. height:20px;
  2535. background:inherit;
  2536. background-color:rgba(255, 255, 255, 0);
  2537. border:none;
  2538. border-radius:0px;
  2539. -moz-box-shadow:none;
  2540. -webkit-box-shadow:none;
  2541. box-shadow:none;
  2542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2543. font-weight:400;
  2544. font-style:normal;
  2545. }
  2546. #u208519 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:44px;
  2550. top:115px;
  2551. width:57px;
  2552. height:20px;
  2553. display:flex;
  2554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2555. font-weight:400;
  2556. font-style:normal;
  2557. }
  2558. #u208519 .text {
  2559. position:absolute;
  2560. align-self:flex-start;
  2561. padding:0px 0px 0px 0px;
  2562. box-sizing:border-box;
  2563. width:100%;
  2564. }
  2565. #u208519_text {
  2566. border-width:0px;
  2567. white-space:nowrap;
  2568. text-transform:none;
  2569. }
  2570. #u208520_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:29px;
  2576. height:37px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 255, 0);
  2579. border:none;
  2580. border-radius:0px;
  2581. -moz-box-shadow:none;
  2582. -webkit-box-shadow:none;
  2583. box-shadow:none;
  2584. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:28px;
  2588. }
  2589. #u208520 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:367px;
  2593. top:105px;
  2594. width:29px;
  2595. height:37px;
  2596. display:flex;
  2597. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  2598. font-weight:400;
  2599. font-style:normal;
  2600. font-size:28px;
  2601. }
  2602. #u208520 .text {
  2603. position:absolute;
  2604. align-self:flex-start;
  2605. padding:0px 0px 0px 0px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u208520_text {
  2610. border-width:0px;
  2611. white-space:nowrap;
  2612. text-transform:none;
  2613. }
  2614. #u208521 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:0px;
  2620. height:0px;
  2621. }
  2622. #u208522_div {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:30px;
  2628. height:30px;
  2629. background:inherit;
  2630. background-color:rgba(255, 255, 255, 1);
  2631. box-sizing:border-box;
  2632. border-width:1px;
  2633. border-style:solid;
  2634. border-color:rgba(121, 121, 121, 1);
  2635. border-radius:4px;
  2636. -moz-box-shadow:none;
  2637. -webkit-box-shadow:none;
  2638. box-shadow:none;
  2639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2640. font-weight:400;
  2641. font-style:normal;
  2642. font-size:8px;
  2643. }
  2644. #u208522 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:325px;
  2648. top:411px;
  2649. width:30px;
  2650. height:30px;
  2651. display:flex;
  2652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2653. font-weight:400;
  2654. font-style:normal;
  2655. font-size:8px;
  2656. }
  2657. #u208522 .text {
  2658. position:absolute;
  2659. align-self:center;
  2660. padding:2px 2px 2px 2px;
  2661. box-sizing:border-box;
  2662. width:100%;
  2663. }
  2664. #u208522_text {
  2665. border-width:0px;
  2666. word-wrap:break-word;
  2667. text-transform:none;
  2668. }
  2669. #u208523_div {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:37px;
  2675. height:17px;
  2676. background:inherit;
  2677. background-color:rgba(255, 255, 255, 0);
  2678. border:none;
  2679. border-radius:0px;
  2680. -moz-box-shadow:none;
  2681. -webkit-box-shadow:none;
  2682. box-shadow:none;
  2683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2684. font-weight:400;
  2685. font-style:normal;
  2686. font-size:12px;
  2687. }
  2688. #u208523 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:322px;
  2692. top:446px;
  2693. width:37px;
  2694. height:17px;
  2695. display:flex;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:12px;
  2700. }
  2701. #u208523 .text {
  2702. position:absolute;
  2703. align-self:flex-start;
  2704. padding:0px 0px 0px 0px;
  2705. box-sizing:border-box;
  2706. width:100%;
  2707. }
  2708. #u208523_text {
  2709. border-width:0px;
  2710. white-space:nowrap;
  2711. text-transform:none;
  2712. }
  2713. #u208524 {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:0px;
  2717. top:0px;
  2718. width:0px;
  2719. height:0px;
  2720. }
  2721. #u208525_div {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:30px;
  2727. height:30px;
  2728. background:inherit;
  2729. background-color:rgba(255, 255, 255, 1);
  2730. box-sizing:border-box;
  2731. border-width:1px;
  2732. border-style:solid;
  2733. border-color:rgba(121, 121, 121, 1);
  2734. border-radius:4px;
  2735. -moz-box-shadow:none;
  2736. -webkit-box-shadow:none;
  2737. box-shadow:none;
  2738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2739. font-weight:400;
  2740. font-style:normal;
  2741. font-size:8px;
  2742. }
  2743. #u208525 {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:147px;
  2747. top:552px;
  2748. width:30px;
  2749. height:30px;
  2750. display:flex;
  2751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2752. font-weight:400;
  2753. font-style:normal;
  2754. font-size:8px;
  2755. }
  2756. #u208525 .text {
  2757. position:absolute;
  2758. align-self:center;
  2759. padding:2px 2px 2px 2px;
  2760. box-sizing:border-box;
  2761. width:100%;
  2762. }
  2763. #u208525_text {
  2764. border-width:0px;
  2765. word-wrap:break-word;
  2766. text-transform:none;
  2767. }
  2768. #u208526_div {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:0px;
  2772. top:0px;
  2773. width:49px;
  2774. height:17px;
  2775. background:inherit;
  2776. background-color:rgba(255, 255, 255, 0);
  2777. border:none;
  2778. border-radius:0px;
  2779. -moz-box-shadow:none;
  2780. -webkit-box-shadow:none;
  2781. box-shadow:none;
  2782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. font-size:12px;
  2786. }
  2787. #u208526 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:138px;
  2791. top:587px;
  2792. width:49px;
  2793. height:17px;
  2794. display:flex;
  2795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:12px;
  2799. }
  2800. #u208526 .text {
  2801. position:absolute;
  2802. align-self:flex-start;
  2803. padding:0px 0px 0px 0px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u208526_text {
  2808. border-width:0px;
  2809. white-space:nowrap;
  2810. text-transform:none;
  2811. }
  2812. #u208527 {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:0px;
  2818. height:0px;
  2819. }
  2820. #u208528_div {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:30px;
  2826. height:30px;
  2827. background:inherit;
  2828. background-color:rgba(255, 255, 255, 1);
  2829. box-sizing:border-box;
  2830. border-width:1px;
  2831. border-style:solid;
  2832. border-color:rgba(121, 121, 121, 1);
  2833. border-radius:4px;
  2834. -moz-box-shadow:none;
  2835. -webkit-box-shadow:none;
  2836. box-shadow:none;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:8px;
  2841. }
  2842. #u208528 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:237px;
  2846. top:553px;
  2847. width:30px;
  2848. height:30px;
  2849. display:flex;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:8px;
  2854. }
  2855. #u208528 .text {
  2856. position:absolute;
  2857. align-self:center;
  2858. padding:2px 2px 2px 2px;
  2859. box-sizing:border-box;
  2860. width:100%;
  2861. }
  2862. #u208528_text {
  2863. border-width:0px;
  2864. word-wrap:break-word;
  2865. text-transform:none;
  2866. }
  2867. #u208529_div {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:49px;
  2873. height:17px;
  2874. background:inherit;
  2875. background-color:rgba(255, 255, 255, 0);
  2876. border:none;
  2877. border-radius:0px;
  2878. -moz-box-shadow:none;
  2879. -webkit-box-shadow:none;
  2880. box-shadow:none;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:12px;
  2885. }
  2886. #u208529 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:227px;
  2890. top:587px;
  2891. width:49px;
  2892. height:17px;
  2893. display:flex;
  2894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2895. font-weight:400;
  2896. font-style:normal;
  2897. font-size:12px;
  2898. }
  2899. #u208529 .text {
  2900. position:absolute;
  2901. align-self:flex-start;
  2902. padding:0px 0px 0px 0px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u208529_text {
  2907. border-width:0px;
  2908. white-space:nowrap;
  2909. text-transform:none;
  2910. }
  2911. #u208530 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:0px;
  2917. height:0px;
  2918. }
  2919. #u208531_div {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:30px;
  2925. height:30px;
  2926. background:inherit;
  2927. background-color:rgba(255, 255, 255, 1);
  2928. box-sizing:border-box;
  2929. border-width:1px;
  2930. border-style:solid;
  2931. border-color:rgba(121, 121, 121, 1);
  2932. border-radius:4px;
  2933. -moz-box-shadow:none;
  2934. -webkit-box-shadow:none;
  2935. box-shadow:none;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:8px;
  2940. }
  2941. #u208531 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:236px;
  2945. top:411px;
  2946. width:30px;
  2947. height:30px;
  2948. display:flex;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:8px;
  2953. }
  2954. #u208531 .text {
  2955. position:absolute;
  2956. align-self:center;
  2957. padding:2px 2px 2px 2px;
  2958. box-sizing:border-box;
  2959. width:100%;
  2960. }
  2961. #u208531_text {
  2962. border-width:0px;
  2963. word-wrap:break-word;
  2964. text-transform:none;
  2965. }
  2966. #u208532_div {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:49px;
  2972. height:17px;
  2973. background:inherit;
  2974. background-color:rgba(255, 255, 255, 0);
  2975. border:none;
  2976. border-radius:0px;
  2977. -moz-box-shadow:none;
  2978. -webkit-box-shadow:none;
  2979. box-shadow:none;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. font-size:12px;
  2984. }
  2985. #u208532 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:227px;
  2989. top:446px;
  2990. width:49px;
  2991. height:17px;
  2992. display:flex;
  2993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2994. font-weight:400;
  2995. font-style:normal;
  2996. font-size:12px;
  2997. }
  2998. #u208532 .text {
  2999. position:absolute;
  3000. align-self:flex-start;
  3001. padding:0px 0px 0px 0px;
  3002. box-sizing:border-box;
  3003. width:100%;
  3004. }
  3005. #u208532_text {
  3006. border-width:0px;
  3007. white-space:nowrap;
  3008. text-transform:none;
  3009. }
  3010. #u208533 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:0px;
  3016. height:0px;
  3017. }
  3018. #u208534_div {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:30px;
  3024. height:30px;
  3025. background:inherit;
  3026. background-color:rgba(255, 255, 255, 1);
  3027. box-sizing:border-box;
  3028. border-width:1px;
  3029. border-style:solid;
  3030. border-color:rgba(121, 121, 121, 1);
  3031. border-radius:4px;
  3032. -moz-box-shadow:none;
  3033. -webkit-box-shadow:none;
  3034. box-shadow:none;
  3035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:8px;
  3039. }
  3040. #u208534 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:58px;
  3044. top:552px;
  3045. width:30px;
  3046. height:30px;
  3047. display:flex;
  3048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3049. font-weight:400;
  3050. font-style:normal;
  3051. font-size:8px;
  3052. }
  3053. #u208534 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 2px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u208534_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. }
  3065. #u208535_div {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:49px;
  3071. height:17px;
  3072. background:inherit;
  3073. background-color:rgba(255, 255, 255, 0);
  3074. border:none;
  3075. border-radius:0px;
  3076. -moz-box-shadow:none;
  3077. -webkit-box-shadow:none;
  3078. box-shadow:none;
  3079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:12px;
  3083. }
  3084. #u208535 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:49px;
  3088. top:587px;
  3089. width:49px;
  3090. height:17px;
  3091. display:flex;
  3092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:12px;
  3096. }
  3097. #u208535 .text {
  3098. position:absolute;
  3099. align-self:flex-start;
  3100. padding:0px 0px 0px 0px;
  3101. box-sizing:border-box;
  3102. width:100%;
  3103. }
  3104. #u208535_text {
  3105. border-width:0px;
  3106. white-space:nowrap;
  3107. text-transform:none;
  3108. }
  3109. #u208536 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:0px;
  3115. height:0px;
  3116. }
  3117. #u208537_div {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:30px;
  3123. height:30px;
  3124. background:inherit;
  3125. background-color:rgba(255, 255, 255, 1);
  3126. box-sizing:border-box;
  3127. border-width:1px;
  3128. border-style:solid;
  3129. border-color:rgba(121, 121, 121, 1);
  3130. border-radius:4px;
  3131. -moz-box-shadow:none;
  3132. -webkit-box-shadow:none;
  3133. box-shadow:none;
  3134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:8px;
  3138. }
  3139. #u208537 {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:325px;
  3143. top:552px;
  3144. width:30px;
  3145. height:30px;
  3146. display:flex;
  3147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3148. font-weight:400;
  3149. font-style:normal;
  3150. font-size:8px;
  3151. }
  3152. #u208537 .text {
  3153. position:absolute;
  3154. align-self:center;
  3155. padding:2px 2px 2px 2px;
  3156. box-sizing:border-box;
  3157. width:100%;
  3158. }
  3159. #u208537_text {
  3160. border-width:0px;
  3161. word-wrap:break-word;
  3162. text-transform:none;
  3163. }
  3164. #u208538_div {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:49px;
  3170. height:17px;
  3171. background:inherit;
  3172. background-color:rgba(255, 255, 255, 0);
  3173. border:none;
  3174. border-radius:0px;
  3175. -moz-box-shadow:none;
  3176. -webkit-box-shadow:none;
  3177. box-shadow:none;
  3178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:12px;
  3182. }
  3183. #u208538 {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:316px;
  3187. top:587px;
  3188. width:49px;
  3189. height:17px;
  3190. display:flex;
  3191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3192. font-weight:400;
  3193. font-style:normal;
  3194. font-size:12px;
  3195. }
  3196. #u208538 .text {
  3197. position:absolute;
  3198. align-self:flex-start;
  3199. padding:0px 0px 0px 0px;
  3200. box-sizing:border-box;
  3201. width:100%;
  3202. }
  3203. #u208538_text {
  3204. border-width:0px;
  3205. white-space:nowrap;
  3206. text-transform:none;
  3207. }
  3208. #u208539_img {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:375px;
  3214. height:798px;
  3215. }
  3216. #u208539 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:29px;
  3220. top:923px;
  3221. width:375px;
  3222. height:798px;
  3223. display:flex;
  3224. }
  3225. #u208539 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 2px 2px 2px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u208539_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u208540 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:0px;
  3244. height:0px;
  3245. }
  3246. #u208541_div {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:375px;
  3252. height:50px;
  3253. background:inherit;
  3254. background-color:rgba(255, 255, 255, 1);
  3255. box-sizing:border-box;
  3256. border-width:1px;
  3257. border-style:solid;
  3258. border-color:rgba(242, 242, 242, 1);
  3259. border-radius:26px;
  3260. border-top-left-radius:0px;
  3261. border-top-right-radius:0px;
  3262. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3263. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3264. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3265. }
  3266. #u208541 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:29px;
  3270. top:1728px;
  3271. width:375px;
  3272. height:50px;
  3273. display:flex;
  3274. }
  3275. #u208541 .text {
  3276. position:absolute;
  3277. align-self:center;
  3278. padding:2px 2px 2px 2px;
  3279. box-sizing:border-box;
  3280. width:100%;
  3281. }
  3282. #u208541_text {
  3283. border-width:0px;
  3284. word-wrap:break-word;
  3285. text-transform:none;
  3286. visibility:hidden;
  3287. }
  3288. #u208542 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:0px;
  3292. top:0px;
  3293. width:0px;
  3294. height:0px;
  3295. }
  3296. #u208543_div {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:77px;
  3302. height:50px;
  3303. background:inherit;
  3304. background-color:rgba(255, 255, 255, 1);
  3305. border:none;
  3306. border-radius:0px;
  3307. border-top-left-radius:0px;
  3308. border-top-right-radius:0px;
  3309. -moz-box-shadow:none;
  3310. -webkit-box-shadow:none;
  3311. box-shadow:none;
  3312. }
  3313. #u208543 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:178px;
  3317. top:1728px;
  3318. width:77px;
  3319. height:50px;
  3320. display:flex;
  3321. }
  3322. #u208543 .text {
  3323. position:absolute;
  3324. align-self:center;
  3325. padding:2px 2px 2px 2px;
  3326. box-sizing:border-box;
  3327. width:100%;
  3328. }
  3329. #u208543_text {
  3330. border-width:0px;
  3331. word-wrap:break-word;
  3332. text-transform:none;
  3333. visibility:hidden;
  3334. }
  3335. #u208544 {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:0px;
  3341. height:0px;
  3342. }
  3343. #u208545_img {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:38px;
  3349. height:38px;
  3350. }
  3351. #u208545 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:198px;
  3355. top:1718px;
  3356. width:38px;
  3357. height:38px;
  3358. display:flex;
  3359. font-size:12px;
  3360. color:#FFFFFF;
  3361. }
  3362. #u208545 .text {
  3363. position:absolute;
  3364. align-self:center;
  3365. padding:2px 2px 2px 2px;
  3366. box-sizing:border-box;
  3367. width:100%;
  3368. }
  3369. #u208545_text {
  3370. border-width:0px;
  3371. word-wrap:break-word;
  3372. text-transform:none;
  3373. }
  3374. #u208546_div {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:49px;
  3380. height:17px;
  3381. background:inherit;
  3382. background-color:rgba(255, 255, 255, 0);
  3383. border:none;
  3384. border-radius:0px;
  3385. -moz-box-shadow:none;
  3386. -webkit-box-shadow:none;
  3387. box-shadow:none;
  3388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3389. font-weight:400;
  3390. font-style:normal;
  3391. font-size:12px;
  3392. }
  3393. #u208546 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:192px;
  3397. top:1757px;
  3398. width:49px;
  3399. height:17px;
  3400. display:flex;
  3401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. font-size:12px;
  3405. }
  3406. #u208546 .text {
  3407. position:absolute;
  3408. align-self:flex-start;
  3409. padding:0px 0px 0px 0px;
  3410. box-sizing:border-box;
  3411. width:100%;
  3412. }
  3413. #u208546_text {
  3414. border-width:0px;
  3415. white-space:nowrap;
  3416. text-transform:none;
  3417. }
  3418. #u208547 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:0px;
  3424. height:0px;
  3425. }
  3426. #u208548_div {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:0px;
  3431. width:75px;
  3432. height:50px;
  3433. background:inherit;
  3434. background-color:rgba(24, 144, 255, 1);
  3435. border:none;
  3436. border-right:0px;
  3437. border-radius:26px;
  3438. border-top-left-radius:0px;
  3439. border-top-right-radius:0px;
  3440. border-bottom-right-radius:0px;
  3441. -moz-box-shadow:none;
  3442. -webkit-box-shadow:none;
  3443. box-shadow:none;
  3444. }
  3445. #u208548 {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:29px;
  3449. top:1728px;
  3450. width:75px;
  3451. height:50px;
  3452. display:flex;
  3453. }
  3454. #u208548 .text {
  3455. position:absolute;
  3456. align-self:center;
  3457. padding:2px 2px 2px 2px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u208548_text {
  3462. border-width:0px;
  3463. word-wrap:break-word;
  3464. text-transform:none;
  3465. visibility:hidden;
  3466. }
  3467. #u208549 {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:0px;
  3473. height:0px;
  3474. }
  3475. #u208550_img {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:24px;
  3481. height:24px;
  3482. }
  3483. #u208550 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:54px;
  3487. top:1732px;
  3488. width:24px;
  3489. height:24px;
  3490. display:flex;
  3491. font-size:8px;
  3492. }
  3493. #u208550 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 2px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u208550_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. }
  3505. #u208551_div {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:25px;
  3511. height:17px;
  3512. background:inherit;
  3513. background-color:rgba(255, 255, 255, 0);
  3514. border:none;
  3515. border-radius:0px;
  3516. -moz-box-shadow:none;
  3517. -webkit-box-shadow:none;
  3518. box-shadow:none;
  3519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:12px;
  3523. color:#FFFFFF;
  3524. }
  3525. #u208551 {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:54px;
  3529. top:1757px;
  3530. width:25px;
  3531. height:17px;
  3532. display:flex;
  3533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3534. font-weight:400;
  3535. font-style:normal;
  3536. font-size:12px;
  3537. color:#FFFFFF;
  3538. }
  3539. #u208551 .text {
  3540. position:absolute;
  3541. align-self:flex-start;
  3542. padding:0px 0px 0px 0px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u208551_text {
  3547. border-width:0px;
  3548. white-space:nowrap;
  3549. text-transform:none;
  3550. }
  3551. #u208552 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:0px;
  3557. height:0px;
  3558. }
  3559. #u208553_div {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:75px;
  3565. height:50px;
  3566. background:inherit;
  3567. background-color:rgba(255, 255, 255, 1);
  3568. border:none;
  3569. border-left:0px;
  3570. border-radius:26px;
  3571. border-top-left-radius:0px;
  3572. border-top-right-radius:0px;
  3573. border-bottom-left-radius:0px;
  3574. -moz-box-shadow:none;
  3575. -webkit-box-shadow:none;
  3576. box-shadow:none;
  3577. }
  3578. #u208553 {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:329px;
  3582. top:1728px;
  3583. width:75px;
  3584. height:50px;
  3585. display:flex;
  3586. }
  3587. #u208553 .text {
  3588. position:absolute;
  3589. align-self:center;
  3590. padding:2px 2px 2px 2px;
  3591. box-sizing:border-box;
  3592. width:100%;
  3593. }
  3594. #u208553_text {
  3595. border-width:0px;
  3596. word-wrap:break-word;
  3597. text-transform:none;
  3598. visibility:hidden;
  3599. }
  3600. #u208554 {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:0px;
  3604. top:0px;
  3605. width:0px;
  3606. height:0px;
  3607. }
  3608. #u208555_img {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:24px;
  3614. height:24px;
  3615. }
  3616. #u208555 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:354px;
  3620. top:1734px;
  3621. width:24px;
  3622. height:24px;
  3623. display:flex;
  3624. font-size:8px;
  3625. }
  3626. #u208555 .text {
  3627. position:absolute;
  3628. align-self:center;
  3629. padding:2px 2px 2px 2px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u208555_text {
  3634. border-width:0px;
  3635. word-wrap:break-word;
  3636. text-transform:none;
  3637. }
  3638. #u208556_div {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:25px;
  3644. height:17px;
  3645. background:inherit;
  3646. background-color:rgba(255, 255, 255, 0);
  3647. border:none;
  3648. border-radius:0px;
  3649. -moz-box-shadow:none;
  3650. -webkit-box-shadow:none;
  3651. box-shadow:none;
  3652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3653. font-weight:400;
  3654. font-style:normal;
  3655. font-size:12px;
  3656. }
  3657. #u208556 {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:354px;
  3661. top:1759px;
  3662. width:25px;
  3663. height:17px;
  3664. display:flex;
  3665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3666. font-weight:400;
  3667. font-style:normal;
  3668. font-size:12px;
  3669. }
  3670. #u208556 .text {
  3671. position:absolute;
  3672. align-self:flex-start;
  3673. padding:0px 0px 0px 0px;
  3674. box-sizing:border-box;
  3675. width:100%;
  3676. }
  3677. #u208556_text {
  3678. border-width:0px;
  3679. white-space:nowrap;
  3680. text-transform:none;
  3681. }
  3682. #u208557 {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:0px;
  3686. top:0px;
  3687. width:0px;
  3688. height:0px;
  3689. }
  3690. #u208558_div {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:75px;
  3696. height:50px;
  3697. background:inherit;
  3698. background-color:rgba(255, 255, 255, 1);
  3699. border:none;
  3700. border-radius:0px;
  3701. border-top-left-radius:0px;
  3702. border-top-right-radius:0px;
  3703. -moz-box-shadow:none;
  3704. -webkit-box-shadow:none;
  3705. box-shadow:none;
  3706. }
  3707. #u208558 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:254px;
  3711. top:1728px;
  3712. width:75px;
  3713. height:50px;
  3714. display:flex;
  3715. }
  3716. #u208558 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 2px 2px 2px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u208558_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. visibility:hidden;
  3728. }
  3729. #u208559 {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:0px;
  3735. height:0px;
  3736. }
  3737. #u208560_img {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:24px;
  3743. height:24px;
  3744. }
  3745. #u208560 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:279px;
  3749. top:1732px;
  3750. width:24px;
  3751. height:24px;
  3752. display:flex;
  3753. font-size:8px;
  3754. }
  3755. #u208560 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 2px 2px 2px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u208560_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. }
  3767. #u208561_div {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:25px;
  3773. height:17px;
  3774. background:inherit;
  3775. background-color:rgba(255, 255, 255, 0);
  3776. border:none;
  3777. border-radius:0px;
  3778. -moz-box-shadow:none;
  3779. -webkit-box-shadow:none;
  3780. box-shadow:none;
  3781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3782. font-weight:400;
  3783. font-style:normal;
  3784. font-size:12px;
  3785. }
  3786. #u208561 {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:279px;
  3790. top:1757px;
  3791. width:25px;
  3792. height:17px;
  3793. display:flex;
  3794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3795. font-weight:400;
  3796. font-style:normal;
  3797. font-size:12px;
  3798. }
  3799. #u208561 .text {
  3800. position:absolute;
  3801. align-self:flex-start;
  3802. padding:0px 0px 0px 0px;
  3803. box-sizing:border-box;
  3804. width:100%;
  3805. }
  3806. #u208561_text {
  3807. border-width:0px;
  3808. white-space:nowrap;
  3809. text-transform:none;
  3810. }
  3811. #u208562 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:0px;
  3817. height:0px;
  3818. }
  3819. #u208563_div {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:75px;
  3825. height:50px;
  3826. background:inherit;
  3827. background-color:rgba(255, 255, 255, 1);
  3828. border:none;
  3829. border-radius:0px;
  3830. border-top-left-radius:0px;
  3831. border-top-right-radius:0px;
  3832. -moz-box-shadow:none;
  3833. -webkit-box-shadow:none;
  3834. box-shadow:none;
  3835. }
  3836. #u208563 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:104px;
  3840. top:1728px;
  3841. width:75px;
  3842. height:50px;
  3843. display:flex;
  3844. }
  3845. #u208563 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:2px 2px 2px 2px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u208563_text {
  3853. border-width:0px;
  3854. word-wrap:break-word;
  3855. text-transform:none;
  3856. visibility:hidden;
  3857. }
  3858. #u208564 {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:0px;
  3864. height:0px;
  3865. }
  3866. #u208565_img {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:0px;
  3870. top:0px;
  3871. width:24px;
  3872. height:24px;
  3873. }
  3874. #u208565 {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:129px;
  3878. top:1732px;
  3879. width:24px;
  3880. height:24px;
  3881. display:flex;
  3882. font-size:8px;
  3883. }
  3884. #u208565 .text {
  3885. position:absolute;
  3886. align-self:center;
  3887. padding:2px 2px 2px 2px;
  3888. box-sizing:border-box;
  3889. width:100%;
  3890. }
  3891. #u208565_text {
  3892. border-width:0px;
  3893. word-wrap:break-word;
  3894. text-transform:none;
  3895. }
  3896. #u208566_div {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:0px;
  3901. width:37px;
  3902. height:17px;
  3903. background:inherit;
  3904. background-color:rgba(255, 255, 255, 0);
  3905. border:none;
  3906. border-radius:0px;
  3907. -moz-box-shadow:none;
  3908. -webkit-box-shadow:none;
  3909. box-shadow:none;
  3910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3911. font-weight:400;
  3912. font-style:normal;
  3913. font-size:12px;
  3914. }
  3915. #u208566 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:123px;
  3919. top:1757px;
  3920. width:37px;
  3921. height:17px;
  3922. display:flex;
  3923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3924. font-weight:400;
  3925. font-style:normal;
  3926. font-size:12px;
  3927. }
  3928. #u208566 .text {
  3929. position:absolute;
  3930. align-self:flex-start;
  3931. padding:0px 0px 0px 0px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u208566_text {
  3936. border-width:0px;
  3937. white-space:nowrap;
  3938. text-transform:none;
  3939. }
  3940. #u208567 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:0px;
  3946. height:0px;
  3947. }
  3948. #u208568_div {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:0px;
  3952. top:0px;
  3953. width:30px;
  3954. height:30px;
  3955. background:inherit;
  3956. background-color:rgba(255, 255, 255, 1);
  3957. box-sizing:border-box;
  3958. border-width:1px;
  3959. border-style:solid;
  3960. border-color:rgba(121, 121, 121, 1);
  3961. border-radius:4px;
  3962. -moz-box-shadow:none;
  3963. -webkit-box-shadow:none;
  3964. box-shadow:none;
  3965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3966. font-weight:400;
  3967. font-style:normal;
  3968. font-size:8px;
  3969. }
  3970. #u208568 {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:58px;
  3974. top:624px;
  3975. width:30px;
  3976. height:30px;
  3977. display:flex;
  3978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3979. font-weight:400;
  3980. font-style:normal;
  3981. font-size:8px;
  3982. }
  3983. #u208568 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 2px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u208568_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. }
  3995. #u208569_div {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:49px;
  4001. height:17px;
  4002. background:inherit;
  4003. background-color:rgba(255, 255, 255, 0);
  4004. border:none;
  4005. border-radius:0px;
  4006. -moz-box-shadow:none;
  4007. -webkit-box-shadow:none;
  4008. box-shadow:none;
  4009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:12px;
  4013. }
  4014. #u208569 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:49px;
  4018. top:659px;
  4019. width:49px;
  4020. height:17px;
  4021. display:flex;
  4022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:12px;
  4026. }
  4027. #u208569 .text {
  4028. position:absolute;
  4029. align-self:flex-start;
  4030. padding:0px 0px 0px 0px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u208569_text {
  4035. border-width:0px;
  4036. white-space:nowrap;
  4037. text-transform:none;
  4038. }
  4039. #u208570 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:0px;
  4045. height:0px;
  4046. }
  4047. #u208571_div {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:0px;
  4051. top:0px;
  4052. width:30px;
  4053. height:30px;
  4054. background:inherit;
  4055. background-color:rgba(255, 255, 255, 1);
  4056. box-sizing:border-box;
  4057. border-width:1px;
  4058. border-style:solid;
  4059. border-color:rgba(121, 121, 121, 1);
  4060. border-radius:4px;
  4061. -moz-box-shadow:none;
  4062. -webkit-box-shadow:none;
  4063. box-shadow:none;
  4064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. font-size:8px;
  4068. }
  4069. #u208571 {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:147px;
  4073. top:624px;
  4074. width:30px;
  4075. height:30px;
  4076. display:flex;
  4077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:8px;
  4081. }
  4082. #u208571 .text {
  4083. position:absolute;
  4084. align-self:center;
  4085. padding:2px 2px 2px 2px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u208571_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. }
  4094. #u208572_div {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:0px;
  4098. top:0px;
  4099. width:49px;
  4100. height:17px;
  4101. background:inherit;
  4102. background-color:rgba(255, 255, 255, 0);
  4103. border:none;
  4104. border-radius:0px;
  4105. -moz-box-shadow:none;
  4106. -webkit-box-shadow:none;
  4107. box-shadow:none;
  4108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4109. font-weight:400;
  4110. font-style:normal;
  4111. font-size:12px;
  4112. }
  4113. #u208572 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:138px;
  4117. top:659px;
  4118. width:49px;
  4119. height:17px;
  4120. display:flex;
  4121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:12px;
  4125. }
  4126. #u208572 .text {
  4127. position:absolute;
  4128. align-self:flex-start;
  4129. padding:0px 0px 0px 0px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u208572_text {
  4134. border-width:0px;
  4135. white-space:nowrap;
  4136. text-transform:none;
  4137. }