styles.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869
  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. #u136820 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u136822_img {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. }
  35. #u136822 {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:433px;
  41. height:865px;
  42. display:flex;
  43. }
  44. #u136822 .text {
  45. position:absolute;
  46. align-self:center;
  47. padding:2px 2px 2px 2px;
  48. box-sizing:border-box;
  49. width:100%;
  50. }
  51. #u136822_text {
  52. border-width:0px;
  53. word-wrap:break-word;
  54. text-transform:none;
  55. visibility:hidden;
  56. }
  57. #u136823_div {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:375px;
  63. height:40px;
  64. background:inherit;
  65. background-color:rgba(255, 255, 255, 1);
  66. box-sizing:border-box;
  67. border-width:1px;
  68. border-style:solid;
  69. border-color:rgba(215, 215, 215, 1);
  70. border-left:0px;
  71. border-top:0px;
  72. border-right:0px;
  73. border-radius:0px;
  74. border-bottom-right-radius:0px;
  75. border-bottom-left-radius:0px;
  76. -moz-box-shadow:none;
  77. -webkit-box-shadow:none;
  78. box-shadow:none;
  79. }
  80. #u136823 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. }
  89. #u136823 .text {
  90. position:absolute;
  91. align-self:center;
  92. padding:2px 2px 2px 2px;
  93. box-sizing:border-box;
  94. width:100%;
  95. }
  96. #u136823_text {
  97. border-width:0px;
  98. word-wrap:break-word;
  99. text-transform:none;
  100. visibility:hidden;
  101. }
  102. #u136824 {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:0px;
  108. height:0px;
  109. }
  110. #u136825_div {
  111. border-width:0px;
  112. position:absolute;
  113. left:0px;
  114. top:0px;
  115. width:88px;
  116. height:32px;
  117. background:inherit;
  118. background-color:rgba(255, 255, 255, 1);
  119. box-sizing:border-box;
  120. border-width:1px;
  121. border-style:solid;
  122. border-color:rgba(242, 242, 242, 1);
  123. border-radius:33px;
  124. -moz-box-shadow:none;
  125. -webkit-box-shadow:none;
  126. box-shadow:none;
  127. }
  128. #u136825 {
  129. border-width:0px;
  130. position:absolute;
  131. left:309px;
  132. top:71px;
  133. width:88px;
  134. height:32px;
  135. display:flex;
  136. }
  137. #u136825 .text {
  138. position:absolute;
  139. align-self:center;
  140. padding:2px 2px 2px 2px;
  141. box-sizing:border-box;
  142. width:100%;
  143. }
  144. #u136825_text {
  145. border-width:0px;
  146. word-wrap:break-word;
  147. text-transform:none;
  148. visibility:hidden;
  149. }
  150. #u136826 {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:0px;
  156. height:0px;
  157. }
  158. #u136827_img {
  159. border-width:0px;
  160. position:absolute;
  161. left:0px;
  162. top:0px;
  163. width:18px;
  164. height:18px;
  165. }
  166. #u136827 {
  167. border-width:0px;
  168. position:absolute;
  169. left:372px;
  170. top:78px;
  171. width:18px;
  172. height:18px;
  173. display:flex;
  174. }
  175. #u136827 .text {
  176. position:absolute;
  177. align-self:center;
  178. padding:2px 2px 2px 2px;
  179. box-sizing:border-box;
  180. width:100%;
  181. }
  182. #u136827_text {
  183. border-width:0px;
  184. word-wrap:break-word;
  185. text-transform:none;
  186. visibility:hidden;
  187. }
  188. #u136828_img {
  189. border-width:0px;
  190. position:absolute;
  191. left:0px;
  192. top:0px;
  193. width:6px;
  194. height:6px;
  195. }
  196. #u136828 {
  197. border-width:0px;
  198. position:absolute;
  199. left:378px;
  200. top:84px;
  201. width:6px;
  202. height:6px;
  203. display:flex;
  204. }
  205. #u136828 .text {
  206. position:absolute;
  207. align-self:center;
  208. padding:2px 2px 2px 2px;
  209. box-sizing:border-box;
  210. width:100%;
  211. }
  212. #u136828_text {
  213. border-width:0px;
  214. word-wrap:break-word;
  215. text-transform:none;
  216. visibility:hidden;
  217. }
  218. #u136829 {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:0px;
  224. height:0px;
  225. }
  226. #u136830_img {
  227. border-width:0px;
  228. position:absolute;
  229. left:0px;
  230. top:0px;
  231. width:5px;
  232. height:5px;
  233. }
  234. #u136830 {
  235. border-width:0px;
  236. position:absolute;
  237. left:323px;
  238. top:85px;
  239. width:5px;
  240. height:5px;
  241. display:flex;
  242. }
  243. #u136830 .text {
  244. position:absolute;
  245. align-self:center;
  246. padding:2px 2px 2px 2px;
  247. box-sizing:border-box;
  248. width:100%;
  249. }
  250. #u136830_text {
  251. border-width:0px;
  252. word-wrap:break-word;
  253. text-transform:none;
  254. visibility:hidden;
  255. }
  256. #u136831_img {
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:5px;
  262. height:5px;
  263. }
  264. #u136831 {
  265. border-width:0px;
  266. position:absolute;
  267. left:339px;
  268. top:85px;
  269. width:5px;
  270. height:5px;
  271. display:flex;
  272. }
  273. #u136831 .text {
  274. position:absolute;
  275. align-self:center;
  276. padding:2px 2px 2px 2px;
  277. box-sizing:border-box;
  278. width:100%;
  279. }
  280. #u136831_text {
  281. border-width:0px;
  282. word-wrap:break-word;
  283. text-transform:none;
  284. visibility:hidden;
  285. }
  286. #u136832_img {
  287. border-width:0px;
  288. position:absolute;
  289. left:0px;
  290. top:0px;
  291. width:7px;
  292. height:7px;
  293. }
  294. #u136832 {
  295. border-width:0px;
  296. position:absolute;
  297. left:330px;
  298. top:84px;
  299. width:7px;
  300. height:7px;
  301. display:flex;
  302. }
  303. #u136832 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u136832_text {
  311. border-width:0px;
  312. word-wrap:break-word;
  313. text-transform:none;
  314. visibility:hidden;
  315. }
  316. #u136833_img {
  317. border-width:0px;
  318. position:absolute;
  319. left:0px;
  320. top:0px;
  321. width:19px;
  322. height:2px;
  323. }
  324. #u136833 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. }
  337. #u136833 .text {
  338. position:absolute;
  339. align-self:center;
  340. padding:2px 2px 2px 2px;
  341. box-sizing:border-box;
  342. width:100%;
  343. }
  344. #u136833_text {
  345. border-width:0px;
  346. word-wrap:break-word;
  347. text-transform:none;
  348. visibility:hidden;
  349. }
  350. #u136834_img {
  351. border-width:0px;
  352. position:absolute;
  353. left:0px;
  354. top:0px;
  355. width:375px;
  356. height:44px;
  357. }
  358. #u136834 {
  359. border-width:0px;
  360. position:absolute;
  361. left:29px;
  362. top:24px;
  363. width:375px;
  364. height:44px;
  365. display:flex;
  366. }
  367. #u136834 .text {
  368. position:absolute;
  369. align-self:center;
  370. padding:2px 2px 2px 2px;
  371. box-sizing:border-box;
  372. width:100%;
  373. }
  374. #u136834_text {
  375. border-width:0px;
  376. word-wrap:break-word;
  377. text-transform:none;
  378. visibility:hidden;
  379. }
  380. #u136835_div {
  381. border-width:0px;
  382. position:absolute;
  383. left:0px;
  384. top:0px;
  385. width:375px;
  386. height:50px;
  387. background:inherit;
  388. background-color:rgba(255, 255, 255, 1);
  389. box-sizing:border-box;
  390. border-width:1px;
  391. border-style:solid;
  392. border-color:rgba(242, 242, 242, 1);
  393. border-radius:26px;
  394. border-top-left-radius:0px;
  395. border-top-right-radius:0px;
  396. -moz-box-shadow:none;
  397. -webkit-box-shadow:none;
  398. box-shadow:none;
  399. }
  400. #u136835 {
  401. border-width:0px;
  402. position:absolute;
  403. left:29px;
  404. top:788px;
  405. width:375px;
  406. height:50px;
  407. display:flex;
  408. }
  409. #u136835 .text {
  410. position:absolute;
  411. align-self:center;
  412. padding:2px 2px 2px 2px;
  413. box-sizing:border-box;
  414. width:100%;
  415. }
  416. #u136835_text {
  417. border-width:0px;
  418. word-wrap:break-word;
  419. text-transform:none;
  420. visibility:hidden;
  421. }
  422. #u136836 {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:0px;
  428. height:0px;
  429. }
  430. #u136837_img {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:24px;
  436. height:24px;
  437. }
  438. #u136837 {
  439. border-width:0px;
  440. position:absolute;
  441. left:69px;
  442. top:792px;
  443. width:24px;
  444. height:24px;
  445. display:flex;
  446. font-size:8px;
  447. }
  448. #u136837 .text {
  449. position:absolute;
  450. align-self:center;
  451. padding:2px 2px 2px 2px;
  452. box-sizing:border-box;
  453. width:100%;
  454. }
  455. #u136837_text {
  456. border-width:0px;
  457. word-wrap:break-word;
  458. text-transform:none;
  459. }
  460. #u136838_div {
  461. border-width:0px;
  462. position:absolute;
  463. left:0px;
  464. top:0px;
  465. width:25px;
  466. height:17px;
  467. background:inherit;
  468. background-color:rgba(255, 255, 255, 0);
  469. border:none;
  470. border-radius:0px;
  471. -moz-box-shadow:none;
  472. -webkit-box-shadow:none;
  473. box-shadow:none;
  474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  475. font-weight:400;
  476. font-style:normal;
  477. font-size:12px;
  478. }
  479. #u136838 {
  480. border-width:0px;
  481. position:absolute;
  482. left:69px;
  483. top:817px;
  484. width:25px;
  485. height:17px;
  486. display:flex;
  487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  488. font-weight:400;
  489. font-style:normal;
  490. font-size:12px;
  491. }
  492. #u136838 .text {
  493. position:absolute;
  494. align-self:flex-start;
  495. padding:0px 0px 0px 0px;
  496. box-sizing:border-box;
  497. width:100%;
  498. }
  499. #u136838_text {
  500. border-width:0px;
  501. white-space:nowrap;
  502. text-transform:none;
  503. }
  504. #u136839 {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:0px;
  510. height:0px;
  511. }
  512. #u136840_img {
  513. border-width:0px;
  514. position:absolute;
  515. left:0px;
  516. top:0px;
  517. width:24px;
  518. height:24px;
  519. }
  520. #u136840 {
  521. border-width:0px;
  522. position:absolute;
  523. left:339px;
  524. top:794px;
  525. width:24px;
  526. height:24px;
  527. display:flex;
  528. font-size:8px;
  529. }
  530. #u136840 .text {
  531. position:absolute;
  532. align-self:center;
  533. padding:2px 2px 2px 2px;
  534. box-sizing:border-box;
  535. width:100%;
  536. }
  537. #u136840_text {
  538. border-width:0px;
  539. word-wrap:break-word;
  540. text-transform:none;
  541. }
  542. #u136841_div {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:25px;
  548. height:17px;
  549. background:inherit;
  550. background-color:rgba(255, 255, 255, 0);
  551. border:none;
  552. border-radius:0px;
  553. -moz-box-shadow:none;
  554. -webkit-box-shadow:none;
  555. box-shadow:none;
  556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  557. font-weight:400;
  558. font-style:normal;
  559. font-size:12px;
  560. }
  561. #u136841 {
  562. border-width:0px;
  563. position:absolute;
  564. left:339px;
  565. top:819px;
  566. width:25px;
  567. height:17px;
  568. display:flex;
  569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  570. font-weight:400;
  571. font-style:normal;
  572. font-size:12px;
  573. }
  574. #u136841 .text {
  575. position:absolute;
  576. align-self:flex-start;
  577. padding:0px 0px 0px 0px;
  578. box-sizing:border-box;
  579. width:100%;
  580. }
  581. #u136841_text {
  582. border-width:0px;
  583. white-space:nowrap;
  584. text-transform:none;
  585. }
  586. #u136842_div {
  587. border-width:0px;
  588. position:absolute;
  589. left:0px;
  590. top:0px;
  591. width:375px;
  592. height:681px;
  593. background:inherit;
  594. background-color:rgba(242, 242, 242, 0.462745098039216);
  595. border:none;
  596. border-radius:0px;
  597. -moz-box-shadow:none;
  598. -webkit-box-shadow:none;
  599. box-shadow:none;
  600. }
  601. #u136842 {
  602. border-width:0px;
  603. position:absolute;
  604. left:29px;
  605. top:107px;
  606. width:375px;
  607. height:681px;
  608. display:flex;
  609. }
  610. #u136842 .text {
  611. position:absolute;
  612. align-self:center;
  613. padding:2px 2px 2px 2px;
  614. box-sizing:border-box;
  615. width:100%;
  616. }
  617. #u136842_text {
  618. border-width:0px;
  619. word-wrap:break-word;
  620. text-transform:none;
  621. visibility:hidden;
  622. }
  623. #u136843 {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:0px;
  629. height:0px;
  630. }
  631. #u136844_img {
  632. border-width:0px;
  633. position:absolute;
  634. left:0px;
  635. top:0px;
  636. width:24px;
  637. height:24px;
  638. }
  639. #u136844 {
  640. border-width:0px;
  641. position:absolute;
  642. left:251px;
  643. top:792px;
  644. width:24px;
  645. height:24px;
  646. display:flex;
  647. font-size:8px;
  648. }
  649. #u136844 .text {
  650. position:absolute;
  651. align-self:center;
  652. padding:2px 2px 2px 2px;
  653. box-sizing:border-box;
  654. width:100%;
  655. }
  656. #u136844_text {
  657. border-width:0px;
  658. word-wrap:break-word;
  659. text-transform:none;
  660. }
  661. #u136845_div {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:37px;
  667. height:17px;
  668. background:inherit;
  669. background-color:rgba(255, 255, 255, 0);
  670. border:none;
  671. border-radius:0px;
  672. -moz-box-shadow:none;
  673. -webkit-box-shadow:none;
  674. box-shadow:none;
  675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  676. font-weight:400;
  677. font-style:normal;
  678. font-size:12px;
  679. }
  680. #u136845 {
  681. border-width:0px;
  682. position:absolute;
  683. left:245px;
  684. top:817px;
  685. width:37px;
  686. height:17px;
  687. display:flex;
  688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  689. font-weight:400;
  690. font-style:normal;
  691. font-size:12px;
  692. }
  693. #u136845 .text {
  694. position:absolute;
  695. align-self:flex-start;
  696. padding:0px 0px 0px 0px;
  697. box-sizing:border-box;
  698. width:100%;
  699. }
  700. #u136845_text {
  701. border-width:0px;
  702. white-space:nowrap;
  703. text-transform:none;
  704. }
  705. #u136846 {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:0px;
  711. height:0px;
  712. }
  713. #u136847_img {
  714. border-width:0px;
  715. position:absolute;
  716. left:0px;
  717. top:0px;
  718. width:24px;
  719. height:24px;
  720. }
  721. #u136847 {
  722. border-width:0px;
  723. position:absolute;
  724. left:157px;
  725. top:792px;
  726. width:24px;
  727. height:24px;
  728. display:flex;
  729. font-size:8px;
  730. }
  731. #u136847 .text {
  732. position:absolute;
  733. align-self:center;
  734. padding:2px 2px 2px 2px;
  735. box-sizing:border-box;
  736. width:100%;
  737. }
  738. #u136847_text {
  739. border-width:0px;
  740. word-wrap:break-word;
  741. text-transform:none;
  742. }
  743. #u136848_div {
  744. border-width:0px;
  745. position:absolute;
  746. left:0px;
  747. top:0px;
  748. width:37px;
  749. height:17px;
  750. background:inherit;
  751. background-color:rgba(255, 255, 255, 0);
  752. border:none;
  753. border-radius:0px;
  754. -moz-box-shadow:none;
  755. -webkit-box-shadow:none;
  756. box-shadow:none;
  757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  758. font-weight:400;
  759. font-style:normal;
  760. font-size:12px;
  761. }
  762. #u136848 {
  763. border-width:0px;
  764. position:absolute;
  765. left:151px;
  766. top:817px;
  767. width:37px;
  768. height:17px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u136848 .text {
  776. position:absolute;
  777. align-self:flex-start;
  778. padding:0px 0px 0px 0px;
  779. box-sizing:border-box;
  780. width:100%;
  781. }
  782. #u136848_text {
  783. border-width:0px;
  784. white-space:nowrap;
  785. text-transform:none;
  786. }
  787. #u136849_div {
  788. border-width:0px;
  789. position:absolute;
  790. left:0px;
  791. top:0px;
  792. width:375px;
  793. height:735px;
  794. background:inherit;
  795. background-color:rgba(242, 242, 242, 1);
  796. border:none;
  797. border-top:0px;
  798. border-radius:25px;
  799. border-top-left-radius:0px;
  800. border-top-right-radius:0px;
  801. -moz-box-shadow:none;
  802. -webkit-box-shadow:none;
  803. box-shadow:none;
  804. }
  805. #u136849 {
  806. border-width:0px;
  807. position:absolute;
  808. left:29px;
  809. top:105px;
  810. width:375px;
  811. height:735px;
  812. display:flex;
  813. }
  814. #u136849 .text {
  815. position:absolute;
  816. align-self:center;
  817. padding:2px 2px 2px 2px;
  818. box-sizing:border-box;
  819. width:100%;
  820. }
  821. #u136849_text {
  822. border-width:0px;
  823. word-wrap:break-word;
  824. text-transform:none;
  825. visibility:hidden;
  826. }
  827. #u136850_div {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:71px;
  833. height:30px;
  834. background:inherit;
  835. background-color:rgba(255, 255, 255, 0);
  836. border:none;
  837. border-left:0px;
  838. border-top:0px;
  839. border-right:0px;
  840. border-radius:0px;
  841. border-bottom-right-radius:0px;
  842. border-bottom-left-radius:0px;
  843. -moz-box-shadow:none;
  844. -webkit-box-shadow:none;
  845. box-shadow:none;
  846. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  847. font-weight:500;
  848. font-style:normal;
  849. font-size:14px;
  850. line-height:30px;
  851. }
  852. #u136850 {
  853. border-width:0px;
  854. position:absolute;
  855. left:186px;
  856. top:73px;
  857. width:71px;
  858. height:30px;
  859. display:flex;
  860. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  861. font-weight:500;
  862. font-style:normal;
  863. font-size:14px;
  864. line-height:30px;
  865. }
  866. #u136850 .text {
  867. position:absolute;
  868. align-self:flex-start;
  869. padding:0px 0px 0px 0px;
  870. box-sizing:border-box;
  871. width:100%;
  872. }
  873. #u136850_text {
  874. border-width:0px;
  875. white-space:nowrap;
  876. text-transform:none;
  877. }
  878. #u136851 {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:0px;
  884. height:0px;
  885. }
  886. #u136852_img {
  887. border-width:0px;
  888. position:absolute;
  889. left:0px;
  890. top:0px;
  891. width:11px;
  892. height:18px;
  893. }
  894. #u136852 {
  895. border-width:0px;
  896. position:absolute;
  897. left:42px;
  898. top:79px;
  899. width:11px;
  900. height:18px;
  901. display:flex;
  902. }
  903. #u136852 .text {
  904. position:absolute;
  905. align-self:center;
  906. padding:2px 2px 2px 2px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u136852_text {
  911. border-width:0px;
  912. word-wrap:break-word;
  913. text-transform:none;
  914. visibility:hidden;
  915. }
  916. #u136853_div {
  917. border-width:0px;
  918. position:absolute;
  919. left:0px;
  920. top:0px;
  921. width:375px;
  922. height:81px;
  923. background:inherit;
  924. background-color:rgba(255, 255, 255, 1);
  925. border:none;
  926. border-left:0px;
  927. border-top:0px;
  928. border-right:0px;
  929. border-radius:0px;
  930. border-bottom-right-radius:0px;
  931. border-bottom-left-radius:0px;
  932. -moz-box-shadow:none;
  933. -webkit-box-shadow:none;
  934. box-shadow:none;
  935. }
  936. #u136853 {
  937. border-width:0px;
  938. position:absolute;
  939. left:29px;
  940. top:105px;
  941. width:375px;
  942. height:81px;
  943. display:flex;
  944. }
  945. #u136853 .text {
  946. position:absolute;
  947. align-self:center;
  948. padding:2px 2px 2px 2px;
  949. box-sizing:border-box;
  950. width:100%;
  951. }
  952. #u136853_text {
  953. border-width:0px;
  954. word-wrap:break-word;
  955. text-transform:none;
  956. visibility:hidden;
  957. }
  958. #u136854_input {
  959. position:absolute;
  960. left:0px;
  961. top:0px;
  962. width:185px;
  963. height:25px;
  964. padding:2px 2px 2px 2px;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:14px;
  969. letter-spacing:normal;
  970. color:#333333;
  971. vertical-align:none;
  972. text-align:left;
  973. text-transform:none;
  974. background-color:transparent;
  975. border-color:transparent;
  976. }
  977. #u136854_input.disabled {
  978. position:absolute;
  979. left:0px;
  980. top:0px;
  981. width:185px;
  982. height:25px;
  983. padding:2px 2px 2px 2px;
  984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  985. font-weight:400;
  986. font-style:normal;
  987. font-size:14px;
  988. letter-spacing:normal;
  989. color:#333333;
  990. vertical-align:none;
  991. text-align:left;
  992. text-transform:none;
  993. background-color:transparent;
  994. border-color:transparent;
  995. }
  996. #u136854_div {
  997. border-width:0px;
  998. position:absolute;
  999. left:0px;
  1000. top:0px;
  1001. width:185px;
  1002. height:25px;
  1003. background:inherit;
  1004. background-color:rgba(255, 255, 255, 1);
  1005. border:none;
  1006. border-radius:0px;
  1007. -moz-box-shadow:none;
  1008. -webkit-box-shadow:none;
  1009. box-shadow:none;
  1010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1011. font-weight:400;
  1012. font-style:normal;
  1013. font-size:14px;
  1014. color:#333333;
  1015. }
  1016. #u136854 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:42px;
  1020. top:145px;
  1021. width:185px;
  1022. height:25px;
  1023. display:flex;
  1024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:14px;
  1028. color:#333333;
  1029. }
  1030. #u136854 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u136854_div.disabled {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:185px;
  1043. height:25px;
  1044. background:inherit;
  1045. background-color:rgba(240, 240, 240, 1);
  1046. border:none;
  1047. border-radius:0px;
  1048. -moz-box-shadow:none;
  1049. -webkit-box-shadow:none;
  1050. box-shadow:none;
  1051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1052. font-weight:400;
  1053. font-style:normal;
  1054. font-size:14px;
  1055. color:#333333;
  1056. }
  1057. #u136854.disabled {
  1058. }
  1059. #u136855 {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:0px;
  1063. top:0px;
  1064. width:0px;
  1065. height:0px;
  1066. }
  1067. #u136856_div {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:0px;
  1071. top:0px;
  1072. width:375px;
  1073. height:110px;
  1074. background:inherit;
  1075. background-color:rgba(255, 255, 255, 1);
  1076. border:none;
  1077. border-left:0px;
  1078. border-top:0px;
  1079. border-right:0px;
  1080. border-radius:0px;
  1081. border-bottom-right-radius:0px;
  1082. border-bottom-left-radius:0px;
  1083. -moz-box-shadow:none;
  1084. -webkit-box-shadow:none;
  1085. box-shadow:none;
  1086. }
  1087. #u136856 {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:29px;
  1091. top:219px;
  1092. width:375px;
  1093. height:110px;
  1094. display:flex;
  1095. }
  1096. #u136856 .text {
  1097. position:absolute;
  1098. align-self:center;
  1099. padding:2px 2px 2px 2px;
  1100. box-sizing:border-box;
  1101. width:100%;
  1102. }
  1103. #u136856_text {
  1104. border-width:0px;
  1105. word-wrap:break-word;
  1106. text-transform:none;
  1107. visibility:hidden;
  1108. }
  1109. #u136857_div {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:57px;
  1115. height:30px;
  1116. background:inherit;
  1117. background-color:rgba(255, 255, 255, 0);
  1118. border:none;
  1119. border-left:0px;
  1120. border-top:0px;
  1121. border-right:0px;
  1122. border-radius:0px;
  1123. border-bottom-right-radius:0px;
  1124. border-bottom-left-radius:0px;
  1125. -moz-box-shadow:none;
  1126. -webkit-box-shadow:none;
  1127. box-shadow:none;
  1128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1129. font-weight:400;
  1130. font-style:normal;
  1131. font-size:14px;
  1132. line-height:30px;
  1133. }
  1134. #u136857 {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:50px;
  1138. top:232px;
  1139. width:57px;
  1140. height:30px;
  1141. display:flex;
  1142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1143. font-weight:400;
  1144. font-style:normal;
  1145. font-size:14px;
  1146. line-height:30px;
  1147. }
  1148. #u136857 .text {
  1149. position:absolute;
  1150. align-self:flex-start;
  1151. padding:0px 0px 0px 0px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u136857_text {
  1156. border-width:0px;
  1157. white-space:nowrap;
  1158. text-transform:none;
  1159. }
  1160. #u136858_img {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:0px;
  1164. top:0px;
  1165. width:8px;
  1166. height:13px;
  1167. }
  1168. #u136858 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:383px;
  1172. top:241px;
  1173. width:8px;
  1174. height:13px;
  1175. display:flex;
  1176. }
  1177. #u136858 .text {
  1178. position:absolute;
  1179. align-self:center;
  1180. padding:2px 2px 2px 2px;
  1181. box-sizing:border-box;
  1182. width:100%;
  1183. }
  1184. #u136858_text {
  1185. border-width:0px;
  1186. word-wrap:break-word;
  1187. text-transform:none;
  1188. visibility:hidden;
  1189. }
  1190. #u136859_div {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:0px;
  1194. top:0px;
  1195. width:73px;
  1196. height:17px;
  1197. background:inherit;
  1198. background-color:rgba(242, 242, 242, 1);
  1199. border:none;
  1200. border-radius:4px;
  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. }
  1209. #u136859 {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:50px;
  1213. top:266px;
  1214. width:73px;
  1215. height:17px;
  1216. display:flex;
  1217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1218. font-weight:400;
  1219. font-style:normal;
  1220. font-size:12px;
  1221. }
  1222. #u136859 .text {
  1223. position:absolute;
  1224. align-self:center;
  1225. padding:0px 0px 0px 0px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u136859_text {
  1230. border-width:0px;
  1231. white-space:nowrap;
  1232. text-transform:none;
  1233. }
  1234. #u136860_div {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:97px;
  1240. height:17px;
  1241. background:inherit;
  1242. background-color:rgba(242, 242, 242, 1);
  1243. border:none;
  1244. border-radius:4px;
  1245. -moz-box-shadow:none;
  1246. -webkit-box-shadow:none;
  1247. box-shadow:none;
  1248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1249. font-weight:400;
  1250. font-style:normal;
  1251. font-size:12px;
  1252. }
  1253. #u136860 {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:133px;
  1257. top:266px;
  1258. width:97px;
  1259. height:17px;
  1260. display:flex;
  1261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1262. font-weight:400;
  1263. font-style:normal;
  1264. font-size:12px;
  1265. }
  1266. #u136860 .text {
  1267. position:absolute;
  1268. align-self:center;
  1269. padding:0px 0px 0px 0px;
  1270. box-sizing:border-box;
  1271. width:100%;
  1272. }
  1273. #u136860_text {
  1274. border-width:0px;
  1275. white-space:nowrap;
  1276. text-transform:none;
  1277. }
  1278. #u136861_div {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:73px;
  1284. height:17px;
  1285. background:inherit;
  1286. background-color:rgba(242, 242, 242, 1);
  1287. border:none;
  1288. border-radius:4px;
  1289. -moz-box-shadow:none;
  1290. -webkit-box-shadow:none;
  1291. box-shadow:none;
  1292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1293. font-weight:400;
  1294. font-style:normal;
  1295. font-size:12px;
  1296. }
  1297. #u136861 {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:240px;
  1301. top:266px;
  1302. width:73px;
  1303. height:17px;
  1304. display:flex;
  1305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1306. font-weight:400;
  1307. font-style:normal;
  1308. font-size:12px;
  1309. }
  1310. #u136861 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:0px 0px 0px 0px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u136861_text {
  1318. border-width:0px;
  1319. white-space:nowrap;
  1320. text-transform:none;
  1321. }
  1322. #u136862_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:85px;
  1328. height:17px;
  1329. background:inherit;
  1330. background-color:rgba(242, 242, 242, 1);
  1331. border:none;
  1332. border-radius:4px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. font-size:12px;
  1340. }
  1341. #u136862 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:50px;
  1345. top:293px;
  1346. width:85px;
  1347. height:17px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. font-size:12px;
  1353. }
  1354. #u136862 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u136862_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u136863_div {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:85px;
  1372. height:30px;
  1373. background:inherit;
  1374. background-color:rgba(255, 255, 255, 0);
  1375. border:none;
  1376. border-left:0px;
  1377. border-top:0px;
  1378. border-right:0px;
  1379. border-radius:0px;
  1380. border-bottom-right-radius:0px;
  1381. border-bottom-left-radius:0px;
  1382. -moz-box-shadow:none;
  1383. -webkit-box-shadow:none;
  1384. box-shadow:none;
  1385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1386. font-weight:400;
  1387. font-style:normal;
  1388. font-size:12px;
  1389. color:#AAAAAA;
  1390. line-height:30px;
  1391. }
  1392. #u136863 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:42px;
  1396. top:115px;
  1397. width:85px;
  1398. height:30px;
  1399. display:flex;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:12px;
  1404. color:#AAAAAA;
  1405. line-height:30px;
  1406. }
  1407. #u136863 .text {
  1408. position:absolute;
  1409. align-self:flex-start;
  1410. padding:0px 0px 0px 0px;
  1411. box-sizing:border-box;
  1412. width:100%;
  1413. }
  1414. #u136863_text {
  1415. border-width:0px;
  1416. white-space:nowrap;
  1417. text-transform:none;
  1418. }
  1419. #u136864 {
  1420. border-width:0px;
  1421. position:absolute;
  1422. left:0px;
  1423. top:0px;
  1424. width:0px;
  1425. height:0px;
  1426. }
  1427. #u136865_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:375px;
  1433. height:60px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 1);
  1436. border:none;
  1437. border-left:0px;
  1438. border-top:0px;
  1439. border-right:0px;
  1440. border-radius:0px;
  1441. border-bottom-right-radius:0px;
  1442. border-bottom-left-radius:0px;
  1443. -moz-box-shadow:none;
  1444. -webkit-box-shadow:none;
  1445. box-shadow:none;
  1446. }
  1447. #u136865 {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:29px;
  1451. top:451px;
  1452. width:375px;
  1453. height:60px;
  1454. display:flex;
  1455. }
  1456. #u136865 .text {
  1457. position:absolute;
  1458. align-self:center;
  1459. padding:2px 2px 2px 2px;
  1460. box-sizing:border-box;
  1461. width:100%;
  1462. }
  1463. #u136865_text {
  1464. border-width:0px;
  1465. word-wrap:break-word;
  1466. text-transform:none;
  1467. visibility:hidden;
  1468. }
  1469. #u136866_img {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:0px;
  1473. top:0px;
  1474. width:8px;
  1475. height:13px;
  1476. }
  1477. #u136866 {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:379px;
  1481. top:473px;
  1482. width:8px;
  1483. height:13px;
  1484. display:flex;
  1485. }
  1486. #u136866 .text {
  1487. position:absolute;
  1488. align-self:center;
  1489. padding:2px 2px 2px 2px;
  1490. box-sizing:border-box;
  1491. width:100%;
  1492. }
  1493. #u136866_text {
  1494. border-width:0px;
  1495. word-wrap:break-word;
  1496. text-transform:none;
  1497. visibility:hidden;
  1498. }
  1499. #u136867_div {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:0px;
  1503. top:0px;
  1504. width:60px;
  1505. height:24px;
  1506. background:inherit;
  1507. background-color:rgba(242, 242, 242, 1);
  1508. border:none;
  1509. border-radius:4px;
  1510. -moz-box-shadow:none;
  1511. -webkit-box-shadow:none;
  1512. box-shadow:none;
  1513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1514. font-weight:400;
  1515. font-style:normal;
  1516. font-size:12px;
  1517. text-align:center;
  1518. }
  1519. #u136867 {
  1520. border-width:0px;
  1521. position:absolute;
  1522. left:50px;
  1523. top:467px;
  1524. width:60px;
  1525. height:24px;
  1526. display:flex;
  1527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1528. font-weight:400;
  1529. font-style:normal;
  1530. font-size:12px;
  1531. text-align:center;
  1532. }
  1533. #u136867 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:0px 0px 0px 0px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u136867_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. }
  1545. #u136868_div {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:60px;
  1551. height:24px;
  1552. background:inherit;
  1553. background-color:rgba(242, 242, 242, 1);
  1554. border:none;
  1555. border-radius:4px;
  1556. -moz-box-shadow:none;
  1557. -webkit-box-shadow:none;
  1558. box-shadow:none;
  1559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1560. font-weight:400;
  1561. font-style:normal;
  1562. font-size:12px;
  1563. text-align:center;
  1564. }
  1565. #u136868 {
  1566. border-width:0px;
  1567. position:absolute;
  1568. left:120px;
  1569. top:467px;
  1570. width:60px;
  1571. height:24px;
  1572. display:flex;
  1573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1574. font-weight:400;
  1575. font-style:normal;
  1576. font-size:12px;
  1577. text-align:center;
  1578. }
  1579. #u136868 .text {
  1580. position:absolute;
  1581. align-self:center;
  1582. padding:0px 0px 0px 0px;
  1583. box-sizing:border-box;
  1584. width:100%;
  1585. }
  1586. #u136868_text {
  1587. border-width:0px;
  1588. word-wrap:break-word;
  1589. text-transform:none;
  1590. }
  1591. #u136869_div {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:57px;
  1597. height:30px;
  1598. background:inherit;
  1599. background-color:rgba(255, 255, 255, 0);
  1600. border:none;
  1601. border-left:0px;
  1602. border-top:0px;
  1603. border-right:0px;
  1604. border-radius:0px;
  1605. border-bottom-right-radius:0px;
  1606. border-bottom-left-radius:0px;
  1607. -moz-box-shadow:none;
  1608. -webkit-box-shadow:none;
  1609. box-shadow:none;
  1610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1611. font-weight:400;
  1612. font-style:normal;
  1613. font-size:14px;
  1614. line-height:30px;
  1615. }
  1616. #u136869 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:42px;
  1620. top:186px;
  1621. width:57px;
  1622. height:30px;
  1623. display:flex;
  1624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1625. font-weight:400;
  1626. font-style:normal;
  1627. font-size:14px;
  1628. line-height:30px;
  1629. }
  1630. #u136869 .text {
  1631. position:absolute;
  1632. align-self:flex-start;
  1633. padding:0px 0px 0px 0px;
  1634. box-sizing:border-box;
  1635. width:100%;
  1636. }
  1637. #u136869_text {
  1638. border-width:0px;
  1639. white-space:nowrap;
  1640. text-transform:none;
  1641. }
  1642. #u136870 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:0px;
  1648. height:0px;
  1649. }
  1650. #u136871_div {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:0px;
  1654. top:0px;
  1655. width:375px;
  1656. height:80px;
  1657. background:inherit;
  1658. background-color:rgba(255, 255, 255, 1);
  1659. border:none;
  1660. border-left:0px;
  1661. border-top:0px;
  1662. border-right:0px;
  1663. border-radius:0px;
  1664. border-bottom-right-radius:0px;
  1665. border-bottom-left-radius:0px;
  1666. -moz-box-shadow:none;
  1667. -webkit-box-shadow:none;
  1668. box-shadow:none;
  1669. }
  1670. #u136871 {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:29px;
  1674. top:330px;
  1675. width:375px;
  1676. height:80px;
  1677. display:flex;
  1678. }
  1679. #u136871 .text {
  1680. position:absolute;
  1681. align-self:center;
  1682. padding:2px 2px 2px 2px;
  1683. box-sizing:border-box;
  1684. width:100%;
  1685. }
  1686. #u136871_text {
  1687. border-width:0px;
  1688. word-wrap:break-word;
  1689. text-transform:none;
  1690. visibility:hidden;
  1691. }
  1692. #u136872_div {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:57px;
  1698. height:30px;
  1699. background:inherit;
  1700. background-color:rgba(255, 255, 255, 0);
  1701. border:none;
  1702. border-left:0px;
  1703. border-top:0px;
  1704. border-right:0px;
  1705. border-radius:0px;
  1706. border-bottom-right-radius:0px;
  1707. border-bottom-left-radius:0px;
  1708. -moz-box-shadow:none;
  1709. -webkit-box-shadow:none;
  1710. box-shadow:none;
  1711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1712. font-weight:400;
  1713. font-style:normal;
  1714. font-size:14px;
  1715. line-height:30px;
  1716. }
  1717. #u136872 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:50px;
  1721. top:343px;
  1722. width:57px;
  1723. height:30px;
  1724. display:flex;
  1725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1726. font-weight:400;
  1727. font-style:normal;
  1728. font-size:14px;
  1729. line-height:30px;
  1730. }
  1731. #u136872 .text {
  1732. position:absolute;
  1733. align-self:flex-start;
  1734. padding:0px 0px 0px 0px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u136872_text {
  1739. border-width:0px;
  1740. white-space:nowrap;
  1741. text-transform:none;
  1742. }
  1743. #u136873_img {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:8px;
  1749. height:13px;
  1750. }
  1751. #u136873 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:383px;
  1755. top:352px;
  1756. width:8px;
  1757. height:13px;
  1758. display:flex;
  1759. }
  1760. #u136873 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:2px 2px 2px 2px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u136873_text {
  1768. border-width:0px;
  1769. word-wrap:break-word;
  1770. text-transform:none;
  1771. visibility:hidden;
  1772. }
  1773. #u136874_div {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:40px;
  1779. height:24px;
  1780. background:inherit;
  1781. background-color:rgba(242, 242, 242, 1);
  1782. border:none;
  1783. border-radius:4px;
  1784. -moz-box-shadow:none;
  1785. -webkit-box-shadow:none;
  1786. box-shadow:none;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:12px;
  1791. text-align:center;
  1792. }
  1793. #u136874 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:51px;
  1797. top:373px;
  1798. width:40px;
  1799. height:24px;
  1800. display:flex;
  1801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1802. font-weight:400;
  1803. font-style:normal;
  1804. font-size:12px;
  1805. text-align:center;
  1806. }
  1807. #u136874 .text {
  1808. position:absolute;
  1809. align-self:center;
  1810. padding:0px 0px 0px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u136874_text {
  1815. border-width:0px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. }
  1819. #u136875_div {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:85px;
  1825. height:30px;
  1826. background:inherit;
  1827. background-color:rgba(255, 255, 255, 0);
  1828. border:none;
  1829. border-left:0px;
  1830. border-top:0px;
  1831. border-right:0px;
  1832. border-radius:0px;
  1833. border-bottom-right-radius:0px;
  1834. border-bottom-left-radius:0px;
  1835. -moz-box-shadow:none;
  1836. -webkit-box-shadow:none;
  1837. box-shadow:none;
  1838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1839. font-weight:400;
  1840. font-style:normal;
  1841. font-size:14px;
  1842. line-height:30px;
  1843. }
  1844. #u136875 {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:42px;
  1848. top:420px;
  1849. width:85px;
  1850. height:30px;
  1851. display:flex;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:14px;
  1856. line-height:30px;
  1857. }
  1858. #u136875 .text {
  1859. position:absolute;
  1860. align-self:flex-start;
  1861. padding:0px 0px 0px 0px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u136875_text {
  1866. border-width:0px;
  1867. white-space:nowrap;
  1868. text-transform:none;
  1869. }