styles.css 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:898px;
  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. #u14318_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u14318 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u14318 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u14318_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u14319_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. #u14319 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u14319 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u14319_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u14320 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u14321_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. #u14321 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u14321 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u14321_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u14322 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u14323_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u14323 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u14323 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u14323_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u14324_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u14324 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u14324 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u14324_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u14325 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u14326_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u14326 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u14326 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u14326_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u14327_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u14327 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u14327 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u14327_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u14328_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u14328 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u14328 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u14328_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u14329_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u14329 {
  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. #u14329 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u14329_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u14330_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u14330 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u14330 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u14330_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u14331_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. #u14331 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u14331 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u14331_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u14332 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u14333_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u14333 {
  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. #u14333 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u14333_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u14334_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. #u14334 {
  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. #u14334 .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. #u14334_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u14335 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u14336_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u14336 {
  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. #u14336 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u14336_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u14337_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. #u14337 {
  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. #u14337 .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. #u14337_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u14338_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. #u14338 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u14338 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u14338_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u14339 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u14340_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u14340 {
  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. #u14340 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u14340_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u14341_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. #u14341 {
  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. #u14341 .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. #u14341_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u14342 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u14343_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u14343 {
  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. #u14343 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u14343_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u14344_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. #u14344 {
  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. #u14344 .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. #u14344_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u14345_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u14345 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u14345 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u14345_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u14346_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:29px;
  825. height:30px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. border:none;
  829. border-left:0px;
  830. border-top:0px;
  831. border-right:0px;
  832. border-radius:0px;
  833. border-bottom-right-radius:0px;
  834. border-bottom-left-radius:0px;
  835. -moz-box-shadow:none;
  836. -webkit-box-shadow:none;
  837. box-shadow:none;
  838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  839. font-weight:500;
  840. font-style:normal;
  841. font-size:14px;
  842. line-height:30px;
  843. }
  844. #u14346 {
  845. border-width:0px;
  846. position:absolute;
  847. left:202px;
  848. top:73px;
  849. width:29px;
  850. height:30px;
  851. display:flex;
  852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  853. font-weight:500;
  854. font-style:normal;
  855. font-size:14px;
  856. line-height:30px;
  857. }
  858. #u14346 .text {
  859. position:absolute;
  860. align-self:flex-start;
  861. padding:0px 0px 0px 0px;
  862. box-sizing:border-box;
  863. width:100%;
  864. }
  865. #u14346_text {
  866. border-width:0px;
  867. white-space:nowrap;
  868. text-transform:none;
  869. }
  870. #u14347 {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:0px;
  876. height:0px;
  877. }
  878. #u14348_img {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:11px;
  884. height:18px;
  885. }
  886. #u14348 {
  887. border-width:0px;
  888. position:absolute;
  889. left:42px;
  890. top:79px;
  891. width:11px;
  892. height:18px;
  893. display:flex;
  894. }
  895. #u14348 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:2px 2px 2px 2px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u14348_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. visibility:hidden;
  907. }
  908. #u14349 {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:0px;
  914. height:0px;
  915. }
  916. #u14350_div {
  917. border-width:0px;
  918. position:absolute;
  919. left:0px;
  920. top:0px;
  921. width:376px;
  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. #u14350 {
  937. border-width:0px;
  938. position:absolute;
  939. left:29px;
  940. top:115px;
  941. width:376px;
  942. height:50px;
  943. display:flex;
  944. }
  945. #u14350 .text {
  946. position:absolute;
  947. align-self:center;
  948. padding:2px 2px 2px 2px;
  949. box-sizing:border-box;
  950. width:100%;
  951. }
  952. #u14350_text {
  953. border-width:0px;
  954. word-wrap:break-word;
  955. text-transform:none;
  956. visibility:hidden;
  957. }
  958. #u14351_input {
  959. position:absolute;
  960. left:0px;
  961. top:0px;
  962. width:185px;
  963. height:25px;
  964. padding:2px 2px 2px 2px;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:14px;
  969. letter-spacing:normal;
  970. color:#333333;
  971. vertical-align:none;
  972. text-align:left;
  973. text-transform:none;
  974. background-color:transparent;
  975. border-color:transparent;
  976. }
  977. #u14351_input.disabled {
  978. position:absolute;
  979. left:0px;
  980. top:0px;
  981. width:185px;
  982. height:25px;
  983. padding:2px 2px 2px 2px;
  984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  985. font-weight:400;
  986. font-style:normal;
  987. font-size:14px;
  988. letter-spacing:normal;
  989. color:#333333;
  990. vertical-align:none;
  991. text-align:left;
  992. text-transform:none;
  993. background-color:transparent;
  994. border-color:transparent;
  995. }
  996. #u14351_div {
  997. border-width:0px;
  998. position:absolute;
  999. left:0px;
  1000. top:0px;
  1001. width:185px;
  1002. height:25px;
  1003. background:inherit;
  1004. background-color:rgba(255, 255, 255, 1);
  1005. border:none;
  1006. border-radius:0px;
  1007. -moz-box-shadow:none;
  1008. -webkit-box-shadow:none;
  1009. box-shadow:none;
  1010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1011. font-weight:400;
  1012. font-style:normal;
  1013. font-size:14px;
  1014. color:#333333;
  1015. }
  1016. #u14351 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:50px;
  1020. top:128px;
  1021. width:185px;
  1022. height:25px;
  1023. display:flex;
  1024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:14px;
  1028. color:#333333;
  1029. }
  1030. #u14351 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u14351_div.disabled {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:185px;
  1043. height:25px;
  1044. background:inherit;
  1045. background-color:rgba(240, 240, 240, 1);
  1046. border:none;
  1047. border-radius:0px;
  1048. -moz-box-shadow:none;
  1049. -webkit-box-shadow:none;
  1050. box-shadow:none;
  1051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1052. font-weight:400;
  1053. font-style:normal;
  1054. font-size:14px;
  1055. color:#333333;
  1056. }
  1057. #u14351.disabled {
  1058. }
  1059. #u14352_div {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:0px;
  1063. top:0px;
  1064. width:341px;
  1065. height:40px;
  1066. background:inherit;
  1067. background-color:rgba(0, 137, 254, 1);
  1068. border:none;
  1069. border-radius:45px;
  1070. -moz-box-shadow:none;
  1071. -webkit-box-shadow:none;
  1072. box-shadow:none;
  1073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1074. font-weight:400;
  1075. font-style:normal;
  1076. font-size:14px;
  1077. color:#FFFFFF;
  1078. }
  1079. #u14352 {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:42px;
  1083. top:773px;
  1084. width:341px;
  1085. height:40px;
  1086. display:flex;
  1087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1088. font-weight:400;
  1089. font-style:normal;
  1090. font-size:14px;
  1091. color:#FFFFFF;
  1092. }
  1093. #u14352 .text {
  1094. position:absolute;
  1095. align-self:center;
  1096. padding:2px 2px 2px 2px;
  1097. box-sizing:border-box;
  1098. width:100%;
  1099. }
  1100. #u14352_text {
  1101. border-width:0px;
  1102. word-wrap:break-word;
  1103. text-transform:none;
  1104. }
  1105. #u14354_img {
  1106. border-width:0px;
  1107. position:absolute;
  1108. left:0px;
  1109. top:0px;
  1110. width:433px;
  1111. height:865px;
  1112. }
  1113. #u14354 {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:465px;
  1117. top:0px;
  1118. width:433px;
  1119. height:865px;
  1120. display:flex;
  1121. }
  1122. #u14354 .text {
  1123. position:absolute;
  1124. align-self:center;
  1125. padding:2px 2px 2px 2px;
  1126. box-sizing:border-box;
  1127. width:100%;
  1128. }
  1129. #u14354_text {
  1130. border-width:0px;
  1131. word-wrap:break-word;
  1132. text-transform:none;
  1133. visibility:hidden;
  1134. }
  1135. #u14355_div {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:375px;
  1141. height:40px;
  1142. background:inherit;
  1143. background-color:rgba(255, 255, 255, 1);
  1144. box-sizing:border-box;
  1145. border-width:1px;
  1146. border-style:solid;
  1147. border-color:rgba(215, 215, 215, 1);
  1148. border-left:0px;
  1149. border-top:0px;
  1150. border-right:0px;
  1151. border-radius:0px;
  1152. border-bottom-right-radius:0px;
  1153. border-bottom-left-radius:0px;
  1154. -moz-box-shadow:none;
  1155. -webkit-box-shadow:none;
  1156. box-shadow:none;
  1157. }
  1158. #u14355 {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:494px;
  1162. top:67px;
  1163. width:375px;
  1164. height:40px;
  1165. display:flex;
  1166. }
  1167. #u14355 .text {
  1168. position:absolute;
  1169. align-self:center;
  1170. padding:2px 2px 2px 2px;
  1171. box-sizing:border-box;
  1172. width:100%;
  1173. }
  1174. #u14355_text {
  1175. border-width:0px;
  1176. word-wrap:break-word;
  1177. text-transform:none;
  1178. visibility:hidden;
  1179. }
  1180. #u14356 {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:0px;
  1186. height:0px;
  1187. }
  1188. #u14357_div {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:88px;
  1194. height:32px;
  1195. background:inherit;
  1196. background-color:rgba(255, 255, 255, 1);
  1197. box-sizing:border-box;
  1198. border-width:1px;
  1199. border-style:solid;
  1200. border-color:rgba(242, 242, 242, 1);
  1201. border-radius:33px;
  1202. -moz-box-shadow:none;
  1203. -webkit-box-shadow:none;
  1204. box-shadow:none;
  1205. }
  1206. #u14357 {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:774px;
  1210. top:71px;
  1211. width:88px;
  1212. height:32px;
  1213. display:flex;
  1214. }
  1215. #u14357 .text {
  1216. position:absolute;
  1217. align-self:center;
  1218. padding:2px 2px 2px 2px;
  1219. box-sizing:border-box;
  1220. width:100%;
  1221. }
  1222. #u14357_text {
  1223. border-width:0px;
  1224. word-wrap:break-word;
  1225. text-transform:none;
  1226. visibility:hidden;
  1227. }
  1228. #u14358 {
  1229. border-width:0px;
  1230. position:absolute;
  1231. left:0px;
  1232. top:0px;
  1233. width:0px;
  1234. height:0px;
  1235. }
  1236. #u14359_img {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:0px;
  1240. top:0px;
  1241. width:18px;
  1242. height:18px;
  1243. }
  1244. #u14359 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:837px;
  1248. top:78px;
  1249. width:18px;
  1250. height:18px;
  1251. display:flex;
  1252. }
  1253. #u14359 .text {
  1254. position:absolute;
  1255. align-self:center;
  1256. padding:2px 2px 2px 2px;
  1257. box-sizing:border-box;
  1258. width:100%;
  1259. }
  1260. #u14359_text {
  1261. border-width:0px;
  1262. word-wrap:break-word;
  1263. text-transform:none;
  1264. visibility:hidden;
  1265. }
  1266. #u14360_img {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:0px;
  1270. top:0px;
  1271. width:6px;
  1272. height:6px;
  1273. }
  1274. #u14360 {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:843px;
  1278. top:84px;
  1279. width:6px;
  1280. height:6px;
  1281. display:flex;
  1282. }
  1283. #u14360 .text {
  1284. position:absolute;
  1285. align-self:center;
  1286. padding:2px 2px 2px 2px;
  1287. box-sizing:border-box;
  1288. width:100%;
  1289. }
  1290. #u14360_text {
  1291. border-width:0px;
  1292. word-wrap:break-word;
  1293. text-transform:none;
  1294. visibility:hidden;
  1295. }
  1296. #u14361 {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:0px;
  1300. top:0px;
  1301. width:0px;
  1302. height:0px;
  1303. }
  1304. #u14362_img {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:0px;
  1308. top:0px;
  1309. width:5px;
  1310. height:5px;
  1311. }
  1312. #u14362 {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:788px;
  1316. top:85px;
  1317. width:5px;
  1318. height:5px;
  1319. display:flex;
  1320. }
  1321. #u14362 .text {
  1322. position:absolute;
  1323. align-self:center;
  1324. padding:2px 2px 2px 2px;
  1325. box-sizing:border-box;
  1326. width:100%;
  1327. }
  1328. #u14362_text {
  1329. border-width:0px;
  1330. word-wrap:break-word;
  1331. text-transform:none;
  1332. visibility:hidden;
  1333. }
  1334. #u14363_img {
  1335. border-width:0px;
  1336. position:absolute;
  1337. left:0px;
  1338. top:0px;
  1339. width:5px;
  1340. height:5px;
  1341. }
  1342. #u14363 {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:804px;
  1346. top:85px;
  1347. width:5px;
  1348. height:5px;
  1349. display:flex;
  1350. }
  1351. #u14363 .text {
  1352. position:absolute;
  1353. align-self:center;
  1354. padding:2px 2px 2px 2px;
  1355. box-sizing:border-box;
  1356. width:100%;
  1357. }
  1358. #u14363_text {
  1359. border-width:0px;
  1360. word-wrap:break-word;
  1361. text-transform:none;
  1362. visibility:hidden;
  1363. }
  1364. #u14364_img {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:0px;
  1368. top:0px;
  1369. width:7px;
  1370. height:7px;
  1371. }
  1372. #u14364 {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:795px;
  1376. top:84px;
  1377. width:7px;
  1378. height:7px;
  1379. display:flex;
  1380. }
  1381. #u14364 .text {
  1382. position:absolute;
  1383. align-self:center;
  1384. padding:2px 2px 2px 2px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u14364_text {
  1389. border-width:0px;
  1390. word-wrap:break-word;
  1391. text-transform:none;
  1392. visibility:hidden;
  1393. }
  1394. #u14365_img {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:19px;
  1400. height:2px;
  1401. }
  1402. #u14365 {
  1403. border-width:0px;
  1404. position:absolute;
  1405. left:812px;
  1406. top:87px;
  1407. width:18px;
  1408. height:1px;
  1409. display:flex;
  1410. -webkit-transform:rotate(90deg);
  1411. -moz-transform:rotate(90deg);
  1412. -ms-transform:rotate(90deg);
  1413. transform:rotate(90deg);
  1414. }
  1415. #u14365 .text {
  1416. position:absolute;
  1417. align-self:center;
  1418. padding:2px 2px 2px 2px;
  1419. box-sizing:border-box;
  1420. width:100%;
  1421. }
  1422. #u14365_text {
  1423. border-width:0px;
  1424. word-wrap:break-word;
  1425. text-transform:none;
  1426. visibility:hidden;
  1427. }
  1428. #u14366_img {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:0px;
  1432. top:0px;
  1433. width:375px;
  1434. height:44px;
  1435. }
  1436. #u14366 {
  1437. border-width:0px;
  1438. position:absolute;
  1439. left:494px;
  1440. top:24px;
  1441. width:375px;
  1442. height:44px;
  1443. display:flex;
  1444. }
  1445. #u14366 .text {
  1446. position:absolute;
  1447. align-self:center;
  1448. padding:2px 2px 2px 2px;
  1449. box-sizing:border-box;
  1450. width:100%;
  1451. }
  1452. #u14366_text {
  1453. border-width:0px;
  1454. word-wrap:break-word;
  1455. text-transform:none;
  1456. visibility:hidden;
  1457. }
  1458. #u14367_div {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:375px;
  1464. height:50px;
  1465. background:inherit;
  1466. background-color:rgba(255, 255, 255, 1);
  1467. box-sizing:border-box;
  1468. border-width:1px;
  1469. border-style:solid;
  1470. border-color:rgba(242, 242, 242, 1);
  1471. border-radius:26px;
  1472. border-top-left-radius:0px;
  1473. border-top-right-radius:0px;
  1474. -moz-box-shadow:none;
  1475. -webkit-box-shadow:none;
  1476. box-shadow:none;
  1477. }
  1478. #u14367 {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:494px;
  1482. top:788px;
  1483. width:375px;
  1484. height:50px;
  1485. display:flex;
  1486. }
  1487. #u14367 .text {
  1488. position:absolute;
  1489. align-self:center;
  1490. padding:2px 2px 2px 2px;
  1491. box-sizing:border-box;
  1492. width:100%;
  1493. }
  1494. #u14367_text {
  1495. border-width:0px;
  1496. word-wrap:break-word;
  1497. text-transform:none;
  1498. visibility:hidden;
  1499. }
  1500. #u14368 {
  1501. border-width:0px;
  1502. position:absolute;
  1503. left:0px;
  1504. top:0px;
  1505. width:0px;
  1506. height:0px;
  1507. }
  1508. #u14369_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:24px;
  1514. height:24px;
  1515. }
  1516. #u14369 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:534px;
  1520. top:792px;
  1521. width:24px;
  1522. height:24px;
  1523. display:flex;
  1524. font-size:8px;
  1525. }
  1526. #u14369 .text {
  1527. position:absolute;
  1528. align-self:center;
  1529. padding:2px 2px 2px 2px;
  1530. box-sizing:border-box;
  1531. width:100%;
  1532. }
  1533. #u14369_text {
  1534. border-width:0px;
  1535. word-wrap:break-word;
  1536. text-transform:none;
  1537. }
  1538. #u14370_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:25px;
  1544. height:17px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 0);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1553. font-weight:400;
  1554. font-style:normal;
  1555. font-size:12px;
  1556. }
  1557. #u14370 {
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:534px;
  1561. top:817px;
  1562. width:25px;
  1563. height:17px;
  1564. display:flex;
  1565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1566. font-weight:400;
  1567. font-style:normal;
  1568. font-size:12px;
  1569. }
  1570. #u14370 .text {
  1571. position:absolute;
  1572. align-self:flex-start;
  1573. padding:0px 0px 0px 0px;
  1574. box-sizing:border-box;
  1575. width:100%;
  1576. }
  1577. #u14370_text {
  1578. border-width:0px;
  1579. white-space:nowrap;
  1580. text-transform:none;
  1581. }
  1582. #u14371 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u14372_img {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:24px;
  1596. height:24px;
  1597. }
  1598. #u14372 {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:804px;
  1602. top:794px;
  1603. width:24px;
  1604. height:24px;
  1605. display:flex;
  1606. font-size:8px;
  1607. }
  1608. #u14372 .text {
  1609. position:absolute;
  1610. align-self:center;
  1611. padding:2px 2px 2px 2px;
  1612. box-sizing:border-box;
  1613. width:100%;
  1614. }
  1615. #u14372_text {
  1616. border-width:0px;
  1617. word-wrap:break-word;
  1618. text-transform:none;
  1619. }
  1620. #u14373_div {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:25px;
  1626. height:17px;
  1627. background:inherit;
  1628. background-color:rgba(255, 255, 255, 0);
  1629. border:none;
  1630. border-radius:0px;
  1631. -moz-box-shadow:none;
  1632. -webkit-box-shadow:none;
  1633. box-shadow:none;
  1634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1635. font-weight:400;
  1636. font-style:normal;
  1637. font-size:12px;
  1638. }
  1639. #u14373 {
  1640. border-width:0px;
  1641. position:absolute;
  1642. left:804px;
  1643. top:819px;
  1644. width:25px;
  1645. height:17px;
  1646. display:flex;
  1647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1648. font-weight:400;
  1649. font-style:normal;
  1650. font-size:12px;
  1651. }
  1652. #u14373 .text {
  1653. position:absolute;
  1654. align-self:flex-start;
  1655. padding:0px 0px 0px 0px;
  1656. box-sizing:border-box;
  1657. width:100%;
  1658. }
  1659. #u14373_text {
  1660. border-width:0px;
  1661. white-space:nowrap;
  1662. text-transform:none;
  1663. }
  1664. #u14374_div {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:0px;
  1668. top:0px;
  1669. width:375px;
  1670. height:681px;
  1671. background:inherit;
  1672. background-color:rgba(242, 242, 242, 0.462745098039216);
  1673. border:none;
  1674. border-radius:0px;
  1675. -moz-box-shadow:none;
  1676. -webkit-box-shadow:none;
  1677. box-shadow:none;
  1678. }
  1679. #u14374 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:494px;
  1683. top:107px;
  1684. width:375px;
  1685. height:681px;
  1686. display:flex;
  1687. }
  1688. #u14374 .text {
  1689. position:absolute;
  1690. align-self:center;
  1691. padding:2px 2px 2px 2px;
  1692. box-sizing:border-box;
  1693. width:100%;
  1694. }
  1695. #u14374_text {
  1696. border-width:0px;
  1697. word-wrap:break-word;
  1698. text-transform:none;
  1699. visibility:hidden;
  1700. }
  1701. #u14375 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:0px;
  1705. top:0px;
  1706. width:0px;
  1707. height:0px;
  1708. }
  1709. #u14376_img {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:24px;
  1715. height:24px;
  1716. }
  1717. #u14376 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:716px;
  1721. top:792px;
  1722. width:24px;
  1723. height:24px;
  1724. display:flex;
  1725. font-size:8px;
  1726. }
  1727. #u14376 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:2px 2px 2px 2px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u14376_text {
  1735. border-width:0px;
  1736. word-wrap:break-word;
  1737. text-transform:none;
  1738. }
  1739. #u14377_div {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:0px;
  1743. top:0px;
  1744. width:37px;
  1745. height:17px;
  1746. background:inherit;
  1747. background-color:rgba(255, 255, 255, 0);
  1748. border:none;
  1749. border-radius:0px;
  1750. -moz-box-shadow:none;
  1751. -webkit-box-shadow:none;
  1752. box-shadow:none;
  1753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1754. font-weight:400;
  1755. font-style:normal;
  1756. font-size:12px;
  1757. }
  1758. #u14377 {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:710px;
  1762. top:817px;
  1763. width:37px;
  1764. height:17px;
  1765. display:flex;
  1766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1767. font-weight:400;
  1768. font-style:normal;
  1769. font-size:12px;
  1770. }
  1771. #u14377 .text {
  1772. position:absolute;
  1773. align-self:flex-start;
  1774. padding:0px 0px 0px 0px;
  1775. box-sizing:border-box;
  1776. width:100%;
  1777. }
  1778. #u14377_text {
  1779. border-width:0px;
  1780. white-space:nowrap;
  1781. text-transform:none;
  1782. }
  1783. #u14378 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:0px;
  1787. top:0px;
  1788. width:0px;
  1789. height:0px;
  1790. }
  1791. #u14379_img {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:0px;
  1795. top:0px;
  1796. width:24px;
  1797. height:24px;
  1798. }
  1799. #u14379 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:622px;
  1803. top:792px;
  1804. width:24px;
  1805. height:24px;
  1806. display:flex;
  1807. font-size:8px;
  1808. }
  1809. #u14379 .text {
  1810. position:absolute;
  1811. align-self:center;
  1812. padding:2px 2px 2px 2px;
  1813. box-sizing:border-box;
  1814. width:100%;
  1815. }
  1816. #u14379_text {
  1817. border-width:0px;
  1818. word-wrap:break-word;
  1819. text-transform:none;
  1820. }
  1821. #u14380_div {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:0px;
  1825. top:0px;
  1826. width:37px;
  1827. height:17px;
  1828. background:inherit;
  1829. background-color:rgba(255, 255, 255, 0);
  1830. border:none;
  1831. border-radius:0px;
  1832. -moz-box-shadow:none;
  1833. -webkit-box-shadow:none;
  1834. box-shadow:none;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:12px;
  1839. }
  1840. #u14380 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:616px;
  1844. top:817px;
  1845. width:37px;
  1846. height:17px;
  1847. display:flex;
  1848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1849. font-weight:400;
  1850. font-style:normal;
  1851. font-size:12px;
  1852. }
  1853. #u14380 .text {
  1854. position:absolute;
  1855. align-self:flex-start;
  1856. padding:0px 0px 0px 0px;
  1857. box-sizing:border-box;
  1858. width:100%;
  1859. }
  1860. #u14380_text {
  1861. border-width:0px;
  1862. white-space:nowrap;
  1863. text-transform:none;
  1864. }
  1865. #u14381_div {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:375px;
  1871. height:735px;
  1872. background:inherit;
  1873. background-color:rgba(242, 242, 242, 1);
  1874. border:none;
  1875. border-top:0px;
  1876. border-radius:25px;
  1877. border-top-left-radius:0px;
  1878. border-top-right-radius:0px;
  1879. -moz-box-shadow:none;
  1880. -webkit-box-shadow:none;
  1881. box-shadow:none;
  1882. }
  1883. #u14381 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:494px;
  1887. top:105px;
  1888. width:375px;
  1889. height:735px;
  1890. display:flex;
  1891. }
  1892. #u14381 .text {
  1893. position:absolute;
  1894. align-self:center;
  1895. padding:2px 2px 2px 2px;
  1896. box-sizing:border-box;
  1897. width:100%;
  1898. }
  1899. #u14381_text {
  1900. border-width:0px;
  1901. word-wrap:break-word;
  1902. text-transform:none;
  1903. visibility:hidden;
  1904. }
  1905. #u14382_div {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:0px;
  1909. top:0px;
  1910. width:57px;
  1911. height:30px;
  1912. background:inherit;
  1913. background-color:rgba(255, 255, 255, 0);
  1914. border:none;
  1915. border-left:0px;
  1916. border-top:0px;
  1917. border-right:0px;
  1918. border-radius:0px;
  1919. border-bottom-right-radius:0px;
  1920. border-bottom-left-radius:0px;
  1921. -moz-box-shadow:none;
  1922. -webkit-box-shadow:none;
  1923. box-shadow:none;
  1924. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1925. font-weight:500;
  1926. font-style:normal;
  1927. font-size:14px;
  1928. line-height:30px;
  1929. }
  1930. #u14382 {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:667px;
  1934. top:73px;
  1935. width:57px;
  1936. height:30px;
  1937. display:flex;
  1938. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1939. font-weight:500;
  1940. font-style:normal;
  1941. font-size:14px;
  1942. line-height:30px;
  1943. }
  1944. #u14382 .text {
  1945. position:absolute;
  1946. align-self:flex-start;
  1947. padding:0px 0px 0px 0px;
  1948. box-sizing:border-box;
  1949. width:100%;
  1950. }
  1951. #u14382_text {
  1952. border-width:0px;
  1953. white-space:nowrap;
  1954. text-transform:none;
  1955. }
  1956. #u14383 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:0px;
  1960. top:0px;
  1961. width:0px;
  1962. height:0px;
  1963. }
  1964. #u14384_img {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:0px;
  1968. top:0px;
  1969. width:11px;
  1970. height:18px;
  1971. }
  1972. #u14384 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:507px;
  1976. top:79px;
  1977. width:11px;
  1978. height:18px;
  1979. display:flex;
  1980. }
  1981. #u14384 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:2px 2px 2px 2px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u14384_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. visibility:hidden;
  1993. }
  1994. #u14385 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:0px;
  2000. height:0px;
  2001. }
  2002. #u14386_div {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:376px;
  2008. height:50px;
  2009. background:inherit;
  2010. background-color:rgba(255, 255, 255, 1);
  2011. border:none;
  2012. border-left:0px;
  2013. border-top:0px;
  2014. border-right:0px;
  2015. border-radius:0px;
  2016. border-bottom-right-radius:0px;
  2017. border-bottom-left-radius:0px;
  2018. -moz-box-shadow:none;
  2019. -webkit-box-shadow:none;
  2020. box-shadow:none;
  2021. }
  2022. #u14386 {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:494px;
  2026. top:115px;
  2027. width:376px;
  2028. height:50px;
  2029. display:flex;
  2030. }
  2031. #u14386 .text {
  2032. position:absolute;
  2033. align-self:center;
  2034. padding:2px 2px 2px 2px;
  2035. box-sizing:border-box;
  2036. width:100%;
  2037. }
  2038. #u14386_text {
  2039. border-width:0px;
  2040. word-wrap:break-word;
  2041. text-transform:none;
  2042. visibility:hidden;
  2043. }
  2044. #u14387_input {
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:185px;
  2049. height:25px;
  2050. padding:2px 2px 2px 2px;
  2051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2052. font-weight:400;
  2053. font-style:normal;
  2054. font-size:14px;
  2055. letter-spacing:normal;
  2056. color:#333333;
  2057. vertical-align:none;
  2058. text-align:left;
  2059. text-transform:none;
  2060. background-color:transparent;
  2061. border-color:transparent;
  2062. }
  2063. #u14387_input.disabled {
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:185px;
  2068. height:25px;
  2069. padding:2px 2px 2px 2px;
  2070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2071. font-weight:400;
  2072. font-style:normal;
  2073. font-size:14px;
  2074. letter-spacing:normal;
  2075. color:#333333;
  2076. vertical-align:none;
  2077. text-align:left;
  2078. text-transform:none;
  2079. background-color:transparent;
  2080. border-color:transparent;
  2081. }
  2082. #u14387_div {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:185px;
  2088. height:25px;
  2089. background:inherit;
  2090. background-color:rgba(255, 255, 255, 1);
  2091. border:none;
  2092. border-radius:0px;
  2093. -moz-box-shadow:none;
  2094. -webkit-box-shadow:none;
  2095. box-shadow:none;
  2096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2097. font-weight:400;
  2098. font-style:normal;
  2099. font-size:14px;
  2100. color:#333333;
  2101. }
  2102. #u14387 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:515px;
  2106. top:128px;
  2107. width:185px;
  2108. height:25px;
  2109. display:flex;
  2110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2111. font-weight:400;
  2112. font-style:normal;
  2113. font-size:14px;
  2114. color:#333333;
  2115. }
  2116. #u14387 .text {
  2117. position:absolute;
  2118. align-self:center;
  2119. padding:2px 2px 2px 2px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u14387_div.disabled {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:185px;
  2129. height:25px;
  2130. background:inherit;
  2131. background-color:rgba(240, 240, 240, 1);
  2132. border:none;
  2133. border-radius:0px;
  2134. -moz-box-shadow:none;
  2135. -webkit-box-shadow:none;
  2136. box-shadow:none;
  2137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. font-size:14px;
  2141. color:#333333;
  2142. }
  2143. #u14387.disabled {
  2144. }
  2145. #u14388_div {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:341px;
  2151. height:40px;
  2152. background:inherit;
  2153. background-color:rgba(0, 137, 254, 1);
  2154. border:none;
  2155. border-radius:45px;
  2156. -moz-box-shadow:none;
  2157. -webkit-box-shadow:none;
  2158. box-shadow:none;
  2159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2160. font-weight:400;
  2161. font-style:normal;
  2162. font-size:14px;
  2163. color:#FFFFFF;
  2164. }
  2165. #u14388 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:507px;
  2169. top:773px;
  2170. width:341px;
  2171. height:40px;
  2172. display:flex;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. font-size:14px;
  2177. color:#FFFFFF;
  2178. }
  2179. #u14388 .text {
  2180. position:absolute;
  2181. align-self:center;
  2182. padding:2px 2px 2px 2px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u14388_text {
  2187. border-width:0px;
  2188. word-wrap:break-word;
  2189. text-transform:none;
  2190. }