styles.css 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  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. #u45420 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u45421 {
  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. #u45421 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u45421_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u45421_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u45422_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. #u45422 {
  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. #u45422 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u45422_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u45423 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u45424_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. #u45424 {
  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. #u45424 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u45424_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u45425 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u45426 {
  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. #u45426 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u45426_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u45426_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u45427 {
  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. #u45427 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u45427_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u45427_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u45428 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u45429 {
  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. #u45429 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u45429_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u45429_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u45430 {
  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. #u45430 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u45430_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u45430_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u45431 {
  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. #u45431 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u45431_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u45431_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u45432 {
  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. #u45432 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u45432_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u45432_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u45433 {
  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. #u45433 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u45433_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u45433_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u45434_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. #u45434 {
  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. #u45434 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u45434_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u45435 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u45436 {
  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. #u45436 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u45436_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u45436_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u45437_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. #u45437 {
  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. #u45437 .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. #u45437_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u45438 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u45439 {
  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. #u45439 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u45439_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u45439_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u45440_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. #u45440 {
  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. #u45440 .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. #u45440_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u45441_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. #u45441 {
  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. #u45441 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u45441_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u45442 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u45443 {
  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. #u45443 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u45443_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u45443_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u45444_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. #u45444 {
  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. #u45444 .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. #u45444_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u45445 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u45446 {
  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. #u45446 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u45446_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u45446_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u45447_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. #u45447 {
  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. #u45447 .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. #u45447_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u45448 {
  803. border-width:0px;
  804. position:absolute;
  805. left:29px;
  806. top:24px;
  807. width:375px;
  808. height:44px;
  809. display:flex;
  810. transition:none;
  811. }
  812. #u45448 .text {
  813. position:absolute;
  814. align-self:center;
  815. padding:2px 2px 2px 2px;
  816. box-sizing:border-box;
  817. width:100%;
  818. }
  819. #u45448_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:44px;
  826. }
  827. #u45448_text {
  828. border-width:0px;
  829. word-wrap:break-word;
  830. text-transform:none;
  831. visibility:hidden;
  832. }
  833. #u45449_div {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:65px;
  839. height:22px;
  840. background:inherit;
  841. background-color:rgba(255, 255, 255, 0);
  842. border-radius:0px;
  843. filter:drop-shadow(none);
  844. transition:none;
  845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  846. font-weight:400;
  847. font-style:normal;
  848. font-size:16px;
  849. color:#000000;
  850. }
  851. #u45449 {
  852. border-width:0px;
  853. position:absolute;
  854. left:184px;
  855. top:78px;
  856. width:65px;
  857. height:22px;
  858. display:flex;
  859. transition:none;
  860. transform-origin:50% 50%;
  861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  862. font-weight:400;
  863. font-style:normal;
  864. font-size:16px;
  865. color:#000000;
  866. }
  867. #u45449 .text {
  868. position:absolute;
  869. align-self:flex-start;
  870. padding:0px 0px 0px 0px;
  871. box-sizing:border-box;
  872. width:100%;
  873. }
  874. #u45449_text {
  875. border-width:0px;
  876. white-space:nowrap;
  877. text-transform:none;
  878. }
  879. #u45450_div {
  880. border-width:0px;
  881. position:absolute;
  882. left:0px;
  883. top:0px;
  884. width:12px;
  885. height:12px;
  886. background:inherit;
  887. background-color:rgba(255, 255, 255, 0);
  888. box-sizing:border-box;
  889. border-width:2px;
  890. border-style:solid;
  891. border-color:rgba(51, 51, 51, 1);
  892. border-right:0px;
  893. border-bottom:0px;
  894. border-radius:0px;
  895. border-top-right-radius:0px;
  896. border-bottom-left-radius:0px;
  897. filter:drop-shadow(none);
  898. transition:none;
  899. }
  900. #u45450 {
  901. border-width:0px;
  902. position:absolute;
  903. left:46px;
  904. top:83px;
  905. width:12px;
  906. height:12px;
  907. display:flex;
  908. -webkit-transform:rotate(315deg);
  909. -moz-transform:rotate(315deg);
  910. -ms-transform:rotate(315deg);
  911. transform:rotate(315deg);
  912. transition:none;
  913. transform-origin:50% 50%;
  914. }
  915. #u45450 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 2px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u45450_text {
  923. border-width:0px;
  924. word-wrap:break-word;
  925. text-transform:none;
  926. visibility:hidden;
  927. }
  928. #u45451 {
  929. border-width:0px;
  930. position:absolute;
  931. left:73px;
  932. top:78px;
  933. width:23px;
  934. height:23px;
  935. display:flex;
  936. transition:none;
  937. }
  938. #u45451 .text {
  939. position:absolute;
  940. align-self:center;
  941. padding:2px 2px 2px 2px;
  942. box-sizing:border-box;
  943. width:100%;
  944. }
  945. #u45451_img {
  946. border-width:0px;
  947. position:absolute;
  948. left:0px;
  949. top:0px;
  950. width:23px;
  951. height:23px;
  952. }
  953. #u45451_text {
  954. border-width:0px;
  955. word-wrap:break-word;
  956. text-transform:none;
  957. visibility:hidden;
  958. }
  959. #u45452_div {
  960. border-width:0px;
  961. position:absolute;
  962. left:0px;
  963. top:0px;
  964. width:375px;
  965. height:736px;
  966. background:inherit;
  967. background-color:rgba(242, 242, 242, 0.996078431372549);
  968. border-top:0px;
  969. border-radius:41px;
  970. border-top-left-radius:0px;
  971. border-top-right-radius:0px;
  972. filter:drop-shadow(none);
  973. transition:none;
  974. }
  975. #u45452 {
  976. border-width:0px;
  977. position:absolute;
  978. left:29px;
  979. top:106px;
  980. width:375px;
  981. height:736px;
  982. display:flex;
  983. transition:none;
  984. transform-origin:50% 50%;
  985. }
  986. #u45452 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:2px 2px 2px 2px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u45452_text {
  994. border-width:0px;
  995. word-wrap:break-word;
  996. text-transform:none;
  997. visibility:hidden;
  998. }
  999. #u45453 {
  1000. border-width:0px;
  1001. position:absolute;
  1002. left:0px;
  1003. top:0px;
  1004. width:0px;
  1005. height:0px;
  1006. }
  1007. #u45454_div {
  1008. border-width:0px;
  1009. position:absolute;
  1010. left:0px;
  1011. top:0px;
  1012. width:345px;
  1013. height:100px;
  1014. background:inherit;
  1015. background-color:rgba(255, 255, 255, 1);
  1016. border-radius:9px;
  1017. filter:drop-shadow(none);
  1018. transition:none;
  1019. }
  1020. #u45454 {
  1021. border-width:0px;
  1022. position:absolute;
  1023. left:44px;
  1024. top:125px;
  1025. width:345px;
  1026. height:100px;
  1027. display:flex;
  1028. transition:none;
  1029. transform-origin:50% 50%;
  1030. }
  1031. #u45454 .text {
  1032. position:absolute;
  1033. align-self:center;
  1034. padding:2px 2px 2px 2px;
  1035. box-sizing:border-box;
  1036. width:100%;
  1037. }
  1038. #u45454_text {
  1039. border-width:0px;
  1040. word-wrap:break-word;
  1041. text-transform:none;
  1042. visibility:hidden;
  1043. }
  1044. #u45455_div {
  1045. border-width:0px;
  1046. position:absolute;
  1047. left:0px;
  1048. top:0px;
  1049. width:109px;
  1050. height:30px;
  1051. background:inherit;
  1052. background-color:rgba(255, 255, 255, 0);
  1053. border-left:0px;
  1054. border-top:0px;
  1055. border-right:0px;
  1056. border-radius:0px;
  1057. border-bottom-right-radius:0px;
  1058. border-bottom-left-radius:0px;
  1059. filter:drop-shadow(none);
  1060. transition:none;
  1061. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1062. font-weight:500;
  1063. font-style:normal;
  1064. font-size:18px;
  1065. line-height:30px;
  1066. }
  1067. #u45455 {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:132px;
  1071. top:140px;
  1072. width:109px;
  1073. height:30px;
  1074. display:flex;
  1075. transition:none;
  1076. transform-origin:50% 50%;
  1077. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1078. font-weight:500;
  1079. font-style:normal;
  1080. font-size:18px;
  1081. line-height:30px;
  1082. }
  1083. #u45455 .text {
  1084. position:absolute;
  1085. align-self:flex-start;
  1086. padding:0px 0px 0px 0px;
  1087. box-sizing:border-box;
  1088. width:100%;
  1089. }
  1090. #u45455_text {
  1091. border-width:0px;
  1092. white-space:nowrap;
  1093. text-transform:none;
  1094. }
  1095. #u45456_div {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:0px;
  1099. top:0px;
  1100. width:181px;
  1101. height:20px;
  1102. background:inherit;
  1103. background-color:rgba(255, 255, 255, 0);
  1104. border-left:0px;
  1105. border-top:0px;
  1106. border-right:0px;
  1107. border-radius:0px;
  1108. border-bottom-right-radius:0px;
  1109. border-bottom-left-radius:0px;
  1110. filter:drop-shadow(none);
  1111. transition:none;
  1112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1113. font-weight:400;
  1114. font-style:normal;
  1115. font-size:12px;
  1116. color:#AAAAAA;
  1117. line-height:20px;
  1118. }
  1119. #u45456 {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:132px;
  1123. top:175px;
  1124. width:181px;
  1125. height:20px;
  1126. display:flex;
  1127. transition:none;
  1128. transform-origin:50% 50%;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:12px;
  1133. color:#AAAAAA;
  1134. line-height:20px;
  1135. }
  1136. #u45456 .text {
  1137. position:absolute;
  1138. align-self:flex-start;
  1139. padding:0px 0px 0px 0px;
  1140. box-sizing:border-box;
  1141. width:100%;
  1142. }
  1143. #u45456_text {
  1144. border-width:0px;
  1145. white-space:nowrap;
  1146. text-transform:none;
  1147. }
  1148. #u45457 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:365px;
  1152. top:149px;
  1153. width:8px;
  1154. height:12px;
  1155. display:flex;
  1156. -webkit-transform:rotate(180deg);
  1157. -moz-transform:rotate(180deg);
  1158. -ms-transform:rotate(180deg);
  1159. transform:rotate(180deg);
  1160. transition:none;
  1161. }
  1162. #u45457 .text {
  1163. position:absolute;
  1164. align-self:center;
  1165. padding:2px 2px 2px 2px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u45457_img {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:8px;
  1175. height:12px;
  1176. }
  1177. #u45457_text {
  1178. border-width:0px;
  1179. word-wrap:break-word;
  1180. text-transform:none;
  1181. visibility:hidden;
  1182. }
  1183. #u45458 {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:62px;
  1187. top:140px;
  1188. width:50px;
  1189. height:50px;
  1190. display:flex;
  1191. transition:none;
  1192. }
  1193. #u45458 .text {
  1194. position:absolute;
  1195. align-self:center;
  1196. padding:2px 2px 2px 2px;
  1197. box-sizing:border-box;
  1198. width:100%;
  1199. }
  1200. #u45458_img {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:0px;
  1204. top:0px;
  1205. width:50px;
  1206. height:50px;
  1207. }
  1208. #u45458_text {
  1209. border-width:0px;
  1210. word-wrap:break-word;
  1211. text-transform:none;
  1212. }
  1213. #u45459 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:0px;
  1217. top:0px;
  1218. width:0px;
  1219. height:0px;
  1220. }
  1221. #u45460_div {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:345px;
  1227. height:100px;
  1228. background:inherit;
  1229. background-color:rgba(255, 255, 255, 1);
  1230. border-radius:9px;
  1231. filter:drop-shadow(none);
  1232. transition:none;
  1233. }
  1234. #u45460 {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:44px;
  1238. top:235px;
  1239. width:345px;
  1240. height:100px;
  1241. display:flex;
  1242. transition:none;
  1243. transform-origin:50% 50%;
  1244. }
  1245. #u45460 .text {
  1246. position:absolute;
  1247. align-self:center;
  1248. padding:2px 2px 2px 2px;
  1249. box-sizing:border-box;
  1250. width:100%;
  1251. }
  1252. #u45460_text {
  1253. border-width:0px;
  1254. word-wrap:break-word;
  1255. text-transform:none;
  1256. visibility:hidden;
  1257. }
  1258. #u45461_div {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:109px;
  1264. height:30px;
  1265. background:inherit;
  1266. background-color:rgba(255, 255, 255, 0);
  1267. border-left:0px;
  1268. border-top:0px;
  1269. border-right:0px;
  1270. border-radius:0px;
  1271. border-bottom-right-radius:0px;
  1272. border-bottom-left-radius:0px;
  1273. filter:drop-shadow(none);
  1274. transition:none;
  1275. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1276. font-weight:500;
  1277. font-style:normal;
  1278. font-size:18px;
  1279. line-height:30px;
  1280. }
  1281. #u45461 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:132px;
  1285. top:250px;
  1286. width:109px;
  1287. height:30px;
  1288. display:flex;
  1289. transition:none;
  1290. transform-origin:50% 50%;
  1291. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1292. font-weight:500;
  1293. font-style:normal;
  1294. font-size:18px;
  1295. line-height:30px;
  1296. }
  1297. #u45461 .text {
  1298. position:absolute;
  1299. align-self:flex-start;
  1300. padding:0px 0px 0px 0px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u45461_text {
  1305. border-width:0px;
  1306. white-space:nowrap;
  1307. text-transform:none;
  1308. }
  1309. #u45462_div {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:0px;
  1313. top:0px;
  1314. width:241px;
  1315. height:20px;
  1316. background:inherit;
  1317. background-color:rgba(255, 255, 255, 0);
  1318. border-left:0px;
  1319. border-top:0px;
  1320. border-right:0px;
  1321. border-radius:0px;
  1322. border-bottom-right-radius:0px;
  1323. border-bottom-left-radius:0px;
  1324. filter:drop-shadow(none);
  1325. transition:none;
  1326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1327. font-weight:400;
  1328. font-style:normal;
  1329. font-size:12px;
  1330. color:#AAAAAA;
  1331. line-height:20px;
  1332. }
  1333. #u45462 {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:132px;
  1337. top:285px;
  1338. width:241px;
  1339. height:20px;
  1340. display:flex;
  1341. transition:none;
  1342. transform-origin:50% 50%;
  1343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1344. font-weight:400;
  1345. font-style:normal;
  1346. font-size:12px;
  1347. color:#AAAAAA;
  1348. line-height:20px;
  1349. }
  1350. #u45462 .text {
  1351. position:absolute;
  1352. align-self:flex-start;
  1353. padding:0px 0px 0px 0px;
  1354. box-sizing:border-box;
  1355. width:100%;
  1356. }
  1357. #u45462_text {
  1358. border-width:0px;
  1359. white-space:nowrap;
  1360. text-transform:none;
  1361. }
  1362. #u45463 {
  1363. border-width:0px;
  1364. position:absolute;
  1365. left:365px;
  1366. top:259px;
  1367. width:8px;
  1368. height:12px;
  1369. display:flex;
  1370. -webkit-transform:rotate(180deg);
  1371. -moz-transform:rotate(180deg);
  1372. -ms-transform:rotate(180deg);
  1373. transform:rotate(180deg);
  1374. transition:none;
  1375. }
  1376. #u45463 .text {
  1377. position:absolute;
  1378. align-self:center;
  1379. padding:2px 2px 2px 2px;
  1380. box-sizing:border-box;
  1381. width:100%;
  1382. }
  1383. #u45463_img {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:0px;
  1387. top:0px;
  1388. width:8px;
  1389. height:12px;
  1390. }
  1391. #u45463_text {
  1392. border-width:0px;
  1393. word-wrap:break-word;
  1394. text-transform:none;
  1395. visibility:hidden;
  1396. }
  1397. #u45464 {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:62px;
  1401. top:250px;
  1402. width:50px;
  1403. height:50px;
  1404. display:flex;
  1405. transition:none;
  1406. }
  1407. #u45464 .text {
  1408. position:absolute;
  1409. align-self:center;
  1410. padding:2px 2px 2px 2px;
  1411. box-sizing:border-box;
  1412. width:100%;
  1413. }
  1414. #u45464_img {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:50px;
  1420. height:50px;
  1421. }
  1422. #u45464_text {
  1423. border-width:0px;
  1424. word-wrap:break-word;
  1425. text-transform:none;
  1426. }
  1427. #u45465 {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:0px;
  1433. height:0px;
  1434. }
  1435. #u45466_div {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:0px;
  1439. top:0px;
  1440. width:345px;
  1441. height:100px;
  1442. background:inherit;
  1443. background-color:rgba(255, 255, 255, 1);
  1444. border-radius:9px;
  1445. filter:drop-shadow(none);
  1446. transition:none;
  1447. }
  1448. #u45466 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:44px;
  1452. top:345px;
  1453. width:345px;
  1454. height:100px;
  1455. display:flex;
  1456. transition:none;
  1457. transform-origin:50% 50%;
  1458. }
  1459. #u45466 .text {
  1460. position:absolute;
  1461. align-self:center;
  1462. padding:2px 2px 2px 2px;
  1463. box-sizing:border-box;
  1464. width:100%;
  1465. }
  1466. #u45466_text {
  1467. border-width:0px;
  1468. word-wrap:break-word;
  1469. text-transform:none;
  1470. visibility:hidden;
  1471. }
  1472. #u45467_div {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:0px;
  1476. top:0px;
  1477. width:109px;
  1478. height:30px;
  1479. background:inherit;
  1480. background-color:rgba(255, 255, 255, 0);
  1481. border-left:0px;
  1482. border-top:0px;
  1483. border-right:0px;
  1484. border-radius:0px;
  1485. border-bottom-right-radius:0px;
  1486. border-bottom-left-radius:0px;
  1487. filter:drop-shadow(none);
  1488. transition:none;
  1489. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1490. font-weight:500;
  1491. font-style:normal;
  1492. font-size:18px;
  1493. line-height:30px;
  1494. }
  1495. #u45467 {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:132px;
  1499. top:360px;
  1500. width:109px;
  1501. height:30px;
  1502. display:flex;
  1503. transition:none;
  1504. transform-origin:50% 50%;
  1505. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1506. font-weight:500;
  1507. font-style:normal;
  1508. font-size:18px;
  1509. line-height:30px;
  1510. }
  1511. #u45467 .text {
  1512. position:absolute;
  1513. align-self:flex-start;
  1514. padding:0px 0px 0px 0px;
  1515. box-sizing:border-box;
  1516. width:100%;
  1517. }
  1518. #u45467_text {
  1519. border-width:0px;
  1520. white-space:nowrap;
  1521. text-transform:none;
  1522. }
  1523. #u45468_div {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:0px;
  1527. top:0px;
  1528. width:226px;
  1529. height:40px;
  1530. background:inherit;
  1531. background-color:rgba(255, 255, 255, 0);
  1532. border-left:0px;
  1533. border-top:0px;
  1534. border-right:0px;
  1535. border-radius:0px;
  1536. border-bottom-right-radius:0px;
  1537. border-bottom-left-radius:0px;
  1538. filter:drop-shadow(none);
  1539. transition:none;
  1540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1541. font-weight:400;
  1542. font-style:normal;
  1543. font-size:12px;
  1544. color:#AAAAAA;
  1545. line-height:20px;
  1546. }
  1547. #u45468 {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:132px;
  1551. top:395px;
  1552. width:226px;
  1553. height:40px;
  1554. display:flex;
  1555. transition:none;
  1556. transform-origin:50% 50%;
  1557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1558. font-weight:400;
  1559. font-style:normal;
  1560. font-size:12px;
  1561. color:#AAAAAA;
  1562. line-height:20px;
  1563. }
  1564. #u45468 .text {
  1565. position:absolute;
  1566. align-self:flex-start;
  1567. padding:0px 0px 0px 0px;
  1568. box-sizing:border-box;
  1569. width:100%;
  1570. }
  1571. #u45468_text {
  1572. border-width:0px;
  1573. word-wrap:break-word;
  1574. text-transform:none;
  1575. }
  1576. #u45469 {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:365px;
  1580. top:369px;
  1581. width:8px;
  1582. height:12px;
  1583. display:flex;
  1584. -webkit-transform:rotate(180deg);
  1585. -moz-transform:rotate(180deg);
  1586. -ms-transform:rotate(180deg);
  1587. transform:rotate(180deg);
  1588. transition:none;
  1589. }
  1590. #u45469 .text {
  1591. position:absolute;
  1592. align-self:center;
  1593. padding:2px 2px 2px 2px;
  1594. box-sizing:border-box;
  1595. width:100%;
  1596. }
  1597. #u45469_img {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:0px;
  1601. top:0px;
  1602. width:8px;
  1603. height:12px;
  1604. }
  1605. #u45469_text {
  1606. border-width:0px;
  1607. word-wrap:break-word;
  1608. text-transform:none;
  1609. visibility:hidden;
  1610. }
  1611. #u45470 {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:62px;
  1615. top:360px;
  1616. width:50px;
  1617. height:50px;
  1618. display:flex;
  1619. transition:none;
  1620. }
  1621. #u45470 .text {
  1622. position:absolute;
  1623. align-self:center;
  1624. padding:2px 2px 2px 2px;
  1625. box-sizing:border-box;
  1626. width:100%;
  1627. }
  1628. #u45470_img {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:0px;
  1632. top:0px;
  1633. width:50px;
  1634. height:50px;
  1635. }
  1636. #u45470_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. }
  1641. #u45471 {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:0px;
  1647. height:0px;
  1648. }
  1649. #u45472_div {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:345px;
  1655. height:100px;
  1656. background:inherit;
  1657. background-color:rgba(255, 255, 255, 1);
  1658. border-radius:9px;
  1659. filter:drop-shadow(none);
  1660. transition:none;
  1661. }
  1662. #u45472 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:44px;
  1666. top:455px;
  1667. width:345px;
  1668. height:100px;
  1669. display:flex;
  1670. transition:none;
  1671. transform-origin:50% 50%;
  1672. }
  1673. #u45472 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 2px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u45472_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. visibility:hidden;
  1685. }
  1686. #u45473_div {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:109px;
  1692. height:30px;
  1693. background:inherit;
  1694. background-color:rgba(255, 255, 255, 0);
  1695. border-left:0px;
  1696. border-top:0px;
  1697. border-right:0px;
  1698. border-radius:0px;
  1699. border-bottom-right-radius:0px;
  1700. border-bottom-left-radius:0px;
  1701. filter:drop-shadow(none);
  1702. transition:none;
  1703. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1704. font-weight:500;
  1705. font-style:normal;
  1706. font-size:18px;
  1707. line-height:30px;
  1708. }
  1709. #u45473 {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:132px;
  1713. top:470px;
  1714. width:109px;
  1715. height:30px;
  1716. display:flex;
  1717. transition:none;
  1718. transform-origin:50% 50%;
  1719. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1720. font-weight:500;
  1721. font-style:normal;
  1722. font-size:18px;
  1723. line-height:30px;
  1724. }
  1725. #u45473 .text {
  1726. position:absolute;
  1727. align-self:flex-start;
  1728. padding:0px 0px 0px 0px;
  1729. box-sizing:border-box;
  1730. width:100%;
  1731. }
  1732. #u45473_text {
  1733. border-width:0px;
  1734. white-space:nowrap;
  1735. text-transform:none;
  1736. }
  1737. #u45474_div {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:226px;
  1743. height:40px;
  1744. background:inherit;
  1745. background-color:rgba(255, 255, 255, 0);
  1746. border-left:0px;
  1747. border-top:0px;
  1748. border-right:0px;
  1749. border-radius:0px;
  1750. border-bottom-right-radius:0px;
  1751. border-bottom-left-radius:0px;
  1752. filter:drop-shadow(none);
  1753. transition:none;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:12px;
  1758. color:#AAAAAA;
  1759. line-height:20px;
  1760. }
  1761. #u45474 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:132px;
  1765. top:505px;
  1766. width:226px;
  1767. height:40px;
  1768. display:flex;
  1769. transition:none;
  1770. transform-origin:50% 50%;
  1771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1772. font-weight:400;
  1773. font-style:normal;
  1774. font-size:12px;
  1775. color:#AAAAAA;
  1776. line-height:20px;
  1777. }
  1778. #u45474 .text {
  1779. position:absolute;
  1780. align-self:flex-start;
  1781. padding:0px 0px 0px 0px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u45474_text {
  1786. border-width:0px;
  1787. word-wrap:break-word;
  1788. text-transform:none;
  1789. }
  1790. #u45475 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:365px;
  1794. top:479px;
  1795. width:8px;
  1796. height:12px;
  1797. display:flex;
  1798. -webkit-transform:rotate(180deg);
  1799. -moz-transform:rotate(180deg);
  1800. -ms-transform:rotate(180deg);
  1801. transform:rotate(180deg);
  1802. transition:none;
  1803. }
  1804. #u45475 .text {
  1805. position:absolute;
  1806. align-self:center;
  1807. padding:2px 2px 2px 2px;
  1808. box-sizing:border-box;
  1809. width:100%;
  1810. }
  1811. #u45475_img {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:8px;
  1817. height:12px;
  1818. }
  1819. #u45475_text {
  1820. border-width:0px;
  1821. word-wrap:break-word;
  1822. text-transform:none;
  1823. visibility:hidden;
  1824. }
  1825. #u45476 {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:62px;
  1829. top:470px;
  1830. width:50px;
  1831. height:50px;
  1832. display:flex;
  1833. transition:none;
  1834. }
  1835. #u45476 .text {
  1836. position:absolute;
  1837. align-self:center;
  1838. padding:2px 2px 2px 2px;
  1839. box-sizing:border-box;
  1840. width:100%;
  1841. }
  1842. #u45476_img {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:0px;
  1846. top:0px;
  1847. width:50px;
  1848. height:50px;
  1849. }
  1850. #u45476_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. }