styles.css 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331
  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. #u34572_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u34572 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u34572 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u34572_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u34573_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. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u34573 {
  70. border-width:0px;
  71. position:absolute;
  72. left:29px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u34573 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u34573_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u34574 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u34575_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u34575 {
  118. border-width:0px;
  119. position:absolute;
  120. left:309px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u34575 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u34575_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u34576 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u34577_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u34577 {
  156. border-width:0px;
  157. position:absolute;
  158. left:372px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u34577 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u34577_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u34578_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u34578 {
  186. border-width:0px;
  187. position:absolute;
  188. left:378px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u34578 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u34578_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u34579 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u34580_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u34580 {
  224. border-width:0px;
  225. position:absolute;
  226. left:323px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u34580 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u34580_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u34581_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u34581 {
  254. border-width:0px;
  255. position:absolute;
  256. left:339px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u34581 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u34581_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u34582_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u34582 {
  284. border-width:0px;
  285. position:absolute;
  286. left:330px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u34582 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u34582_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u34583_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u34583 {
  314. border-width:0px;
  315. position:absolute;
  316. left:347px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u34583 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u34583_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u34584_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:44px;
  346. }
  347. #u34584 {
  348. border-width:0px;
  349. position:absolute;
  350. left:29px;
  351. top:24px;
  352. width:375px;
  353. height:44px;
  354. display:flex;
  355. }
  356. #u34584 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 2px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u34584_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u34585_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:375px;
  375. height:50px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 1);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(242, 242, 242, 1);
  382. border-radius:26px;
  383. border-top-left-radius:0px;
  384. border-top-right-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. }
  389. #u34585 {
  390. border-width:0px;
  391. position:absolute;
  392. left:29px;
  393. top:788px;
  394. width:375px;
  395. height:50px;
  396. display:flex;
  397. }
  398. #u34585 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u34585_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. visibility:hidden;
  410. }
  411. #u34586 {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:0px;
  417. height:0px;
  418. }
  419. #u34587_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:24px;
  425. height:24px;
  426. }
  427. #u34587 {
  428. border-width:0px;
  429. position:absolute;
  430. left:69px;
  431. top:792px;
  432. width:24px;
  433. height:24px;
  434. display:flex;
  435. font-size:8px;
  436. }
  437. #u34587 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u34587_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u34588_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:25px;
  455. height:17px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:12px;
  467. }
  468. #u34588 {
  469. border-width:0px;
  470. position:absolute;
  471. left:69px;
  472. top:817px;
  473. width:25px;
  474. height:17px;
  475. display:flex;
  476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  477. font-weight:400;
  478. font-style:normal;
  479. font-size:12px;
  480. }
  481. #u34588 .text {
  482. position:absolute;
  483. align-self:flex-start;
  484. padding:0px 0px 0px 0px;
  485. box-sizing:border-box;
  486. width:100%;
  487. }
  488. #u34588_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u34589 {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:0px;
  499. height:0px;
  500. }
  501. #u34590_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:24px;
  507. height:24px;
  508. }
  509. #u34590 {
  510. border-width:0px;
  511. position:absolute;
  512. left:339px;
  513. top:794px;
  514. width:24px;
  515. height:24px;
  516. display:flex;
  517. font-size:8px;
  518. }
  519. #u34590 .text {
  520. position:absolute;
  521. align-self:center;
  522. padding:2px 2px 2px 2px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u34590_text {
  527. border-width:0px;
  528. word-wrap:break-word;
  529. text-transform:none;
  530. }
  531. #u34591_div {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:25px;
  537. height:17px;
  538. background:inherit;
  539. background-color:rgba(255, 255, 255, 0);
  540. border:none;
  541. border-radius:0px;
  542. -moz-box-shadow:none;
  543. -webkit-box-shadow:none;
  544. box-shadow:none;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:12px;
  549. }
  550. #u34591 {
  551. border-width:0px;
  552. position:absolute;
  553. left:339px;
  554. top:819px;
  555. width:25px;
  556. height:17px;
  557. display:flex;
  558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  559. font-weight:400;
  560. font-style:normal;
  561. font-size:12px;
  562. }
  563. #u34591 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u34591_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u34592_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:375px;
  581. height:681px;
  582. background:inherit;
  583. background-color:rgba(242, 242, 242, 0.462745098039216);
  584. border:none;
  585. border-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. }
  590. #u34592 {
  591. border-width:0px;
  592. position:absolute;
  593. left:29px;
  594. top:107px;
  595. width:375px;
  596. height:681px;
  597. display:flex;
  598. }
  599. #u34592 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u34592_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. visibility:hidden;
  611. }
  612. #u34593 {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. height:0px;
  619. }
  620. #u34594_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:24px;
  626. height:24px;
  627. }
  628. #u34594 {
  629. border-width:0px;
  630. position:absolute;
  631. left:251px;
  632. top:792px;
  633. width:24px;
  634. height:24px;
  635. display:flex;
  636. font-size:8px;
  637. }
  638. #u34594 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u34594_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u34595_div {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:37px;
  656. height:17px;
  657. background:inherit;
  658. background-color:rgba(255, 255, 255, 0);
  659. border:none;
  660. border-radius:0px;
  661. -moz-box-shadow:none;
  662. -webkit-box-shadow:none;
  663. box-shadow:none;
  664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  665. font-weight:400;
  666. font-style:normal;
  667. font-size:12px;
  668. }
  669. #u34595 {
  670. border-width:0px;
  671. position:absolute;
  672. left:245px;
  673. top:817px;
  674. width:37px;
  675. height:17px;
  676. display:flex;
  677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  678. font-weight:400;
  679. font-style:normal;
  680. font-size:12px;
  681. }
  682. #u34595 .text {
  683. position:absolute;
  684. align-self:flex-start;
  685. padding:0px 0px 0px 0px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u34595_text {
  690. border-width:0px;
  691. white-space:nowrap;
  692. text-transform:none;
  693. }
  694. #u34596 {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:0px;
  700. height:0px;
  701. }
  702. #u34597_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u34597 {
  711. border-width:0px;
  712. position:absolute;
  713. left:157px;
  714. top:792px;
  715. width:24px;
  716. height:24px;
  717. display:flex;
  718. font-size:8px;
  719. }
  720. #u34597 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u34597_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u34598_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:37px;
  738. height:17px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border:none;
  742. border-radius:0px;
  743. -moz-box-shadow:none;
  744. -webkit-box-shadow:none;
  745. box-shadow:none;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:12px;
  750. }
  751. #u34598 {
  752. border-width:0px;
  753. position:absolute;
  754. left:151px;
  755. top:817px;
  756. width:37px;
  757. height:17px;
  758. display:flex;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:12px;
  763. }
  764. #u34598 .text {
  765. position:absolute;
  766. align-self:flex-start;
  767. padding:0px 0px 0px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u34598_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u34599_div {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:375px;
  782. height:732px;
  783. background:inherit;
  784. background-color:rgba(242, 242, 242, 0.996078431372549);
  785. border:none;
  786. border-top:0px;
  787. border-radius:28px;
  788. border-top-left-radius:0px;
  789. border-top-right-radius:0px;
  790. -moz-box-shadow:none;
  791. -webkit-box-shadow:none;
  792. box-shadow:none;
  793. }
  794. #u34599 {
  795. border-width:0px;
  796. position:absolute;
  797. left:29px;
  798. top:107px;
  799. width:375px;
  800. height:732px;
  801. display:flex;
  802. }
  803. #u34599 .text {
  804. position:absolute;
  805. align-self:center;
  806. padding:2px 2px 2px 2px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u34599_text {
  811. border-width:0px;
  812. word-wrap:break-word;
  813. text-transform:none;
  814. visibility:hidden;
  815. }
  816. #u34600_div {
  817. border-width:0px;
  818. position:absolute;
  819. left:0px;
  820. top:0px;
  821. width:375px;
  822. height:41px;
  823. background:inherit;
  824. background-color:rgba(255, 255, 255, 1);
  825. box-sizing:border-box;
  826. border-width:1px;
  827. border-style:solid;
  828. border-color:rgba(215, 215, 215, 1);
  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. }
  839. #u34600 {
  840. border-width:0px;
  841. position:absolute;
  842. left:29px;
  843. top:67px;
  844. width:375px;
  845. height:41px;
  846. display:flex;
  847. }
  848. #u34600 .text {
  849. position:absolute;
  850. align-self:center;
  851. padding:2px 2px 2px 2px;
  852. box-sizing:border-box;
  853. width:100%;
  854. }
  855. #u34600_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u34601_div {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:375px;
  867. height:115px;
  868. background:inherit;
  869. background-color:rgba(255, 255, 255, 1);
  870. box-sizing:border-box;
  871. border-width:1px;
  872. border-style:solid;
  873. border-color:rgba(215, 215, 215, 1);
  874. border-left:0px;
  875. border-top:0px;
  876. border-right:0px;
  877. border-radius:0px;
  878. border-bottom-right-radius:0px;
  879. border-bottom-left-radius:0px;
  880. -moz-box-shadow:none;
  881. -webkit-box-shadow:none;
  882. box-shadow:none;
  883. }
  884. #u34601 {
  885. border-width:0px;
  886. position:absolute;
  887. left:29px;
  888. top:108px;
  889. width:375px;
  890. height:115px;
  891. display:flex;
  892. }
  893. #u34601 .text {
  894. position:absolute;
  895. align-self:center;
  896. padding:2px 2px 2px 2px;
  897. box-sizing:border-box;
  898. width:100%;
  899. }
  900. #u34601_text {
  901. border-width:0px;
  902. word-wrap:break-word;
  903. text-transform:none;
  904. visibility:hidden;
  905. }
  906. #u34602_img {
  907. border-width:0px;
  908. position:absolute;
  909. left:0px;
  910. top:0px;
  911. width:375px;
  912. height:44px;
  913. }
  914. #u34602 {
  915. border-width:0px;
  916. position:absolute;
  917. left:29px;
  918. top:24px;
  919. width:375px;
  920. height:44px;
  921. display:flex;
  922. }
  923. #u34602 .text {
  924. position:absolute;
  925. align-self:center;
  926. padding:2px 2px 2px 2px;
  927. box-sizing:border-box;
  928. width:100%;
  929. }
  930. #u34602_text {
  931. border-width:0px;
  932. word-wrap:break-word;
  933. text-transform:none;
  934. visibility:hidden;
  935. }
  936. #u34603 {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:0px;
  941. width:0px;
  942. height:0px;
  943. }
  944. #u34604_div {
  945. border-width:0px;
  946. position:absolute;
  947. left:0px;
  948. top:0px;
  949. width:88px;
  950. height:32px;
  951. background:inherit;
  952. background-color:rgba(255, 255, 255, 1);
  953. box-sizing:border-box;
  954. border-width:1px;
  955. border-style:solid;
  956. border-color:rgba(242, 242, 242, 1);
  957. border-radius:33px;
  958. -moz-box-shadow:none;
  959. -webkit-box-shadow:none;
  960. box-shadow:none;
  961. }
  962. #u34604 {
  963. border-width:0px;
  964. position:absolute;
  965. left:309px;
  966. top:71px;
  967. width:88px;
  968. height:32px;
  969. display:flex;
  970. }
  971. #u34604 .text {
  972. position:absolute;
  973. align-self:center;
  974. padding:2px 2px 2px 2px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u34604_text {
  979. border-width:0px;
  980. word-wrap:break-word;
  981. text-transform:none;
  982. visibility:hidden;
  983. }
  984. #u34605 {
  985. border-width:0px;
  986. position:absolute;
  987. left:0px;
  988. top:0px;
  989. width:0px;
  990. height:0px;
  991. }
  992. #u34606_img {
  993. border-width:0px;
  994. position:absolute;
  995. left:0px;
  996. top:0px;
  997. width:18px;
  998. height:18px;
  999. }
  1000. #u34606 {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:372px;
  1004. top:78px;
  1005. width:18px;
  1006. height:18px;
  1007. display:flex;
  1008. }
  1009. #u34606 .text {
  1010. position:absolute;
  1011. align-self:center;
  1012. padding:2px 2px 2px 2px;
  1013. box-sizing:border-box;
  1014. width:100%;
  1015. }
  1016. #u34606_text {
  1017. border-width:0px;
  1018. word-wrap:break-word;
  1019. text-transform:none;
  1020. visibility:hidden;
  1021. }
  1022. #u34607_img {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:0px;
  1026. top:0px;
  1027. width:6px;
  1028. height:6px;
  1029. }
  1030. #u34607 {
  1031. border-width:0px;
  1032. position:absolute;
  1033. left:378px;
  1034. top:84px;
  1035. width:6px;
  1036. height:6px;
  1037. display:flex;
  1038. }
  1039. #u34607 .text {
  1040. position:absolute;
  1041. align-self:center;
  1042. padding:2px 2px 2px 2px;
  1043. box-sizing:border-box;
  1044. width:100%;
  1045. }
  1046. #u34607_text {
  1047. border-width:0px;
  1048. word-wrap:break-word;
  1049. text-transform:none;
  1050. visibility:hidden;
  1051. }
  1052. #u34608 {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:0px;
  1056. top:0px;
  1057. width:0px;
  1058. height:0px;
  1059. }
  1060. #u34609_img {
  1061. border-width:0px;
  1062. position:absolute;
  1063. left:0px;
  1064. top:0px;
  1065. width:5px;
  1066. height:5px;
  1067. }
  1068. #u34609 {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:323px;
  1072. top:85px;
  1073. width:5px;
  1074. height:5px;
  1075. display:flex;
  1076. }
  1077. #u34609 .text {
  1078. position:absolute;
  1079. align-self:center;
  1080. padding:2px 2px 2px 2px;
  1081. box-sizing:border-box;
  1082. width:100%;
  1083. }
  1084. #u34609_text {
  1085. border-width:0px;
  1086. word-wrap:break-word;
  1087. text-transform:none;
  1088. visibility:hidden;
  1089. }
  1090. #u34610_img {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:5px;
  1096. height:5px;
  1097. }
  1098. #u34610 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:339px;
  1102. top:85px;
  1103. width:5px;
  1104. height:5px;
  1105. display:flex;
  1106. }
  1107. #u34610 .text {
  1108. position:absolute;
  1109. align-self:center;
  1110. padding:2px 2px 2px 2px;
  1111. box-sizing:border-box;
  1112. width:100%;
  1113. }
  1114. #u34610_text {
  1115. border-width:0px;
  1116. word-wrap:break-word;
  1117. text-transform:none;
  1118. visibility:hidden;
  1119. }
  1120. #u34611_img {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:7px;
  1126. height:7px;
  1127. }
  1128. #u34611 {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:330px;
  1132. top:84px;
  1133. width:7px;
  1134. height:7px;
  1135. display:flex;
  1136. }
  1137. #u34611 .text {
  1138. position:absolute;
  1139. align-self:center;
  1140. padding:2px 2px 2px 2px;
  1141. box-sizing:border-box;
  1142. width:100%;
  1143. }
  1144. #u34611_text {
  1145. border-width:0px;
  1146. word-wrap:break-word;
  1147. text-transform:none;
  1148. visibility:hidden;
  1149. }
  1150. #u34612_img {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:0px;
  1154. top:0px;
  1155. width:19px;
  1156. height:2px;
  1157. }
  1158. #u34612 {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:347px;
  1162. top:87px;
  1163. width:18px;
  1164. height:1px;
  1165. display:flex;
  1166. -webkit-transform:rotate(90deg);
  1167. -moz-transform:rotate(90deg);
  1168. -ms-transform:rotate(90deg);
  1169. transform:rotate(90deg);
  1170. }
  1171. #u34612 .text {
  1172. position:absolute;
  1173. align-self:center;
  1174. padding:2px 2px 2px 2px;
  1175. box-sizing:border-box;
  1176. width:100%;
  1177. }
  1178. #u34612_text {
  1179. border-width:0px;
  1180. word-wrap:break-word;
  1181. text-transform:none;
  1182. visibility:hidden;
  1183. }
  1184. #u34613_div {
  1185. border-width:0px;
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:12px;
  1190. height:12px;
  1191. background:inherit;
  1192. background-color:rgba(255, 255, 255, 0);
  1193. box-sizing:border-box;
  1194. border-width:2px;
  1195. border-style:solid;
  1196. border-color:rgba(51, 51, 51, 1);
  1197. border-right:0px;
  1198. border-bottom:0px;
  1199. border-radius:0px;
  1200. border-top-right-radius:0px;
  1201. border-bottom-left-radius:0px;
  1202. -moz-box-shadow:none;
  1203. -webkit-box-shadow:none;
  1204. box-shadow:none;
  1205. }
  1206. #u34613 {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:44px;
  1210. top:81px;
  1211. width:12px;
  1212. height:12px;
  1213. display:flex;
  1214. -webkit-transform:rotate(315deg);
  1215. -moz-transform:rotate(315deg);
  1216. -ms-transform:rotate(315deg);
  1217. transform:rotate(315deg);
  1218. }
  1219. #u34613 .text {
  1220. position:absolute;
  1221. align-self:center;
  1222. padding:2px 2px 2px 2px;
  1223. box-sizing:border-box;
  1224. width:100%;
  1225. }
  1226. #u34613_text {
  1227. border-width:0px;
  1228. word-wrap:break-word;
  1229. text-transform:none;
  1230. visibility:hidden;
  1231. }
  1232. #u34614_div {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:0px;
  1236. top:0px;
  1237. width:73px;
  1238. height:25px;
  1239. background:inherit;
  1240. background-color:rgba(255, 255, 255, 0);
  1241. border:none;
  1242. border-radius:0px;
  1243. -moz-box-shadow:none;
  1244. -webkit-box-shadow:none;
  1245. box-shadow:none;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:18px;
  1250. }
  1251. #u34614 {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:64px;
  1255. top:75px;
  1256. width:73px;
  1257. height:25px;
  1258. display:flex;
  1259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1260. font-weight:400;
  1261. font-style:normal;
  1262. font-size:18px;
  1263. }
  1264. #u34614 .text {
  1265. position:absolute;
  1266. align-self:flex-start;
  1267. padding:0px 0px 0px 0px;
  1268. box-sizing:border-box;
  1269. width:100%;
  1270. }
  1271. #u34614_text {
  1272. border-width:0px;
  1273. white-space:nowrap;
  1274. text-transform:none;
  1275. }
  1276. #u34615_div {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:0px;
  1280. top:0px;
  1281. width:353px;
  1282. height:40px;
  1283. background:inherit;
  1284. background-color:rgba(255, 255, 255, 0);
  1285. border:none;
  1286. border-top:0px;
  1287. border-right:0px;
  1288. border-bottom:0px;
  1289. border-radius:0px;
  1290. border-top-left-radius:0px;
  1291. border-bottom-left-radius:0px;
  1292. -moz-box-shadow:none;
  1293. -webkit-box-shadow:none;
  1294. box-shadow:none;
  1295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1296. font-weight:400;
  1297. font-style:normal;
  1298. font-size:14px;
  1299. line-height:30px;
  1300. }
  1301. #u34615 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:42px;
  1305. top:156px;
  1306. width:353px;
  1307. height:40px;
  1308. display:flex;
  1309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1310. font-weight:400;
  1311. font-style:normal;
  1312. font-size:14px;
  1313. line-height:30px;
  1314. }
  1315. #u34615 .text {
  1316. position:absolute;
  1317. align-self:flex-start;
  1318. padding:5px 10px 5px 0px;
  1319. box-sizing:border-box;
  1320. width:100%;
  1321. }
  1322. #u34615_text {
  1323. border-width:0px;
  1324. word-wrap:break-word;
  1325. text-transform:none;
  1326. }
  1327. #u34616_div {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:0px;
  1331. top:0px;
  1332. width:50px;
  1333. height:14px;
  1334. background:inherit;
  1335. background-color:rgba(242, 242, 242, 1);
  1336. border:none;
  1337. border-radius:9px;
  1338. -moz-box-shadow:none;
  1339. -webkit-box-shadow:none;
  1340. box-shadow:none;
  1341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. font-size:10px;
  1345. color:#0000FF;
  1346. text-align:center;
  1347. }
  1348. #u34616 {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:42px;
  1352. top:196px;
  1353. width:50px;
  1354. height:14px;
  1355. display:flex;
  1356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1357. font-weight:400;
  1358. font-style:normal;
  1359. font-size:10px;
  1360. color:#0000FF;
  1361. text-align:center;
  1362. }
  1363. #u34616 .text {
  1364. position:absolute;
  1365. align-self:flex-start;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u34616_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u34617_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:50px;
  1381. height:14px;
  1382. background:inherit;
  1383. background-color:rgba(242, 242, 242, 1);
  1384. border:none;
  1385. border-radius:9px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1390. font-weight:400;
  1391. font-style:normal;
  1392. font-size:10px;
  1393. color:#D9001B;
  1394. text-align:center;
  1395. }
  1396. #u34617 {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:102px;
  1400. top:196px;
  1401. width:50px;
  1402. height:14px;
  1403. display:flex;
  1404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1405. font-weight:400;
  1406. font-style:normal;
  1407. font-size:10px;
  1408. color:#D9001B;
  1409. text-align:center;
  1410. }
  1411. #u34617 .text {
  1412. position:absolute;
  1413. align-self:flex-start;
  1414. padding:0px 0px 0px 0px;
  1415. box-sizing:border-box;
  1416. width:100%;
  1417. }
  1418. #u34617_text {
  1419. border-width:0px;
  1420. word-wrap:break-word;
  1421. text-transform:none;
  1422. }
  1423. #u34618_div {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:0px;
  1427. top:0px;
  1428. width:353px;
  1429. height:40px;
  1430. background:inherit;
  1431. background-color:rgba(255, 255, 255, 0);
  1432. border:none;
  1433. border-top:0px;
  1434. border-right:0px;
  1435. border-bottom:0px;
  1436. border-radius:0px;
  1437. border-top-left-radius:0px;
  1438. border-bottom-left-radius:0px;
  1439. -moz-box-shadow:none;
  1440. -webkit-box-shadow:none;
  1441. box-shadow:none;
  1442. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1443. font-weight:500;
  1444. font-style:normal;
  1445. font-size:14px;
  1446. line-height:30px;
  1447. }
  1448. #u34618 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:42px;
  1452. top:116px;
  1453. width:353px;
  1454. height:40px;
  1455. display:flex;
  1456. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1457. font-weight:500;
  1458. font-style:normal;
  1459. font-size:14px;
  1460. line-height:30px;
  1461. }
  1462. #u34618 .text {
  1463. position:absolute;
  1464. align-self:flex-start;
  1465. padding:5px 10px 5px 0px;
  1466. box-sizing:border-box;
  1467. width:100%;
  1468. }
  1469. #u34618_text {
  1470. border-width:0px;
  1471. word-wrap:break-word;
  1472. text-transform:none;
  1473. }
  1474. #u34619_div {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:0px;
  1478. top:0px;
  1479. width:11px;
  1480. height:11px;
  1481. background:inherit;
  1482. background-color:rgba(255, 255, 255, 0);
  1483. box-sizing:border-box;
  1484. border-width:2px;
  1485. border-style:solid;
  1486. border-color:rgba(51, 51, 51, 1);
  1487. border-right:0px;
  1488. border-bottom:0px;
  1489. border-radius:0px;
  1490. border-top-right-radius:0px;
  1491. border-bottom-left-radius:0px;
  1492. -moz-box-shadow:none;
  1493. -webkit-box-shadow:none;
  1494. box-shadow:none;
  1495. }
  1496. #u34619 {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:374px;
  1500. top:130px;
  1501. width:11px;
  1502. height:11px;
  1503. display:flex;
  1504. -webkit-transform:rotate(225deg);
  1505. -moz-transform:rotate(225deg);
  1506. -ms-transform:rotate(225deg);
  1507. transform:rotate(225deg);
  1508. }
  1509. #u34619 .text {
  1510. position:absolute;
  1511. align-self:center;
  1512. padding:2px 2px 2px 2px;
  1513. box-sizing:border-box;
  1514. width:100%;
  1515. }
  1516. #u34619_text {
  1517. border-width:0px;
  1518. word-wrap:break-word;
  1519. text-transform:none;
  1520. visibility:hidden;
  1521. }
  1522. #u34620 {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:0px;
  1526. top:0px;
  1527. width:0px;
  1528. height:0px;
  1529. }
  1530. #u34621_div {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:0px;
  1534. top:0px;
  1535. width:375px;
  1536. height:546px;
  1537. background:inherit;
  1538. background-color:rgba(255, 255, 255, 1);
  1539. box-sizing:border-box;
  1540. border-width:1px;
  1541. border-style:solid;
  1542. border-color:rgba(215, 215, 215, 1);
  1543. border-left:0px;
  1544. border-top:0px;
  1545. border-right:0px;
  1546. border-radius:0px;
  1547. border-bottom-right-radius:0px;
  1548. border-bottom-left-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u34621 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:29px;
  1557. top:233px;
  1558. width:375px;
  1559. height:546px;
  1560. display:flex;
  1561. }
  1562. #u34621 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u34621_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u34622_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:353px;
  1581. height:40px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-top:0px;
  1586. border-right:0px;
  1587. border-bottom:0px;
  1588. border-radius:0px;
  1589. border-top-left-radius:0px;
  1590. border-bottom-left-radius:0px;
  1591. -moz-box-shadow:none;
  1592. -webkit-box-shadow:none;
  1593. box-shadow:none;
  1594. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1595. font-weight:500;
  1596. font-style:normal;
  1597. font-size:14px;
  1598. line-height:30px;
  1599. }
  1600. #u34622 {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:42px;
  1604. top:241px;
  1605. width:353px;
  1606. height:40px;
  1607. display:flex;
  1608. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1609. font-weight:500;
  1610. font-style:normal;
  1611. font-size:14px;
  1612. line-height:30px;
  1613. }
  1614. #u34622 .text {
  1615. position:absolute;
  1616. align-self:flex-start;
  1617. padding:5px 10px 5px 0px;
  1618. box-sizing:border-box;
  1619. width:100%;
  1620. }
  1621. #u34622_text {
  1622. border-width:0px;
  1623. word-wrap:break-word;
  1624. text-transform:none;
  1625. }
  1626. #u34623_div {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:355px;
  1632. height:50px;
  1633. background:inherit;
  1634. background-color:rgba(255, 255, 255, 1);
  1635. border:none;
  1636. border-left:0px;
  1637. border-top:0px;
  1638. border-right:0px;
  1639. border-radius:0px;
  1640. border-bottom-right-radius:0px;
  1641. border-bottom-left-radius:0px;
  1642. -moz-box-shadow:none;
  1643. -webkit-box-shadow:none;
  1644. box-shadow:none;
  1645. }
  1646. #u34623 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:42px;
  1650. top:520px;
  1651. width:355px;
  1652. height:50px;
  1653. display:flex;
  1654. }
  1655. #u34623 .text {
  1656. position:absolute;
  1657. align-self:center;
  1658. padding:2px 2px 2px 2px;
  1659. box-sizing:border-box;
  1660. width:100%;
  1661. }
  1662. #u34623_text {
  1663. border-width:0px;
  1664. word-wrap:break-word;
  1665. text-transform:none;
  1666. visibility:hidden;
  1667. }
  1668. #u34624_div {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:99px;
  1674. height:30px;
  1675. background:inherit;
  1676. background-color:rgba(255, 255, 255, 0);
  1677. border:none;
  1678. border-left:0px;
  1679. border-top:0px;
  1680. border-right:0px;
  1681. border-radius:0px;
  1682. border-bottom-right-radius:0px;
  1683. border-bottom-left-radius:0px;
  1684. -moz-box-shadow:none;
  1685. -webkit-box-shadow:none;
  1686. box-shadow:none;
  1687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1688. font-weight:400;
  1689. font-style:normal;
  1690. font-size:14px;
  1691. color:#D7D7D7;
  1692. line-height:30px;
  1693. }
  1694. #u34624 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:62px;
  1698. top:540px;
  1699. width:99px;
  1700. height:30px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:14px;
  1706. color:#D7D7D7;
  1707. line-height:30px;
  1708. }
  1709. #u34624 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:0px 0px 0px 0px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u34624_text {
  1717. border-width:0px;
  1718. white-space:nowrap;
  1719. text-transform:none;
  1720. }
  1721. #u34625 {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:0px;
  1727. height:0px;
  1728. }
  1729. #u34626_div {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:375px;
  1735. height:60px;
  1736. background:inherit;
  1737. background-color:rgba(255, 255, 255, 1);
  1738. border:none;
  1739. border-top:0px;
  1740. border-radius:28px;
  1741. border-top-left-radius:0px;
  1742. border-top-right-radius:0px;
  1743. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1744. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1745. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:14px;
  1750. color:#FFFFFF;
  1751. }
  1752. #u34626 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:29px;
  1756. top:779px;
  1757. width:375px;
  1758. height:60px;
  1759. display:flex;
  1760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1761. font-weight:400;
  1762. font-style:normal;
  1763. font-size:14px;
  1764. color:#FFFFFF;
  1765. }
  1766. #u34626 .text {
  1767. position:absolute;
  1768. align-self:center;
  1769. padding:2px 2px 2px 2px;
  1770. box-sizing:border-box;
  1771. width:100%;
  1772. }
  1773. #u34626_text {
  1774. border-width:0px;
  1775. word-wrap:break-word;
  1776. text-transform:none;
  1777. visibility:hidden;
  1778. }
  1779. #u34627_div {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:352px;
  1785. height:40px;
  1786. background:inherit;
  1787. background-color:rgba(0, 137, 254, 1);
  1788. border:none;
  1789. border-radius:63px;
  1790. -moz-box-shadow:none;
  1791. -webkit-box-shadow:none;
  1792. box-shadow:none;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:14px;
  1797. color:#FFFFFF;
  1798. }
  1799. #u34627 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:42px;
  1803. top:789px;
  1804. width:352px;
  1805. height:40px;
  1806. display:flex;
  1807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1808. font-weight:400;
  1809. font-style:normal;
  1810. font-size:14px;
  1811. color:#FFFFFF;
  1812. }
  1813. #u34627 .text {
  1814. position:absolute;
  1815. align-self:center;
  1816. padding:2px 2px 2px 2px;
  1817. box-sizing:border-box;
  1818. width:100%;
  1819. }
  1820. #u34627_text {
  1821. border-width:0px;
  1822. word-wrap:break-word;
  1823. text-transform:none;
  1824. }
  1825. #u34628 {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:0px;
  1829. top:0px;
  1830. width:0px;
  1831. height:0px;
  1832. }
  1833. #u34629_div {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:355px;
  1839. height:50px;
  1840. background:inherit;
  1841. background-color:rgba(255, 255, 255, 1);
  1842. box-sizing:border-box;
  1843. border-width:1px;
  1844. border-style:solid;
  1845. border-color:rgba(215, 215, 215, 1);
  1846. border-left:0px;
  1847. border-top:0px;
  1848. border-right:0px;
  1849. border-radius:0px;
  1850. border-bottom-right-radius:0px;
  1851. border-bottom-left-radius:0px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. }
  1856. #u34629 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:42px;
  1860. top:286px;
  1861. width:355px;
  1862. height:50px;
  1863. display:flex;
  1864. }
  1865. #u34629 .text {
  1866. position:absolute;
  1867. align-self:center;
  1868. padding:2px 2px 2px 2px;
  1869. box-sizing:border-box;
  1870. width:100%;
  1871. }
  1872. #u34629_text {
  1873. border-width:0px;
  1874. word-wrap:break-word;
  1875. text-transform:none;
  1876. visibility:hidden;
  1877. }
  1878. #u34630 label {
  1879. left:0px;
  1880. width:100%;
  1881. }
  1882. #u34630_img {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:7px;
  1887. width:12px;
  1888. height:12px;
  1889. }
  1890. #u34630 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:62px;
  1894. top:298px;
  1895. width:100px;
  1896. height:25px;
  1897. display:flex;
  1898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1899. font-weight:400;
  1900. font-style:normal;
  1901. font-size:18px;
  1902. }
  1903. #u34630 .text {
  1904. position:absolute;
  1905. align-self:center;
  1906. padding:0px 2px 0px 2px;
  1907. box-sizing:border-box;
  1908. }
  1909. #u34630_img.selected {
  1910. }
  1911. #u34630.selected {
  1912. }
  1913. #u34630_img.disabled {
  1914. }
  1915. #u34630.disabled {
  1916. }
  1917. #u34630_img.selectedDisabled {
  1918. }
  1919. #u34630.selectedDisabled {
  1920. }
  1921. #u34630_text {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:14px;
  1925. top:0px;
  1926. width:84px;
  1927. word-wrap:break-word;
  1928. text-transform:none;
  1929. }
  1930. #u34630_input {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:0px;
  1936. height:0px;
  1937. opacity:0;
  1938. }
  1939. #u34631 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:0px;
  1945. height:0px;
  1946. }
  1947. #u34632_div {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:355px;
  1953. height:50px;
  1954. background:inherit;
  1955. background-color:rgba(255, 255, 255, 1);
  1956. box-sizing:border-box;
  1957. border-width:1px;
  1958. border-style:solid;
  1959. border-color:rgba(215, 215, 215, 1);
  1960. border-left:0px;
  1961. border-top:0px;
  1962. border-right:0px;
  1963. border-radius:0px;
  1964. border-bottom-right-radius:0px;
  1965. border-bottom-left-radius:0px;
  1966. -moz-box-shadow:none;
  1967. -webkit-box-shadow:none;
  1968. box-shadow:none;
  1969. }
  1970. #u34632 {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:42px;
  1974. top:336px;
  1975. width:355px;
  1976. height:50px;
  1977. display:flex;
  1978. }
  1979. #u34632 .text {
  1980. position:absolute;
  1981. align-self:center;
  1982. padding:2px 2px 2px 2px;
  1983. box-sizing:border-box;
  1984. width:100%;
  1985. }
  1986. #u34632_text {
  1987. border-width:0px;
  1988. word-wrap:break-word;
  1989. text-transform:none;
  1990. visibility:hidden;
  1991. }
  1992. #u34633 label {
  1993. left:0px;
  1994. width:100%;
  1995. }
  1996. #u34633_img {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:7px;
  2001. width:12px;
  2002. height:12px;
  2003. }
  2004. #u34633 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:62px;
  2008. top:348px;
  2009. width:100px;
  2010. height:25px;
  2011. display:flex;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:18px;
  2016. }
  2017. #u34633 .text {
  2018. position:absolute;
  2019. align-self:center;
  2020. padding:0px 2px 0px 2px;
  2021. box-sizing:border-box;
  2022. }
  2023. #u34633_img.selected {
  2024. }
  2025. #u34633.selected {
  2026. }
  2027. #u34633_img.disabled {
  2028. }
  2029. #u34633.disabled {
  2030. }
  2031. #u34633_img.selectedDisabled {
  2032. }
  2033. #u34633.selectedDisabled {
  2034. }
  2035. #u34633_text {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:14px;
  2039. top:0px;
  2040. width:84px;
  2041. word-wrap:break-word;
  2042. text-transform:none;
  2043. }
  2044. #u34633_input {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:0px;
  2048. top:0px;
  2049. width:0px;
  2050. height:0px;
  2051. opacity:0;
  2052. }
  2053. #u34634 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:0px;
  2059. height:0px;
  2060. }
  2061. #u34635_div {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:355px;
  2067. height:50px;
  2068. background:inherit;
  2069. background-color:rgba(255, 255, 255, 1);
  2070. box-sizing:border-box;
  2071. border-width:1px;
  2072. border-style:solid;
  2073. border-color:rgba(215, 215, 215, 1);
  2074. border-left:0px;
  2075. border-top:0px;
  2076. border-right:0px;
  2077. border-radius:0px;
  2078. border-bottom-right-radius:0px;
  2079. border-bottom-left-radius:0px;
  2080. -moz-box-shadow:none;
  2081. -webkit-box-shadow:none;
  2082. box-shadow:none;
  2083. }
  2084. #u34635 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:42px;
  2088. top:386px;
  2089. width:355px;
  2090. height:50px;
  2091. display:flex;
  2092. }
  2093. #u34635 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 2px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u34635_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. visibility:hidden;
  2105. }
  2106. #u34636 label {
  2107. left:0px;
  2108. width:100%;
  2109. }
  2110. #u34636_img {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:7px;
  2115. width:12px;
  2116. height:12px;
  2117. }
  2118. #u34636 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:62px;
  2122. top:398px;
  2123. width:100px;
  2124. height:25px;
  2125. display:flex;
  2126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:18px;
  2130. }
  2131. #u34636 .text {
  2132. position:absolute;
  2133. align-self:center;
  2134. padding:0px 2px 0px 2px;
  2135. box-sizing:border-box;
  2136. }
  2137. #u34636_img.selected {
  2138. }
  2139. #u34636.selected {
  2140. }
  2141. #u34636_img.disabled {
  2142. }
  2143. #u34636.disabled {
  2144. }
  2145. #u34636_img.selectedDisabled {
  2146. }
  2147. #u34636.selectedDisabled {
  2148. }
  2149. #u34636_text {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:14px;
  2153. top:0px;
  2154. width:84px;
  2155. word-wrap:break-word;
  2156. text-transform:none;
  2157. }
  2158. #u34636_input {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:0px;
  2164. height:0px;
  2165. opacity:0;
  2166. }
  2167. #u34637 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:0px;
  2173. height:0px;
  2174. }
  2175. #u34638_div {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:355px;
  2181. height:50px;
  2182. background:inherit;
  2183. background-color:rgba(255, 255, 255, 1);
  2184. box-sizing:border-box;
  2185. border-width:1px;
  2186. border-style:solid;
  2187. border-color:rgba(215, 215, 215, 1);
  2188. border-left:0px;
  2189. border-top:0px;
  2190. border-right:0px;
  2191. border-radius:0px;
  2192. border-bottom-right-radius:0px;
  2193. border-bottom-left-radius:0px;
  2194. -moz-box-shadow:none;
  2195. -webkit-box-shadow:none;
  2196. box-shadow:none;
  2197. }
  2198. #u34638 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:42px;
  2202. top:436px;
  2203. width:355px;
  2204. height:50px;
  2205. display:flex;
  2206. }
  2207. #u34638 .text {
  2208. position:absolute;
  2209. align-self:center;
  2210. padding:2px 2px 2px 2px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u34638_text {
  2215. border-width:0px;
  2216. word-wrap:break-word;
  2217. text-transform:none;
  2218. visibility:hidden;
  2219. }
  2220. #u34639 label {
  2221. left:0px;
  2222. width:100%;
  2223. }
  2224. #u34639_img {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:7px;
  2229. width:12px;
  2230. height:12px;
  2231. }
  2232. #u34639 {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:62px;
  2236. top:448px;
  2237. width:100px;
  2238. height:25px;
  2239. display:flex;
  2240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2241. font-weight:400;
  2242. font-style:normal;
  2243. font-size:18px;
  2244. }
  2245. #u34639 .text {
  2246. position:absolute;
  2247. align-self:center;
  2248. padding:0px 2px 0px 2px;
  2249. box-sizing:border-box;
  2250. }
  2251. #u34639_img.selected {
  2252. }
  2253. #u34639.selected {
  2254. }
  2255. #u34639_img.disabled {
  2256. }
  2257. #u34639.disabled {
  2258. }
  2259. #u34639_img.selectedDisabled {
  2260. }
  2261. #u34639.selectedDisabled {
  2262. }
  2263. #u34639_text {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:14px;
  2267. top:0px;
  2268. width:84px;
  2269. word-wrap:break-word;
  2270. text-transform:none;
  2271. }
  2272. #u34639_input {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:0px;
  2278. height:0px;
  2279. opacity:0;
  2280. }
  2281. #u34640_div {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:353px;
  2287. height:40px;
  2288. background:inherit;
  2289. background-color:rgba(255, 255, 255, 0);
  2290. border:none;
  2291. border-top:0px;
  2292. border-right:0px;
  2293. border-bottom:0px;
  2294. border-radius:0px;
  2295. border-top-left-radius:0px;
  2296. border-bottom-left-radius:0px;
  2297. -moz-box-shadow:none;
  2298. -webkit-box-shadow:none;
  2299. box-shadow:none;
  2300. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2301. font-weight:500;
  2302. font-style:normal;
  2303. font-size:14px;
  2304. line-height:30px;
  2305. }
  2306. #u34640 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:42px;
  2310. top:496px;
  2311. width:353px;
  2312. height:40px;
  2313. display:flex;
  2314. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2315. font-weight:500;
  2316. font-style:normal;
  2317. font-size:14px;
  2318. line-height:30px;
  2319. }
  2320. #u34640 .text {
  2321. position:absolute;
  2322. align-self:flex-start;
  2323. padding:5px 10px 5px 0px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u34640_text {
  2328. border-width:0px;
  2329. word-wrap:break-word;
  2330. text-transform:none;
  2331. }