styles.css 36 KB

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