styles.css 34 KB

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