styles.css 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193
  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. #u53169 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u53170 {
  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. #u53170 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u53170_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u53170_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u53171_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. #u53171 {
  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. #u53171 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u53171_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u53172 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u53173_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. #u53173 {
  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. #u53173 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u53173_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u53174 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u53175 {
  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. #u53175 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u53175_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u53175_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u53176 {
  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. #u53176 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u53176_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u53176_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u53177 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u53178 {
  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. #u53178 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u53178_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u53178_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u53179 {
  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. #u53179 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u53179_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u53179_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u53180 {
  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. #u53180 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u53180_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u53180_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u53181 {
  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. #u53181 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u53181_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u53181_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u53182 {
  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. #u53182 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u53182_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u53182_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u53183_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. #u53183 {
  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. #u53183 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u53183_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u53184 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u53185 {
  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. #u53185 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u53185_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u53185_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u53186_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. #u53186 {
  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. #u53186 .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. #u53186_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u53187 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u53188 {
  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. #u53188 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u53188_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u53188_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u53189_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. #u53189 {
  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. #u53189 .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. #u53189_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u53190_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. #u53190 {
  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. #u53190 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u53190_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u53191 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u53192 {
  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. #u53192 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u53192_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u53192_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u53193_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. #u53193 {
  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. #u53193 .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. #u53193_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u53194 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u53195 {
  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. #u53195 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u53195_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u53195_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u53196_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. #u53196 {
  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. #u53196 .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. #u53196_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u53197_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. #u53197 {
  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. #u53197 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u53197_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u53198_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. #u53198 {
  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. #u53198 .text {
  876. position:absolute;
  877. align-self:center;
  878. padding:2px 2px 2px 2px;
  879. box-sizing:border-box;
  880. width:100%;
  881. }
  882. #u53198_text {
  883. border-width:0px;
  884. word-wrap:break-word;
  885. text-transform:none;
  886. visibility:hidden;
  887. }
  888. #u53199 {
  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. #u53199 .text {
  899. position:absolute;
  900. align-self:center;
  901. padding:2px 2px 2px 2px;
  902. box-sizing:border-box;
  903. width:100%;
  904. }
  905. #u53199_img {
  906. border-width:0px;
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:375px;
  911. height:44px;
  912. }
  913. #u53199_text {
  914. border-width:0px;
  915. word-wrap:break-word;
  916. text-transform:none;
  917. visibility:hidden;
  918. }
  919. #u53200 {
  920. border-width:0px;
  921. position:absolute;
  922. left:0px;
  923. top:0px;
  924. width:0px;
  925. height:0px;
  926. }
  927. #u53201_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. #u53201 {
  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. #u53201 .text {
  956. position:absolute;
  957. align-self:center;
  958. padding:2px 2px 2px 2px;
  959. box-sizing:border-box;
  960. width:100%;
  961. }
  962. #u53201_text {
  963. border-width:0px;
  964. word-wrap:break-word;
  965. text-transform:none;
  966. visibility:hidden;
  967. }
  968. #u53202 {
  969. border-width:0px;
  970. position:absolute;
  971. left:0px;
  972. top:0px;
  973. width:0px;
  974. height:0px;
  975. }
  976. #u53203 {
  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. #u53203 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:2px 2px 2px 2px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u53203_img {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:18px;
  999. height:18px;
  1000. }
  1001. #u53203_text {
  1002. border-width:0px;
  1003. word-wrap:break-word;
  1004. text-transform:none;
  1005. visibility:hidden;
  1006. }
  1007. #u53204 {
  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. #u53204 .text {
  1018. position:absolute;
  1019. align-self:center;
  1020. padding:2px 2px 2px 2px;
  1021. box-sizing:border-box;
  1022. width:100%;
  1023. }
  1024. #u53204_img {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:0px;
  1028. top:0px;
  1029. width:6px;
  1030. height:6px;
  1031. }
  1032. #u53204_text {
  1033. border-width:0px;
  1034. word-wrap:break-word;
  1035. text-transform:none;
  1036. visibility:hidden;
  1037. }
  1038. #u53205 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:0px;
  1044. height:0px;
  1045. }
  1046. #u53206 {
  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. #u53206 .text {
  1057. position:absolute;
  1058. align-self:center;
  1059. padding:2px 2px 2px 2px;
  1060. box-sizing:border-box;
  1061. width:100%;
  1062. }
  1063. #u53206_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:5px;
  1069. height:5px;
  1070. }
  1071. #u53206_text {
  1072. border-width:0px;
  1073. word-wrap:break-word;
  1074. text-transform:none;
  1075. visibility:hidden;
  1076. }
  1077. #u53207 {
  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. #u53207 .text {
  1088. position:absolute;
  1089. align-self:center;
  1090. padding:2px 2px 2px 2px;
  1091. box-sizing:border-box;
  1092. width:100%;
  1093. }
  1094. #u53207_img {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:5px;
  1100. height:5px;
  1101. }
  1102. #u53207_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u53208 {
  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. #u53208 .text {
  1119. position:absolute;
  1120. align-self:center;
  1121. padding:2px 2px 2px 2px;
  1122. box-sizing:border-box;
  1123. width:100%;
  1124. }
  1125. #u53208_img {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:0px;
  1129. top:0px;
  1130. width:7px;
  1131. height:7px;
  1132. }
  1133. #u53208_text {
  1134. border-width:0px;
  1135. word-wrap:break-word;
  1136. text-transform:none;
  1137. visibility:hidden;
  1138. }
  1139. #u53209 {
  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. #u53209 .text {
  1154. position:absolute;
  1155. align-self:center;
  1156. padding:2px 2px 2px 2px;
  1157. box-sizing:border-box;
  1158. width:100%;
  1159. }
  1160. #u53209_img {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:0px;
  1164. top:0px;
  1165. width:19px;
  1166. height:2px;
  1167. }
  1168. #u53209_text {
  1169. border-width:0px;
  1170. word-wrap:break-word;
  1171. text-transform:none;
  1172. visibility:hidden;
  1173. }
  1174. #u53210_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. #u53210 {
  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. #u53210 .text {
  1211. position:absolute;
  1212. align-self:center;
  1213. padding:2px 2px 2px 2px;
  1214. box-sizing:border-box;
  1215. width:100%;
  1216. }
  1217. #u53210_text {
  1218. border-width:0px;
  1219. word-wrap:break-word;
  1220. text-transform:none;
  1221. visibility:hidden;
  1222. }
  1223. #u53211 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:0px;
  1229. height:0px;
  1230. }
  1231. #u53212_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. #u53212 {
  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. #u53212 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 2px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u53212_text {
  1269. border-width:0px;
  1270. word-wrap:break-word;
  1271. text-transform:none;
  1272. visibility:hidden;
  1273. }
  1274. #u53213_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. #u53213 {
  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. #u53213 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u53213_text {
  1316. border-width:0px;
  1317. word-wrap:break-word;
  1318. text-transform:none;
  1319. }
  1320. #u53214_div {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:0px;
  1324. top:0px;
  1325. width:85px;
  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. #u53214 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:65px;
  1347. top:73px;
  1348. width:85px;
  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. #u53214 .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. #u53214_text {
  1367. border-width:0px;
  1368. white-space:nowrap;
  1369. text-transform:none;
  1370. }
  1371. #u53215_div {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:0px;
  1375. top:0px;
  1376. width:375px;
  1377. height:180px;
  1378. background:inherit;
  1379. background-color:rgba(255, 255, 255, 1);
  1380. box-sizing:border-box;
  1381. border-width:1px;
  1382. border-style:solid;
  1383. border-color:rgba(215, 215, 215, 1);
  1384. border-left:0px;
  1385. border-top:0px;
  1386. border-right:0px;
  1387. border-radius:0px;
  1388. border-bottom-right-radius:0px;
  1389. border-bottom-left-radius:0px;
  1390. filter:drop-shadow(none);
  1391. transition:none;
  1392. }
  1393. #u53215 {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:29px;
  1397. top:233px;
  1398. width:375px;
  1399. height:180px;
  1400. display:flex;
  1401. transition:none;
  1402. transform-origin:50% 50%;
  1403. }
  1404. #u53215 .text {
  1405. position:absolute;
  1406. align-self:center;
  1407. padding:2px 2px 2px 2px;
  1408. box-sizing:border-box;
  1409. width:100%;
  1410. }
  1411. #u53215_text {
  1412. border-width:0px;
  1413. word-wrap:break-word;
  1414. text-transform:none;
  1415. visibility:hidden;
  1416. }
  1417. #u53216_div {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:0px;
  1421. top:0px;
  1422. width:353px;
  1423. height:40px;
  1424. background:inherit;
  1425. background-color:rgba(255, 255, 255, 0);
  1426. border-top:0px;
  1427. border-right:0px;
  1428. border-bottom:0px;
  1429. border-radius:0px;
  1430. border-top-left-radius:0px;
  1431. border-bottom-left-radius:0px;
  1432. filter:drop-shadow(none);
  1433. transition:none;
  1434. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1435. font-weight:500;
  1436. font-style:normal;
  1437. font-size:14px;
  1438. line-height:30px;
  1439. }
  1440. #u53216 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:42px;
  1444. top:241px;
  1445. width:353px;
  1446. height:40px;
  1447. display:flex;
  1448. transition:none;
  1449. transform-origin:50% 50%;
  1450. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1451. font-weight:500;
  1452. font-style:normal;
  1453. font-size:14px;
  1454. line-height:30px;
  1455. }
  1456. #u53216 .text {
  1457. position:absolute;
  1458. align-self:flex-start;
  1459. padding:5px 10px 5px 0px;
  1460. box-sizing:border-box;
  1461. width:100%;
  1462. }
  1463. #u53216_text {
  1464. border-width:0px;
  1465. word-wrap:break-word;
  1466. text-transform:none;
  1467. }
  1468. #u53217_div {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:355px;
  1474. height:50px;
  1475. background:inherit;
  1476. background-color:rgba(255, 255, 255, 1);
  1477. border-left:0px;
  1478. border-top:0px;
  1479. border-right:0px;
  1480. border-radius:0px;
  1481. border-bottom-right-radius:0px;
  1482. border-bottom-left-radius:0px;
  1483. filter:drop-shadow(none);
  1484. transition:none;
  1485. }
  1486. #u53217 {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:42px;
  1490. top:281px;
  1491. width:355px;
  1492. height:50px;
  1493. display:flex;
  1494. transition:none;
  1495. transform-origin:50% 50%;
  1496. }
  1497. #u53217 .text {
  1498. position:absolute;
  1499. align-self:center;
  1500. padding:2px 2px 2px 2px;
  1501. box-sizing:border-box;
  1502. width:100%;
  1503. }
  1504. #u53217_text {
  1505. border-width:0px;
  1506. word-wrap:break-word;
  1507. text-transform:none;
  1508. visibility:hidden;
  1509. }
  1510. #u53218_div {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:0px;
  1514. top:0px;
  1515. width:64px;
  1516. height:20px;
  1517. background:inherit;
  1518. background-color:rgba(255, 255, 255, 0);
  1519. border-left:0px;
  1520. border-top:0px;
  1521. border-right:0px;
  1522. border-radius:0px;
  1523. border-bottom-right-radius:0px;
  1524. border-bottom-left-radius:0px;
  1525. filter:drop-shadow(none);
  1526. transition:none;
  1527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1528. font-weight:400;
  1529. font-style:normal;
  1530. font-size:14px;
  1531. color:#AAAAAA;
  1532. }
  1533. #u53218 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:61px;
  1537. top:296px;
  1538. width:64px;
  1539. height:20px;
  1540. display:flex;
  1541. transition:none;
  1542. transform-origin:50% 50%;
  1543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1544. font-weight:400;
  1545. font-style:normal;
  1546. font-size:14px;
  1547. color:#AAAAAA;
  1548. }
  1549. #u53218 .text {
  1550. position:absolute;
  1551. align-self:center;
  1552. padding:0px 0px 0px 0px;
  1553. box-sizing:border-box;
  1554. width:100%;
  1555. }
  1556. #u53218_text {
  1557. border-width:0px;
  1558. white-space:nowrap;
  1559. text-transform:none;
  1560. }
  1561. #u53219_div {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:0px;
  1565. top:0px;
  1566. width:43px;
  1567. height:30px;
  1568. background:inherit;
  1569. background-color:rgba(255, 255, 255, 0);
  1570. border-left:0px;
  1571. border-top:0px;
  1572. border-right:0px;
  1573. border-radius:0px;
  1574. border-bottom-right-radius:0px;
  1575. border-bottom-left-radius:0px;
  1576. filter:drop-shadow(none);
  1577. transition:none;
  1578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1579. font-weight:400;
  1580. font-style:normal;
  1581. font-size:14px;
  1582. color:#D7D7D7;
  1583. line-height:30px;
  1584. }
  1585. #u53219 {
  1586. border-width:0px;
  1587. position:absolute;
  1588. left:144px;
  1589. top:291px;
  1590. width:43px;
  1591. height:30px;
  1592. display:flex;
  1593. transition:none;
  1594. transform-origin:50% 50%;
  1595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1596. font-weight:400;
  1597. font-style:normal;
  1598. font-size:14px;
  1599. color:#D7D7D7;
  1600. line-height:30px;
  1601. }
  1602. #u53219 .text {
  1603. position:absolute;
  1604. align-self:center;
  1605. padding:0px 0px 0px 0px;
  1606. box-sizing:border-box;
  1607. width:100%;
  1608. }
  1609. #u53219_text {
  1610. border-width:0px;
  1611. white-space:nowrap;
  1612. text-transform:none;
  1613. }
  1614. #u53220_div {
  1615. border-width:0px;
  1616. position:absolute;
  1617. left:0px;
  1618. top:0px;
  1619. width:8px;
  1620. height:8px;
  1621. background:inherit;
  1622. background-color:rgba(255, 255, 255, 0);
  1623. box-sizing:border-box;
  1624. border-width:1px;
  1625. border-style:solid;
  1626. border-color:rgba(127, 127, 127, 1);
  1627. border-right:0px;
  1628. border-bottom:0px;
  1629. border-radius:0px;
  1630. border-top-right-radius:0px;
  1631. border-bottom-left-radius:0px;
  1632. filter:drop-shadow(none);
  1633. transition:none;
  1634. }
  1635. #u53220 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:373px;
  1639. top:302px;
  1640. width:8px;
  1641. height:8px;
  1642. display:flex;
  1643. -webkit-transform:rotate(135deg);
  1644. -moz-transform:rotate(135deg);
  1645. -ms-transform:rotate(135deg);
  1646. transform:rotate(135deg);
  1647. transition:none;
  1648. transform-origin:50% 50%;
  1649. }
  1650. #u53220 .text {
  1651. position:absolute;
  1652. align-self:center;
  1653. padding:2px 2px 2px 2px;
  1654. box-sizing:border-box;
  1655. width:100%;
  1656. }
  1657. #u53220_text {
  1658. border-width:0px;
  1659. word-wrap:break-word;
  1660. text-transform:none;
  1661. visibility:hidden;
  1662. }
  1663. #u53221_div {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:355px;
  1669. height:50px;
  1670. background:inherit;
  1671. background-color:rgba(255, 255, 255, 1);
  1672. border-left:0px;
  1673. border-top:0px;
  1674. border-right:0px;
  1675. border-radius:0px;
  1676. border-bottom-right-radius:0px;
  1677. border-bottom-left-radius:0px;
  1678. filter:drop-shadow(none);
  1679. transition:none;
  1680. }
  1681. #u53221 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:42px;
  1685. top:331px;
  1686. width:355px;
  1687. height:50px;
  1688. display:flex;
  1689. transition:none;
  1690. transform-origin:50% 50%;
  1691. }
  1692. #u53221 .text {
  1693. position:absolute;
  1694. align-self:center;
  1695. padding:2px 2px 2px 2px;
  1696. box-sizing:border-box;
  1697. width:100%;
  1698. }
  1699. #u53221_text {
  1700. border-width:0px;
  1701. word-wrap:break-word;
  1702. text-transform:none;
  1703. visibility:hidden;
  1704. }
  1705. #u53222_div {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:0px;
  1709. top:0px;
  1710. width:78px;
  1711. height:20px;
  1712. background:inherit;
  1713. background-color:rgba(255, 255, 255, 0);
  1714. border-left:0px;
  1715. border-top:0px;
  1716. border-right:0px;
  1717. border-radius:0px;
  1718. border-bottom-right-radius:0px;
  1719. border-bottom-left-radius:0px;
  1720. filter:drop-shadow(none);
  1721. transition:none;
  1722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1723. font-weight:400;
  1724. font-style:normal;
  1725. font-size:14px;
  1726. color:#AAAAAA;
  1727. }
  1728. #u53222 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:61px;
  1732. top:346px;
  1733. width:78px;
  1734. height:20px;
  1735. display:flex;
  1736. transition:none;
  1737. transform-origin:50% 50%;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:14px;
  1742. color:#AAAAAA;
  1743. }
  1744. #u53222 .text {
  1745. position:absolute;
  1746. align-self:center;
  1747. padding:0px 0px 0px 0px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u53222_text {
  1752. border-width:0px;
  1753. white-space:nowrap;
  1754. text-transform:none;
  1755. }
  1756. #u53223_div {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:0px;
  1760. top:0px;
  1761. width:99px;
  1762. height:30px;
  1763. background:inherit;
  1764. background-color:rgba(255, 255, 255, 0);
  1765. border-left:0px;
  1766. border-top:0px;
  1767. border-right:0px;
  1768. border-radius:0px;
  1769. border-bottom-right-radius:0px;
  1770. border-bottom-left-radius:0px;
  1771. filter:drop-shadow(none);
  1772. transition:none;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:14px;
  1777. color:#D7D7D7;
  1778. line-height:30px;
  1779. }
  1780. #u53223 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:144px;
  1784. top:341px;
  1785. width:99px;
  1786. height:30px;
  1787. display:flex;
  1788. transition:none;
  1789. transform-origin:50% 50%;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:14px;
  1794. color:#D7D7D7;
  1795. line-height:30px;
  1796. }
  1797. #u53223 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:0px 0px 0px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u53223_text {
  1805. border-width:0px;
  1806. white-space:nowrap;
  1807. text-transform:none;
  1808. }
  1809. #u53224 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:0px;
  1815. height:0px;
  1816. }
  1817. #u53225_div {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:375px;
  1823. height:115px;
  1824. background:inherit;
  1825. background-color:rgba(255, 255, 255, 1);
  1826. box-sizing:border-box;
  1827. border-width:1px;
  1828. border-style:solid;
  1829. border-color:rgba(215, 215, 215, 1);
  1830. border-left:0px;
  1831. border-top:0px;
  1832. border-right:0px;
  1833. border-radius:0px;
  1834. border-bottom-right-radius:0px;
  1835. border-bottom-left-radius:0px;
  1836. filter:drop-shadow(none);
  1837. transition:none;
  1838. }
  1839. #u53225 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:29px;
  1843. top:108px;
  1844. width:375px;
  1845. height:115px;
  1846. display:flex;
  1847. transition:none;
  1848. transform-origin:50% 50%;
  1849. }
  1850. #u53225 .text {
  1851. position:absolute;
  1852. align-self:center;
  1853. padding:2px 2px 2px 2px;
  1854. box-sizing:border-box;
  1855. width:100%;
  1856. }
  1857. #u53225_text {
  1858. border-width:0px;
  1859. word-wrap:break-word;
  1860. text-transform:none;
  1861. visibility:hidden;
  1862. }
  1863. #u53226_div {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:353px;
  1869. height:40px;
  1870. background:inherit;
  1871. background-color:rgba(255, 255, 255, 0);
  1872. border-top:0px;
  1873. border-right:0px;
  1874. border-bottom:0px;
  1875. border-radius:0px;
  1876. border-top-left-radius:0px;
  1877. border-bottom-left-radius:0px;
  1878. filter:drop-shadow(none);
  1879. transition:none;
  1880. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1881. font-weight:500;
  1882. font-style:normal;
  1883. font-size:14px;
  1884. line-height:30px;
  1885. }
  1886. #u53226 {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:42px;
  1890. top:116px;
  1891. width:353px;
  1892. height:40px;
  1893. display:flex;
  1894. transition:none;
  1895. transform-origin:50% 50%;
  1896. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1897. font-weight:500;
  1898. font-style:normal;
  1899. font-size:14px;
  1900. line-height:30px;
  1901. }
  1902. #u53226 .text {
  1903. position:absolute;
  1904. align-self:flex-start;
  1905. padding:5px 10px 5px 0px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u53226_text {
  1910. border-width:0px;
  1911. word-wrap:break-word;
  1912. text-transform:none;
  1913. }
  1914. #u53227_div {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:11px;
  1920. height:11px;
  1921. background:inherit;
  1922. background-color:rgba(255, 255, 255, 0);
  1923. box-sizing:border-box;
  1924. border-width:2px;
  1925. border-style:solid;
  1926. border-color:rgba(51, 51, 51, 1);
  1927. border-right:0px;
  1928. border-bottom:0px;
  1929. border-radius:0px;
  1930. border-top-right-radius:0px;
  1931. border-bottom-left-radius:0px;
  1932. filter:drop-shadow(none);
  1933. transition:none;
  1934. }
  1935. #u53227 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:374px;
  1939. top:130px;
  1940. width:11px;
  1941. height:11px;
  1942. display:flex;
  1943. -webkit-transform:rotate(225deg);
  1944. -moz-transform:rotate(225deg);
  1945. -ms-transform:rotate(225deg);
  1946. transform:rotate(225deg);
  1947. transition:none;
  1948. transform-origin:50% 50%;
  1949. }
  1950. #u53227 .text {
  1951. position:absolute;
  1952. align-self:center;
  1953. padding:2px 2px 2px 2px;
  1954. box-sizing:border-box;
  1955. width:100%;
  1956. }
  1957. #u53227_text {
  1958. border-width:0px;
  1959. word-wrap:break-word;
  1960. text-transform:none;
  1961. visibility:hidden;
  1962. }
  1963. #u53228_div {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:353px;
  1969. height:65px;
  1970. background:inherit;
  1971. background-color:rgba(255, 255, 255, 0);
  1972. border-top:0px;
  1973. border-right:0px;
  1974. border-bottom:0px;
  1975. border-radius:0px;
  1976. border-top-left-radius:0px;
  1977. border-bottom-left-radius:0px;
  1978. filter:drop-shadow(none);
  1979. transition:none;
  1980. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1981. font-style:normal;
  1982. }
  1983. #u53228 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:44px;
  1987. top:156px;
  1988. width:353px;
  1989. height:65px;
  1990. display:flex;
  1991. transition:none;
  1992. transform-origin:50% 50%;
  1993. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1994. font-style:normal;
  1995. }
  1996. #u53228 .text {
  1997. position:absolute;
  1998. align-self:flex-start;
  1999. padding:5px 10px 5px 0px;
  2000. box-sizing:border-box;
  2001. width:100%;
  2002. }
  2003. #u53228_text {
  2004. border-width:0px;
  2005. word-wrap:break-word;
  2006. text-transform:none;
  2007. }
  2008. #u53229_div {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:0px;
  2012. top:0px;
  2013. width:35px;
  2014. height:17px;
  2015. background:inherit;
  2016. background-color:rgba(217, 0, 27, 1);
  2017. border-radius:14px;
  2018. filter:drop-shadow(none);
  2019. transition:none;
  2020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:12px;
  2024. color:#FFFFFF;
  2025. }
  2026. #u53229 {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:145px;
  2030. top:166px;
  2031. width:35px;
  2032. height:17px;
  2033. display:flex;
  2034. transition:none;
  2035. transform-origin:50% 50%;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. color:#FFFFFF;
  2041. }
  2042. #u53229 .text {
  2043. position:absolute;
  2044. align-self:flex-start;
  2045. padding:0px 5px 0px 5px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u53229_text {
  2050. border-width:0px;
  2051. white-space:nowrap;
  2052. text-transform:none;
  2053. }
  2054. #u53230_div {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:43px;
  2060. height:20px;
  2061. background:inherit;
  2062. background-color:rgba(255, 255, 255, 0);
  2063. border-radius:0px;
  2064. filter:drop-shadow(none);
  2065. transition:none;
  2066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2067. font-weight:400;
  2068. font-style:normal;
  2069. color:#F59A23;
  2070. }
  2071. #u53230 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:314px;
  2075. top:127px;
  2076. width:43px;
  2077. height:20px;
  2078. display:flex;
  2079. transition:none;
  2080. transform-origin:50% 50%;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. color:#F59A23;
  2085. }
  2086. #u53230 .text {
  2087. position:absolute;
  2088. align-self:flex-start;
  2089. padding:0px 0px 0px 0px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u53230_text {
  2094. border-width:0px;
  2095. white-space:nowrap;
  2096. text-transform:none;
  2097. }
  2098. #u53231_div {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:0px;
  2102. top:0px;
  2103. width:50px;
  2104. height:14px;
  2105. background:inherit;
  2106. background-color:rgba(242, 242, 242, 1);
  2107. border-radius:9px;
  2108. filter:drop-shadow(none);
  2109. transition:none;
  2110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2111. font-weight:400;
  2112. font-style:normal;
  2113. font-size:10px;
  2114. color:#0000FF;
  2115. text-align:center;
  2116. }
  2117. #u53231 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:44px;
  2121. top:194px;
  2122. width:50px;
  2123. height:14px;
  2124. display:flex;
  2125. transition:none;
  2126. transform-origin:50% 50%;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:10px;
  2131. color:#0000FF;
  2132. text-align:center;
  2133. }
  2134. #u53231 .text {
  2135. position:absolute;
  2136. align-self:flex-start;
  2137. padding:0px 0px 0px 0px;
  2138. box-sizing:border-box;
  2139. width:100%;
  2140. }
  2141. #u53231_text {
  2142. border-width:0px;
  2143. word-wrap:break-word;
  2144. text-transform:none;
  2145. }
  2146. #u53232_div {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:50px;
  2152. height:14px;
  2153. background:inherit;
  2154. background-color:rgba(242, 242, 242, 1);
  2155. border-radius:9px;
  2156. filter:drop-shadow(none);
  2157. transition:none;
  2158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2159. font-weight:400;
  2160. font-style:normal;
  2161. font-size:10px;
  2162. color:#D9001B;
  2163. text-align:center;
  2164. }
  2165. #u53232 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:104px;
  2169. top:194px;
  2170. width:50px;
  2171. height:14px;
  2172. display:flex;
  2173. transition:none;
  2174. transform-origin:50% 50%;
  2175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2176. font-weight:400;
  2177. font-style:normal;
  2178. font-size:10px;
  2179. color:#D9001B;
  2180. text-align:center;
  2181. }
  2182. #u53232 .text {
  2183. position:absolute;
  2184. align-self:flex-start;
  2185. padding:0px 0px 0px 0px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u53232_text {
  2190. border-width:0px;
  2191. word-wrap:break-word;
  2192. text-transform:none;
  2193. }