styles.css 37 KB

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