styles.css 35 KB

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