styles.css 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538
  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. #u159725_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u159725 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u159725 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u159725_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u159726_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u159726 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u159726 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u159726_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u159727 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u159728_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u159728 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u159728 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u159728_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u159729 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u159730_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u159730 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u159730 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u159730_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u159731_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u159731 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u159731 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u159731_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u159732 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u159733_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u159733 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u159733 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u159733_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u159734_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u159734 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u159734 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u159734_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u159735_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u159735 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u159735 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u159735_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u159736_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u159736 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u159736 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u159736_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u159737_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u159737 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u159737 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u159737_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u159738_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u159738 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u159738 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u159738_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u159739 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u159740_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u159740 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u159740 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u159740_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u159741_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u159741 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u159741 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u159741_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u159742 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u159743_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u159743 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u159743 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u159743_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u159744_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u159744 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u159744 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u159744_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u159745_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u159745 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u159745 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u159745_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u159746 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u159747_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u159747 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u159747 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u159747_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u159748_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u159748 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u159748 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u159748_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u159749 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u159750_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u159750 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u159750 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u159750_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u159751_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u159751 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u159751 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u159751_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u159752_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:57px;
  785. height:30px;
  786. background:inherit;
  787. background-color:rgba(255, 255, 255, 0);
  788. border:none;
  789. border-left:0px;
  790. border-top:0px;
  791. border-right:0px;
  792. border-radius:0px;
  793. border-bottom-right-radius:0px;
  794. border-bottom-left-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  799. font-weight:400;
  800. font-style:normal;
  801. font-size:14px;
  802. line-height:30px;
  803. }
  804. #u159752 {
  805. border-width:0px;
  806. position:absolute;
  807. left:53px;
  808. top:72px;
  809. width:57px;
  810. height:30px;
  811. display:flex;
  812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:14px;
  816. line-height:30px;
  817. }
  818. #u159752 .text {
  819. position:absolute;
  820. align-self:center;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u159752_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u159753_div {
  831. border-width:0px;
  832. position:absolute;
  833. left:0px;
  834. top:0px;
  835. width:375px;
  836. height:1279px;
  837. background:inherit;
  838. background-color:rgba(255, 255, 255, 1);
  839. border:none;
  840. border-top:0px;
  841. border-radius:28px;
  842. border-top-left-radius:0px;
  843. border-top-right-radius:0px;
  844. -moz-box-shadow:none;
  845. -webkit-box-shadow:none;
  846. box-shadow:none;
  847. }
  848. #u159753 {
  849. border-width:0px;
  850. position:absolute;
  851. left:29px;
  852. top:107px;
  853. width:375px;
  854. height:1279px;
  855. display:flex;
  856. }
  857. #u159753 .text {
  858. position:absolute;
  859. align-self:center;
  860. padding:2px 2px 2px 2px;
  861. box-sizing:border-box;
  862. width:100%;
  863. }
  864. #u159753_text {
  865. border-width:0px;
  866. word-wrap:break-word;
  867. text-transform:none;
  868. visibility:hidden;
  869. }
  870. #u159754_div {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:96px;
  876. height:50px;
  877. background:inherit;
  878. background-color:rgba(255, 255, 255, 0);
  879. border:none;
  880. border-left:0px;
  881. border-top:0px;
  882. border-right:0px;
  883. border-radius:0px;
  884. border-bottom-right-radius:0px;
  885. border-bottom-left-radius:0px;
  886. -moz-box-shadow:none;
  887. -webkit-box-shadow:none;
  888. box-shadow:none;
  889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  890. font-weight:400;
  891. font-style:normal;
  892. font-size:18px;
  893. line-height:30px;
  894. }
  895. #u159754 {
  896. border-width:0px;
  897. position:absolute;
  898. left:49px;
  899. top:107px;
  900. width:96px;
  901. height:50px;
  902. display:flex;
  903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  904. font-weight:400;
  905. font-style:normal;
  906. font-size:18px;
  907. line-height:30px;
  908. }
  909. #u159754 .text {
  910. position:absolute;
  911. align-self:center;
  912. padding:0px 0px 0px 0px;
  913. box-sizing:border-box;
  914. width:100%;
  915. }
  916. #u159754_text {
  917. border-width:0px;
  918. white-space:nowrap;
  919. text-transform:none;
  920. }
  921. #u159755 {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:0px;
  927. height:0px;
  928. }
  929. #u159756_div {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:339px;
  935. height:280px;
  936. background:inherit;
  937. background-color:rgba(242, 242, 242, 1);
  938. border:none;
  939. border-radius:6px;
  940. -moz-box-shadow:none;
  941. -webkit-box-shadow:none;
  942. box-shadow:none;
  943. }
  944. #u159756 {
  945. border-width:0px;
  946. position:absolute;
  947. left:47px;
  948. top:204px;
  949. width:339px;
  950. height:280px;
  951. display:flex;
  952. }
  953. #u159756 .text {
  954. position:absolute;
  955. align-self:center;
  956. padding:2px 2px 2px 2px;
  957. box-sizing:border-box;
  958. width:100%;
  959. }
  960. #u159756_text {
  961. border-width:0px;
  962. word-wrap:break-word;
  963. text-transform:none;
  964. visibility:hidden;
  965. }
  966. #u159757_div {
  967. border-width:0px;
  968. position:absolute;
  969. left:0px;
  970. top:0px;
  971. width:155px;
  972. height:30px;
  973. background:inherit;
  974. background-color:rgba(255, 255, 255, 0);
  975. border:none;
  976. border-left:0px;
  977. border-top:0px;
  978. border-right:0px;
  979. border-radius:0px;
  980. border-bottom-right-radius:0px;
  981. border-bottom-left-radius:0px;
  982. -moz-box-shadow:none;
  983. -webkit-box-shadow:none;
  984. box-shadow:none;
  985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  986. font-weight:400;
  987. font-style:normal;
  988. font-size:14px;
  989. color:#1890FF;
  990. line-height:30px;
  991. }
  992. #u159757 {
  993. border-width:0px;
  994. position:absolute;
  995. left:62px;
  996. top:217px;
  997. width:155px;
  998. height:30px;
  999. display:flex;
  1000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1001. font-weight:400;
  1002. font-style:normal;
  1003. font-size:14px;
  1004. color:#1890FF;
  1005. line-height:30px;
  1006. }
  1007. #u159757 .text {
  1008. position:absolute;
  1009. align-self:flex-start;
  1010. padding:0px 0px 0px 0px;
  1011. box-sizing:border-box;
  1012. width:100%;
  1013. }
  1014. #u159757_text {
  1015. border-width:0px;
  1016. white-space:nowrap;
  1017. text-transform:none;
  1018. }
  1019. #u159758 {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:0px;
  1025. height:0px;
  1026. }
  1027. #u159759_div {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:105px;
  1033. height:30px;
  1034. background:inherit;
  1035. background-color:rgba(255, 255, 255, 0);
  1036. border:none;
  1037. border-left:0px;
  1038. border-top:0px;
  1039. border-right:0px;
  1040. border-radius:0px;
  1041. border-bottom-right-radius:0px;
  1042. border-bottom-left-radius:0px;
  1043. -moz-box-shadow:none;
  1044. -webkit-box-shadow:none;
  1045. box-shadow:none;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. font-size:34px;
  1050. line-height:30px;
  1051. }
  1052. #u159759 {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:164px;
  1056. top:294px;
  1057. width:105px;
  1058. height:30px;
  1059. display:flex;
  1060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1061. font-weight:400;
  1062. font-style:normal;
  1063. font-size:34px;
  1064. line-height:30px;
  1065. }
  1066. #u159759 .text {
  1067. position:absolute;
  1068. align-self:flex-start;
  1069. padding:0px 0px 0px 0px;
  1070. box-sizing:border-box;
  1071. width:100%;
  1072. }
  1073. #u159759_text {
  1074. border-width:0px;
  1075. white-space:nowrap;
  1076. text-transform:none;
  1077. }
  1078. #u159760_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:37px;
  1084. height:30px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-left:0px;
  1089. border-top:0px;
  1090. border-right:0px;
  1091. border-radius:0px;
  1092. border-bottom-right-radius:0px;
  1093. border-bottom-left-radius:0px;
  1094. -moz-box-shadow:none;
  1095. -webkit-box-shadow:none;
  1096. box-shadow:none;
  1097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1098. font-weight:400;
  1099. font-style:normal;
  1100. font-size:12px;
  1101. line-height:30px;
  1102. }
  1103. #u159760 {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:198px;
  1107. top:254px;
  1108. width:37px;
  1109. height:30px;
  1110. display:flex;
  1111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1112. font-weight:400;
  1113. font-style:normal;
  1114. font-size:12px;
  1115. line-height:30px;
  1116. }
  1117. #u159760 .text {
  1118. position:absolute;
  1119. align-self:flex-start;
  1120. padding:0px 0px 0px 0px;
  1121. box-sizing:border-box;
  1122. width:100%;
  1123. }
  1124. #u159760_text {
  1125. border-width:0px;
  1126. white-space:nowrap;
  1127. text-transform:none;
  1128. }
  1129. #u159761_div {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:0px;
  1133. top:0px;
  1134. width:164px;
  1135. height:60px;
  1136. background:inherit;
  1137. background-color:rgba(255, 255, 255, 0);
  1138. border:none;
  1139. border-left:0px;
  1140. border-top:0px;
  1141. border-right:0px;
  1142. border-radius:0px;
  1143. border-bottom-right-radius:0px;
  1144. border-bottom-left-radius:0px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:12px;
  1152. line-height:30px;
  1153. }
  1154. #u159761 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:71px;
  1158. top:364px;
  1159. width:164px;
  1160. height:60px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. font-size:12px;
  1166. line-height:30px;
  1167. }
  1168. #u159761 .text {
  1169. position:absolute;
  1170. align-self:flex-start;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u159761_text {
  1176. border-width:0px;
  1177. white-space:nowrap;
  1178. text-transform:none;
  1179. }
  1180. #u159762_div {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:293px;
  1186. height:40px;
  1187. background:inherit;
  1188. background-color:rgba(24, 144, 255, 1);
  1189. border:none;
  1190. border-radius:81px;
  1191. -moz-box-shadow:none;
  1192. -webkit-box-shadow:none;
  1193. box-shadow:none;
  1194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1195. font-weight:400;
  1196. font-style:normal;
  1197. font-size:14px;
  1198. color:#FFFFFF;
  1199. }
  1200. #u159762 {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:74px;
  1204. top:435px;
  1205. width:293px;
  1206. height:40px;
  1207. display:flex;
  1208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1209. font-weight:400;
  1210. font-style:normal;
  1211. font-size:14px;
  1212. color:#FFFFFF;
  1213. }
  1214. #u159762 .text {
  1215. position:absolute;
  1216. align-self:center;
  1217. padding:2px 2px 2px 2px;
  1218. box-sizing:border-box;
  1219. width:100%;
  1220. }
  1221. #u159762_text {
  1222. border-width:0px;
  1223. word-wrap:break-word;
  1224. text-transform:none;
  1225. }
  1226. #u159763_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:131px;
  1232. height:30px;
  1233. background:inherit;
  1234. background-color:rgba(255, 255, 255, 0);
  1235. border:none;
  1236. border-left:0px;
  1237. border-top:0px;
  1238. border-right:0px;
  1239. border-radius:0px;
  1240. border-bottom-right-radius:0px;
  1241. border-bottom-left-radius:0px;
  1242. -moz-box-shadow:none;
  1243. -webkit-box-shadow:none;
  1244. box-shadow:none;
  1245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1246. font-weight:400;
  1247. font-style:normal;
  1248. font-size:12px;
  1249. line-height:30px;
  1250. }
  1251. #u159763 {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:149px;
  1255. top:329px;
  1256. width:131px;
  1257. height:30px;
  1258. display:flex;
  1259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1260. font-weight:400;
  1261. font-style:normal;
  1262. font-size:12px;
  1263. line-height:30px;
  1264. }
  1265. #u159763 .text {
  1266. position:absolute;
  1267. align-self:flex-start;
  1268. padding:0px 0px 0px 0px;
  1269. box-sizing:border-box;
  1270. width:100%;
  1271. }
  1272. #u159763_text {
  1273. border-width:0px;
  1274. white-space:nowrap;
  1275. text-transform:none;
  1276. }
  1277. #u159764_div {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:40px;
  1283. height:20px;
  1284. background:inherit;
  1285. background-color:rgba(217, 92, 0, 1);
  1286. border:none;
  1287. border-right:0px;
  1288. border-radius:9px;
  1289. border-top-right-radius:0px;
  1290. border-bottom-right-radius:0px;
  1291. -moz-box-shadow:none;
  1292. -webkit-box-shadow:none;
  1293. box-shadow:none;
  1294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1295. font-weight:400;
  1296. font-style:normal;
  1297. font-size:10px;
  1298. color:#FFFFFF;
  1299. text-align:center;
  1300. }
  1301. #u159764 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:346px;
  1305. top:222px;
  1306. width:40px;
  1307. height:20px;
  1308. display:flex;
  1309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1310. font-weight:400;
  1311. font-style:normal;
  1312. font-size:10px;
  1313. color:#FFFFFF;
  1314. text-align:center;
  1315. }
  1316. #u159764 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:0px 0px 0px 0px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u159764_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. }
  1328. #u159765_div {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:0px;
  1332. top:0px;
  1333. width:289px;
  1334. height:25px;
  1335. background:inherit;
  1336. background-color:rgba(255, 255, 255, 0);
  1337. border:none;
  1338. border-radius:0px;
  1339. -moz-box-shadow:none;
  1340. -webkit-box-shadow:none;
  1341. box-shadow:none;
  1342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1343. font-weight:400;
  1344. font-style:normal;
  1345. font-size:12px;
  1346. color:#F59A23;
  1347. line-height:25px;
  1348. }
  1349. #u159765 {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:49px;
  1353. top:167px;
  1354. width:289px;
  1355. height:25px;
  1356. display:flex;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. font-size:12px;
  1361. color:#F59A23;
  1362. line-height:25px;
  1363. }
  1364. #u159765 .text {
  1365. position:absolute;
  1366. align-self:flex-start;
  1367. padding:0px 0px 0px 0px;
  1368. box-sizing:border-box;
  1369. width:100%;
  1370. }
  1371. #u159765_text {
  1372. border-width:0px;
  1373. white-space:nowrap;
  1374. text-transform:none;
  1375. }
  1376. #u159766 {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:0px;
  1380. top:0px;
  1381. width:0px;
  1382. height:0px;
  1383. }
  1384. #u159767_div {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:339px;
  1390. height:291px;
  1391. background:inherit;
  1392. background-color:rgba(242, 242, 242, 1);
  1393. border:none;
  1394. border-radius:6px;
  1395. -moz-box-shadow:none;
  1396. -webkit-box-shadow:none;
  1397. box-shadow:none;
  1398. }
  1399. #u159767 {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:47px;
  1403. top:494px;
  1404. width:339px;
  1405. height:291px;
  1406. display:flex;
  1407. }
  1408. #u159767 .text {
  1409. position:absolute;
  1410. align-self:center;
  1411. padding:2px 2px 2px 2px;
  1412. box-sizing:border-box;
  1413. width:100%;
  1414. }
  1415. #u159767_text {
  1416. border-width:0px;
  1417. word-wrap:break-word;
  1418. text-transform:none;
  1419. visibility:hidden;
  1420. }
  1421. #u159768_div {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:0px;
  1425. top:0px;
  1426. width:155px;
  1427. height:30px;
  1428. background:inherit;
  1429. background-color:rgba(255, 255, 255, 0);
  1430. border:none;
  1431. border-left:0px;
  1432. border-top:0px;
  1433. border-right:0px;
  1434. border-radius:0px;
  1435. border-bottom-right-radius:0px;
  1436. border-bottom-left-radius:0px;
  1437. -moz-box-shadow:none;
  1438. -webkit-box-shadow:none;
  1439. box-shadow:none;
  1440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1441. font-weight:400;
  1442. font-style:normal;
  1443. font-size:14px;
  1444. color:#1890FF;
  1445. line-height:30px;
  1446. }
  1447. #u159768 {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:64px;
  1451. top:507px;
  1452. width:155px;
  1453. height:30px;
  1454. display:flex;
  1455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1456. font-weight:400;
  1457. font-style:normal;
  1458. font-size:14px;
  1459. color:#1890FF;
  1460. line-height:30px;
  1461. }
  1462. #u159768 .text {
  1463. position:absolute;
  1464. align-self:flex-start;
  1465. padding:0px 0px 0px 0px;
  1466. box-sizing:border-box;
  1467. width:100%;
  1468. }
  1469. #u159768_text {
  1470. border-width:0px;
  1471. white-space:nowrap;
  1472. text-transform:none;
  1473. }
  1474. #u159769_div {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:0px;
  1478. top:0px;
  1479. width:164px;
  1480. height:60px;
  1481. background:inherit;
  1482. background-color:rgba(255, 255, 255, 0);
  1483. border:none;
  1484. border-left:0px;
  1485. border-top:0px;
  1486. border-right:0px;
  1487. border-radius:0px;
  1488. border-bottom-right-radius:0px;
  1489. border-bottom-left-radius:0px;
  1490. -moz-box-shadow:none;
  1491. -webkit-box-shadow:none;
  1492. box-shadow:none;
  1493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1494. font-weight:400;
  1495. font-style:normal;
  1496. font-size:12px;
  1497. line-height:30px;
  1498. }
  1499. #u159769 {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:71px;
  1503. top:653px;
  1504. width:164px;
  1505. height:60px;
  1506. display:flex;
  1507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1508. font-weight:400;
  1509. font-style:normal;
  1510. font-size:12px;
  1511. line-height:30px;
  1512. }
  1513. #u159769 .text {
  1514. position:absolute;
  1515. align-self:flex-start;
  1516. padding:0px 0px 0px 0px;
  1517. box-sizing:border-box;
  1518. width:100%;
  1519. }
  1520. #u159769_text {
  1521. border-width:0px;
  1522. white-space:nowrap;
  1523. text-transform:none;
  1524. }
  1525. #u159770_div {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:99px;
  1531. height:30px;
  1532. background:inherit;
  1533. background-color:rgba(255, 255, 255, 0);
  1534. border:none;
  1535. border-left:0px;
  1536. border-top:0px;
  1537. border-right:0px;
  1538. border-radius:0px;
  1539. border-bottom-right-radius:0px;
  1540. border-bottom-left-radius:0px;
  1541. -moz-box-shadow:none;
  1542. -webkit-box-shadow:none;
  1543. box-shadow:none;
  1544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1545. font-weight:400;
  1546. font-style:normal;
  1547. font-size:12px;
  1548. line-height:30px;
  1549. }
  1550. #u159770 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:165px;
  1554. top:604px;
  1555. width:99px;
  1556. height:30px;
  1557. display:flex;
  1558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1559. font-weight:400;
  1560. font-style:normal;
  1561. font-size:12px;
  1562. line-height:30px;
  1563. }
  1564. #u159770 .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. #u159770_text {
  1572. border-width:0px;
  1573. white-space:nowrap;
  1574. text-transform:none;
  1575. }
  1576. #u159771_div {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:0px;
  1580. top:0px;
  1581. width:92px;
  1582. height:30px;
  1583. background:inherit;
  1584. background-color:rgba(255, 255, 255, 0);
  1585. border:none;
  1586. border-left:0px;
  1587. border-top:0px;
  1588. border-right:0px;
  1589. border-radius:0px;
  1590. border-bottom-right-radius:0px;
  1591. border-bottom-left-radius:0px;
  1592. -moz-box-shadow:none;
  1593. -webkit-box-shadow:none;
  1594. box-shadow:none;
  1595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1596. font-weight:400;
  1597. font-style:normal;
  1598. font-size:34px;
  1599. line-height:30px;
  1600. }
  1601. #u159771 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:168px;
  1605. top:563px;
  1606. width:92px;
  1607. height:30px;
  1608. display:flex;
  1609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1610. font-weight:400;
  1611. font-style:normal;
  1612. font-size:34px;
  1613. line-height:30px;
  1614. }
  1615. #u159771 .text {
  1616. position:absolute;
  1617. align-self:flex-start;
  1618. padding:0px 0px 0px 0px;
  1619. box-sizing:border-box;
  1620. width:100%;
  1621. }
  1622. #u159771_text {
  1623. border-width:0px;
  1624. white-space:nowrap;
  1625. text-transform:none;
  1626. }
  1627. #u159772_div {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:293px;
  1633. height:40px;
  1634. background:inherit;
  1635. background-color:rgba(215, 215, 215, 0);
  1636. box-sizing:border-box;
  1637. border-width:1px;
  1638. border-style:solid;
  1639. border-color:rgba(24, 144, 255, 1);
  1640. border-radius:81px;
  1641. -moz-box-shadow:none;
  1642. -webkit-box-shadow:none;
  1643. box-shadow:none;
  1644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1645. font-weight:400;
  1646. font-style:normal;
  1647. font-size:12px;
  1648. color:#1890FF;
  1649. line-height:30px;
  1650. }
  1651. #u159772 {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:71px;
  1655. top:723px;
  1656. width:293px;
  1657. height:40px;
  1658. display:flex;
  1659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1660. font-weight:400;
  1661. font-style:normal;
  1662. font-size:12px;
  1663. color:#1890FF;
  1664. line-height:30px;
  1665. }
  1666. #u159772 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u159772_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. }
  1678. #u159773_div {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:0px;
  1682. top:0px;
  1683. width:114px;
  1684. height:50px;
  1685. background:inherit;
  1686. background-color:rgba(255, 255, 255, 0);
  1687. box-sizing:border-box;
  1688. border-width:2px;
  1689. border-style:solid;
  1690. border-color:rgba(51, 51, 51, 1);
  1691. border-left:0px;
  1692. border-top:0px;
  1693. border-right:0px;
  1694. border-radius:0px;
  1695. border-bottom-right-radius:0px;
  1696. border-bottom-left-radius:0px;
  1697. -moz-box-shadow:none;
  1698. -webkit-box-shadow:none;
  1699. box-shadow:none;
  1700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1701. font-weight:400;
  1702. font-style:normal;
  1703. font-size:18px;
  1704. line-height:30px;
  1705. }
  1706. #u159773 {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:176px;
  1710. top:107px;
  1711. width:114px;
  1712. height:50px;
  1713. display:flex;
  1714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1715. font-weight:400;
  1716. font-style:normal;
  1717. font-size:18px;
  1718. line-height:30px;
  1719. }
  1720. #u159773 .text {
  1721. position:absolute;
  1722. align-self:center;
  1723. padding:0px 0px 0px 0px;
  1724. box-sizing:border-box;
  1725. width:100%;
  1726. }
  1727. #u159773_text {
  1728. border-width:0px;
  1729. white-space:nowrap;
  1730. text-transform:none;
  1731. }
  1732. #u159774_div {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:12px;
  1738. height:12px;
  1739. background:inherit;
  1740. background-color:rgba(255, 255, 255, 0);
  1741. box-sizing:border-box;
  1742. border-width:2px;
  1743. border-style:solid;
  1744. border-color:rgba(51, 51, 51, 1);
  1745. border-right:0px;
  1746. border-bottom:0px;
  1747. border-radius:0px;
  1748. border-top-right-radius:0px;
  1749. border-bottom-left-radius:0px;
  1750. -moz-box-shadow:none;
  1751. -webkit-box-shadow:none;
  1752. box-shadow:none;
  1753. }
  1754. #u159774 {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:39px;
  1758. top:81px;
  1759. width:12px;
  1760. height:12px;
  1761. display:flex;
  1762. -webkit-transform:rotate(315deg);
  1763. -moz-transform:rotate(315deg);
  1764. -ms-transform:rotate(315deg);
  1765. transform:rotate(315deg);
  1766. }
  1767. #u159774 .text {
  1768. position:absolute;
  1769. align-self:center;
  1770. padding:2px 2px 2px 2px;
  1771. box-sizing:border-box;
  1772. width:100%;
  1773. }
  1774. #u159774_text {
  1775. border-width:0px;
  1776. word-wrap:break-word;
  1777. text-transform:none;
  1778. visibility:hidden;
  1779. }
  1780. #u159775 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:0px;
  1786. height:0px;
  1787. }
  1788. #u159776_div {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:339px;
  1794. height:321px;
  1795. background:inherit;
  1796. background-color:rgba(242, 242, 242, 1);
  1797. border:none;
  1798. border-radius:6px;
  1799. -moz-box-shadow:none;
  1800. -webkit-box-shadow:none;
  1801. box-shadow:none;
  1802. }
  1803. #u159776 {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:47px;
  1807. top:795px;
  1808. width:339px;
  1809. height:321px;
  1810. display:flex;
  1811. }
  1812. #u159776 .text {
  1813. position:absolute;
  1814. align-self:center;
  1815. padding:2px 2px 2px 2px;
  1816. box-sizing:border-box;
  1817. width:100%;
  1818. }
  1819. #u159776_text {
  1820. border-width:0px;
  1821. word-wrap:break-word;
  1822. text-transform:none;
  1823. visibility:hidden;
  1824. }
  1825. #u159777_div {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:0px;
  1829. top:0px;
  1830. width:155px;
  1831. height:30px;
  1832. background:inherit;
  1833. background-color:rgba(255, 255, 255, 0);
  1834. border:none;
  1835. border-left:0px;
  1836. border-top:0px;
  1837. border-right:0px;
  1838. border-radius:0px;
  1839. border-bottom-right-radius:0px;
  1840. border-bottom-left-radius:0px;
  1841. -moz-box-shadow:none;
  1842. -webkit-box-shadow:none;
  1843. box-shadow:none;
  1844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1845. font-weight:400;
  1846. font-style:normal;
  1847. font-size:14px;
  1848. line-height:30px;
  1849. }
  1850. #u159777 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:71px;
  1854. top:808px;
  1855. width:155px;
  1856. height:30px;
  1857. display:flex;
  1858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:14px;
  1862. line-height:30px;
  1863. }
  1864. #u159777 .text {
  1865. position:absolute;
  1866. align-self:flex-start;
  1867. padding:0px 0px 0px 0px;
  1868. box-sizing:border-box;
  1869. width:100%;
  1870. }
  1871. #u159777_text {
  1872. border-width:0px;
  1873. white-space:nowrap;
  1874. text-transform:none;
  1875. }
  1876. #u159778 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:0px;
  1882. height:0px;
  1883. }
  1884. #u159779_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:144px;
  1890. height:30px;
  1891. background:inherit;
  1892. background-color:rgba(255, 255, 255, 0);
  1893. border:none;
  1894. border-left:0px;
  1895. border-top:0px;
  1896. border-right:0px;
  1897. border-radius:0px;
  1898. border-bottom-right-radius:0px;
  1899. border-bottom-left-radius:0px;
  1900. -moz-box-shadow:none;
  1901. -webkit-box-shadow:none;
  1902. box-shadow:none;
  1903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1904. font-weight:400;
  1905. font-style:normal;
  1906. font-size:34px;
  1907. line-height:30px;
  1908. }
  1909. #u159779 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:156px;
  1913. top:885px;
  1914. width:144px;
  1915. height:30px;
  1916. display:flex;
  1917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1918. font-weight:400;
  1919. font-style:normal;
  1920. font-size:34px;
  1921. line-height:30px;
  1922. }
  1923. #u159779 .text {
  1924. position:absolute;
  1925. align-self:flex-start;
  1926. padding:0px 0px 0px 0px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u159779_text {
  1931. border-width:0px;
  1932. white-space:nowrap;
  1933. text-transform:none;
  1934. }
  1935. #u159780_div {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:37px;
  1941. height:30px;
  1942. background:inherit;
  1943. background-color:rgba(255, 255, 255, 0);
  1944. border:none;
  1945. border-left:0px;
  1946. border-top:0px;
  1947. border-right:0px;
  1948. border-radius:0px;
  1949. border-bottom-right-radius:0px;
  1950. border-bottom-left-radius:0px;
  1951. -moz-box-shadow:none;
  1952. -webkit-box-shadow:none;
  1953. box-shadow:none;
  1954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1955. font-weight:400;
  1956. font-style:normal;
  1957. font-size:12px;
  1958. line-height:30px;
  1959. }
  1960. #u159780 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:210px;
  1964. top:845px;
  1965. width:37px;
  1966. height:30px;
  1967. display:flex;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:12px;
  1972. line-height:30px;
  1973. }
  1974. #u159780 .text {
  1975. position:absolute;
  1976. align-self:flex-start;
  1977. padding:0px 0px 0px 0px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u159780_text {
  1982. border-width:0px;
  1983. white-space:nowrap;
  1984. text-transform:none;
  1985. }
  1986. #u159781_div {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:164px;
  1992. height:60px;
  1993. background:inherit;
  1994. background-color:rgba(255, 255, 255, 0);
  1995. border:none;
  1996. border-left:0px;
  1997. border-top:0px;
  1998. border-right:0px;
  1999. border-radius:0px;
  2000. border-bottom-right-radius:0px;
  2001. border-bottom-left-radius:0px;
  2002. -moz-box-shadow:none;
  2003. -webkit-box-shadow:none;
  2004. box-shadow:none;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:12px;
  2009. line-height:30px;
  2010. }
  2011. #u159781 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:71px;
  2015. top:955px;
  2016. width:164px;
  2017. height:60px;
  2018. display:flex;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. font-size:12px;
  2023. line-height:30px;
  2024. }
  2025. #u159781 .text {
  2026. position:absolute;
  2027. align-self:flex-start;
  2028. padding:0px 0px 0px 0px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u159781_text {
  2033. border-width:0px;
  2034. white-space:nowrap;
  2035. text-transform:none;
  2036. }
  2037. #u159782_div {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:293px;
  2043. height:40px;
  2044. background:inherit;
  2045. background-color:rgba(24, 144, 255, 1);
  2046. border:none;
  2047. border-radius:81px;
  2048. -moz-box-shadow:none;
  2049. -webkit-box-shadow:none;
  2050. box-shadow:none;
  2051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2052. font-weight:400;
  2053. font-style:normal;
  2054. font-size:14px;
  2055. color:#FFFFFF;
  2056. }
  2057. #u159782 {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:74px;
  2061. top:1066px;
  2062. width:293px;
  2063. height:40px;
  2064. display:flex;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:14px;
  2069. color:#FFFFFF;
  2070. }
  2071. #u159782 .text {
  2072. position:absolute;
  2073. align-self:center;
  2074. padding:2px 2px 2px 2px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u159782_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. }
  2083. #u159783_div {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:157px;
  2089. height:30px;
  2090. background:inherit;
  2091. background-color:rgba(255, 255, 255, 0);
  2092. border:none;
  2093. border-left:0px;
  2094. border-top:0px;
  2095. border-right:0px;
  2096. border-radius:0px;
  2097. border-bottom-right-radius:0px;
  2098. border-bottom-left-radius:0px;
  2099. -moz-box-shadow:none;
  2100. -webkit-box-shadow:none;
  2101. box-shadow:none;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:12px;
  2106. line-height:30px;
  2107. }
  2108. #u159783 {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:149px;
  2112. top:920px;
  2113. width:157px;
  2114. height:30px;
  2115. display:flex;
  2116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2117. font-weight:400;
  2118. font-style:normal;
  2119. font-size:12px;
  2120. line-height:30px;
  2121. }
  2122. #u159783 .text {
  2123. position:absolute;
  2124. align-self:flex-start;
  2125. padding:0px 0px 0px 0px;
  2126. box-sizing:border-box;
  2127. width:100%;
  2128. }
  2129. #u159783_text {
  2130. border-width:0px;
  2131. white-space:nowrap;
  2132. text-transform:none;
  2133. }
  2134. #u159784_div {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:0px;
  2139. width:339px;
  2140. height:40px;
  2141. background:inherit;
  2142. background-color:rgba(255, 255, 128, 0.0980392156862745);
  2143. border:none;
  2144. border-right:0px;
  2145. border-radius:9px;
  2146. border-top-right-radius:0px;
  2147. border-bottom-right-radius:0px;
  2148. -moz-box-shadow:none;
  2149. -webkit-box-shadow:none;
  2150. box-shadow:none;
  2151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2152. font-weight:400;
  2153. font-style:normal;
  2154. font-size:10px;
  2155. color:#F59A23;
  2156. text-align:center;
  2157. }
  2158. #u159784 {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:47px;
  2162. top:1025px;
  2163. width:339px;
  2164. height:40px;
  2165. display:flex;
  2166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2167. font-weight:400;
  2168. font-style:normal;
  2169. font-size:10px;
  2170. color:#F59A23;
  2171. text-align:center;
  2172. }
  2173. #u159784 .text {
  2174. position:absolute;
  2175. align-self:center;
  2176. padding:0px 0px 0px 0px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u159784_text {
  2181. border-width:0px;
  2182. word-wrap:break-word;
  2183. text-transform:none;
  2184. }
  2185. #u159785 {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:0px;
  2191. height:0px;
  2192. }
  2193. #u159786_div {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:339px;
  2199. height:280px;
  2200. background:inherit;
  2201. background-color:rgba(242, 242, 242, 1);
  2202. border:none;
  2203. border-radius:6px;
  2204. -moz-box-shadow:none;
  2205. -webkit-box-shadow:none;
  2206. box-shadow:none;
  2207. }
  2208. #u159786 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:47px;
  2212. top:1126px;
  2213. width:339px;
  2214. height:280px;
  2215. display:flex;
  2216. }
  2217. #u159786 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 2px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u159786_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. visibility:hidden;
  2229. }
  2230. #u159787_div {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:155px;
  2236. height:30px;
  2237. background:inherit;
  2238. background-color:rgba(255, 255, 255, 0);
  2239. border:none;
  2240. border-left:0px;
  2241. border-top:0px;
  2242. border-right:0px;
  2243. border-radius:0px;
  2244. border-bottom-right-radius:0px;
  2245. border-bottom-left-radius:0px;
  2246. -moz-box-shadow:none;
  2247. -webkit-box-shadow:none;
  2248. box-shadow:none;
  2249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2250. font-weight:400;
  2251. font-style:normal;
  2252. font-size:14px;
  2253. line-height:30px;
  2254. }
  2255. #u159787 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:71px;
  2259. top:1139px;
  2260. width:155px;
  2261. height:30px;
  2262. display:flex;
  2263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2264. font-weight:400;
  2265. font-style:normal;
  2266. font-size:14px;
  2267. line-height:30px;
  2268. }
  2269. #u159787 .text {
  2270. position:absolute;
  2271. align-self:flex-start;
  2272. padding:0px 0px 0px 0px;
  2273. box-sizing:border-box;
  2274. width:100%;
  2275. }
  2276. #u159787_text {
  2277. border-width:0px;
  2278. white-space:nowrap;
  2279. text-transform:none;
  2280. }
  2281. #u159788 {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:0px;
  2287. height:0px;
  2288. }
  2289. #u159789_div {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:0px;
  2293. top:0px;
  2294. width:105px;
  2295. height:30px;
  2296. background:inherit;
  2297. background-color:rgba(255, 255, 255, 0);
  2298. border:none;
  2299. border-left:0px;
  2300. border-top:0px;
  2301. border-right:0px;
  2302. border-radius:0px;
  2303. border-bottom-right-radius:0px;
  2304. border-bottom-left-radius:0px;
  2305. -moz-box-shadow:none;
  2306. -webkit-box-shadow:none;
  2307. box-shadow:none;
  2308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2309. font-weight:400;
  2310. font-style:normal;
  2311. font-size:34px;
  2312. line-height:30px;
  2313. }
  2314. #u159789 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:164px;
  2318. top:1216px;
  2319. width:105px;
  2320. height:30px;
  2321. display:flex;
  2322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:34px;
  2326. line-height:30px;
  2327. }
  2328. #u159789 .text {
  2329. position:absolute;
  2330. align-self:flex-start;
  2331. padding:0px 0px 0px 0px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u159789_text {
  2336. border-width:0px;
  2337. white-space:nowrap;
  2338. text-transform:none;
  2339. }
  2340. #u159790_div {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:37px;
  2346. height:30px;
  2347. background:inherit;
  2348. background-color:rgba(255, 255, 255, 0);
  2349. border:none;
  2350. border-left:0px;
  2351. border-top:0px;
  2352. border-right:0px;
  2353. border-radius:0px;
  2354. border-bottom-right-radius:0px;
  2355. border-bottom-left-radius:0px;
  2356. -moz-box-shadow:none;
  2357. -webkit-box-shadow:none;
  2358. box-shadow:none;
  2359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. font-size:12px;
  2363. line-height:30px;
  2364. }
  2365. #u159790 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:198px;
  2369. top:1176px;
  2370. width:37px;
  2371. height:30px;
  2372. display:flex;
  2373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2374. font-weight:400;
  2375. font-style:normal;
  2376. font-size:12px;
  2377. line-height:30px;
  2378. }
  2379. #u159790 .text {
  2380. position:absolute;
  2381. align-self:flex-start;
  2382. padding:0px 0px 0px 0px;
  2383. box-sizing:border-box;
  2384. width:100%;
  2385. }
  2386. #u159790_text {
  2387. border-width:0px;
  2388. white-space:nowrap;
  2389. text-transform:none;
  2390. }
  2391. #u159791_div {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:164px;
  2397. height:60px;
  2398. background:inherit;
  2399. background-color:rgba(255, 255, 255, 0);
  2400. border:none;
  2401. border-left:0px;
  2402. border-top:0px;
  2403. border-right:0px;
  2404. border-radius:0px;
  2405. border-bottom-right-radius:0px;
  2406. border-bottom-left-radius:0px;
  2407. -moz-box-shadow:none;
  2408. -webkit-box-shadow:none;
  2409. box-shadow:none;
  2410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:12px;
  2414. line-height:30px;
  2415. }
  2416. #u159791 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:71px;
  2420. top:1286px;
  2421. width:164px;
  2422. height:60px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:12px;
  2428. line-height:30px;
  2429. }
  2430. #u159791 .text {
  2431. position:absolute;
  2432. align-self:flex-start;
  2433. padding:0px 0px 0px 0px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u159791_text {
  2438. border-width:0px;
  2439. white-space:nowrap;
  2440. text-transform:none;
  2441. }
  2442. #u159792_div {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:293px;
  2448. height:40px;
  2449. background:inherit;
  2450. background-color:rgba(24, 144, 255, 1);
  2451. border:none;
  2452. border-radius:81px;
  2453. -moz-box-shadow:none;
  2454. -webkit-box-shadow:none;
  2455. box-shadow:none;
  2456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:14px;
  2460. color:#FFFFFF;
  2461. }
  2462. #u159792 {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:74px;
  2466. top:1357px;
  2467. width:293px;
  2468. height:40px;
  2469. display:flex;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:14px;
  2474. color:#FFFFFF;
  2475. }
  2476. #u159792 .text {
  2477. position:absolute;
  2478. align-self:center;
  2479. padding:2px 2px 2px 2px;
  2480. box-sizing:border-box;
  2481. width:100%;
  2482. }
  2483. #u159792_text {
  2484. border-width:0px;
  2485. word-wrap:break-word;
  2486. text-transform:none;
  2487. }
  2488. #u159793_div {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:131px;
  2494. height:30px;
  2495. background:inherit;
  2496. background-color:rgba(255, 255, 255, 0);
  2497. border:none;
  2498. border-left:0px;
  2499. border-top:0px;
  2500. border-right:0px;
  2501. border-radius:0px;
  2502. border-bottom-right-radius:0px;
  2503. border-bottom-left-radius:0px;
  2504. -moz-box-shadow:none;
  2505. -webkit-box-shadow:none;
  2506. box-shadow:none;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:12px;
  2511. line-height:30px;
  2512. }
  2513. #u159793 {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:149px;
  2517. top:1251px;
  2518. width:131px;
  2519. height:30px;
  2520. display:flex;
  2521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2522. font-weight:400;
  2523. font-style:normal;
  2524. font-size:12px;
  2525. line-height:30px;
  2526. }
  2527. #u159793 .text {
  2528. position:absolute;
  2529. align-self:flex-start;
  2530. padding:0px 0px 0px 0px;
  2531. box-sizing:border-box;
  2532. width:100%;
  2533. }
  2534. #u159793_text {
  2535. border-width:0px;
  2536. white-space:nowrap;
  2537. text-transform:none;
  2538. }