styles.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881
  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. #u193601_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u193601 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u193601 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u193601_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u193602_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. #u193602 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u193602 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u193602_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u193603 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u193604_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. #u193604 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u193604 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u193604_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u193605 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u193606_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u193606 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u193606 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u193606_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u193607_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u193607 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u193607 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u193607_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u193608 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u193609_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u193609 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u193609 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u193609_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u193610_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u193610 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u193610 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u193610_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u193611_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u193611 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u193611 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u193611_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u193612_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u193612 {
  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. #u193612 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u193612_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u193613_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u193613 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u193613 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u193613_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u193614_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. #u193614 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u193614 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u193614_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u193615 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u193616_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u193616 {
  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. #u193616 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u193616_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u193617_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. #u193617 {
  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. #u193617 .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. #u193617_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u193618 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u193619_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u193619 {
  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. #u193619 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u193619_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u193620_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. #u193620 {
  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. #u193620 .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. #u193620_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u193621_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. #u193621 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u193621 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u193621_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u193622 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u193623_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u193623 {
  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. #u193623 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u193623_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u193624_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. #u193624 {
  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. #u193624 .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. #u193624_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u193625 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u193626_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u193626 {
  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. #u193626 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u193626_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u193627_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. #u193627 {
  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. #u193627 .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. #u193627_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u193628_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. #u193628 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u193628 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u193628_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u193629_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. #u193629 {
  843. border-width:0px;
  844. position:absolute;
  845. left:29px;
  846. top:67px;
  847. width:375px;
  848. height:140px;
  849. display:flex;
  850. }
  851. #u193629 .text {
  852. position:absolute;
  853. align-self:center;
  854. padding:2px 2px 2px 2px;
  855. box-sizing:border-box;
  856. width:100%;
  857. }
  858. #u193629_text {
  859. border-width:0px;
  860. word-wrap:break-word;
  861. text-transform:none;
  862. visibility:hidden;
  863. }
  864. #u193630_img {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:375px;
  870. height:44px;
  871. }
  872. #u193630 {
  873. border-width:0px;
  874. position:absolute;
  875. left:29px;
  876. top:24px;
  877. width:375px;
  878. height:44px;
  879. display:flex;
  880. }
  881. #u193630 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u193630_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u193631 {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:0px;
  900. height:0px;
  901. }
  902. #u193632_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. #u193632 {
  921. border-width:0px;
  922. position:absolute;
  923. left:309px;
  924. top:71px;
  925. width:88px;
  926. height:32px;
  927. display:flex;
  928. }
  929. #u193632 .text {
  930. position:absolute;
  931. align-self:center;
  932. padding:2px 2px 2px 2px;
  933. box-sizing:border-box;
  934. width:100%;
  935. }
  936. #u193632_text {
  937. border-width:0px;
  938. word-wrap:break-word;
  939. text-transform:none;
  940. visibility:hidden;
  941. }
  942. #u193633 {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:0px;
  948. height:0px;
  949. }
  950. #u193634_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:18px;
  956. height:18px;
  957. }
  958. #u193634 {
  959. border-width:0px;
  960. position:absolute;
  961. left:372px;
  962. top:78px;
  963. width:18px;
  964. height:18px;
  965. display:flex;
  966. }
  967. #u193634 .text {
  968. position:absolute;
  969. align-self:center;
  970. padding:2px 2px 2px 2px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u193634_text {
  975. border-width:0px;
  976. word-wrap:break-word;
  977. text-transform:none;
  978. visibility:hidden;
  979. }
  980. #u193635_img {
  981. border-width:0px;
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:6px;
  986. height:6px;
  987. }
  988. #u193635 {
  989. border-width:0px;
  990. position:absolute;
  991. left:378px;
  992. top:84px;
  993. width:6px;
  994. height:6px;
  995. display:flex;
  996. }
  997. #u193635 .text {
  998. position:absolute;
  999. align-self:center;
  1000. padding:2px 2px 2px 2px;
  1001. box-sizing:border-box;
  1002. width:100%;
  1003. }
  1004. #u193635_text {
  1005. border-width:0px;
  1006. word-wrap:break-word;
  1007. text-transform:none;
  1008. visibility:hidden;
  1009. }
  1010. #u193636 {
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:0px;
  1014. top:0px;
  1015. width:0px;
  1016. height:0px;
  1017. }
  1018. #u193637_img {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:5px;
  1024. height:5px;
  1025. }
  1026. #u193637 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:323px;
  1030. top:85px;
  1031. width:5px;
  1032. height:5px;
  1033. display:flex;
  1034. }
  1035. #u193637 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u193637_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u193638_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:5px;
  1054. height:5px;
  1055. }
  1056. #u193638 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:339px;
  1060. top:85px;
  1061. width:5px;
  1062. height:5px;
  1063. display:flex;
  1064. }
  1065. #u193638 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:2px 2px 2px 2px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u193638_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u193639_img {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:7px;
  1084. height:7px;
  1085. }
  1086. #u193639 {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:330px;
  1090. top:84px;
  1091. width:7px;
  1092. height:7px;
  1093. display:flex;
  1094. }
  1095. #u193639 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:2px 2px 2px 2px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u193639_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u193640_img {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:19px;
  1114. height:2px;
  1115. }
  1116. #u193640 {
  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. #u193640 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u193640_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u193641_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. #u193641 {
  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. #u193641 .text {
  1178. position:absolute;
  1179. align-self:center;
  1180. padding:2px 2px 2px 2px;
  1181. box-sizing:border-box;
  1182. width:100%;
  1183. }
  1184. #u193641_text {
  1185. border-width:0px;
  1186. word-wrap:break-word;
  1187. text-transform:none;
  1188. visibility:hidden;
  1189. }
  1190. #u193642_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. #u193642 {
  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. #u193642 .text {
  1225. position:absolute;
  1226. align-self:center;
  1227. padding:2px 3px 2px 3px;
  1228. box-sizing:border-box;
  1229. width:100%;
  1230. }
  1231. #u193642_text {
  1232. border-width:0px;
  1233. white-space:nowrap;
  1234. text-transform:none;
  1235. }
  1236. #u193643_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. #u193643 {
  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. #u193643 .text {
  1271. position:absolute;
  1272. align-self:center;
  1273. padding:2px 3px 2px 3px;
  1274. box-sizing:border-box;
  1275. width:100%;
  1276. }
  1277. #u193643_text {
  1278. border-width:0px;
  1279. white-space:nowrap;
  1280. text-transform:none;
  1281. }
  1282. #u193644 {
  1283. border-width:0px;
  1284. position:absolute;
  1285. left:0px;
  1286. top:0px;
  1287. width:0px;
  1288. height:0px;
  1289. }
  1290. #u193645_div {
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:0px;
  1294. top:0px;
  1295. width:280px;
  1296. height:30px;
  1297. background:inherit;
  1298. background-color:rgba(242, 242, 242, 1);
  1299. border:none;
  1300. border-radius:20px;
  1301. -moz-box-shadow:none;
  1302. -webkit-box-shadow:none;
  1303. box-shadow:none;
  1304. }
  1305. #u193645 {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:42px;
  1309. top:115px;
  1310. width:280px;
  1311. height:30px;
  1312. display:flex;
  1313. }
  1314. #u193645 .text {
  1315. position:absolute;
  1316. align-self:center;
  1317. padding:2px 2px 2px 2px;
  1318. box-sizing:border-box;
  1319. width:100%;
  1320. }
  1321. #u193645_text {
  1322. border-width:0px;
  1323. word-wrap:break-word;
  1324. text-transform:none;
  1325. visibility:hidden;
  1326. }
  1327. #u193646_input {
  1328. position:absolute;
  1329. left:0px;
  1330. top:0px;
  1331. width:260px;
  1332. height:25px;
  1333. padding:2px 2px 2px 2px;
  1334. font-family:'ArialMT', 'Arial', sans-serif;
  1335. font-weight:400;
  1336. font-style:normal;
  1337. font-size:13px;
  1338. letter-spacing:normal;
  1339. color:#000000;
  1340. vertical-align:none;
  1341. text-align:left;
  1342. text-transform:none;
  1343. background-color:transparent;
  1344. border-color:transparent;
  1345. }
  1346. #u193646_input.disabled {
  1347. position:absolute;
  1348. left:0px;
  1349. top:0px;
  1350. width:260px;
  1351. height:25px;
  1352. padding:2px 2px 2px 2px;
  1353. font-family:'ArialMT', 'Arial', sans-serif;
  1354. font-weight:400;
  1355. font-style:normal;
  1356. font-size:13px;
  1357. letter-spacing:normal;
  1358. color:#000000;
  1359. vertical-align:none;
  1360. text-align:left;
  1361. text-transform:none;
  1362. background-color:transparent;
  1363. border-color:transparent;
  1364. }
  1365. #u193646_div {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:0px;
  1369. top:0px;
  1370. width:260px;
  1371. height:25px;
  1372. background:inherit;
  1373. background-color:rgba(242, 242, 242, 1);
  1374. border:none;
  1375. border-radius:0px;
  1376. -moz-box-shadow:none;
  1377. -webkit-box-shadow:none;
  1378. box-shadow:none;
  1379. }
  1380. #u193646 {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:51px;
  1384. top:116px;
  1385. width:260px;
  1386. height:25px;
  1387. display:flex;
  1388. }
  1389. #u193646 .text {
  1390. position:absolute;
  1391. align-self:center;
  1392. padding:2px 2px 2px 2px;
  1393. box-sizing:border-box;
  1394. width:100%;
  1395. }
  1396. #u193646_div.disabled {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:260px;
  1402. height:25px;
  1403. background:inherit;
  1404. background-color:rgba(240, 240, 240, 1);
  1405. border:none;
  1406. border-radius:0px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. }
  1411. #u193646.disabled {
  1412. }
  1413. #u193647_img {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:12px;
  1419. height:12px;
  1420. }
  1421. #u193647 {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:303px;
  1425. top:124px;
  1426. width:12px;
  1427. height:12px;
  1428. display:flex;
  1429. }
  1430. #u193647 .text {
  1431. position:absolute;
  1432. align-self:center;
  1433. padding:2px 2px 2px 2px;
  1434. box-sizing:border-box;
  1435. width:100%;
  1436. }
  1437. #u193647_text {
  1438. border-width:0px;
  1439. word-wrap:break-word;
  1440. text-transform:none;
  1441. visibility:hidden;
  1442. }
  1443. #u193648_div {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:49px;
  1449. height:30px;
  1450. background:inherit;
  1451. background-color:rgba(255, 255, 255, 0);
  1452. border:none;
  1453. border-left:0px;
  1454. border-top:0px;
  1455. border-right:0px;
  1456. border-radius:0px;
  1457. border-bottom-right-radius:0px;
  1458. border-bottom-left-radius:0px;
  1459. -moz-box-shadow:none;
  1460. -webkit-box-shadow:none;
  1461. box-shadow:none;
  1462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1463. font-weight:400;
  1464. font-style:normal;
  1465. font-size:12px;
  1466. color:#1890FF;
  1467. line-height:30px;
  1468. }
  1469. #u193648 {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:341px;
  1473. top:115px;
  1474. width:49px;
  1475. height:30px;
  1476. display:flex;
  1477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1478. font-weight:400;
  1479. font-style:normal;
  1480. font-size:12px;
  1481. color:#1890FF;
  1482. line-height:30px;
  1483. }
  1484. #u193648 .text {
  1485. position:absolute;
  1486. align-self:flex-start;
  1487. padding:0px 0px 0px 0px;
  1488. box-sizing:border-box;
  1489. width:100%;
  1490. }
  1491. #u193648_text {
  1492. border-width:0px;
  1493. white-space:nowrap;
  1494. text-transform:none;
  1495. }
  1496. #u193649_div {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:0px;
  1500. top:0px;
  1501. width:63px;
  1502. height:14px;
  1503. background:inherit;
  1504. background-color:rgba(255, 255, 255, 0);
  1505. border:none;
  1506. border-left:0px;
  1507. border-top:0px;
  1508. border-right:0px;
  1509. border-radius:0px;
  1510. border-bottom-right-radius:0px;
  1511. border-bottom-left-radius:0px;
  1512. -moz-box-shadow:none;
  1513. -webkit-box-shadow:none;
  1514. box-shadow:none;
  1515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1516. font-weight:400;
  1517. font-style:normal;
  1518. font-size:10px;
  1519. color:#AAAAAA;
  1520. }
  1521. #u193649 {
  1522. border-width:0px;
  1523. position:absolute;
  1524. left:42px;
  1525. top:184px;
  1526. width:63px;
  1527. height:14px;
  1528. display:flex;
  1529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1530. font-weight:400;
  1531. font-style:normal;
  1532. font-size:10px;
  1533. color:#AAAAAA;
  1534. }
  1535. #u193649 .text {
  1536. position:absolute;
  1537. align-self:flex-start;
  1538. padding:0px 0px 0px 0px;
  1539. box-sizing:border-box;
  1540. width:100%;
  1541. }
  1542. #u193649_text {
  1543. border-width:0px;
  1544. white-space:nowrap;
  1545. text-transform:none;
  1546. }
  1547. #u193650_div {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:0px;
  1551. top:0px;
  1552. width:65px;
  1553. height:22px;
  1554. background:inherit;
  1555. background-color:rgba(255, 255, 255, 0);
  1556. border:none;
  1557. border-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:16px;
  1565. color:#000000;
  1566. }
  1567. #u193650 {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:68px;
  1571. top:76px;
  1572. width:65px;
  1573. height:22px;
  1574. display:flex;
  1575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1576. font-weight:400;
  1577. font-style:normal;
  1578. font-size:16px;
  1579. color:#000000;
  1580. }
  1581. #u193650 .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. #u193650_text {
  1589. border-width:0px;
  1590. white-space:nowrap;
  1591. text-transform:none;
  1592. }
  1593. #u193651_div {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:0px;
  1597. top:0px;
  1598. width:11px;
  1599. height:11px;
  1600. background:inherit;
  1601. background-color:rgba(217, 0, 27, 1);
  1602. border:none;
  1603. border-radius:7px;
  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:8px;
  1611. color:#FFFFFF;
  1612. text-align:center;
  1613. }
  1614. #u193651 {
  1615. border-width:0px;
  1616. position:absolute;
  1617. left:80px;
  1618. top:150px;
  1619. width:11px;
  1620. height:11px;
  1621. display:flex;
  1622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1623. font-weight:400;
  1624. font-style:normal;
  1625. font-size:8px;
  1626. color:#FFFFFF;
  1627. text-align:center;
  1628. }
  1629. #u193651 .text {
  1630. position:absolute;
  1631. align-self:flex-start;
  1632. padding:0px 0px 0px 0px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u193651_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. }
  1641. #u193652 {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:0px;
  1647. height:0px;
  1648. }
  1649. #u193653_img {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:355px;
  1655. height:200px;
  1656. }
  1657. #u193653 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:39px;
  1661. top:217px;
  1662. width:355px;
  1663. height:200px;
  1664. display:flex;
  1665. }
  1666. #u193653 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u193653_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u193654_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:325px;
  1685. height:125px;
  1686. background:inherit;
  1687. background-color:rgba(255, 255, 255, 0);
  1688. border:none;
  1689. border-left:0px;
  1690. border-top:0px;
  1691. border-right:0px;
  1692. border-radius:0px;
  1693. border-bottom-right-radius:0px;
  1694. border-bottom-left-radius:0px;
  1695. -moz-box-shadow:none;
  1696. -webkit-box-shadow:none;
  1697. box-shadow:none;
  1698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1699. font-weight:400;
  1700. font-style:normal;
  1701. font-size:12px;
  1702. line-height:25px;
  1703. }
  1704. #u193654 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:55px;
  1708. top:282px;
  1709. width:325px;
  1710. height:125px;
  1711. display:flex;
  1712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1713. font-weight:400;
  1714. font-style:normal;
  1715. font-size:12px;
  1716. line-height:25px;
  1717. }
  1718. #u193654 .text {
  1719. position:absolute;
  1720. align-self:flex-start;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u193654_text {
  1726. border-width:0px;
  1727. word-wrap:break-word;
  1728. text-transform:none;
  1729. }
  1730. #u193655_div {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:9px;
  1736. height:9px;
  1737. background:inherit;
  1738. background-color:rgba(255, 255, 255, 0);
  1739. box-sizing:border-box;
  1740. border-width:1px;
  1741. border-style:solid;
  1742. border-color:rgba(127, 127, 127, 1);
  1743. border-right:0px;
  1744. border-bottom:0px;
  1745. border-radius:0px;
  1746. border-top-right-radius:0px;
  1747. border-bottom-left-radius:0px;
  1748. -moz-box-shadow:none;
  1749. -webkit-box-shadow:none;
  1750. box-shadow:none;
  1751. }
  1752. #u193655 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:370px;
  1756. top:231px;
  1757. width:9px;
  1758. height:9px;
  1759. display:flex;
  1760. -webkit-transform:rotate(135deg);
  1761. -moz-transform:rotate(135deg);
  1762. -ms-transform:rotate(135deg);
  1763. transform:rotate(135deg);
  1764. }
  1765. #u193655 .text {
  1766. position:absolute;
  1767. align-self:center;
  1768. padding:2px 2px 2px 2px;
  1769. box-sizing:border-box;
  1770. width:100%;
  1771. }
  1772. #u193655_text {
  1773. border-width:0px;
  1774. word-wrap:break-word;
  1775. text-transform:none;
  1776. visibility:hidden;
  1777. }
  1778. #u193656_div {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:301px;
  1784. height:50px;
  1785. background:inherit;
  1786. background-color:rgba(255, 255, 255, 0);
  1787. border:none;
  1788. border-left:0px;
  1789. border-top:0px;
  1790. border-right:0px;
  1791. border-radius:0px;
  1792. border-bottom-right-radius:0px;
  1793. border-bottom-left-radius:0px;
  1794. -moz-box-shadow:none;
  1795. -webkit-box-shadow:none;
  1796. box-shadow:none;
  1797. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1798. font-weight:500;
  1799. font-style:normal;
  1800. font-size:14px;
  1801. line-height:25px;
  1802. }
  1803. #u193656 {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:55px;
  1807. top:227px;
  1808. width:301px;
  1809. height:50px;
  1810. display:flex;
  1811. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1812. font-weight:500;
  1813. font-style:normal;
  1814. font-size:14px;
  1815. line-height:25px;
  1816. }
  1817. #u193656 .text {
  1818. position:absolute;
  1819. align-self:flex-start;
  1820. padding:0px 0px 0px 0px;
  1821. box-sizing:border-box;
  1822. width:100%;
  1823. }
  1824. #u193656_text {
  1825. border-width:0px;
  1826. word-wrap:break-word;
  1827. text-transform:none;
  1828. }
  1829. #u193657_div {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:0px;
  1833. top:0px;
  1834. width:302px;
  1835. height:90px;
  1836. background:inherit;
  1837. background-color:rgba(255, 255, 255, 0);
  1838. border:none;
  1839. border-left:0px;
  1840. border-top:0px;
  1841. border-right:0px;
  1842. border-radius:0px;
  1843. border-bottom-right-radius:0px;
  1844. border-bottom-left-radius:0px;
  1845. -moz-box-shadow:none;
  1846. -webkit-box-shadow:none;
  1847. box-shadow:none;
  1848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1849. font-weight:400;
  1850. font-style:normal;
  1851. font-size:12px;
  1852. color:#1890FF;
  1853. line-height:30px;
  1854. }
  1855. #u193657 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:55px;
  1859. top:517px;
  1860. width:302px;
  1861. height:90px;
  1862. display:flex;
  1863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1864. font-weight:400;
  1865. font-style:normal;
  1866. font-size:12px;
  1867. color:#1890FF;
  1868. line-height:30px;
  1869. }
  1870. #u193657 .text {
  1871. position:absolute;
  1872. align-self:flex-start;
  1873. padding:0px 0px 0px 0px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u193657_text {
  1878. border-width:0px;
  1879. word-wrap:break-word;
  1880. text-transform:none;
  1881. }