styles.css 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289
  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. #u202609_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u202609 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u202609 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u202609_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u202610_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. #u202610 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u202610 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u202610_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u202611 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u202612_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. #u202612 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u202612 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u202612_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u202613 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u202614_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u202614 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u202614 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u202614_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u202615_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u202615 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u202615 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u202615_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u202616 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u202617_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u202617 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u202617 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u202617_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u202618_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u202618 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u202618 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u202618_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u202619_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u202619 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u202619 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u202619_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u202620_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u202620 {
  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. #u202620 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u202620_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u202621_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u202621 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u202621 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u202621_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u202622_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. #u202622 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u202622 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u202622_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u202623 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u202624_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u202624 {
  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. #u202624 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u202624_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u202625_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. #u202625 {
  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. #u202625 .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. #u202625_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u202626 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u202627_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u202627 {
  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. #u202627 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u202627_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u202628_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. #u202628 {
  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. #u202628 .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. #u202628_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u202629_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. #u202629 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u202629 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u202629_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u202630 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u202631_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u202631 {
  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. #u202631 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u202631_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u202632_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. #u202632 {
  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. #u202632 .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. #u202632_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u202633 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u202634_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u202634 {
  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. #u202634 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u202634_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u202635_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. #u202635 {
  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. #u202635 .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. #u202635_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u202636_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:40px;
  786. background:inherit;
  787. background-color:rgba(255, 255, 255, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(215, 215, 215, 1);
  792. border-left:0px;
  793. border-top:0px;
  794. border-right:0px;
  795. border-radius:0px;
  796. border-bottom-right-radius:0px;
  797. border-bottom-left-radius:0px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. }
  802. #u202636 {
  803. border-width:0px;
  804. position:absolute;
  805. left:29px;
  806. top:67px;
  807. width:375px;
  808. height:40px;
  809. display:flex;
  810. }
  811. #u202636 .text {
  812. position:absolute;
  813. align-self:center;
  814. padding:2px 2px 2px 2px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u202636_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. visibility:hidden;
  823. }
  824. #u202637_img {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:375px;
  830. height:44px;
  831. }
  832. #u202637 {
  833. border-width:0px;
  834. position:absolute;
  835. left:29px;
  836. top:24px;
  837. width:375px;
  838. height:44px;
  839. display:flex;
  840. }
  841. #u202637 .text {
  842. position:absolute;
  843. align-self:center;
  844. padding:2px 2px 2px 2px;
  845. box-sizing:border-box;
  846. width:100%;
  847. }
  848. #u202637_text {
  849. border-width:0px;
  850. word-wrap:break-word;
  851. text-transform:none;
  852. visibility:hidden;
  853. }
  854. #u202638_div {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:65px;
  860. height:22px;
  861. background:inherit;
  862. background-color:rgba(255, 255, 255, 0);
  863. border:none;
  864. border-radius:0px;
  865. -moz-box-shadow:none;
  866. -webkit-box-shadow:none;
  867. box-shadow:none;
  868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  869. font-weight:400;
  870. font-style:normal;
  871. font-size:16px;
  872. color:#000000;
  873. }
  874. #u202638 {
  875. border-width:0px;
  876. position:absolute;
  877. left:184px;
  878. top:78px;
  879. width:65px;
  880. height:22px;
  881. display:flex;
  882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  883. font-weight:400;
  884. font-style:normal;
  885. font-size:16px;
  886. color:#000000;
  887. }
  888. #u202638 .text {
  889. position:absolute;
  890. align-self:flex-start;
  891. padding:0px 0px 0px 0px;
  892. box-sizing:border-box;
  893. width:100%;
  894. }
  895. #u202638_text {
  896. border-width:0px;
  897. white-space:nowrap;
  898. text-transform:none;
  899. }
  900. #u202639_div {
  901. border-width:0px;
  902. position:absolute;
  903. left:0px;
  904. top:0px;
  905. width:12px;
  906. height:12px;
  907. background:inherit;
  908. background-color:rgba(255, 255, 255, 0);
  909. box-sizing:border-box;
  910. border-width:2px;
  911. border-style:solid;
  912. border-color:rgba(51, 51, 51, 1);
  913. border-right:0px;
  914. border-bottom:0px;
  915. border-radius:0px;
  916. border-top-right-radius:0px;
  917. border-bottom-left-radius:0px;
  918. -moz-box-shadow:none;
  919. -webkit-box-shadow:none;
  920. box-shadow:none;
  921. }
  922. #u202639 {
  923. border-width:0px;
  924. position:absolute;
  925. left:46px;
  926. top:81px;
  927. width:12px;
  928. height:12px;
  929. display:flex;
  930. -webkit-transform:rotate(315deg);
  931. -moz-transform:rotate(315deg);
  932. -ms-transform:rotate(315deg);
  933. transform:rotate(315deg);
  934. }
  935. #u202639 .text {
  936. position:absolute;
  937. align-self:center;
  938. padding:2px 2px 2px 2px;
  939. box-sizing:border-box;
  940. width:100%;
  941. }
  942. #u202639_text {
  943. border-width:0px;
  944. word-wrap:break-word;
  945. text-transform:none;
  946. visibility:hidden;
  947. }
  948. #u202640_img {
  949. border-width:0px;
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:23px;
  954. height:23px;
  955. }
  956. #u202640 {
  957. border-width:0px;
  958. position:absolute;
  959. left:73px;
  960. top:76px;
  961. width:23px;
  962. height:23px;
  963. display:flex;
  964. }
  965. #u202640 .text {
  966. position:absolute;
  967. align-self:center;
  968. padding:2px 2px 2px 2px;
  969. box-sizing:border-box;
  970. width:100%;
  971. }
  972. #u202640_text {
  973. border-width:0px;
  974. word-wrap:break-word;
  975. text-transform:none;
  976. visibility:hidden;
  977. }
  978. #u202641_div {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:375px;
  984. height:736px;
  985. background:inherit;
  986. background-color:rgba(242, 242, 242, 0.996078431372549);
  987. border:none;
  988. border-top:0px;
  989. border-radius:41px;
  990. border-top-left-radius:0px;
  991. border-top-right-radius:0px;
  992. -moz-box-shadow:none;
  993. -webkit-box-shadow:none;
  994. box-shadow:none;
  995. }
  996. #u202641 {
  997. border-width:0px;
  998. position:absolute;
  999. left:29px;
  1000. top:106px;
  1001. width:375px;
  1002. height:736px;
  1003. display:flex;
  1004. }
  1005. #u202641 .text {
  1006. position:absolute;
  1007. align-self:center;
  1008. padding:2px 2px 2px 2px;
  1009. box-sizing:border-box;
  1010. width:100%;
  1011. }
  1012. #u202641_text {
  1013. border-width:0px;
  1014. word-wrap:break-word;
  1015. text-transform:none;
  1016. visibility:hidden;
  1017. }
  1018. #u202642_div {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:376px;
  1024. height:50px;
  1025. background:inherit;
  1026. background-color:rgba(24, 144, 255, 1);
  1027. border:none;
  1028. border-radius:0px;
  1029. -moz-box-shadow:none;
  1030. -webkit-box-shadow:none;
  1031. box-shadow:none;
  1032. }
  1033. #u202642 {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:29px;
  1037. top:106px;
  1038. width:376px;
  1039. height:50px;
  1040. display:flex;
  1041. }
  1042. #u202642 .text {
  1043. position:absolute;
  1044. align-self:center;
  1045. padding:2px 2px 2px 2px;
  1046. box-sizing:border-box;
  1047. width:100%;
  1048. }
  1049. #u202642_text {
  1050. border-width:0px;
  1051. word-wrap:break-word;
  1052. text-transform:none;
  1053. visibility:hidden;
  1054. }
  1055. #u202643_div {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:161px;
  1061. height:22px;
  1062. background:inherit;
  1063. background-color:rgba(255, 255, 255, 0);
  1064. border:none;
  1065. border-radius:0px;
  1066. -moz-box-shadow:none;
  1067. -webkit-box-shadow:none;
  1068. box-shadow:none;
  1069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1070. font-weight:400;
  1071. font-style:normal;
  1072. font-size:16px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u202643 {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:39px;
  1079. top:120px;
  1080. width:161px;
  1081. height:22px;
  1082. display:flex;
  1083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1084. font-weight:400;
  1085. font-style:normal;
  1086. font-size:16px;
  1087. color:#FFFFFF;
  1088. }
  1089. #u202643 .text {
  1090. position:absolute;
  1091. align-self:flex-start;
  1092. padding:0px 0px 0px 0px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u202643_text {
  1097. border-width:0px;
  1098. white-space:nowrap;
  1099. text-transform:none;
  1100. }
  1101. #u202644_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:65px;
  1107. height:40px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#000000;
  1120. }
  1121. #u202644 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:49px;
  1125. top:156px;
  1126. width:65px;
  1127. height:40px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#000000;
  1134. }
  1135. #u202644 .text {
  1136. position:absolute;
  1137. align-self:center;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u202644_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u202645 {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:0px;
  1153. height:0px;
  1154. }
  1155. #u202646_div {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:355px;
  1161. height:245px;
  1162. background:inherit;
  1163. background-color:rgba(255, 255, 255, 1);
  1164. border:none;
  1165. border-radius:4px;
  1166. -moz-box-shadow:none;
  1167. -webkit-box-shadow:none;
  1168. box-shadow:none;
  1169. }
  1170. #u202646 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:39px;
  1174. top:196px;
  1175. width:355px;
  1176. height:245px;
  1177. display:flex;
  1178. }
  1179. #u202646 .text {
  1180. position:absolute;
  1181. align-self:center;
  1182. padding:2px 2px 2px 2px;
  1183. box-sizing:border-box;
  1184. width:100%;
  1185. }
  1186. #u202646_text {
  1187. border-width:0px;
  1188. word-wrap:break-word;
  1189. text-transform:none;
  1190. visibility:hidden;
  1191. }
  1192. #u202647 {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:0px;
  1196. top:0px;
  1197. width:0px;
  1198. height:0px;
  1199. }
  1200. #u202648_div {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:0px;
  1204. top:0px;
  1205. width:49px;
  1206. height:17px;
  1207. background:inherit;
  1208. background-color:rgba(255, 255, 255, 0);
  1209. border:none;
  1210. border-left:0px;
  1211. border-top:0px;
  1212. border-right:0px;
  1213. border-radius:0px;
  1214. border-bottom-right-radius:0px;
  1215. border-bottom-left-radius:0px;
  1216. -moz-box-shadow:none;
  1217. -webkit-box-shadow:none;
  1218. box-shadow:none;
  1219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1220. font-weight:400;
  1221. font-style:normal;
  1222. font-size:12px;
  1223. text-align:center;
  1224. }
  1225. #u202648 {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:322px;
  1229. top:253px;
  1230. width:49px;
  1231. height:17px;
  1232. display:flex;
  1233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1234. font-weight:400;
  1235. font-style:normal;
  1236. font-size:12px;
  1237. text-align:center;
  1238. }
  1239. #u202648 .text {
  1240. position:absolute;
  1241. align-self:flex-start;
  1242. padding:0px 0px 0px 0px;
  1243. box-sizing:border-box;
  1244. width:100%;
  1245. }
  1246. #u202648_text {
  1247. border-width:0px;
  1248. white-space:nowrap;
  1249. text-transform:none;
  1250. }
  1251. #u202649_img {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:30px;
  1257. height:30px;
  1258. }
  1259. #u202649 {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:332px;
  1263. top:213px;
  1264. width:30px;
  1265. height:30px;
  1266. display:flex;
  1267. }
  1268. #u202649 .text {
  1269. position:absolute;
  1270. align-self:center;
  1271. padding:2px 2px 2px 2px;
  1272. box-sizing:border-box;
  1273. width:100%;
  1274. }
  1275. #u202649_text {
  1276. border-width:0px;
  1277. word-wrap:break-word;
  1278. text-transform:none;
  1279. visibility:hidden;
  1280. }
  1281. #u202650 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:0px;
  1287. height:0px;
  1288. }
  1289. #u202651_div {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:49px;
  1295. height:17px;
  1296. background:inherit;
  1297. background-color:rgba(255, 255, 255, 0);
  1298. border:none;
  1299. border-left:0px;
  1300. border-top:0px;
  1301. border-right:0px;
  1302. border-radius:0px;
  1303. border-bottom-right-radius:0px;
  1304. border-bottom-left-radius:0px;
  1305. -moz-box-shadow:none;
  1306. -webkit-box-shadow:none;
  1307. box-shadow:none;
  1308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1309. font-weight:400;
  1310. font-style:normal;
  1311. font-size:12px;
  1312. text-align:center;
  1313. }
  1314. #u202651 {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:62px;
  1318. top:253px;
  1319. width:49px;
  1320. height:17px;
  1321. display:flex;
  1322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1323. font-weight:400;
  1324. font-style:normal;
  1325. font-size:12px;
  1326. text-align:center;
  1327. }
  1328. #u202651 .text {
  1329. position:absolute;
  1330. align-self:flex-start;
  1331. padding:0px 0px 0px 0px;
  1332. box-sizing:border-box;
  1333. width:100%;
  1334. }
  1335. #u202651_text {
  1336. border-width:0px;
  1337. white-space:nowrap;
  1338. text-transform:none;
  1339. }
  1340. #u202652_img {
  1341. border-width:0px;
  1342. position:absolute;
  1343. left:0px;
  1344. top:0px;
  1345. width:30px;
  1346. height:30px;
  1347. }
  1348. #u202652 {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:72px;
  1352. top:213px;
  1353. width:30px;
  1354. height:30px;
  1355. display:flex;
  1356. }
  1357. #u202652 .text {
  1358. position:absolute;
  1359. align-self:center;
  1360. padding:2px 2px 2px 2px;
  1361. box-sizing:border-box;
  1362. width:100%;
  1363. }
  1364. #u202652_text {
  1365. border-width:0px;
  1366. word-wrap:break-word;
  1367. text-transform:none;
  1368. visibility:hidden;
  1369. }
  1370. #u202653 {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:0px;
  1376. height:0px;
  1377. }
  1378. #u202654_div {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:49px;
  1384. height:17px;
  1385. background:inherit;
  1386. background-color:rgba(255, 255, 255, 0);
  1387. border:none;
  1388. border-left:0px;
  1389. border-top:0px;
  1390. border-right:0px;
  1391. border-radius:0px;
  1392. border-bottom-right-radius:0px;
  1393. border-bottom-left-radius:0px;
  1394. -moz-box-shadow:none;
  1395. -webkit-box-shadow:none;
  1396. box-shadow:none;
  1397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1398. font-weight:400;
  1399. font-style:normal;
  1400. font-size:12px;
  1401. text-align:center;
  1402. }
  1403. #u202654 {
  1404. border-width:0px;
  1405. position:absolute;
  1406. left:239px;
  1407. top:253px;
  1408. width:49px;
  1409. height:17px;
  1410. display:flex;
  1411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1412. font-weight:400;
  1413. font-style:normal;
  1414. font-size:12px;
  1415. text-align:center;
  1416. }
  1417. #u202654 .text {
  1418. position:absolute;
  1419. align-self:flex-start;
  1420. padding:0px 0px 0px 0px;
  1421. box-sizing:border-box;
  1422. width:100%;
  1423. }
  1424. #u202654_text {
  1425. border-width:0px;
  1426. white-space:nowrap;
  1427. text-transform:none;
  1428. }
  1429. #u202655_img {
  1430. border-width:0px;
  1431. position:absolute;
  1432. left:0px;
  1433. top:0px;
  1434. width:30px;
  1435. height:30px;
  1436. }
  1437. #u202655 {
  1438. border-width:0px;
  1439. position:absolute;
  1440. left:248px;
  1441. top:213px;
  1442. width:30px;
  1443. height:30px;
  1444. display:flex;
  1445. }
  1446. #u202655 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:2px 2px 2px 2px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u202655_text {
  1454. border-width:0px;
  1455. word-wrap:break-word;
  1456. text-transform:none;
  1457. visibility:hidden;
  1458. }
  1459. #u202656 {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:0px;
  1463. top:0px;
  1464. width:0px;
  1465. height:0px;
  1466. }
  1467. #u202657_div {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:0px;
  1471. top:0px;
  1472. width:49px;
  1473. height:17px;
  1474. background:inherit;
  1475. background-color:rgba(255, 255, 255, 0);
  1476. border:none;
  1477. border-left:0px;
  1478. border-top:0px;
  1479. border-right:0px;
  1480. border-radius:0px;
  1481. border-bottom-right-radius:0px;
  1482. border-bottom-left-radius:0px;
  1483. -moz-box-shadow:none;
  1484. -webkit-box-shadow:none;
  1485. box-shadow:none;
  1486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1487. font-weight:400;
  1488. font-style:normal;
  1489. font-size:12px;
  1490. text-align:center;
  1491. }
  1492. #u202657 {
  1493. border-width:0px;
  1494. position:absolute;
  1495. left:147px;
  1496. top:253px;
  1497. width:49px;
  1498. height:17px;
  1499. display:flex;
  1500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1501. font-weight:400;
  1502. font-style:normal;
  1503. font-size:12px;
  1504. text-align:center;
  1505. }
  1506. #u202657 .text {
  1507. position:absolute;
  1508. align-self:flex-start;
  1509. padding:0px 0px 0px 0px;
  1510. box-sizing:border-box;
  1511. width:100%;
  1512. }
  1513. #u202657_text {
  1514. border-width:0px;
  1515. white-space:nowrap;
  1516. text-transform:none;
  1517. }
  1518. #u202658_img {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:0px;
  1522. top:0px;
  1523. width:30px;
  1524. height:30px;
  1525. }
  1526. #u202658 {
  1527. border-width:0px;
  1528. position:absolute;
  1529. left:157px;
  1530. top:213px;
  1531. width:30px;
  1532. height:30px;
  1533. display:flex;
  1534. }
  1535. #u202658 .text {
  1536. position:absolute;
  1537. align-self:center;
  1538. padding:2px 2px 2px 2px;
  1539. box-sizing:border-box;
  1540. width:100%;
  1541. }
  1542. #u202658_text {
  1543. border-width:0px;
  1544. word-wrap:break-word;
  1545. text-transform:none;
  1546. visibility:hidden;
  1547. }
  1548. #u202659 {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:0px;
  1552. top:0px;
  1553. width:0px;
  1554. height:0px;
  1555. }
  1556. #u202660_div {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:0px;
  1560. top:0px;
  1561. width:49px;
  1562. height:17px;
  1563. background:inherit;
  1564. background-color:rgba(255, 255, 255, 0);
  1565. border:none;
  1566. border-left:0px;
  1567. border-top:0px;
  1568. border-right:0px;
  1569. border-radius:0px;
  1570. border-bottom-right-radius:0px;
  1571. border-bottom-left-radius:0px;
  1572. -moz-box-shadow:none;
  1573. -webkit-box-shadow:none;
  1574. box-shadow:none;
  1575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1576. font-weight:400;
  1577. font-style:normal;
  1578. font-size:12px;
  1579. text-align:center;
  1580. }
  1581. #u202660 {
  1582. border-width:0px;
  1583. position:absolute;
  1584. left:322px;
  1585. top:330px;
  1586. width:49px;
  1587. height:17px;
  1588. display:flex;
  1589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1590. font-weight:400;
  1591. font-style:normal;
  1592. font-size:12px;
  1593. text-align:center;
  1594. }
  1595. #u202660 .text {
  1596. position:absolute;
  1597. align-self:flex-start;
  1598. padding:0px 0px 0px 0px;
  1599. box-sizing:border-box;
  1600. width:100%;
  1601. }
  1602. #u202660_text {
  1603. border-width:0px;
  1604. white-space:nowrap;
  1605. text-transform:none;
  1606. }
  1607. #u202661_img {
  1608. border-width:0px;
  1609. position:absolute;
  1610. left:0px;
  1611. top:0px;
  1612. width:30px;
  1613. height:30px;
  1614. }
  1615. #u202661 {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:332px;
  1619. top:290px;
  1620. width:30px;
  1621. height:30px;
  1622. display:flex;
  1623. }
  1624. #u202661 .text {
  1625. position:absolute;
  1626. align-self:center;
  1627. padding:2px 2px 2px 2px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u202661_text {
  1632. border-width:0px;
  1633. word-wrap:break-word;
  1634. text-transform:none;
  1635. visibility:hidden;
  1636. }
  1637. #u202662 {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:0px;
  1641. top:0px;
  1642. width:0px;
  1643. height:0px;
  1644. }
  1645. #u202663_div {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:0px;
  1649. top:0px;
  1650. width:49px;
  1651. height:17px;
  1652. background:inherit;
  1653. background-color:rgba(255, 255, 255, 0);
  1654. border:none;
  1655. border-left:0px;
  1656. border-top:0px;
  1657. border-right:0px;
  1658. border-radius:0px;
  1659. border-bottom-right-radius:0px;
  1660. border-bottom-left-radius:0px;
  1661. -moz-box-shadow:none;
  1662. -webkit-box-shadow:none;
  1663. box-shadow:none;
  1664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1665. font-weight:400;
  1666. font-style:normal;
  1667. font-size:12px;
  1668. text-align:center;
  1669. }
  1670. #u202663 {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:62px;
  1674. top:330px;
  1675. width:49px;
  1676. height:17px;
  1677. display:flex;
  1678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1679. font-weight:400;
  1680. font-style:normal;
  1681. font-size:12px;
  1682. text-align:center;
  1683. }
  1684. #u202663 .text {
  1685. position:absolute;
  1686. align-self:flex-start;
  1687. padding:0px 0px 0px 0px;
  1688. box-sizing:border-box;
  1689. width:100%;
  1690. }
  1691. #u202663_text {
  1692. border-width:0px;
  1693. white-space:nowrap;
  1694. text-transform:none;
  1695. }
  1696. #u202664_img {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:30px;
  1702. height:30px;
  1703. }
  1704. #u202664 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:72px;
  1708. top:290px;
  1709. width:30px;
  1710. height:30px;
  1711. display:flex;
  1712. }
  1713. #u202664 .text {
  1714. position:absolute;
  1715. align-self:center;
  1716. padding:2px 2px 2px 2px;
  1717. box-sizing:border-box;
  1718. width:100%;
  1719. }
  1720. #u202664_text {
  1721. border-width:0px;
  1722. word-wrap:break-word;
  1723. text-transform:none;
  1724. visibility:hidden;
  1725. }
  1726. #u202665 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:0px;
  1732. height:0px;
  1733. }
  1734. #u202666_div {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:49px;
  1740. height:17px;
  1741. background:inherit;
  1742. background-color:rgba(255, 255, 255, 0);
  1743. border:none;
  1744. border-left:0px;
  1745. border-top:0px;
  1746. border-right:0px;
  1747. border-radius:0px;
  1748. border-bottom-right-radius:0px;
  1749. border-bottom-left-radius:0px;
  1750. -moz-box-shadow:none;
  1751. -webkit-box-shadow:none;
  1752. box-shadow:none;
  1753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1754. font-weight:400;
  1755. font-style:normal;
  1756. font-size:12px;
  1757. text-align:center;
  1758. }
  1759. #u202666 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:239px;
  1763. top:330px;
  1764. width:49px;
  1765. height:17px;
  1766. display:flex;
  1767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1768. font-weight:400;
  1769. font-style:normal;
  1770. font-size:12px;
  1771. text-align:center;
  1772. }
  1773. #u202666 .text {
  1774. position:absolute;
  1775. align-self:flex-start;
  1776. padding:0px 0px 0px 0px;
  1777. box-sizing:border-box;
  1778. width:100%;
  1779. }
  1780. #u202666_text {
  1781. border-width:0px;
  1782. white-space:nowrap;
  1783. text-transform:none;
  1784. }
  1785. #u202667_img {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:30px;
  1791. height:30px;
  1792. }
  1793. #u202667 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:248px;
  1797. top:290px;
  1798. width:30px;
  1799. height:30px;
  1800. display:flex;
  1801. }
  1802. #u202667 .text {
  1803. position:absolute;
  1804. align-self:center;
  1805. padding:2px 2px 2px 2px;
  1806. box-sizing:border-box;
  1807. width:100%;
  1808. }
  1809. #u202667_text {
  1810. border-width:0px;
  1811. word-wrap:break-word;
  1812. text-transform:none;
  1813. visibility:hidden;
  1814. }
  1815. #u202668 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:0px;
  1821. height:0px;
  1822. }
  1823. #u202669_div {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:61px;
  1829. height:17px;
  1830. background:inherit;
  1831. background-color:rgba(255, 255, 255, 0);
  1832. border:none;
  1833. border-left:0px;
  1834. border-top:0px;
  1835. border-right:0px;
  1836. border-radius:0px;
  1837. border-bottom-right-radius:0px;
  1838. border-bottom-left-radius:0px;
  1839. -moz-box-shadow:none;
  1840. -webkit-box-shadow:none;
  1841. box-shadow:none;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:12px;
  1846. text-align:center;
  1847. }
  1848. #u202669 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:141px;
  1852. top:330px;
  1853. width:61px;
  1854. height:17px;
  1855. display:flex;
  1856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1857. font-weight:400;
  1858. font-style:normal;
  1859. font-size:12px;
  1860. text-align:center;
  1861. }
  1862. #u202669 .text {
  1863. position:absolute;
  1864. align-self:flex-start;
  1865. padding:0px 0px 0px 0px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u202669_text {
  1870. border-width:0px;
  1871. white-space:nowrap;
  1872. text-transform:none;
  1873. }
  1874. #u202670_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:30px;
  1880. height:30px;
  1881. }
  1882. #u202670 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:157px;
  1886. top:290px;
  1887. width:30px;
  1888. height:30px;
  1889. display:flex;
  1890. }
  1891. #u202670 .text {
  1892. position:absolute;
  1893. align-self:center;
  1894. padding:2px 2px 2px 2px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u202670_text {
  1899. border-width:0px;
  1900. word-wrap:break-word;
  1901. text-transform:none;
  1902. visibility:hidden;
  1903. }
  1904. #u202671 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:0px;
  1910. height:0px;
  1911. }
  1912. #u202672_div {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:49px;
  1918. height:17px;
  1919. background:inherit;
  1920. background-color:rgba(255, 255, 255, 0);
  1921. border:none;
  1922. border-left:0px;
  1923. border-top:0px;
  1924. border-right:0px;
  1925. border-radius:0px;
  1926. border-bottom-right-radius:0px;
  1927. border-bottom-left-radius:0px;
  1928. -moz-box-shadow:none;
  1929. -webkit-box-shadow:none;
  1930. box-shadow:none;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:12px;
  1935. text-align:center;
  1936. }
  1937. #u202672 {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:62px;
  1941. top:407px;
  1942. width:49px;
  1943. height:17px;
  1944. display:flex;
  1945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:12px;
  1949. text-align:center;
  1950. }
  1951. #u202672 .text {
  1952. position:absolute;
  1953. align-self:flex-start;
  1954. padding:0px 0px 0px 0px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u202672_text {
  1959. border-width:0px;
  1960. white-space:nowrap;
  1961. text-transform:none;
  1962. }
  1963. #u202673_img {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:30px;
  1969. height:30px;
  1970. }
  1971. #u202673 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:72px;
  1975. top:367px;
  1976. width:30px;
  1977. height:30px;
  1978. display:flex;
  1979. }
  1980. #u202673 .text {
  1981. position:absolute;
  1982. align-self:center;
  1983. padding:2px 2px 2px 2px;
  1984. box-sizing:border-box;
  1985. width:100%;
  1986. }
  1987. #u202673_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. visibility:hidden;
  1992. }
  1993. #u202674 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:0px;
  1999. height:0px;
  2000. }
  2001. #u202675_div {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:375px;
  2007. height:50px;
  2008. background:inherit;
  2009. background-color:rgba(255, 255, 255, 1);
  2010. box-sizing:border-box;
  2011. border-width:1px;
  2012. border-style:solid;
  2013. border-color:rgba(242, 242, 242, 1);
  2014. border-radius:20px;
  2015. border-top-left-radius:0px;
  2016. border-top-right-radius:0px;
  2017. -moz-box-shadow:none;
  2018. -webkit-box-shadow:none;
  2019. box-shadow:none;
  2020. }
  2021. #u202675 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:29px;
  2025. top:792px;
  2026. width:375px;
  2027. height:50px;
  2028. display:flex;
  2029. }
  2030. #u202675 .text {
  2031. position:absolute;
  2032. align-self:center;
  2033. padding:2px 2px 2px 2px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u202675_text {
  2038. border-width:0px;
  2039. word-wrap:break-word;
  2040. text-transform:none;
  2041. visibility:hidden;
  2042. }
  2043. #u202676 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:0px;
  2049. height:0px;
  2050. }
  2051. #u202677_img {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:24px;
  2057. height:24px;
  2058. }
  2059. #u202677 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:339px;
  2063. top:796px;
  2064. width:24px;
  2065. height:24px;
  2066. display:flex;
  2067. font-size:8px;
  2068. }
  2069. #u202677 .text {
  2070. position:absolute;
  2071. align-self:center;
  2072. padding:2px 2px 2px 2px;
  2073. box-sizing:border-box;
  2074. width:100%;
  2075. }
  2076. #u202677_text {
  2077. border-width:0px;
  2078. word-wrap:break-word;
  2079. text-transform:none;
  2080. }
  2081. #u202678_div {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:25px;
  2087. height:17px;
  2088. background:inherit;
  2089. background-color:rgba(255, 255, 255, 0);
  2090. border:none;
  2091. border-radius:0px;
  2092. -moz-box-shadow:none;
  2093. -webkit-box-shadow:none;
  2094. box-shadow:none;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:12px;
  2099. }
  2100. #u202678 {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:338px;
  2104. top:821px;
  2105. width:25px;
  2106. height:17px;
  2107. display:flex;
  2108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2109. font-weight:400;
  2110. font-style:normal;
  2111. font-size:12px;
  2112. }
  2113. #u202678 .text {
  2114. position:absolute;
  2115. align-self:flex-start;
  2116. padding:0px 0px 0px 0px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u202678_text {
  2121. border-width:0px;
  2122. white-space:nowrap;
  2123. text-transform:none;
  2124. }
  2125. #u202679 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:0px;
  2131. height:0px;
  2132. }
  2133. #u202680_div {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:25px;
  2139. height:17px;
  2140. background:inherit;
  2141. background-color:rgba(255, 255, 255, 0);
  2142. border:none;
  2143. border-radius:0px;
  2144. -moz-box-shadow:none;
  2145. -webkit-box-shadow:none;
  2146. box-shadow:none;
  2147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2148. font-weight:400;
  2149. font-style:normal;
  2150. font-size:12px;
  2151. }
  2152. #u202680 {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:69px;
  2156. top:821px;
  2157. width:25px;
  2158. height:17px;
  2159. display:flex;
  2160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2161. font-weight:400;
  2162. font-style:normal;
  2163. font-size:12px;
  2164. }
  2165. #u202680 .text {
  2166. position:absolute;
  2167. align-self:flex-start;
  2168. padding:0px 0px 0px 0px;
  2169. box-sizing:border-box;
  2170. width:100%;
  2171. }
  2172. #u202680_text {
  2173. border-width:0px;
  2174. white-space:nowrap;
  2175. text-transform:none;
  2176. }
  2177. #u202681_img {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:0px;
  2182. width:24px;
  2183. height:24px;
  2184. }
  2185. #u202681 {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:69px;
  2189. top:796px;
  2190. width:24px;
  2191. height:24px;
  2192. display:flex;
  2193. font-size:8px;
  2194. color:#FFFFFF;
  2195. }
  2196. #u202681 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:2px 2px 2px 2px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u202681_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. }
  2208. #u202682 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:0px;
  2214. height:0px;
  2215. }
  2216. #u202683_div {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:25px;
  2222. height:17px;
  2223. background:inherit;
  2224. background-color:rgba(255, 255, 255, 0);
  2225. border:none;
  2226. border-radius:0px;
  2227. -moz-box-shadow:none;
  2228. -webkit-box-shadow:none;
  2229. box-shadow:none;
  2230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2231. font-weight:400;
  2232. font-style:normal;
  2233. font-size:12px;
  2234. }
  2235. #u202683 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:205px;
  2239. top:821px;
  2240. width:25px;
  2241. height:17px;
  2242. display:flex;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:12px;
  2247. }
  2248. #u202683 .text {
  2249. position:absolute;
  2250. align-self:flex-start;
  2251. padding:0px 0px 0px 0px;
  2252. box-sizing:border-box;
  2253. width:100%;
  2254. }
  2255. #u202683_text {
  2256. border-width:0px;
  2257. white-space:nowrap;
  2258. text-transform:none;
  2259. }
  2260. #u202684_img {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:24px;
  2266. height:24px;
  2267. }
  2268. #u202684 {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:205px;
  2272. top:797px;
  2273. width:24px;
  2274. height:24px;
  2275. display:flex;
  2276. font-size:8px;
  2277. }
  2278. #u202684 .text {
  2279. position:absolute;
  2280. align-self:center;
  2281. padding:2px 2px 2px 2px;
  2282. box-sizing:border-box;
  2283. width:100%;
  2284. }
  2285. #u202684_text {
  2286. border-width:0px;
  2287. word-wrap:break-word;
  2288. text-transform:none;
  2289. }