styles.css 33 KB

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