styles.css 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082
  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. #u142341_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u142341 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u142341 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u142341_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u142342_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. #u142342 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u142342 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u142342_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u142343 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u142344_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. #u142344 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u142344 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u142344_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u142345 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u142346_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u142346 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u142346 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u142346_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u142347_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u142347 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u142347 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u142347_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u142348 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u142349_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u142349 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u142349 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u142349_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u142350_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u142350 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u142350 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u142350_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u142351_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u142351 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u142351 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u142351_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u142352_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u142352 {
  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. #u142352 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u142352_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u142353_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u142353 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u142353 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u142353_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u142354_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. #u142354 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u142354 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u142354_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u142355 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u142356_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u142356 {
  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. #u142356 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u142356_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u142357_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. #u142357 {
  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. #u142357 .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. #u142357_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u142358 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u142359_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u142359 {
  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. #u142359 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u142359_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u142360_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. #u142360 {
  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. #u142360 .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. #u142360_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u142361_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. #u142361 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u142361 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u142361_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u142362 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u142363_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u142363 {
  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. #u142363 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u142363_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u142364_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. #u142364 {
  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. #u142364 .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. #u142364_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u142365 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u142366_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u142366 {
  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. #u142366 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u142366_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u142367_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. #u142367 {
  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. #u142367 .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. #u142367_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u142368_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, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:35px;
  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. #u142368 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:106px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u142368 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u142368_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u142369_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:40px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 1);
  828. box-sizing:border-box;
  829. border-width:1px;
  830. border-style:solid;
  831. border-color:rgba(215, 215, 215, 1);
  832. border-left:0px;
  833. border-top:0px;
  834. border-right:0px;
  835. border-radius:0px;
  836. border-bottom-right-radius:0px;
  837. border-bottom-left-radius:0px;
  838. -moz-box-shadow:none;
  839. -webkit-box-shadow:none;
  840. box-shadow:none;
  841. }
  842. #u142369 {
  843. border-width:0px;
  844. position:absolute;
  845. left:29px;
  846. top:67px;
  847. width:375px;
  848. height:40px;
  849. display:flex;
  850. }
  851. #u142369 .text {
  852. position:absolute;
  853. align-self:center;
  854. padding:2px 2px 2px 2px;
  855. box-sizing:border-box;
  856. width:100%;
  857. }
  858. #u142369_text {
  859. border-width:0px;
  860. word-wrap:break-word;
  861. text-transform:none;
  862. visibility:hidden;
  863. }
  864. #u142370_img {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:375px;
  870. height:44px;
  871. }
  872. #u142370 {
  873. border-width:0px;
  874. position:absolute;
  875. left:29px;
  876. top:24px;
  877. width:375px;
  878. height:44px;
  879. display:flex;
  880. }
  881. #u142370 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u142370_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u142371 {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:0px;
  900. height:0px;
  901. }
  902. #u142372_div {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:88px;
  908. height:32px;
  909. background:inherit;
  910. background-color:rgba(255, 255, 255, 1);
  911. box-sizing:border-box;
  912. border-width:1px;
  913. border-style:solid;
  914. border-color:rgba(242, 242, 242, 1);
  915. border-radius:33px;
  916. -moz-box-shadow:none;
  917. -webkit-box-shadow:none;
  918. box-shadow:none;
  919. }
  920. #u142372 {
  921. border-width:0px;
  922. position:absolute;
  923. left:309px;
  924. top:71px;
  925. width:88px;
  926. height:32px;
  927. display:flex;
  928. }
  929. #u142372 .text {
  930. position:absolute;
  931. align-self:center;
  932. padding:2px 2px 2px 2px;
  933. box-sizing:border-box;
  934. width:100%;
  935. }
  936. #u142372_text {
  937. border-width:0px;
  938. word-wrap:break-word;
  939. text-transform:none;
  940. visibility:hidden;
  941. }
  942. #u142373 {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:0px;
  948. height:0px;
  949. }
  950. #u142374_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:18px;
  956. height:18px;
  957. }
  958. #u142374 {
  959. border-width:0px;
  960. position:absolute;
  961. left:372px;
  962. top:78px;
  963. width:18px;
  964. height:18px;
  965. display:flex;
  966. }
  967. #u142374 .text {
  968. position:absolute;
  969. align-self:center;
  970. padding:2px 2px 2px 2px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u142374_text {
  975. border-width:0px;
  976. word-wrap:break-word;
  977. text-transform:none;
  978. visibility:hidden;
  979. }
  980. #u142375_img {
  981. border-width:0px;
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:6px;
  986. height:6px;
  987. }
  988. #u142375 {
  989. border-width:0px;
  990. position:absolute;
  991. left:378px;
  992. top:84px;
  993. width:6px;
  994. height:6px;
  995. display:flex;
  996. }
  997. #u142375 .text {
  998. position:absolute;
  999. align-self:center;
  1000. padding:2px 2px 2px 2px;
  1001. box-sizing:border-box;
  1002. width:100%;
  1003. }
  1004. #u142375_text {
  1005. border-width:0px;
  1006. word-wrap:break-word;
  1007. text-transform:none;
  1008. visibility:hidden;
  1009. }
  1010. #u142376 {
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:0px;
  1014. top:0px;
  1015. width:0px;
  1016. height:0px;
  1017. }
  1018. #u142377_img {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:5px;
  1024. height:5px;
  1025. }
  1026. #u142377 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:323px;
  1030. top:85px;
  1031. width:5px;
  1032. height:5px;
  1033. display:flex;
  1034. }
  1035. #u142377 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u142377_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u142378_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:5px;
  1054. height:5px;
  1055. }
  1056. #u142378 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:339px;
  1060. top:85px;
  1061. width:5px;
  1062. height:5px;
  1063. display:flex;
  1064. }
  1065. #u142378 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:2px 2px 2px 2px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u142378_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u142379_img {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:7px;
  1084. height:7px;
  1085. }
  1086. #u142379 {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:330px;
  1090. top:84px;
  1091. width:7px;
  1092. height:7px;
  1093. display:flex;
  1094. }
  1095. #u142379 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:2px 2px 2px 2px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u142379_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u142380_img {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:19px;
  1114. height:2px;
  1115. }
  1116. #u142380 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:347px;
  1120. top:87px;
  1121. width:18px;
  1122. height:1px;
  1123. display:flex;
  1124. -webkit-transform:rotate(90deg);
  1125. -moz-transform:rotate(90deg);
  1126. -ms-transform:rotate(90deg);
  1127. transform:rotate(90deg);
  1128. }
  1129. #u142380 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u142380_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u142381_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:81px;
  1148. height:22px;
  1149. background:inherit;
  1150. background-color:rgba(255, 255, 255, 0);
  1151. border:none;
  1152. border-radius:0px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. font-size:16px;
  1160. color:#000000;
  1161. }
  1162. #u142381 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:70px;
  1166. top:78px;
  1167. width:81px;
  1168. height:22px;
  1169. display:flex;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. font-size:16px;
  1174. color:#000000;
  1175. }
  1176. #u142381 .text {
  1177. position:absolute;
  1178. align-self:flex-start;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u142381_text {
  1184. border-width:0px;
  1185. white-space:nowrap;
  1186. text-transform:none;
  1187. }
  1188. #u142382_div {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:12px;
  1194. height:12px;
  1195. background:inherit;
  1196. background-color:rgba(255, 255, 255, 0);
  1197. box-sizing:border-box;
  1198. border-width:2px;
  1199. border-style:solid;
  1200. border-color:rgba(51, 51, 51, 1);
  1201. border-right:0px;
  1202. border-bottom:0px;
  1203. border-radius:0px;
  1204. border-top-right-radius:0px;
  1205. border-bottom-left-radius:0px;
  1206. -moz-box-shadow:none;
  1207. -webkit-box-shadow:none;
  1208. box-shadow:none;
  1209. }
  1210. #u142382 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:46px;
  1214. top:81px;
  1215. width:12px;
  1216. height:12px;
  1217. display:flex;
  1218. -webkit-transform:rotate(315deg);
  1219. -moz-transform:rotate(315deg);
  1220. -ms-transform:rotate(315deg);
  1221. transform:rotate(315deg);
  1222. }
  1223. #u142382 .text {
  1224. position:absolute;
  1225. align-self:center;
  1226. padding:2px 2px 2px 2px;
  1227. box-sizing:border-box;
  1228. width:100%;
  1229. }
  1230. #u142382_text {
  1231. border-width:0px;
  1232. word-wrap:break-word;
  1233. text-transform:none;
  1234. visibility:hidden;
  1235. }
  1236. #u142383_img {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:0px;
  1240. top:0px;
  1241. width:376px;
  1242. height:199px;
  1243. }
  1244. #u142383 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:28px;
  1248. top:148px;
  1249. width:376px;
  1250. height:199px;
  1251. display:flex;
  1252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1253. font-weight:400;
  1254. font-style:normal;
  1255. color:#FFFFFF;
  1256. }
  1257. #u142383 .text {
  1258. position:absolute;
  1259. align-self:center;
  1260. padding:2px 2px 2px 2px;
  1261. box-sizing:border-box;
  1262. width:100%;
  1263. }
  1264. #u142383_text {
  1265. border-width:0px;
  1266. word-wrap:break-word;
  1267. text-transform:none;
  1268. }
  1269. #u142384 {
  1270. border-width:0px;
  1271. position:absolute;
  1272. left:0px;
  1273. top:0px;
  1274. width:0px;
  1275. height:0px;
  1276. }
  1277. #u142385_div {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:375px;
  1283. height:50px;
  1284. background:inherit;
  1285. background-color:rgba(0, 0, 0, 1);
  1286. border:none;
  1287. border-radius:0px;
  1288. -moz-box-shadow:none;
  1289. -webkit-box-shadow:none;
  1290. box-shadow:none;
  1291. }
  1292. #u142385 {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:29px;
  1296. top:298px;
  1297. width:375px;
  1298. height:50px;
  1299. display:flex;
  1300. }
  1301. #u142385 .text {
  1302. position:absolute;
  1303. align-self:center;
  1304. padding:2px 2px 2px 2px;
  1305. box-sizing:border-box;
  1306. width:100%;
  1307. }
  1308. #u142385_text {
  1309. border-width:0px;
  1310. word-wrap:break-word;
  1311. text-transform:none;
  1312. visibility:hidden;
  1313. }
  1314. #u142386_div {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:0px;
  1318. top:0px;
  1319. width:40px;
  1320. height:24px;
  1321. background:inherit;
  1322. background-color:rgba(255, 255, 255, 0);
  1323. box-sizing:border-box;
  1324. border-width:1px;
  1325. border-style:solid;
  1326. border-color:rgba(255, 255, 255, 1);
  1327. border-radius:4px;
  1328. -moz-box-shadow:none;
  1329. -webkit-box-shadow:none;
  1330. box-shadow:none;
  1331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1332. font-weight:400;
  1333. font-style:normal;
  1334. font-size:12px;
  1335. color:#FFFFFF;
  1336. text-align:center;
  1337. }
  1338. #u142386 {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:116px;
  1342. top:311px;
  1343. width:40px;
  1344. height:24px;
  1345. display:flex;
  1346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1347. font-weight:400;
  1348. font-style:normal;
  1349. font-size:12px;
  1350. color:#FFFFFF;
  1351. text-align:center;
  1352. }
  1353. #u142386 .text {
  1354. position:absolute;
  1355. align-self:center;
  1356. padding:0px 0px 0px 0px;
  1357. box-sizing:border-box;
  1358. width:100%;
  1359. }
  1360. #u142386_text {
  1361. border-width:0px;
  1362. word-wrap:break-word;
  1363. text-transform:none;
  1364. }
  1365. #u142387_img {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:0px;
  1369. top:0px;
  1370. width:44px;
  1371. height:33px;
  1372. }
  1373. #u142387 {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:269px;
  1377. top:307px;
  1378. width:44px;
  1379. height:33px;
  1380. display:flex;
  1381. }
  1382. #u142387 .text {
  1383. position:absolute;
  1384. align-self:center;
  1385. padding:2px 2px 2px 2px;
  1386. box-sizing:border-box;
  1387. width:100%;
  1388. }
  1389. #u142387_text {
  1390. border-width:0px;
  1391. word-wrap:break-word;
  1392. text-transform:none;
  1393. visibility:hidden;
  1394. }
  1395. #u142388_img {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:0px;
  1399. top:0px;
  1400. width:28px;
  1401. height:26px;
  1402. }
  1403. #u142388 {
  1404. border-width:0px;
  1405. position:absolute;
  1406. left:357px;
  1407. top:310px;
  1408. width:28px;
  1409. height:26px;
  1410. display:flex;
  1411. }
  1412. #u142388 .text {
  1413. position:absolute;
  1414. align-self:center;
  1415. padding:2px 2px 2px 2px;
  1416. box-sizing:border-box;
  1417. width:100%;
  1418. }
  1419. #u142388_text {
  1420. border-width:0px;
  1421. word-wrap:break-word;
  1422. text-transform:none;
  1423. visibility:hidden;
  1424. }
  1425. #u142389 {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:0px;
  1429. top:0px;
  1430. width:0px;
  1431. height:0px;
  1432. }
  1433. #u142390_div {
  1434. border-width:0px;
  1435. position:absolute;
  1436. left:0px;
  1437. top:0px;
  1438. width:11px;
  1439. height:10px;
  1440. background:inherit;
  1441. background-color:rgba(242, 242, 242, 1);
  1442. border:none;
  1443. border-radius:0px;
  1444. -moz-box-shadow:none;
  1445. -webkit-box-shadow:none;
  1446. box-shadow:none;
  1447. }
  1448. #u142390 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:200px;
  1452. top:312px;
  1453. width:11px;
  1454. height:10px;
  1455. display:flex;
  1456. }
  1457. #u142390 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u142390_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u142391_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:11px;
  1476. height:10px;
  1477. background:inherit;
  1478. background-color:rgba(242, 242, 242, 1);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. }
  1485. #u142391 {
  1486. border-width:0px;
  1487. position:absolute;
  1488. left:213px;
  1489. top:312px;
  1490. width:11px;
  1491. height:10px;
  1492. display:flex;
  1493. }
  1494. #u142391 .text {
  1495. position:absolute;
  1496. align-self:center;
  1497. padding:2px 2px 2px 2px;
  1498. box-sizing:border-box;
  1499. width:100%;
  1500. }
  1501. #u142391_text {
  1502. border-width:0px;
  1503. word-wrap:break-word;
  1504. text-transform:none;
  1505. visibility:hidden;
  1506. }
  1507. #u142392_div {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:11px;
  1513. height:10px;
  1514. background:inherit;
  1515. background-color:rgba(242, 242, 242, 1);
  1516. border:none;
  1517. border-radius:0px;
  1518. -moz-box-shadow:none;
  1519. -webkit-box-shadow:none;
  1520. box-shadow:none;
  1521. }
  1522. #u142392 {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:200px;
  1526. top:324px;
  1527. width:11px;
  1528. height:10px;
  1529. display:flex;
  1530. }
  1531. #u142392 .text {
  1532. position:absolute;
  1533. align-self:center;
  1534. padding:2px 2px 2px 2px;
  1535. box-sizing:border-box;
  1536. width:100%;
  1537. }
  1538. #u142392_text {
  1539. border-width:0px;
  1540. word-wrap:break-word;
  1541. text-transform:none;
  1542. visibility:hidden;
  1543. }
  1544. #u142393_div {
  1545. border-width:0px;
  1546. position:absolute;
  1547. left:0px;
  1548. top:0px;
  1549. width:11px;
  1550. height:10px;
  1551. background:inherit;
  1552. background-color:rgba(242, 242, 242, 1);
  1553. border:none;
  1554. border-radius:0px;
  1555. -moz-box-shadow:none;
  1556. -webkit-box-shadow:none;
  1557. box-shadow:none;
  1558. }
  1559. #u142393 {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:213px;
  1563. top:324px;
  1564. width:11px;
  1565. height:10px;
  1566. display:flex;
  1567. }
  1568. #u142393 .text {
  1569. position:absolute;
  1570. align-self:center;
  1571. padding:2px 2px 2px 2px;
  1572. box-sizing:border-box;
  1573. width:100%;
  1574. }
  1575. #u142393_text {
  1576. border-width:0px;
  1577. word-wrap:break-word;
  1578. text-transform:none;
  1579. visibility:hidden;
  1580. }
  1581. #u142394 {
  1582. border-width:0px;
  1583. position:absolute;
  1584. left:0px;
  1585. top:0px;
  1586. width:0px;
  1587. height:0px;
  1588. }
  1589. #u142395_div {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:0px;
  1593. top:0px;
  1594. width:7px;
  1595. height:22px;
  1596. background:inherit;
  1597. background-color:rgba(242, 242, 242, 1);
  1598. border:none;
  1599. border-radius:0px;
  1600. -moz-box-shadow:none;
  1601. -webkit-box-shadow:none;
  1602. box-shadow:none;
  1603. }
  1604. #u142395 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:53px;
  1608. top:312px;
  1609. width:7px;
  1610. height:22px;
  1611. display:flex;
  1612. }
  1613. #u142395 .text {
  1614. position:absolute;
  1615. align-self:center;
  1616. padding:2px 2px 2px 2px;
  1617. box-sizing:border-box;
  1618. width:100%;
  1619. }
  1620. #u142395_text {
  1621. border-width:0px;
  1622. word-wrap:break-word;
  1623. text-transform:none;
  1624. visibility:hidden;
  1625. }
  1626. #u142396_div {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:7px;
  1632. height:22px;
  1633. background:inherit;
  1634. background-color:rgba(242, 242, 242, 1);
  1635. border:none;
  1636. border-radius:0px;
  1637. -moz-box-shadow:none;
  1638. -webkit-box-shadow:none;
  1639. box-shadow:none;
  1640. }
  1641. #u142396 {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:64px;
  1645. top:312px;
  1646. width:7px;
  1647. height:22px;
  1648. display:flex;
  1649. }
  1650. #u142396 .text {
  1651. position:absolute;
  1652. align-self:center;
  1653. padding:2px 2px 2px 2px;
  1654. box-sizing:border-box;
  1655. width:100%;
  1656. }
  1657. #u142396_text {
  1658. border-width:0px;
  1659. word-wrap:break-word;
  1660. text-transform:none;
  1661. visibility:hidden;
  1662. }
  1663. #u142397 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:0px;
  1669. height:0px;
  1670. }
  1671. #u142398_div {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:375px;
  1677. height:174px;
  1678. background:inherit;
  1679. background-color:rgba(255, 255, 255, 1);
  1680. border:none;
  1681. border-radius:0px;
  1682. -moz-box-shadow:none;
  1683. -webkit-box-shadow:none;
  1684. box-shadow:none;
  1685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1686. font-weight:400;
  1687. font-style:normal;
  1688. }
  1689. #u142398 {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:29px;
  1693. top:478px;
  1694. width:375px;
  1695. height:174px;
  1696. display:flex;
  1697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1698. font-weight:400;
  1699. font-style:normal;
  1700. }
  1701. #u142398 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u142398_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. }
  1713. #u142399_div {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:0px;
  1717. top:0px;
  1718. width:65px;
  1719. height:22px;
  1720. background:inherit;
  1721. background-color:rgba(255, 255, 255, 0);
  1722. border:none;
  1723. border-radius:0px;
  1724. -moz-box-shadow:none;
  1725. -webkit-box-shadow:none;
  1726. box-shadow:none;
  1727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1728. font-weight:400;
  1729. font-style:normal;
  1730. font-size:16px;
  1731. color:#000000;
  1732. }
  1733. #u142399 {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:44px;
  1737. top:490px;
  1738. width:65px;
  1739. height:22px;
  1740. display:flex;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:16px;
  1745. color:#000000;
  1746. }
  1747. #u142399 .text {
  1748. position:absolute;
  1749. align-self:flex-start;
  1750. padding:0px 0px 0px 0px;
  1751. box-sizing:border-box;
  1752. width:100%;
  1753. }
  1754. #u142399_text {
  1755. border-width:0px;
  1756. white-space:nowrap;
  1757. text-transform:none;
  1758. }
  1759. #u142400 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:0px;
  1765. height:0px;
  1766. }
  1767. #u142401_div {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:375px;
  1773. height:120px;
  1774. background:inherit;
  1775. background-color:rgba(255, 255, 255, 1);
  1776. border:none;
  1777. border-radius:0px;
  1778. -moz-box-shadow:none;
  1779. -webkit-box-shadow:none;
  1780. box-shadow:none;
  1781. }
  1782. #u142401 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:29px;
  1786. top:348px;
  1787. width:375px;
  1788. height:120px;
  1789. display:flex;
  1790. }
  1791. #u142401 .text {
  1792. position:absolute;
  1793. align-self:center;
  1794. padding:2px 2px 2px 2px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u142401_text {
  1799. border-width:0px;
  1800. word-wrap:break-word;
  1801. text-transform:none;
  1802. visibility:hidden;
  1803. }
  1804. #u142402_div {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:65px;
  1810. height:22px;
  1811. background:inherit;
  1812. background-color:rgba(255, 255, 255, 0);
  1813. border:none;
  1814. border-radius:0px;
  1815. -moz-box-shadow:none;
  1816. -webkit-box-shadow:none;
  1817. box-shadow:none;
  1818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1819. font-weight:400;
  1820. font-style:normal;
  1821. font-size:16px;
  1822. color:#000000;
  1823. }
  1824. #u142402 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:44px;
  1828. top:360px;
  1829. width:65px;
  1830. height:22px;
  1831. display:flex;
  1832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1833. font-weight:400;
  1834. font-style:normal;
  1835. font-size:16px;
  1836. color:#000000;
  1837. }
  1838. #u142402 .text {
  1839. position:absolute;
  1840. align-self:flex-start;
  1841. padding:0px 0px 0px 0px;
  1842. box-sizing:border-box;
  1843. width:100%;
  1844. }
  1845. #u142402_text {
  1846. border-width:0px;
  1847. white-space:nowrap;
  1848. text-transform:none;
  1849. }
  1850. #u142403_div {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:327px;
  1856. height:20px;
  1857. background:inherit;
  1858. background-color:rgba(255, 255, 255, 0);
  1859. border:none;
  1860. border-radius:0px;
  1861. -moz-box-shadow:none;
  1862. -webkit-box-shadow:none;
  1863. box-shadow:none;
  1864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. color:#000000;
  1868. }
  1869. #u142403 {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:43px;
  1873. top:400px;
  1874. width:327px;
  1875. height:20px;
  1876. display:flex;
  1877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1878. font-weight:400;
  1879. font-style:normal;
  1880. color:#000000;
  1881. }
  1882. #u142403 .text {
  1883. position:absolute;
  1884. align-self:flex-start;
  1885. padding:0px 0px 0px 0px;
  1886. box-sizing:border-box;
  1887. width:100%;
  1888. }
  1889. #u142403_text {
  1890. border-width:0px;
  1891. white-space:nowrap;
  1892. text-transform:none;
  1893. }
  1894. #u142404_div {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:131px;
  1900. height:20px;
  1901. background:inherit;
  1902. background-color:rgba(255, 255, 255, 0);
  1903. border:none;
  1904. border-radius:0px;
  1905. -moz-box-shadow:none;
  1906. -webkit-box-shadow:none;
  1907. box-shadow:none;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. color:#000000;
  1912. }
  1913. #u142404 {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:43px;
  1917. top:430px;
  1918. width:131px;
  1919. height:20px;
  1920. display:flex;
  1921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1922. font-weight:400;
  1923. font-style:normal;
  1924. color:#000000;
  1925. }
  1926. #u142404 .text {
  1927. position:absolute;
  1928. align-self:flex-start;
  1929. padding:0px 0px 0px 0px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u142404_text {
  1934. border-width:0px;
  1935. white-space:nowrap;
  1936. text-transform:none;
  1937. }
  1938. #u142405 {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:0px;
  1944. height:0px;
  1945. }
  1946. #u142406_div {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:0px;
  1950. top:0px;
  1951. width:375px;
  1952. height:40px;
  1953. background:inherit;
  1954. background-color:rgba(255, 255, 255, 1);
  1955. box-sizing:border-box;
  1956. border-width:1px;
  1957. border-style:solid;
  1958. border-color:rgba(242, 242, 242, 1);
  1959. border-left:0px;
  1960. border-top:0px;
  1961. border-right:0px;
  1962. border-radius:0px;
  1963. border-bottom-right-radius:0px;
  1964. border-bottom-left-radius:0px;
  1965. -moz-box-shadow:none;
  1966. -webkit-box-shadow:none;
  1967. box-shadow:none;
  1968. }
  1969. #u142406 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:29px;
  1973. top:108px;
  1974. width:375px;
  1975. height:40px;
  1976. display:flex;
  1977. }
  1978. #u142406 .text {
  1979. position:absolute;
  1980. align-self:center;
  1981. padding:2px 2px 2px 2px;
  1982. box-sizing:border-box;
  1983. width:100%;
  1984. }
  1985. #u142406_text {
  1986. border-width:0px;
  1987. word-wrap:break-word;
  1988. text-transform:none;
  1989. visibility:hidden;
  1990. }
  1991. #u142407_input {
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:347px;
  1996. height:41px;
  1997. padding:2px 2px 2px 2px;
  1998. font-family:'ArialMT', 'Arial', sans-serif;
  1999. font-weight:400;
  2000. font-style:normal;
  2001. font-size:16px;
  2002. letter-spacing:normal;
  2003. color:#000000;
  2004. vertical-align:none;
  2005. text-align:left;
  2006. text-transform:none;
  2007. background-color:transparent;
  2008. border-color:transparent;
  2009. }
  2010. #u142407_input.disabled {
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:347px;
  2015. height:41px;
  2016. padding:2px 2px 2px 2px;
  2017. font-family:'ArialMT', 'Arial', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:16px;
  2021. letter-spacing:normal;
  2022. color:#000000;
  2023. vertical-align:none;
  2024. text-align:left;
  2025. text-transform:none;
  2026. background-color:transparent;
  2027. border-color:transparent;
  2028. }
  2029. #u142407_div {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:347px;
  2035. height:41px;
  2036. background:inherit;
  2037. background-color:rgba(255, 255, 255, 1);
  2038. border:none;
  2039. border-radius:0px;
  2040. -moz-box-shadow:none;
  2041. -webkit-box-shadow:none;
  2042. box-shadow:none;
  2043. font-size:16px;
  2044. }
  2045. #u142407 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:43px;
  2049. top:107px;
  2050. width:347px;
  2051. height:41px;
  2052. display:flex;
  2053. font-size:16px;
  2054. }
  2055. #u142407 .text {
  2056. position:absolute;
  2057. align-self:flex-start;
  2058. padding:2px 2px 2px 2px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u142407_div.disabled {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:347px;
  2068. height:41px;
  2069. background:inherit;
  2070. background-color:rgba(240, 240, 240, 1);
  2071. border:none;
  2072. border-radius:0px;
  2073. -moz-box-shadow:none;
  2074. -webkit-box-shadow:none;
  2075. box-shadow:none;
  2076. font-size:16px;
  2077. }
  2078. #u142407.disabled {
  2079. }
  2080. .u142407_input_option {
  2081. font-size:16px;
  2082. }