styles.css 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998
  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. #u203292_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u203292 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u203292 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u203292_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u203293_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. #u203293 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u203293 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u203293_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u203294 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u203295_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. #u203295 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u203295 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u203295_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u203296 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u203297_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u203297 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u203297 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u203297_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u203298_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u203298 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u203298 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u203298_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u203299 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u203300_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u203300 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u203300 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u203300_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u203301_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u203301 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u203301 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u203301_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u203302_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u203302 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u203302 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u203302_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u203303_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u203303 {
  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. #u203303 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u203303_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u203304_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u203304 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u203304 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u203304_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u203305_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. #u203305 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u203305 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u203305_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u203306 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u203307_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u203307 {
  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. #u203307 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u203307_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u203308_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. #u203308 {
  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. #u203308 .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. #u203308_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u203309 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u203310_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u203310 {
  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. #u203310 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u203310_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u203311_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. #u203311 {
  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. #u203311 .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. #u203311_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u203312_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. #u203312 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u203312 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u203312_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u203313 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u203314_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u203314 {
  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. #u203314 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u203314_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u203315_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. #u203315 {
  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. #u203315 .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. #u203315_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u203316 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u203317_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u203317 {
  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. #u203317 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u203317_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u203318_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. #u203318 {
  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. #u203318 .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. #u203318_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u203319_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:733px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u203319 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:733px;
  804. display:flex;
  805. }
  806. #u203319 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u203319_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u203320_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:12px;
  825. height:12px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. box-sizing:border-box;
  829. border-width:2px;
  830. border-style:solid;
  831. border-color:rgba(51, 51, 51, 1);
  832. border-right:0px;
  833. border-bottom:0px;
  834. border-radius:0px;
  835. border-top-right-radius:0px;
  836. border-bottom-left-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. }
  841. #u203320 {
  842. border-width:0px;
  843. position:absolute;
  844. left:39px;
  845. top:81px;
  846. width:12px;
  847. height:12px;
  848. display:flex;
  849. -webkit-transform:rotate(315deg);
  850. -moz-transform:rotate(315deg);
  851. -ms-transform:rotate(315deg);
  852. transform:rotate(315deg);
  853. }
  854. #u203320 .text {
  855. position:absolute;
  856. align-self:center;
  857. padding:2px 2px 2px 2px;
  858. box-sizing:border-box;
  859. width:100%;
  860. }
  861. #u203320_text {
  862. border-width:0px;
  863. word-wrap:break-word;
  864. text-transform:none;
  865. visibility:hidden;
  866. }
  867. #u203321_div {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:57px;
  873. height:30px;
  874. background:inherit;
  875. background-color:rgba(255, 255, 255, 0);
  876. border:none;
  877. border-left:0px;
  878. border-top:0px;
  879. border-right:0px;
  880. border-radius:0px;
  881. border-bottom-right-radius:0px;
  882. border-bottom-left-radius:0px;
  883. -moz-box-shadow:none;
  884. -webkit-box-shadow:none;
  885. box-shadow:none;
  886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  887. font-weight:400;
  888. font-style:normal;
  889. font-size:14px;
  890. line-height:30px;
  891. }
  892. #u203321 {
  893. border-width:0px;
  894. position:absolute;
  895. left:53px;
  896. top:72px;
  897. width:57px;
  898. height:30px;
  899. display:flex;
  900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  901. font-weight:400;
  902. font-style:normal;
  903. font-size:14px;
  904. line-height:30px;
  905. }
  906. #u203321 .text {
  907. position:absolute;
  908. align-self:center;
  909. padding:0px 0px 0px 0px;
  910. box-sizing:border-box;
  911. width:100%;
  912. }
  913. #u203321_text {
  914. border-width:0px;
  915. white-space:nowrap;
  916. text-transform:none;
  917. }
  918. #u203322_div {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:375px;
  924. height:547px;
  925. background:inherit;
  926. background-color:rgba(255, 255, 255, 1);
  927. border:none;
  928. border-top:0px;
  929. border-radius:0px;
  930. border-top-left-radius:0px;
  931. border-top-right-radius:0px;
  932. -moz-box-shadow:none;
  933. -webkit-box-shadow:none;
  934. box-shadow:none;
  935. }
  936. #u203322 {
  937. border-width:0px;
  938. position:absolute;
  939. left:29px;
  940. top:227px;
  941. width:375px;
  942. height:547px;
  943. display:flex;
  944. }
  945. #u203322 .text {
  946. position:absolute;
  947. align-self:center;
  948. padding:2px 2px 2px 2px;
  949. box-sizing:border-box;
  950. width:100%;
  951. }
  952. #u203322_text {
  953. border-width:0px;
  954. word-wrap:break-word;
  955. text-transform:none;
  956. visibility:hidden;
  957. }
  958. #u203323_div {
  959. border-width:0px;
  960. position:absolute;
  961. left:0px;
  962. top:0px;
  963. width:375px;
  964. height:120px;
  965. background:inherit;
  966. background-color:rgba(51, 51, 51, 1);
  967. border:none;
  968. border-radius:0px;
  969. -moz-box-shadow:none;
  970. -webkit-box-shadow:none;
  971. box-shadow:none;
  972. }
  973. #u203323 {
  974. border-width:0px;
  975. position:absolute;
  976. left:29px;
  977. top:107px;
  978. width:375px;
  979. height:120px;
  980. display:flex;
  981. }
  982. #u203323 .text {
  983. position:absolute;
  984. align-self:center;
  985. padding:2px 2px 2px 2px;
  986. box-sizing:border-box;
  987. width:100%;
  988. }
  989. #u203323_text {
  990. border-width:0px;
  991. word-wrap:break-word;
  992. text-transform:none;
  993. visibility:hidden;
  994. }
  995. #u203324_div {
  996. border-width:0px;
  997. position:absolute;
  998. left:0px;
  999. top:0px;
  1000. width:109px;
  1001. height:30px;
  1002. background:inherit;
  1003. background-color:rgba(255, 255, 255, 0);
  1004. border:none;
  1005. border-left:0px;
  1006. border-top:0px;
  1007. border-right:0px;
  1008. border-radius:0px;
  1009. border-bottom-right-radius:0px;
  1010. border-bottom-left-radius:0px;
  1011. -moz-box-shadow:none;
  1012. -webkit-box-shadow:none;
  1013. box-shadow:none;
  1014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1015. font-weight:400;
  1016. font-style:normal;
  1017. font-size:18px;
  1018. color:#FFFFFF;
  1019. line-height:30px;
  1020. }
  1021. #u203324 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:49px;
  1025. top:132px;
  1026. width:109px;
  1027. height:30px;
  1028. display:flex;
  1029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1030. font-weight:400;
  1031. font-style:normal;
  1032. font-size:18px;
  1033. color:#FFFFFF;
  1034. line-height:30px;
  1035. }
  1036. #u203324 .text {
  1037. position:absolute;
  1038. align-self:flex-start;
  1039. padding:0px 0px 0px 0px;
  1040. box-sizing:border-box;
  1041. width:100%;
  1042. }
  1043. #u203324_text {
  1044. border-width:0px;
  1045. white-space:nowrap;
  1046. text-transform:none;
  1047. }
  1048. #u203325_div {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:65px;
  1054. height:30px;
  1055. background:inherit;
  1056. background-color:rgba(255, 255, 255, 0);
  1057. border:none;
  1058. border-left:0px;
  1059. border-top:0px;
  1060. border-right:0px;
  1061. border-radius:0px;
  1062. border-bottom-right-radius:0px;
  1063. border-bottom-left-radius:0px;
  1064. -moz-box-shadow:none;
  1065. -webkit-box-shadow:none;
  1066. box-shadow:none;
  1067. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1068. font-style:normal;
  1069. color:#FFFFFF;
  1070. line-height:30px;
  1071. }
  1072. #u203325 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:158px;
  1076. top:132px;
  1077. width:65px;
  1078. height:30px;
  1079. display:flex;
  1080. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1081. font-style:normal;
  1082. color:#FFFFFF;
  1083. line-height:30px;
  1084. }
  1085. #u203325 .text {
  1086. position:absolute;
  1087. align-self:flex-start;
  1088. padding:0px 0px 0px 0px;
  1089. box-sizing:border-box;
  1090. width:100%;
  1091. }
  1092. #u203325_text {
  1093. border-width:0px;
  1094. white-space:nowrap;
  1095. text-transform:none;
  1096. }
  1097. #u203326_div {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:0px;
  1101. top:0px;
  1102. width:344px;
  1103. height:40px;
  1104. background:inherit;
  1105. background-color:rgba(24, 144, 255, 1);
  1106. border:none;
  1107. border-radius:81px;
  1108. -moz-box-shadow:none;
  1109. -webkit-box-shadow:none;
  1110. box-shadow:none;
  1111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1112. font-weight:400;
  1113. font-style:normal;
  1114. font-size:14px;
  1115. color:#FFFFFF;
  1116. }
  1117. #u203326 {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:44px;
  1121. top:791px;
  1122. width:344px;
  1123. height:40px;
  1124. display:flex;
  1125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1126. font-weight:400;
  1127. font-style:normal;
  1128. font-size:14px;
  1129. color:#FFFFFF;
  1130. }
  1131. #u203326 .text {
  1132. position:absolute;
  1133. align-self:center;
  1134. padding:2px 2px 2px 2px;
  1135. box-sizing:border-box;
  1136. width:100%;
  1137. }
  1138. #u203326_text {
  1139. border-width:0px;
  1140. word-wrap:break-word;
  1141. text-transform:none;
  1142. }
  1143. #u203327_div {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:79px;
  1149. height:30px;
  1150. background:inherit;
  1151. background-color:rgba(255, 255, 255, 0);
  1152. border:none;
  1153. border-left:0px;
  1154. border-top:0px;
  1155. border-right:0px;
  1156. border-radius:0px;
  1157. border-bottom-right-radius:0px;
  1158. border-bottom-left-radius:0px;
  1159. -moz-box-shadow:none;
  1160. -webkit-box-shadow:none;
  1161. box-shadow:none;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. font-size:14px;
  1166. line-height:30px;
  1167. }
  1168. #u203327 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:49px;
  1172. top:241px;
  1173. width:79px;
  1174. height:30px;
  1175. display:flex;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:14px;
  1180. line-height:30px;
  1181. }
  1182. #u203327 .text {
  1183. position:absolute;
  1184. align-self:flex-start;
  1185. padding:0px 0px 0px 0px;
  1186. box-sizing:border-box;
  1187. width:100%;
  1188. }
  1189. #u203327_text {
  1190. border-width:0px;
  1191. white-space:nowrap;
  1192. text-transform:none;
  1193. }
  1194. #u203328 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:49px;
  1198. top:278px;
  1199. width:339px;
  1200. height:480px;
  1201. }
  1202. #u203328_state0 {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:0px;
  1206. top:0px;
  1207. width:339px;
  1208. height:480px;
  1209. overflow:auto;
  1210. -webkit-overflow-scrolling:touch;
  1211. -ms-overflow-x:hidden;
  1212. overflow-x:hidden;
  1213. background-image:none;
  1214. border:none;
  1215. border-radius:0px;
  1216. -moz-box-shadow:none;
  1217. -webkit-box-shadow:none;
  1218. box-shadow:none;
  1219. }
  1220. #u203328_state0_content {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:0px;
  1224. top:0px;
  1225. width:1px;
  1226. height:1px;
  1227. }
  1228. #u203329 {
  1229. border-width:0px;
  1230. position:absolute;
  1231. left:0px;
  1232. top:0px;
  1233. width:0px;
  1234. height:0px;
  1235. }
  1236. #u203330_div {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:0px;
  1240. top:0px;
  1241. width:339px;
  1242. height:180px;
  1243. background:inherit;
  1244. background-color:rgba(242, 242, 242, 1);
  1245. border:none;
  1246. border-radius:6px;
  1247. -moz-box-shadow:none;
  1248. -webkit-box-shadow:none;
  1249. box-shadow:none;
  1250. }
  1251. #u203330 {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:339px;
  1257. height:180px;
  1258. display:flex;
  1259. }
  1260. #u203330 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:2px 2px 2px 2px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u203330_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. visibility:hidden;
  1272. }
  1273. #u203331_div {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:0px;
  1277. top:0px;
  1278. width:61px;
  1279. height:120px;
  1280. background:inherit;
  1281. background-color:rgba(255, 255, 255, 0);
  1282. border:none;
  1283. border-left:0px;
  1284. border-top:0px;
  1285. border-right:0px;
  1286. border-radius:0px;
  1287. border-bottom-right-radius:0px;
  1288. border-bottom-left-radius:0px;
  1289. -moz-box-shadow:none;
  1290. -webkit-box-shadow:none;
  1291. box-shadow:none;
  1292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1293. font-weight:400;
  1294. font-style:normal;
  1295. font-size:12px;
  1296. color:#AAAAAA;
  1297. line-height:30px;
  1298. }
  1299. #u203331 {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:20px;
  1303. top:14px;
  1304. width:61px;
  1305. height:120px;
  1306. display:flex;
  1307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1308. font-weight:400;
  1309. font-style:normal;
  1310. font-size:12px;
  1311. color:#AAAAAA;
  1312. line-height:30px;
  1313. }
  1314. #u203331 .text {
  1315. position:absolute;
  1316. align-self:flex-start;
  1317. padding:0px 0px 0px 0px;
  1318. box-sizing:border-box;
  1319. width:100%;
  1320. }
  1321. #u203331_text {
  1322. border-width:0px;
  1323. white-space:nowrap;
  1324. text-transform:none;
  1325. }
  1326. #u203332_div {
  1327. border-width:0px;
  1328. position:absolute;
  1329. left:0px;
  1330. top:0px;
  1331. width:133px;
  1332. height:120px;
  1333. background:inherit;
  1334. background-color:rgba(255, 255, 255, 0);
  1335. border:none;
  1336. border-left:0px;
  1337. border-top:0px;
  1338. border-right:0px;
  1339. border-radius:0px;
  1340. border-bottom-right-radius:0px;
  1341. border-bottom-left-radius:0px;
  1342. -moz-box-shadow:none;
  1343. -webkit-box-shadow:none;
  1344. box-shadow:none;
  1345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1346. font-weight:400;
  1347. font-style:normal;
  1348. font-size:12px;
  1349. line-height:30px;
  1350. }
  1351. #u203332 {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:91px;
  1355. top:14px;
  1356. width:133px;
  1357. height:120px;
  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. line-height:30px;
  1364. }
  1365. #u203332 .text {
  1366. position:absolute;
  1367. align-self:flex-start;
  1368. padding:0px 0px 0px 0px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u203332_text {
  1373. border-width:0px;
  1374. white-space:nowrap;
  1375. text-transform:none;
  1376. }
  1377. #u203333_div {
  1378. border-width:0px;
  1379. position:absolute;
  1380. left:0px;
  1381. top:0px;
  1382. width:98px;
  1383. height:30px;
  1384. background:inherit;
  1385. background-color:rgba(255, 255, 255, 0);
  1386. border:none;
  1387. border-radius:0px;
  1388. -moz-box-shadow:none;
  1389. -webkit-box-shadow:none;
  1390. box-shadow:none;
  1391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1392. font-weight:400;
  1393. font-style:normal;
  1394. font-size:12px;
  1395. text-align:right;
  1396. line-height:30px;
  1397. }
  1398. #u203333 {
  1399. border-width:0px;
  1400. position:absolute;
  1401. left:221px;
  1402. top:134px;
  1403. width:98px;
  1404. height:30px;
  1405. display:flex;
  1406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1407. font-weight:400;
  1408. font-style:normal;
  1409. font-size:12px;
  1410. text-align:right;
  1411. line-height:30px;
  1412. }
  1413. #u203333 .text {
  1414. position:absolute;
  1415. align-self:flex-start;
  1416. padding:0px 0px 0px 0px;
  1417. box-sizing:border-box;
  1418. width:100%;
  1419. }
  1420. #u203333_text {
  1421. border-width:0px;
  1422. white-space:nowrap;
  1423. text-transform:none;
  1424. }
  1425. #u203334 {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:0px;
  1429. top:0px;
  1430. width:0px;
  1431. height:0px;
  1432. }
  1433. #u203335_div {
  1434. border-width:0px;
  1435. position:absolute;
  1436. left:0px;
  1437. top:0px;
  1438. width:339px;
  1439. height:219px;
  1440. background:inherit;
  1441. background-color:rgba(242, 242, 242, 1);
  1442. border:none;
  1443. border-radius:6px;
  1444. -moz-box-shadow:none;
  1445. -webkit-box-shadow:none;
  1446. box-shadow:none;
  1447. }
  1448. #u203335 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:191px;
  1453. width:339px;
  1454. height:219px;
  1455. display:flex;
  1456. }
  1457. #u203335 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u203335_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u203336_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:91px;
  1476. height:150px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-left:0px;
  1481. border-top:0px;
  1482. border-right:0px;
  1483. border-radius:0px;
  1484. border-bottom-right-radius:0px;
  1485. border-bottom-left-radius:0px;
  1486. -moz-box-shadow:none;
  1487. -webkit-box-shadow:none;
  1488. box-shadow:none;
  1489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1490. font-weight:400;
  1491. font-style:normal;
  1492. font-size:12px;
  1493. color:#AAAAAA;
  1494. line-height:30px;
  1495. }
  1496. #u203336 {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:15px;
  1500. top:231px;
  1501. width:91px;
  1502. height:150px;
  1503. display:flex;
  1504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1505. font-weight:400;
  1506. font-style:normal;
  1507. font-size:12px;
  1508. color:#AAAAAA;
  1509. line-height:30px;
  1510. }
  1511. #u203336 .text {
  1512. position:absolute;
  1513. align-self:flex-start;
  1514. padding:0px 0px 0px 0px;
  1515. box-sizing:border-box;
  1516. width:100%;
  1517. }
  1518. #u203336_text {
  1519. border-width:0px;
  1520. white-space:nowrap;
  1521. text-transform:none;
  1522. }
  1523. #u203337_div {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:0px;
  1527. top:0px;
  1528. width:117px;
  1529. height:150px;
  1530. background:inherit;
  1531. background-color:rgba(255, 255, 255, 0);
  1532. border:none;
  1533. border-left:0px;
  1534. border-top:0px;
  1535. border-right:0px;
  1536. border-radius:0px;
  1537. border-bottom-right-radius:0px;
  1538. border-bottom-left-radius:0px;
  1539. -moz-box-shadow:none;
  1540. -webkit-box-shadow:none;
  1541. box-shadow:none;
  1542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1543. font-weight:400;
  1544. font-style:normal;
  1545. font-size:12px;
  1546. line-height:30px;
  1547. }
  1548. #u203337 {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:106px;
  1552. top:231px;
  1553. width:117px;
  1554. height:150px;
  1555. display:flex;
  1556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1557. font-weight:400;
  1558. font-style:normal;
  1559. font-size:12px;
  1560. line-height:30px;
  1561. }
  1562. #u203337 .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. #u203337_text {
  1570. border-width:0px;
  1571. white-space:nowrap;
  1572. text-transform:none;
  1573. }
  1574. #u203338_div {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:98px;
  1580. height:30px;
  1581. background:inherit;
  1582. background-color:rgba(255, 255, 255, 0);
  1583. border:none;
  1584. border-radius:0px;
  1585. -moz-box-shadow:none;
  1586. -webkit-box-shadow:none;
  1587. box-shadow:none;
  1588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1589. font-weight:400;
  1590. font-style:normal;
  1591. font-size:12px;
  1592. text-align:right;
  1593. line-height:30px;
  1594. }
  1595. #u203338 {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:221px;
  1599. top:380px;
  1600. width:98px;
  1601. height:30px;
  1602. display:flex;
  1603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1604. font-weight:400;
  1605. font-style:normal;
  1606. font-size:12px;
  1607. text-align:right;
  1608. line-height:30px;
  1609. }
  1610. #u203338 .text {
  1611. position:absolute;
  1612. align-self:flex-start;
  1613. padding:0px 0px 0px 0px;
  1614. box-sizing:border-box;
  1615. width:100%;
  1616. }
  1617. #u203338_text {
  1618. border-width:0px;
  1619. white-space:nowrap;
  1620. text-transform:none;
  1621. }
  1622. #u203339_div {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:0px;
  1626. top:0px;
  1627. width:339px;
  1628. height:30px;
  1629. background:inherit;
  1630. background-color:rgba(255, 255, 0, 0.2);
  1631. border:none;
  1632. border-radius:0px;
  1633. -moz-box-shadow:none;
  1634. -webkit-box-shadow:none;
  1635. box-shadow:none;
  1636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1637. font-weight:400;
  1638. font-style:normal;
  1639. font-size:12px;
  1640. color:#F59A23;
  1641. }
  1642. #u203339 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:190px;
  1647. width:339px;
  1648. height:30px;
  1649. display:flex;
  1650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1651. font-weight:400;
  1652. font-style:normal;
  1653. font-size:12px;
  1654. color:#F59A23;
  1655. }
  1656. #u203339 .text {
  1657. position:absolute;
  1658. align-self:center;
  1659. padding:2px 2px 2px 2px;
  1660. box-sizing:border-box;
  1661. width:100%;
  1662. }
  1663. #u203339_text {
  1664. border-width:0px;
  1665. word-wrap:break-word;
  1666. text-transform:none;
  1667. }
  1668. #u203340 {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:0px;
  1674. height:0px;
  1675. }
  1676. #u203341_div {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:0px;
  1680. top:0px;
  1681. width:339px;
  1682. height:230px;
  1683. background:inherit;
  1684. background-color:rgba(242, 242, 242, 1);
  1685. border:none;
  1686. border-radius:6px;
  1687. -moz-box-shadow:none;
  1688. -webkit-box-shadow:none;
  1689. box-shadow:none;
  1690. }
  1691. #u203341 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:420px;
  1696. width:339px;
  1697. height:230px;
  1698. display:flex;
  1699. }
  1700. #u203341 .text {
  1701. position:absolute;
  1702. align-self:center;
  1703. padding:2px 2px 2px 2px;
  1704. box-sizing:border-box;
  1705. width:100%;
  1706. }
  1707. #u203341_text {
  1708. border-width:0px;
  1709. word-wrap:break-word;
  1710. text-transform:none;
  1711. visibility:hidden;
  1712. }
  1713. #u203342_div {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:0px;
  1717. top:0px;
  1718. width:91px;
  1719. height:150px;
  1720. background:inherit;
  1721. background-color:rgba(255, 255, 255, 0);
  1722. border:none;
  1723. border-left:0px;
  1724. border-top:0px;
  1725. border-right:0px;
  1726. border-radius:0px;
  1727. border-bottom-right-radius:0px;
  1728. border-bottom-left-radius:0px;
  1729. -moz-box-shadow:none;
  1730. -webkit-box-shadow:none;
  1731. box-shadow:none;
  1732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1733. font-weight:400;
  1734. font-style:normal;
  1735. font-size:12px;
  1736. color:#AAAAAA;
  1737. line-height:30px;
  1738. }
  1739. #u203342 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:15px;
  1743. top:460px;
  1744. width:91px;
  1745. height:150px;
  1746. display:flex;
  1747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1748. font-weight:400;
  1749. font-style:normal;
  1750. font-size:12px;
  1751. color:#AAAAAA;
  1752. line-height:30px;
  1753. }
  1754. #u203342 .text {
  1755. position:absolute;
  1756. align-self:flex-start;
  1757. padding:0px 0px 0px 0px;
  1758. box-sizing:border-box;
  1759. width:100%;
  1760. }
  1761. #u203342_text {
  1762. border-width:0px;
  1763. white-space:nowrap;
  1764. text-transform:none;
  1765. }
  1766. #u203343_div {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:0px;
  1770. top:0px;
  1771. width:117px;
  1772. height:150px;
  1773. background:inherit;
  1774. background-color:rgba(255, 255, 255, 0);
  1775. border:none;
  1776. border-left:0px;
  1777. border-top:0px;
  1778. border-right:0px;
  1779. border-radius:0px;
  1780. border-bottom-right-radius:0px;
  1781. border-bottom-left-radius:0px;
  1782. -moz-box-shadow:none;
  1783. -webkit-box-shadow:none;
  1784. box-shadow:none;
  1785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:12px;
  1789. line-height:30px;
  1790. }
  1791. #u203343 {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:106px;
  1795. top:460px;
  1796. width:117px;
  1797. height:150px;
  1798. display:flex;
  1799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1800. font-weight:400;
  1801. font-style:normal;
  1802. font-size:12px;
  1803. line-height:30px;
  1804. }
  1805. #u203343 .text {
  1806. position:absolute;
  1807. align-self:flex-start;
  1808. padding:0px 0px 0px 0px;
  1809. box-sizing:border-box;
  1810. width:100%;
  1811. }
  1812. #u203343_text {
  1813. border-width:0px;
  1814. white-space:nowrap;
  1815. text-transform:none;
  1816. }
  1817. #u203344_div {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:103px;
  1823. height:30px;
  1824. background:inherit;
  1825. background-color:rgba(255, 255, 255, 0);
  1826. border:none;
  1827. border-radius:0px;
  1828. -moz-box-shadow:none;
  1829. -webkit-box-shadow:none;
  1830. box-shadow:none;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:12px;
  1835. text-align:right;
  1836. line-height:30px;
  1837. }
  1838. #u203344 {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:216px;
  1842. top:609px;
  1843. width:103px;
  1844. height:30px;
  1845. display:flex;
  1846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1847. font-weight:400;
  1848. font-style:normal;
  1849. font-size:12px;
  1850. text-align:right;
  1851. line-height:30px;
  1852. }
  1853. #u203344 .text {
  1854. position:absolute;
  1855. align-self:flex-start;
  1856. padding:0px 0px 0px 0px;
  1857. box-sizing:border-box;
  1858. width:100%;
  1859. }
  1860. #u203344_text {
  1861. border-width:0px;
  1862. white-space:nowrap;
  1863. text-transform:none;
  1864. }
  1865. #u203345_img {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:151px;
  1871. height:14px;
  1872. }
  1873. #u203345 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:175px;
  1877. top:601px;
  1878. width:151px;
  1879. height:14px;
  1880. display:flex;
  1881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:10px;
  1885. color:#F59A23;
  1886. text-align:right;
  1887. }
  1888. #u203345 .text {
  1889. position:absolute;
  1890. align-self:flex-start;
  1891. padding:0px 10px 0px 10px;
  1892. box-sizing:border-box;
  1893. width:100%;
  1894. }
  1895. #u203345_text {
  1896. border-width:0px;
  1897. white-space:nowrap;
  1898. text-transform:none;
  1899. }
  1900. #u203346_div {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:339px;
  1906. height:30px;
  1907. background:inherit;
  1908. background-color:rgba(255, 255, 0, 0.2);
  1909. border:none;
  1910. border-radius:0px;
  1911. -moz-box-shadow:none;
  1912. -webkit-box-shadow:none;
  1913. box-shadow:none;
  1914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:12px;
  1918. color:#F59A23;
  1919. }
  1920. #u203346 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:420px;
  1925. width:339px;
  1926. height:30px;
  1927. display:flex;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:12px;
  1932. color:#F59A23;
  1933. }
  1934. #u203346 .text {
  1935. position:absolute;
  1936. align-self:center;
  1937. padding:2px 2px 2px 2px;
  1938. box-sizing:border-box;
  1939. width:100%;
  1940. }
  1941. #u203346_text {
  1942. border-width:0px;
  1943. word-wrap:break-word;
  1944. text-transform:none;
  1945. }
  1946. #u203347_div {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:0px;
  1950. top:0px;
  1951. width:122px;
  1952. height:30px;
  1953. background:inherit;
  1954. background-color:rgba(255, 255, 255, 0);
  1955. border:none;
  1956. border-left:0px;
  1957. border-top:0px;
  1958. border-right:0px;
  1959. border-radius:0px;
  1960. border-bottom-right-radius:0px;
  1961. border-bottom-left-radius:0px;
  1962. -moz-box-shadow:none;
  1963. -webkit-box-shadow:none;
  1964. box-shadow:none;
  1965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1966. font-weight:400;
  1967. font-style:normal;
  1968. font-size:14px;
  1969. color:#FFFFFF;
  1970. line-height:30px;
  1971. }
  1972. #u203347 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:49px;
  1976. top:172px;
  1977. width:122px;
  1978. height:30px;
  1979. display:flex;
  1980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. font-size:14px;
  1984. color:#FFFFFF;
  1985. line-height:30px;
  1986. }
  1987. #u203347 .text {
  1988. position:absolute;
  1989. align-self:flex-start;
  1990. padding:0px 0px 0px 0px;
  1991. box-sizing:border-box;
  1992. width:100%;
  1993. }
  1994. #u203347_text {
  1995. border-width:0px;
  1996. white-space:nowrap;
  1997. text-transform:none;
  1998. }