styles.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  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. #u143692_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u143692 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u143692 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u143692_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u143693_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. #u143693 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u143693 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u143693_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u143694 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u143695_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. #u143695 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u143695 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u143695_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u143696 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u143697_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u143697 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u143697 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u143697_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u143698_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u143698 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u143698 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u143698_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u143699 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u143700_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u143700 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u143700 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u143700_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u143701_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u143701 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u143701 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u143701_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u143702_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u143702 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u143702 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u143702_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u143703_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u143703 {
  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. #u143703 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u143703_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u143704_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u143704 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u143704 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u143704_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u143705_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. #u143705 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u143705 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u143705_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u143706 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u143707_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u143707 {
  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. #u143707 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u143707_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u143708_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. #u143708 {
  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. #u143708 .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. #u143708_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u143709 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u143710_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u143710 {
  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. #u143710 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u143710_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u143711_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. #u143711 {
  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. #u143711 .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. #u143711_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u143712_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. #u143712 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u143712 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u143712_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u143713 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u143714_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u143714 {
  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. #u143714 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u143714_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u143715_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. #u143715 {
  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. #u143715 .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. #u143715_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u143716 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u143717_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u143717 {
  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. #u143717 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u143717_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u143718_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. #u143718 {
  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. #u143718 .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. #u143718_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u143719_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:44px;
  786. }
  787. #u143719 {
  788. border-width:0px;
  789. position:absolute;
  790. left:29px;
  791. top:24px;
  792. width:375px;
  793. height:44px;
  794. display:flex;
  795. }
  796. #u143719 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u143719_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u143720_div {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:65px;
  815. height:22px;
  816. background:inherit;
  817. background-color:rgba(255, 255, 255, 0);
  818. border:none;
  819. border-radius:0px;
  820. -moz-box-shadow:none;
  821. -webkit-box-shadow:none;
  822. box-shadow:none;
  823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  824. font-weight:400;
  825. font-style:normal;
  826. font-size:16px;
  827. color:#000000;
  828. }
  829. #u143720 {
  830. border-width:0px;
  831. position:absolute;
  832. left:184px;
  833. top:78px;
  834. width:65px;
  835. height:22px;
  836. display:flex;
  837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  838. font-weight:400;
  839. font-style:normal;
  840. font-size:16px;
  841. color:#000000;
  842. }
  843. #u143720 .text {
  844. position:absolute;
  845. align-self:flex-start;
  846. padding:0px 0px 0px 0px;
  847. box-sizing:border-box;
  848. width:100%;
  849. }
  850. #u143720_text {
  851. border-width:0px;
  852. white-space:nowrap;
  853. text-transform:none;
  854. }
  855. #u143721_div {
  856. border-width:0px;
  857. position:absolute;
  858. left:0px;
  859. top:0px;
  860. width:12px;
  861. height:12px;
  862. background:inherit;
  863. background-color:rgba(255, 255, 255, 0);
  864. box-sizing:border-box;
  865. border-width:2px;
  866. border-style:solid;
  867. border-color:rgba(51, 51, 51, 1);
  868. border-right:0px;
  869. border-bottom:0px;
  870. border-radius:0px;
  871. border-top-right-radius:0px;
  872. border-bottom-left-radius:0px;
  873. -moz-box-shadow:none;
  874. -webkit-box-shadow:none;
  875. box-shadow:none;
  876. }
  877. #u143721 {
  878. border-width:0px;
  879. position:absolute;
  880. left:46px;
  881. top:81px;
  882. width:12px;
  883. height:12px;
  884. display:flex;
  885. -webkit-transform:rotate(315deg);
  886. -moz-transform:rotate(315deg);
  887. -ms-transform:rotate(315deg);
  888. transform:rotate(315deg);
  889. }
  890. #u143721 .text {
  891. position:absolute;
  892. align-self:center;
  893. padding:2px 2px 2px 2px;
  894. box-sizing:border-box;
  895. width:100%;
  896. }
  897. #u143721_text {
  898. border-width:0px;
  899. word-wrap:break-word;
  900. text-transform:none;
  901. visibility:hidden;
  902. }
  903. #u143722_img {
  904. border-width:0px;
  905. position:absolute;
  906. left:0px;
  907. top:0px;
  908. width:23px;
  909. height:23px;
  910. }
  911. #u143722 {
  912. border-width:0px;
  913. position:absolute;
  914. left:73px;
  915. top:76px;
  916. width:23px;
  917. height:23px;
  918. display:flex;
  919. }
  920. #u143722 .text {
  921. position:absolute;
  922. align-self:center;
  923. padding:2px 2px 2px 2px;
  924. box-sizing:border-box;
  925. width:100%;
  926. }
  927. #u143722_text {
  928. border-width:0px;
  929. word-wrap:break-word;
  930. text-transform:none;
  931. visibility:hidden;
  932. }
  933. #u143723_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:375px;
  939. height:736px;
  940. background:inherit;
  941. background-color:rgba(242, 242, 242, 0.996078431372549);
  942. border:none;
  943. border-top:0px;
  944. border-radius:41px;
  945. border-top-left-radius:0px;
  946. border-top-right-radius:0px;
  947. -moz-box-shadow:none;
  948. -webkit-box-shadow:none;
  949. box-shadow:none;
  950. }
  951. #u143723 {
  952. border-width:0px;
  953. position:absolute;
  954. left:29px;
  955. top:106px;
  956. width:375px;
  957. height:736px;
  958. display:flex;
  959. }
  960. #u143723 .text {
  961. position:absolute;
  962. align-self:center;
  963. padding:2px 2px 2px 2px;
  964. box-sizing:border-box;
  965. width:100%;
  966. }
  967. #u143723_text {
  968. border-width:0px;
  969. word-wrap:break-word;
  970. text-transform:none;
  971. visibility:hidden;
  972. }
  973. #u143724 {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:0px;
  979. height:0px;
  980. }
  981. #u143725_div {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:375px;
  987. height:80px;
  988. background:inherit;
  989. background-color:rgba(51, 51, 51, 1);
  990. border:none;
  991. border-radius:0px;
  992. -moz-box-shadow:none;
  993. -webkit-box-shadow:none;
  994. box-shadow:none;
  995. }
  996. #u143725 {
  997. border-width:0px;
  998. position:absolute;
  999. left:29px;
  1000. top:106px;
  1001. width:375px;
  1002. height:80px;
  1003. display:flex;
  1004. }
  1005. #u143725 .text {
  1006. position:absolute;
  1007. align-self:center;
  1008. padding:2px 2px 2px 2px;
  1009. box-sizing:border-box;
  1010. width:100%;
  1011. }
  1012. #u143725_text {
  1013. border-width:0px;
  1014. word-wrap:break-word;
  1015. text-transform:none;
  1016. visibility:hidden;
  1017. }
  1018. #u143726 {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:0px;
  1024. height:0px;
  1025. }
  1026. #u143727_div {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:0px;
  1030. top:0px;
  1031. width:73px;
  1032. height:25px;
  1033. background:inherit;
  1034. background-color:rgba(255, 255, 255, 0);
  1035. border:none;
  1036. border-left:0px;
  1037. border-top:0px;
  1038. border-right:0px;
  1039. border-radius:0px;
  1040. border-bottom-right-radius:0px;
  1041. border-bottom-left-radius:0px;
  1042. -moz-box-shadow:none;
  1043. -webkit-box-shadow:none;
  1044. box-shadow:none;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:18px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u143727 {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:197px;
  1055. top:121px;
  1056. width:73px;
  1057. height:25px;
  1058. display:flex;
  1059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1060. font-weight:400;
  1061. font-style:normal;
  1062. font-size:18px;
  1063. color:#FFFFFF;
  1064. }
  1065. #u143727 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:0px 0px 0px 0px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u143727_text {
  1073. border-width:0px;
  1074. white-space:nowrap;
  1075. text-transform:none;
  1076. }
  1077. #u143728_img {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:0px;
  1081. top:0px;
  1082. width:24px;
  1083. height:22px;
  1084. }
  1085. #u143728 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:163px;
  1089. top:122px;
  1090. width:24px;
  1091. height:22px;
  1092. display:flex;
  1093. }
  1094. #u143728 .text {
  1095. position:absolute;
  1096. align-self:center;
  1097. padding:2px 2px 2px 2px;
  1098. box-sizing:border-box;
  1099. width:100%;
  1100. }
  1101. #u143728_text {
  1102. border-width:0px;
  1103. word-wrap:break-word;
  1104. text-transform:none;
  1105. visibility:hidden;
  1106. }
  1107. #u143729_div {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:325px;
  1113. height:17px;
  1114. background:inherit;
  1115. background-color:rgba(255, 255, 255, 0);
  1116. border:none;
  1117. border-left:0px;
  1118. border-top:0px;
  1119. border-right:0px;
  1120. border-radius:0px;
  1121. border-bottom-right-radius:0px;
  1122. border-bottom-left-radius:0px;
  1123. -moz-box-shadow:none;
  1124. -webkit-box-shadow:none;
  1125. box-shadow:none;
  1126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1127. font-weight:400;
  1128. font-style:normal;
  1129. font-size:12px;
  1130. color:#D7D7D7;
  1131. }
  1132. #u143729 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:54px;
  1136. top:160px;
  1137. width:325px;
  1138. height:17px;
  1139. display:flex;
  1140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1141. font-weight:400;
  1142. font-style:normal;
  1143. font-size:12px;
  1144. color:#D7D7D7;
  1145. }
  1146. #u143729 .text {
  1147. position:absolute;
  1148. align-self:center;
  1149. padding:0px 0px 0px 0px;
  1150. box-sizing:border-box;
  1151. width:100%;
  1152. }
  1153. #u143729_text {
  1154. border-width:0px;
  1155. white-space:nowrap;
  1156. text-transform:none;
  1157. }
  1158. #u143730 {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:0px;
  1162. top:0px;
  1163. width:0px;
  1164. height:0px;
  1165. }
  1166. #u143731_div {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:345px;
  1172. height:110px;
  1173. background:inherit;
  1174. background-color:rgba(255, 255, 255, 1);
  1175. border:none;
  1176. border-radius:9px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. }
  1181. #u143731 {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:44px;
  1185. top:203px;
  1186. width:345px;
  1187. height:110px;
  1188. display:flex;
  1189. }
  1190. #u143731 .text {
  1191. position:absolute;
  1192. align-self:center;
  1193. padding:2px 2px 2px 2px;
  1194. box-sizing:border-box;
  1195. width:100%;
  1196. }
  1197. #u143731_text {
  1198. border-width:0px;
  1199. word-wrap:break-word;
  1200. text-transform:none;
  1201. visibility:hidden;
  1202. }
  1203. #u143732_div {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:81px;
  1209. height:30px;
  1210. background:inherit;
  1211. background-color:rgba(255, 255, 255, 0);
  1212. border:none;
  1213. border-left:0px;
  1214. border-top:0px;
  1215. border-right:0px;
  1216. border-radius:0px;
  1217. border-bottom-right-radius:0px;
  1218. border-bottom-left-radius:0px;
  1219. -moz-box-shadow:none;
  1220. -webkit-box-shadow:none;
  1221. box-shadow:none;
  1222. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1223. font-weight:500;
  1224. font-style:normal;
  1225. font-size:18px;
  1226. line-height:30px;
  1227. }
  1228. #u143732 {
  1229. border-width:0px;
  1230. position:absolute;
  1231. left:67px;
  1232. top:218px;
  1233. width:81px;
  1234. height:30px;
  1235. display:flex;
  1236. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1237. font-weight:500;
  1238. font-style:normal;
  1239. font-size:18px;
  1240. line-height:30px;
  1241. }
  1242. #u143732 .text {
  1243. position:absolute;
  1244. align-self:flex-start;
  1245. padding:0px 0px 0px 0px;
  1246. box-sizing:border-box;
  1247. width:100%;
  1248. }
  1249. #u143732_text {
  1250. border-width:0px;
  1251. word-wrap:break-word;
  1252. text-transform:none;
  1253. }
  1254. #u143733_div {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:299px;
  1260. height:20px;
  1261. background:inherit;
  1262. background-color:rgba(255, 255, 255, 0);
  1263. border:none;
  1264. border-left:0px;
  1265. border-top:0px;
  1266. border-right:0px;
  1267. border-radius:0px;
  1268. border-bottom-right-radius:0px;
  1269. border-bottom-left-radius:0px;
  1270. -moz-box-shadow:none;
  1271. -webkit-box-shadow:none;
  1272. box-shadow:none;
  1273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1274. font-weight:400;
  1275. font-style:normal;
  1276. font-size:12px;
  1277. color:#AAAAAA;
  1278. line-height:20px;
  1279. }
  1280. #u143733 {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:67px;
  1284. top:253px;
  1285. width:299px;
  1286. height:20px;
  1287. display:flex;
  1288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1289. font-weight:400;
  1290. font-style:normal;
  1291. font-size:12px;
  1292. color:#AAAAAA;
  1293. line-height:20px;
  1294. }
  1295. #u143733 .text {
  1296. position:absolute;
  1297. align-self:flex-start;
  1298. padding:0px 0px 0px 0px;
  1299. box-sizing:border-box;
  1300. width:100%;
  1301. }
  1302. #u143733_text {
  1303. border-width:0px;
  1304. word-wrap:break-word;
  1305. text-transform:none;
  1306. }
  1307. #u143734_img {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:0px;
  1311. top:0px;
  1312. width:8px;
  1313. height:12px;
  1314. }
  1315. #u143734 {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:365px;
  1319. top:227px;
  1320. width:8px;
  1321. height:12px;
  1322. display:flex;
  1323. -webkit-transform:rotate(180deg);
  1324. -moz-transform:rotate(180deg);
  1325. -ms-transform:rotate(180deg);
  1326. transform:rotate(180deg);
  1327. }
  1328. #u143734 .text {
  1329. position:absolute;
  1330. align-self:center;
  1331. padding:2px 2px 2px 2px;
  1332. box-sizing:border-box;
  1333. width:100%;
  1334. }
  1335. #u143734_text {
  1336. border-width:0px;
  1337. word-wrap:break-word;
  1338. text-transform:none;
  1339. visibility:hidden;
  1340. }
  1341. #u143735 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:0px;
  1347. height:0px;
  1348. }
  1349. #u143736_div {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:0px;
  1353. top:0px;
  1354. width:345px;
  1355. height:110px;
  1356. background:inherit;
  1357. background-color:rgba(215, 215, 215, 1);
  1358. border:none;
  1359. border-radius:9px;
  1360. -moz-box-shadow:none;
  1361. -webkit-box-shadow:none;
  1362. box-shadow:none;
  1363. }
  1364. #u143736 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:44px;
  1368. top:443px;
  1369. width:345px;
  1370. height:110px;
  1371. display:flex;
  1372. }
  1373. #u143736 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u143736_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u143737_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:81px;
  1392. height:30px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-left:0px;
  1397. border-top:0px;
  1398. border-right:0px;
  1399. border-radius:0px;
  1400. border-bottom-right-radius:0px;
  1401. border-bottom-left-radius:0px;
  1402. -moz-box-shadow:none;
  1403. -webkit-box-shadow:none;
  1404. box-shadow:none;
  1405. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1406. font-weight:500;
  1407. font-style:normal;
  1408. font-size:18px;
  1409. line-height:30px;
  1410. }
  1411. #u143737 {
  1412. border-width:0px;
  1413. position:absolute;
  1414. left:67px;
  1415. top:458px;
  1416. width:81px;
  1417. height:30px;
  1418. display:flex;
  1419. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1420. font-weight:500;
  1421. font-style:normal;
  1422. font-size:18px;
  1423. line-height:30px;
  1424. }
  1425. #u143737 .text {
  1426. position:absolute;
  1427. align-self:flex-start;
  1428. padding:0px 0px 0px 0px;
  1429. box-sizing:border-box;
  1430. width:100%;
  1431. }
  1432. #u143737_text {
  1433. border-width:0px;
  1434. word-wrap:break-word;
  1435. text-transform:none;
  1436. }
  1437. #u143738_div {
  1438. border-width:0px;
  1439. position:absolute;
  1440. left:0px;
  1441. top:0px;
  1442. width:303px;
  1443. height:20px;
  1444. background:inherit;
  1445. background-color:rgba(255, 255, 255, 0);
  1446. border:none;
  1447. border-left:0px;
  1448. border-top:0px;
  1449. border-right:0px;
  1450. border-radius:0px;
  1451. border-bottom-right-radius:0px;
  1452. border-bottom-left-radius:0px;
  1453. -moz-box-shadow:none;
  1454. -webkit-box-shadow:none;
  1455. box-shadow:none;
  1456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1457. font-weight:400;
  1458. font-style:normal;
  1459. font-size:12px;
  1460. color:#AAAAAA;
  1461. line-height:20px;
  1462. }
  1463. #u143738 {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:67px;
  1467. top:493px;
  1468. width:303px;
  1469. height:20px;
  1470. display:flex;
  1471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1472. font-weight:400;
  1473. font-style:normal;
  1474. font-size:12px;
  1475. color:#AAAAAA;
  1476. line-height:20px;
  1477. }
  1478. #u143738 .text {
  1479. position:absolute;
  1480. align-self:flex-start;
  1481. padding:0px 0px 0px 0px;
  1482. box-sizing:border-box;
  1483. width:100%;
  1484. }
  1485. #u143738_text {
  1486. border-width:0px;
  1487. word-wrap:break-word;
  1488. text-transform:none;
  1489. }
  1490. #u143739_img {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:0px;
  1494. top:0px;
  1495. width:8px;
  1496. height:12px;
  1497. }
  1498. #u143739 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:362px;
  1502. top:467px;
  1503. width:8px;
  1504. height:12px;
  1505. display:flex;
  1506. -webkit-transform:rotate(180deg);
  1507. -moz-transform:rotate(180deg);
  1508. -ms-transform:rotate(180deg);
  1509. transform:rotate(180deg);
  1510. }
  1511. #u143739 .text {
  1512. position:absolute;
  1513. align-self:center;
  1514. padding:2px 2px 2px 2px;
  1515. box-sizing:border-box;
  1516. width:100%;
  1517. }
  1518. #u143739_text {
  1519. border-width:0px;
  1520. word-wrap:break-word;
  1521. text-transform:none;
  1522. visibility:hidden;
  1523. }
  1524. #u143740 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:0px;
  1530. height:0px;
  1531. }
  1532. #u143741_div {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:237px;
  1538. height:50px;
  1539. background:inherit;
  1540. background-color:rgba(245, 154, 35, 1);
  1541. border:none;
  1542. border-radius:9px;
  1543. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1544. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1545. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1546. }
  1547. #u143741 {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:92px;
  1551. top:575px;
  1552. width:237px;
  1553. height:50px;
  1554. display:flex;
  1555. }
  1556. #u143741 .text {
  1557. position:absolute;
  1558. align-self:center;
  1559. padding:2px 2px 2px 2px;
  1560. box-sizing:border-box;
  1561. width:100%;
  1562. }
  1563. #u143741_text {
  1564. border-width:0px;
  1565. word-wrap:break-word;
  1566. text-transform:none;
  1567. visibility:hidden;
  1568. }
  1569. #u143742_div {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:0px;
  1573. top:0px;
  1574. width:181px;
  1575. height:30px;
  1576. background:inherit;
  1577. background-color:rgba(255, 255, 255, 0);
  1578. border:none;
  1579. border-left:0px;
  1580. border-top:0px;
  1581. border-right:0px;
  1582. border-radius:0px;
  1583. border-bottom-right-radius:0px;
  1584. border-bottom-left-radius:0px;
  1585. -moz-box-shadow:none;
  1586. -webkit-box-shadow:none;
  1587. box-shadow:none;
  1588. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1589. font-weight:500;
  1590. font-style:normal;
  1591. font-size:18px;
  1592. color:#FFFFFF;
  1593. line-height:30px;
  1594. }
  1595. #u143742 {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:134px;
  1599. top:585px;
  1600. width:181px;
  1601. height:30px;
  1602. display:flex;
  1603. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1604. font-weight:500;
  1605. font-style:normal;
  1606. font-size:18px;
  1607. color:#FFFFFF;
  1608. line-height:30px;
  1609. }
  1610. #u143742 .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. #u143742_text {
  1618. border-width:0px;
  1619. white-space:nowrap;
  1620. text-transform:none;
  1621. }
  1622. #u143743_img {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:0px;
  1626. top:0px;
  1627. width:20px;
  1628. height:20px;
  1629. }
  1630. #u143743 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:109px;
  1634. top:590px;
  1635. width:20px;
  1636. height:20px;
  1637. display:flex;
  1638. }
  1639. #u143743 .text {
  1640. position:absolute;
  1641. align-self:center;
  1642. padding:2px 2px 2px 2px;
  1643. box-sizing:border-box;
  1644. width:100%;
  1645. }
  1646. #u143743_text {
  1647. border-width:0px;
  1648. word-wrap:break-word;
  1649. text-transform:none;
  1650. visibility:hidden;
  1651. }
  1652. #u143744_div {
  1653. border-width:0px;
  1654. position:absolute;
  1655. left:0px;
  1656. top:0px;
  1657. width:318px;
  1658. height:150px;
  1659. background:inherit;
  1660. background-color:rgba(255, 255, 255, 0);
  1661. border:none;
  1662. border-left:0px;
  1663. border-top:0px;
  1664. border-right:0px;
  1665. border-radius:0px;
  1666. border-bottom-right-radius:0px;
  1667. border-bottom-left-radius:0px;
  1668. -moz-box-shadow:none;
  1669. -webkit-box-shadow:none;
  1670. box-shadow:none;
  1671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. font-size:12px;
  1675. color:#D9001B;
  1676. line-height:30px;
  1677. }
  1678. #u143744 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:52px;
  1682. top:671px;
  1683. width:318px;
  1684. height:150px;
  1685. display:flex;
  1686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1687. font-weight:400;
  1688. font-style:normal;
  1689. font-size:12px;
  1690. color:#D9001B;
  1691. line-height:30px;
  1692. }
  1693. #u143744 .text {
  1694. position:absolute;
  1695. align-self:flex-start;
  1696. padding:0px 0px 0px 0px;
  1697. box-sizing:border-box;
  1698. width:100%;
  1699. }
  1700. #u143744_text {
  1701. border-width:0px;
  1702. word-wrap:break-word;
  1703. text-transform:none;
  1704. }
  1705. #u143745 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:0px;
  1709. top:0px;
  1710. width:0px;
  1711. height:0px;
  1712. }
  1713. #u143746_div {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:0px;
  1717. top:0px;
  1718. width:345px;
  1719. height:110px;
  1720. background:inherit;
  1721. background-color:rgba(255, 255, 255, 1);
  1722. border:none;
  1723. border-radius:9px;
  1724. -moz-box-shadow:none;
  1725. -webkit-box-shadow:none;
  1726. box-shadow:none;
  1727. }
  1728. #u143746 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:44px;
  1732. top:323px;
  1733. width:345px;
  1734. height:110px;
  1735. display:flex;
  1736. }
  1737. #u143746 .text {
  1738. position:absolute;
  1739. align-self:center;
  1740. padding:2px 2px 2px 2px;
  1741. box-sizing:border-box;
  1742. width:100%;
  1743. }
  1744. #u143746_text {
  1745. border-width:0px;
  1746. word-wrap:break-word;
  1747. text-transform:none;
  1748. visibility:hidden;
  1749. }
  1750. #u143747_div {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:109px;
  1756. height:30px;
  1757. background:inherit;
  1758. background-color:rgba(255, 255, 255, 0);
  1759. border:none;
  1760. border-left:0px;
  1761. border-top:0px;
  1762. border-right:0px;
  1763. border-radius:0px;
  1764. border-bottom-right-radius:0px;
  1765. border-bottom-left-radius:0px;
  1766. -moz-box-shadow:none;
  1767. -webkit-box-shadow:none;
  1768. box-shadow:none;
  1769. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1770. font-weight:500;
  1771. font-style:normal;
  1772. font-size:18px;
  1773. line-height:30px;
  1774. }
  1775. #u143747 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:67px;
  1779. top:338px;
  1780. width:109px;
  1781. height:30px;
  1782. display:flex;
  1783. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1784. font-weight:500;
  1785. font-style:normal;
  1786. font-size:18px;
  1787. line-height:30px;
  1788. }
  1789. #u143747 .text {
  1790. position:absolute;
  1791. align-self:flex-start;
  1792. padding:0px 0px 0px 0px;
  1793. box-sizing:border-box;
  1794. width:100%;
  1795. }
  1796. #u143747_text {
  1797. border-width:0px;
  1798. white-space:nowrap;
  1799. text-transform:none;
  1800. }
  1801. #u143748_div {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:0px;
  1805. top:0px;
  1806. width:299px;
  1807. height:20px;
  1808. background:inherit;
  1809. background-color:rgba(255, 255, 255, 0);
  1810. border:none;
  1811. border-left:0px;
  1812. border-top:0px;
  1813. border-right:0px;
  1814. border-radius:0px;
  1815. border-bottom-right-radius:0px;
  1816. border-bottom-left-radius:0px;
  1817. -moz-box-shadow:none;
  1818. -webkit-box-shadow:none;
  1819. box-shadow:none;
  1820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:12px;
  1824. color:#AAAAAA;
  1825. line-height:20px;
  1826. }
  1827. #u143748 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:67px;
  1831. top:373px;
  1832. width:299px;
  1833. height:20px;
  1834. display:flex;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:12px;
  1839. color:#AAAAAA;
  1840. line-height:20px;
  1841. }
  1842. #u143748 .text {
  1843. position:absolute;
  1844. align-self:flex-start;
  1845. padding:0px 0px 0px 0px;
  1846. box-sizing:border-box;
  1847. width:100%;
  1848. }
  1849. #u143748_text {
  1850. border-width:0px;
  1851. word-wrap:break-word;
  1852. text-transform:none;
  1853. }
  1854. #u143749_img {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:8px;
  1860. height:12px;
  1861. }
  1862. #u143749 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:365px;
  1866. top:347px;
  1867. width:8px;
  1868. height:12px;
  1869. display:flex;
  1870. -webkit-transform:rotate(180deg);
  1871. -moz-transform:rotate(180deg);
  1872. -ms-transform:rotate(180deg);
  1873. transform:rotate(180deg);
  1874. }
  1875. #u143749 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:2px 2px 2px 2px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u143749_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. visibility:hidden;
  1887. }