styles.css 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:518px;
  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. #u156054_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u156054 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u156054 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u156054_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u156055_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. #u156055 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u156055 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u156055_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u156056 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u156057_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. #u156057 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u156057 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u156057_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u156058 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u156059_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u156059 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u156059 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u156059_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u156060_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u156060 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u156060 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u156060_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u156061 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u156062_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u156062 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u156062 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u156062_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u156063_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u156063 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u156063 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u156063_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u156064_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u156064 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u156064 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u156064_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u156065_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u156065 {
  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. #u156065 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u156065_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u156066_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u156066 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u156066 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u156066_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u156067_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. #u156067 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u156067 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u156067_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u156068 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u156069_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u156069 {
  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. #u156069 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u156069_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u156070_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. #u156070 {
  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. #u156070 .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. #u156070_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u156071 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u156072_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u156072 {
  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. #u156072 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u156072_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u156073_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. #u156073 {
  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. #u156073 .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. #u156073_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u156074_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. #u156074 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u156074 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u156074_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u156075 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u156076_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u156076 {
  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. #u156076 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u156076_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u156077_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. #u156077 {
  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. #u156077 .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. #u156077_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u156078 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u156079_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u156079 {
  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. #u156079 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u156079_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u156080_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. #u156080 {
  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. #u156080 .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. #u156080_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u156081_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:733px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u156081 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:733px;
  804. display:flex;
  805. }
  806. #u156081 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u156081_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u156082 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u156083_div {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:88px;
  833. height:32px;
  834. background:inherit;
  835. background-color:rgba(255, 255, 255, 1);
  836. box-sizing:border-box;
  837. border-width:1px;
  838. border-style:solid;
  839. border-color:rgba(242, 242, 242, 1);
  840. border-radius:33px;
  841. -moz-box-shadow:none;
  842. -webkit-box-shadow:none;
  843. box-shadow:none;
  844. }
  845. #u156083 {
  846. border-width:0px;
  847. position:absolute;
  848. left:308px;
  849. top:71px;
  850. width:88px;
  851. height:32px;
  852. display:flex;
  853. }
  854. #u156083 .text {
  855. position:absolute;
  856. align-self:center;
  857. padding:2px 2px 2px 2px;
  858. box-sizing:border-box;
  859. width:100%;
  860. }
  861. #u156083_text {
  862. border-width:0px;
  863. word-wrap:break-word;
  864. text-transform:none;
  865. visibility:hidden;
  866. }
  867. #u156084 {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:0px;
  873. height:0px;
  874. }
  875. #u156085_img {
  876. border-width:0px;
  877. position:absolute;
  878. left:0px;
  879. top:0px;
  880. width:18px;
  881. height:18px;
  882. }
  883. #u156085 {
  884. border-width:0px;
  885. position:absolute;
  886. left:371px;
  887. top:78px;
  888. width:18px;
  889. height:18px;
  890. display:flex;
  891. }
  892. #u156085 .text {
  893. position:absolute;
  894. align-self:center;
  895. padding:2px 2px 2px 2px;
  896. box-sizing:border-box;
  897. width:100%;
  898. }
  899. #u156085_text {
  900. border-width:0px;
  901. word-wrap:break-word;
  902. text-transform:none;
  903. visibility:hidden;
  904. }
  905. #u156086_img {
  906. border-width:0px;
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:6px;
  911. height:6px;
  912. }
  913. #u156086 {
  914. border-width:0px;
  915. position:absolute;
  916. left:377px;
  917. top:84px;
  918. width:6px;
  919. height:6px;
  920. display:flex;
  921. }
  922. #u156086 .text {
  923. position:absolute;
  924. align-self:center;
  925. padding:2px 2px 2px 2px;
  926. box-sizing:border-box;
  927. width:100%;
  928. }
  929. #u156086_text {
  930. border-width:0px;
  931. word-wrap:break-word;
  932. text-transform:none;
  933. visibility:hidden;
  934. }
  935. #u156087 {
  936. border-width:0px;
  937. position:absolute;
  938. left:0px;
  939. top:0px;
  940. width:0px;
  941. height:0px;
  942. }
  943. #u156088_img {
  944. border-width:0px;
  945. position:absolute;
  946. left:0px;
  947. top:0px;
  948. width:5px;
  949. height:5px;
  950. }
  951. #u156088 {
  952. border-width:0px;
  953. position:absolute;
  954. left:322px;
  955. top:85px;
  956. width:5px;
  957. height:5px;
  958. display:flex;
  959. }
  960. #u156088 .text {
  961. position:absolute;
  962. align-self:center;
  963. padding:2px 2px 2px 2px;
  964. box-sizing:border-box;
  965. width:100%;
  966. }
  967. #u156088_text {
  968. border-width:0px;
  969. word-wrap:break-word;
  970. text-transform:none;
  971. visibility:hidden;
  972. }
  973. #u156089_img {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:5px;
  979. height:5px;
  980. }
  981. #u156089 {
  982. border-width:0px;
  983. position:absolute;
  984. left:338px;
  985. top:85px;
  986. width:5px;
  987. height:5px;
  988. display:flex;
  989. }
  990. #u156089 .text {
  991. position:absolute;
  992. align-self:center;
  993. padding:2px 2px 2px 2px;
  994. box-sizing:border-box;
  995. width:100%;
  996. }
  997. #u156089_text {
  998. border-width:0px;
  999. word-wrap:break-word;
  1000. text-transform:none;
  1001. visibility:hidden;
  1002. }
  1003. #u156090_img {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:7px;
  1009. height:7px;
  1010. }
  1011. #u156090 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:329px;
  1015. top:84px;
  1016. width:7px;
  1017. height:7px;
  1018. display:flex;
  1019. }
  1020. #u156090 .text {
  1021. position:absolute;
  1022. align-self:center;
  1023. padding:2px 2px 2px 2px;
  1024. box-sizing:border-box;
  1025. width:100%;
  1026. }
  1027. #u156090_text {
  1028. border-width:0px;
  1029. word-wrap:break-word;
  1030. text-transform:none;
  1031. visibility:hidden;
  1032. }
  1033. #u156091_img {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:19px;
  1039. height:2px;
  1040. }
  1041. #u156091 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:346px;
  1045. top:87px;
  1046. width:18px;
  1047. height:1px;
  1048. display:flex;
  1049. -webkit-transform:rotate(90deg);
  1050. -moz-transform:rotate(90deg);
  1051. -ms-transform:rotate(90deg);
  1052. transform:rotate(90deg);
  1053. }
  1054. #u156091 .text {
  1055. position:absolute;
  1056. align-self:center;
  1057. padding:2px 2px 2px 2px;
  1058. box-sizing:border-box;
  1059. width:100%;
  1060. }
  1061. #u156091_text {
  1062. border-width:0px;
  1063. word-wrap:break-word;
  1064. text-transform:none;
  1065. visibility:hidden;
  1066. }
  1067. #u156092_div {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:0px;
  1071. top:0px;
  1072. width:12px;
  1073. height:12px;
  1074. background:inherit;
  1075. background-color:rgba(255, 255, 255, 0);
  1076. box-sizing:border-box;
  1077. border-width:2px;
  1078. border-style:solid;
  1079. border-color:rgba(51, 51, 51, 1);
  1080. border-right:0px;
  1081. border-bottom:0px;
  1082. border-radius:0px;
  1083. border-top-right-radius:0px;
  1084. border-bottom-left-radius:0px;
  1085. -moz-box-shadow:none;
  1086. -webkit-box-shadow:none;
  1087. box-shadow:none;
  1088. }
  1089. #u156092 {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:43px;
  1093. top:81px;
  1094. width:12px;
  1095. height:12px;
  1096. display:flex;
  1097. -webkit-transform:rotate(315deg);
  1098. -moz-transform:rotate(315deg);
  1099. -ms-transform:rotate(315deg);
  1100. transform:rotate(315deg);
  1101. }
  1102. #u156092 .text {
  1103. position:absolute;
  1104. align-self:center;
  1105. padding:2px 2px 2px 2px;
  1106. box-sizing:border-box;
  1107. width:100%;
  1108. }
  1109. #u156092_text {
  1110. border-width:0px;
  1111. word-wrap:break-word;
  1112. text-transform:none;
  1113. visibility:hidden;
  1114. }
  1115. #u156093_div {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:0px;
  1119. top:0px;
  1120. width:33px;
  1121. height:22px;
  1122. background:inherit;
  1123. background-color:rgba(255, 255, 255, 0);
  1124. border:none;
  1125. border-radius:0px;
  1126. -moz-box-shadow:none;
  1127. -webkit-box-shadow:none;
  1128. box-shadow:none;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#000000;
  1134. }
  1135. #u156093 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:67px;
  1139. top:76px;
  1140. width:33px;
  1141. height:22px;
  1142. display:flex;
  1143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1144. font-weight:400;
  1145. font-style:normal;
  1146. font-size:16px;
  1147. color:#000000;
  1148. }
  1149. #u156093 .text {
  1150. position:absolute;
  1151. align-self:flex-start;
  1152. padding:0px 0px 0px 0px;
  1153. box-sizing:border-box;
  1154. width:100%;
  1155. }
  1156. #u156093_text {
  1157. border-width:0px;
  1158. white-space:nowrap;
  1159. text-transform:none;
  1160. }
  1161. #u156094 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u156095_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:375px;
  1175. height:60px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 1);
  1178. box-sizing:border-box;
  1179. border-width:1px;
  1180. border-style:solid;
  1181. border-color:rgba(242, 242, 242, 1);
  1182. border-radius:20px;
  1183. border-top-left-radius:0px;
  1184. border-top-right-radius:0px;
  1185. -moz-box-shadow:none;
  1186. -webkit-box-shadow:none;
  1187. box-shadow:none;
  1188. }
  1189. #u156095 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:29px;
  1193. top:780px;
  1194. width:375px;
  1195. height:60px;
  1196. display:flex;
  1197. }
  1198. #u156095 .text {
  1199. position:absolute;
  1200. align-self:center;
  1201. padding:2px 2px 2px 2px;
  1202. box-sizing:border-box;
  1203. width:100%;
  1204. }
  1205. #u156095_text {
  1206. border-width:0px;
  1207. word-wrap:break-word;
  1208. text-transform:none;
  1209. visibility:hidden;
  1210. }
  1211. #u156096_div {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:0px;
  1215. top:0px;
  1216. width:339px;
  1217. height:40px;
  1218. background:inherit;
  1219. background-color:rgba(255, 255, 255, 1);
  1220. box-sizing:border-box;
  1221. border-width:1px;
  1222. border-style:solid;
  1223. border-color:rgba(121, 121, 121, 1);
  1224. border-radius:63px;
  1225. -moz-box-shadow:none;
  1226. -webkit-box-shadow:none;
  1227. box-shadow:none;
  1228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1229. font-weight:400;
  1230. font-style:normal;
  1231. font-size:14px;
  1232. }
  1233. #u156096 {
  1234. border-width:0px;
  1235. position:absolute;
  1236. left:49px;
  1237. top:790px;
  1238. width:339px;
  1239. height:40px;
  1240. display:flex;
  1241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1242. font-weight:400;
  1243. font-style:normal;
  1244. font-size:14px;
  1245. }
  1246. #u156096 .text {
  1247. position:absolute;
  1248. align-self:center;
  1249. padding:2px 2px 2px 2px;
  1250. box-sizing:border-box;
  1251. width:100%;
  1252. }
  1253. #u156096_text {
  1254. border-width:0px;
  1255. word-wrap:break-word;
  1256. text-transform:none;
  1257. }
  1258. #u156097_div {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:375px;
  1264. height:100px;
  1265. background:inherit;
  1266. background-color:rgba(255, 255, 255, 1);
  1267. border:none;
  1268. border-left:0px;
  1269. border-top:0px;
  1270. border-right:0px;
  1271. border-radius:0px;
  1272. border-bottom-right-radius:0px;
  1273. border-bottom-left-radius:0px;
  1274. -moz-box-shadow:none;
  1275. -webkit-box-shadow:none;
  1276. box-shadow:none;
  1277. }
  1278. #u156097 {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:29px;
  1282. top:107px;
  1283. width:375px;
  1284. height:100px;
  1285. display:flex;
  1286. }
  1287. #u156097 .text {
  1288. position:absolute;
  1289. align-self:center;
  1290. padding:2px 2px 2px 2px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u156097_text {
  1295. border-width:0px;
  1296. word-wrap:break-word;
  1297. text-transform:none;
  1298. visibility:hidden;
  1299. }
  1300. #u156098_div {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:0px;
  1304. top:0px;
  1305. width:57px;
  1306. height:30px;
  1307. background:inherit;
  1308. background-color:rgba(255, 255, 255, 0);
  1309. border:none;
  1310. border-left:0px;
  1311. border-top:0px;
  1312. border-right:0px;
  1313. border-radius:0px;
  1314. border-bottom-right-radius:0px;
  1315. border-bottom-left-radius:0px;
  1316. -moz-box-shadow:none;
  1317. -webkit-box-shadow:none;
  1318. box-shadow:none;
  1319. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1320. font-weight:500;
  1321. font-style:normal;
  1322. font-size:14px;
  1323. line-height:30px;
  1324. }
  1325. #u156098 {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:56px;
  1329. top:117px;
  1330. width:57px;
  1331. height:30px;
  1332. display:flex;
  1333. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1334. font-weight:500;
  1335. font-style:normal;
  1336. font-size:14px;
  1337. line-height:30px;
  1338. }
  1339. #u156098 .text {
  1340. position:absolute;
  1341. align-self:flex-start;
  1342. padding:0px 0px 0px 0px;
  1343. box-sizing:border-box;
  1344. width:100%;
  1345. }
  1346. #u156098_text {
  1347. border-width:0px;
  1348. white-space:nowrap;
  1349. text-transform:none;
  1350. }
  1351. #u156099_div {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:0px;
  1355. top:0px;
  1356. width:325px;
  1357. height:45px;
  1358. background:inherit;
  1359. background-color:rgba(255, 255, 255, 0);
  1360. border:none;
  1361. border-left:0px;
  1362. border-top:0px;
  1363. border-right:0px;
  1364. border-radius:0px;
  1365. border-bottom-right-radius:0px;
  1366. border-bottom-left-radius:0px;
  1367. -moz-box-shadow:none;
  1368. -webkit-box-shadow:none;
  1369. box-shadow:none;
  1370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1371. font-weight:400;
  1372. font-style:normal;
  1373. font-size:12px;
  1374. }
  1375. #u156099 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:56px;
  1379. top:147px;
  1380. width:325px;
  1381. height:45px;
  1382. display:flex;
  1383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1384. font-weight:400;
  1385. font-style:normal;
  1386. font-size:12px;
  1387. }
  1388. #u156099 .text {
  1389. position:absolute;
  1390. align-self:flex-start;
  1391. padding:0px 0px 0px 0px;
  1392. box-sizing:border-box;
  1393. width:100%;
  1394. }
  1395. #u156099_text {
  1396. border-width:0px;
  1397. word-wrap:break-word;
  1398. text-transform:none;
  1399. }
  1400. #u156100_div {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:0px;
  1404. top:0px;
  1405. width:375px;
  1406. height:380px;
  1407. background:inherit;
  1408. background-color:rgba(255, 255, 255, 1);
  1409. border:none;
  1410. border-left:0px;
  1411. border-top:0px;
  1412. border-right:0px;
  1413. border-radius:0px;
  1414. border-bottom-right-radius:0px;
  1415. border-bottom-left-radius:0px;
  1416. -moz-box-shadow:none;
  1417. -webkit-box-shadow:none;
  1418. box-shadow:none;
  1419. }
  1420. #u156100 {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:29px;
  1424. top:217px;
  1425. width:375px;
  1426. height:380px;
  1427. display:flex;
  1428. }
  1429. #u156100 .text {
  1430. position:absolute;
  1431. align-self:center;
  1432. padding:2px 2px 2px 2px;
  1433. box-sizing:border-box;
  1434. width:100%;
  1435. }
  1436. #u156100_text {
  1437. border-width:0px;
  1438. word-wrap:break-word;
  1439. text-transform:none;
  1440. visibility:hidden;
  1441. }
  1442. #u156101_div {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:0px;
  1446. top:0px;
  1447. width:85px;
  1448. height:280px;
  1449. background:inherit;
  1450. background-color:rgba(255, 255, 255, 0);
  1451. border:none;
  1452. border-left:0px;
  1453. border-top:0px;
  1454. border-right:0px;
  1455. border-radius:0px;
  1456. border-bottom-right-radius:0px;
  1457. border-bottom-left-radius:0px;
  1458. -moz-box-shadow:none;
  1459. -webkit-box-shadow:none;
  1460. box-shadow:none;
  1461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1462. font-weight:400;
  1463. font-style:normal;
  1464. font-size:14px;
  1465. color:#7F7F7F;
  1466. line-height:40px;
  1467. }
  1468. #u156101 {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:49px;
  1472. top:267px;
  1473. width:85px;
  1474. height:280px;
  1475. display:flex;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. font-size:14px;
  1480. color:#7F7F7F;
  1481. line-height:40px;
  1482. }
  1483. #u156101 .text {
  1484. position:absolute;
  1485. align-self:flex-start;
  1486. padding:0px 0px 0px 0px;
  1487. box-sizing:border-box;
  1488. width:100%;
  1489. }
  1490. #u156101_text {
  1491. border-width:0px;
  1492. white-space:nowrap;
  1493. text-transform:none;
  1494. }
  1495. #u156102 {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:0px;
  1499. top:0px;
  1500. width:0px;
  1501. height:0px;
  1502. }
  1503. #u156103_div {
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:0px;
  1507. top:0px;
  1508. width:375px;
  1509. height:50px;
  1510. background:inherit;
  1511. background-color:rgba(255, 255, 255, 1);
  1512. border:none;
  1513. border-left:0px;
  1514. border-top:0px;
  1515. border-right:0px;
  1516. border-radius:0px;
  1517. border-bottom-right-radius:0px;
  1518. border-bottom-left-radius:0px;
  1519. -moz-box-shadow:none;
  1520. -webkit-box-shadow:none;
  1521. box-shadow:none;
  1522. }
  1523. #u156103 {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:29px;
  1527. top:604px;
  1528. width:375px;
  1529. height:50px;
  1530. display:flex;
  1531. }
  1532. #u156103 .text {
  1533. position:absolute;
  1534. align-self:center;
  1535. padding:2px 2px 2px 2px;
  1536. box-sizing:border-box;
  1537. width:100%;
  1538. }
  1539. #u156103_text {
  1540. border-width:0px;
  1541. word-wrap:break-word;
  1542. text-transform:none;
  1543. visibility:hidden;
  1544. }
  1545. #u156104_div {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:127px;
  1551. height:30px;
  1552. background:inherit;
  1553. background-color:rgba(255, 255, 255, 0);
  1554. border:none;
  1555. border-left:0px;
  1556. border-top:0px;
  1557. border-right:0px;
  1558. border-radius:0px;
  1559. border-bottom-right-radius:0px;
  1560. border-bottom-left-radius:0px;
  1561. -moz-box-shadow:none;
  1562. -webkit-box-shadow:none;
  1563. box-shadow:none;
  1564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1565. font-weight:400;
  1566. font-style:normal;
  1567. font-size:14px;
  1568. line-height:30px;
  1569. }
  1570. #u156104 {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:49px;
  1574. top:614px;
  1575. width:127px;
  1576. height:30px;
  1577. display:flex;
  1578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1579. font-weight:400;
  1580. font-style:normal;
  1581. font-size:14px;
  1582. line-height:30px;
  1583. }
  1584. #u156104 .text {
  1585. position:absolute;
  1586. align-self:center;
  1587. padding:0px 0px 0px 0px;
  1588. box-sizing:border-box;
  1589. width:100%;
  1590. }
  1591. #u156104_text {
  1592. border-width:0px;
  1593. white-space:nowrap;
  1594. text-transform:none;
  1595. }
  1596. #u156105_div {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:0px;
  1600. top:0px;
  1601. width:8px;
  1602. height:8px;
  1603. background:inherit;
  1604. background-color:rgba(255, 255, 255, 0);
  1605. box-sizing:border-box;
  1606. border-width:1px;
  1607. border-style:solid;
  1608. border-color:rgba(127, 127, 127, 1);
  1609. border-right:0px;
  1610. border-bottom:0px;
  1611. border-radius:0px;
  1612. border-top-right-radius:0px;
  1613. border-bottom-left-radius:0px;
  1614. -moz-box-shadow:none;
  1615. -webkit-box-shadow:none;
  1616. box-shadow:none;
  1617. }
  1618. #u156105 {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:378px;
  1622. top:625px;
  1623. width:8px;
  1624. height:8px;
  1625. display:flex;
  1626. -webkit-transform:rotate(135deg);
  1627. -moz-transform:rotate(135deg);
  1628. -ms-transform:rotate(135deg);
  1629. transform:rotate(135deg);
  1630. }
  1631. #u156105 .text {
  1632. position:absolute;
  1633. align-self:center;
  1634. padding:2px 2px 2px 2px;
  1635. box-sizing:border-box;
  1636. width:100%;
  1637. }
  1638. #u156105_text {
  1639. border-width:0px;
  1640. word-wrap:break-word;
  1641. text-transform:none;
  1642. visibility:hidden;
  1643. }
  1644. #u156106_div {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:0px;
  1648. top:0px;
  1649. width:219px;
  1650. height:280px;
  1651. background:inherit;
  1652. background-color:rgba(255, 255, 255, 0);
  1653. border:none;
  1654. border-left:0px;
  1655. border-top:0px;
  1656. border-right:0px;
  1657. border-radius:0px;
  1658. border-bottom-right-radius:0px;
  1659. border-bottom-left-radius:0px;
  1660. -moz-box-shadow:none;
  1661. -webkit-box-shadow:none;
  1662. box-shadow:none;
  1663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1664. font-weight:400;
  1665. font-style:normal;
  1666. font-size:14px;
  1667. color:#000000;
  1668. line-height:40px;
  1669. }
  1670. #u156106 {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:142px;
  1674. top:267px;
  1675. width:219px;
  1676. height:280px;
  1677. display:flex;
  1678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1679. font-weight:400;
  1680. font-style:normal;
  1681. font-size:14px;
  1682. color:#000000;
  1683. line-height:40px;
  1684. }
  1685. #u156106 .text {
  1686. position:absolute;
  1687. align-self:flex-start;
  1688. padding:0px 0px 0px 0px;
  1689. box-sizing:border-box;
  1690. width:100%;
  1691. }
  1692. #u156106_text {
  1693. border-width:0px;
  1694. white-space:nowrap;
  1695. text-transform:none;
  1696. }
  1697. #u156107 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:0px;
  1703. height:0px;
  1704. }
  1705. #u156108_div {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:0px;
  1709. top:0px;
  1710. width:25px;
  1711. height:40px;
  1712. background:inherit;
  1713. background-color:rgba(255, 255, 255, 0);
  1714. border:none;
  1715. border-left:0px;
  1716. border-top:0px;
  1717. border-right:0px;
  1718. border-radius:0px;
  1719. border-bottom-right-radius:0px;
  1720. border-bottom-left-radius:0px;
  1721. -moz-box-shadow:none;
  1722. -webkit-box-shadow:none;
  1723. box-shadow:none;
  1724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1725. font-weight:400;
  1726. font-style:normal;
  1727. font-size:12px;
  1728. line-height:40px;
  1729. }
  1730. #u156108 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:197px;
  1734. top:548px;
  1735. width:25px;
  1736. height:40px;
  1737. display:flex;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:12px;
  1742. line-height:40px;
  1743. }
  1744. #u156108 .text {
  1745. position:absolute;
  1746. align-self:flex-start;
  1747. padding:0px 0px 0px 0px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u156108_text {
  1752. border-width:0px;
  1753. white-space:nowrap;
  1754. text-transform:none;
  1755. }
  1756. #u156109_div {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:0px;
  1760. top:0px;
  1761. width:8px;
  1762. height:8px;
  1763. background:inherit;
  1764. background-color:rgba(255, 255, 255, 0);
  1765. box-sizing:border-box;
  1766. border-width:1px;
  1767. border-style:solid;
  1768. border-color:rgba(127, 127, 127, 1);
  1769. border-right:0px;
  1770. border-bottom:0px;
  1771. border-radius:0px;
  1772. border-top-right-radius:0px;
  1773. border-bottom-left-radius:0px;
  1774. -moz-box-shadow:none;
  1775. -webkit-box-shadow:none;
  1776. box-shadow:none;
  1777. }
  1778. #u156109 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:226px;
  1782. top:566px;
  1783. width:8px;
  1784. height:8px;
  1785. display:flex;
  1786. -webkit-transform:rotate(45deg);
  1787. -moz-transform:rotate(45deg);
  1788. -ms-transform:rotate(45deg);
  1789. transform:rotate(45deg);
  1790. }
  1791. #u156109 .text {
  1792. position:absolute;
  1793. align-self:center;
  1794. padding:2px 2px 2px 2px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u156109_text {
  1799. border-width:0px;
  1800. word-wrap:break-word;
  1801. text-transform:none;
  1802. visibility:hidden;
  1803. }
  1804. #u156110_div {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:73px;
  1810. height:40px;
  1811. background:inherit;
  1812. background-color:rgba(255, 255, 255, 0);
  1813. border:none;
  1814. border-left:0px;
  1815. border-top:0px;
  1816. border-right:0px;
  1817. border-radius:0px;
  1818. border-bottom-right-radius:0px;
  1819. border-bottom-left-radius:0px;
  1820. -moz-box-shadow:none;
  1821. -webkit-box-shadow:none;
  1822. box-shadow:none;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:18px;
  1827. line-height:40px;
  1828. }
  1829. #u156110 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:49px;
  1833. top:229px;
  1834. width:73px;
  1835. height:40px;
  1836. display:flex;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:18px;
  1841. line-height:40px;
  1842. }
  1843. #u156110 .text {
  1844. position:absolute;
  1845. align-self:flex-start;
  1846. padding:0px 0px 0px 0px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u156110_text {
  1851. border-width:0px;
  1852. white-space:nowrap;
  1853. text-transform:none;
  1854. }
  1855. #u156111_div {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:43px;
  1861. height:17px;
  1862. background:inherit;
  1863. background-color:rgba(236, 128, 141, 1);
  1864. border:none;
  1865. border-radius:19px;
  1866. -moz-box-shadow:none;
  1867. -webkit-box-shadow:none;
  1868. box-shadow:none;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. color:#FFFFFF;
  1874. text-align:center;
  1875. }
  1876. #u156111 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:341px;
  1880. top:124px;
  1881. width:43px;
  1882. height:17px;
  1883. display:flex;
  1884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:12px;
  1888. color:#FFFFFF;
  1889. text-align:center;
  1890. }
  1891. #u156111 .text {
  1892. position:absolute;
  1893. align-self:flex-start;
  1894. padding:0px 0px 0px 0px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u156111_text {
  1899. border-width:0px;
  1900. word-wrap:break-word;
  1901. text-transform:none;
  1902. }
  1903. #u156112 {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:0px;
  1909. height:0px;
  1910. }
  1911. #u156113_div {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:0px;
  1915. top:0px;
  1916. width:342px;
  1917. height:186px;
  1918. background:inherit;
  1919. background-color:rgba(255, 255, 255, 1);
  1920. border:none;
  1921. border-radius:10px;
  1922. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1923. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1924. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1925. }
  1926. #u156113 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:176px;
  1930. top:508px;
  1931. width:342px;
  1932. height:186px;
  1933. display:flex;
  1934. }
  1935. #u156113 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 2px 2px 2px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u156113_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. visibility:hidden;
  1947. }
  1948. #u156114_div {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:127px;
  1954. height:30px;
  1955. background:inherit;
  1956. background-color:rgba(255, 255, 255, 0);
  1957. border:none;
  1958. border-left:0px;
  1959. border-top:0px;
  1960. border-right:0px;
  1961. border-radius:0px;
  1962. border-bottom-right-radius:0px;
  1963. border-bottom-left-radius:0px;
  1964. -moz-box-shadow:none;
  1965. -webkit-box-shadow:none;
  1966. box-shadow:none;
  1967. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1968. font-weight:500;
  1969. font-style:normal;
  1970. font-size:18px;
  1971. text-align:center;
  1972. line-height:30px;
  1973. }
  1974. #u156114 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:283px;
  1978. top:532px;
  1979. width:127px;
  1980. height:30px;
  1981. display:flex;
  1982. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1983. font-weight:500;
  1984. font-style:normal;
  1985. font-size:18px;
  1986. text-align:center;
  1987. line-height:30px;
  1988. }
  1989. #u156114 .text {
  1990. position:absolute;
  1991. align-self:flex-start;
  1992. padding:0px 0px 0px 0px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u156114_text {
  1997. border-width:0px;
  1998. white-space:nowrap;
  1999. text-transform:none;
  2000. }
  2001. #u156115_img {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:343px;
  2007. height:2px;
  2008. }
  2009. #u156115 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:176px;
  2013. top:631px;
  2014. width:342px;
  2015. height:1px;
  2016. display:flex;
  2017. }
  2018. #u156115 .text {
  2019. position:absolute;
  2020. align-self:center;
  2021. padding:2px 2px 2px 2px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u156115_text {
  2026. border-width:0px;
  2027. word-wrap:break-word;
  2028. text-transform:none;
  2029. visibility:hidden;
  2030. }
  2031. #u156116_div {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:37px;
  2037. height:30px;
  2038. background:inherit;
  2039. background-color:rgba(255, 255, 255, 0);
  2040. border:none;
  2041. border-left:0px;
  2042. border-top:0px;
  2043. border-right:0px;
  2044. border-radius:0px;
  2045. border-bottom-right-radius:0px;
  2046. border-bottom-left-radius:0px;
  2047. -moz-box-shadow:none;
  2048. -webkit-box-shadow:none;
  2049. box-shadow:none;
  2050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. font-size:18px;
  2054. color:#0089FE;
  2055. text-align:right;
  2056. line-height:30px;
  2057. }
  2058. #u156116 {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:427px;
  2062. top:648px;
  2063. width:37px;
  2064. height:30px;
  2065. display:flex;
  2066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2067. font-weight:400;
  2068. font-style:normal;
  2069. font-size:18px;
  2070. color:#0089FE;
  2071. text-align:right;
  2072. line-height:30px;
  2073. }
  2074. #u156116 .text {
  2075. position:absolute;
  2076. align-self:flex-start;
  2077. padding:0px 0px 0px 0px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u156116_text {
  2082. border-width:0px;
  2083. white-space:nowrap;
  2084. text-transform:none;
  2085. }
  2086. #u156117_div {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:273px;
  2092. height:30px;
  2093. background:inherit;
  2094. background-color:rgba(255, 255, 255, 0);
  2095. border:none;
  2096. border-left:0px;
  2097. border-top:0px;
  2098. border-right:0px;
  2099. border-radius:0px;
  2100. border-bottom-right-radius:0px;
  2101. border-bottom-left-radius:0px;
  2102. -moz-box-shadow:none;
  2103. -webkit-box-shadow:none;
  2104. box-shadow:none;
  2105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2106. font-weight:400;
  2107. font-style:normal;
  2108. font-size:14px;
  2109. text-align:center;
  2110. line-height:30px;
  2111. }
  2112. #u156117 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:210px;
  2116. top:574px;
  2117. width:273px;
  2118. height:30px;
  2119. display:flex;
  2120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:14px;
  2124. text-align:center;
  2125. line-height:30px;
  2126. }
  2127. #u156117 .text {
  2128. position:absolute;
  2129. align-self:flex-start;
  2130. padding:0px 0px 0px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u156117_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. }
  2139. #u156118_img {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:2px;
  2145. height:59px;
  2146. }
  2147. #u156118 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:347px;
  2151. top:634px;
  2152. width:1px;
  2153. height:58px;
  2154. display:flex;
  2155. }
  2156. #u156118 .text {
  2157. position:absolute;
  2158. align-self:center;
  2159. padding:2px 2px 2px 2px;
  2160. box-sizing:border-box;
  2161. width:100%;
  2162. }
  2163. #u156118_text {
  2164. border-width:0px;
  2165. word-wrap:break-word;
  2166. text-transform:none;
  2167. visibility:hidden;
  2168. }
  2169. #u156119_div {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:37px;
  2175. height:30px;
  2176. background:inherit;
  2177. background-color:rgba(255, 255, 255, 0);
  2178. border:none;
  2179. border-left:0px;
  2180. border-top:0px;
  2181. border-right:0px;
  2182. border-radius:0px;
  2183. border-bottom-right-radius:0px;
  2184. border-bottom-left-radius:0px;
  2185. -moz-box-shadow:none;
  2186. -webkit-box-shadow:none;
  2187. box-shadow:none;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:18px;
  2192. color:#0089FE;
  2193. text-align:right;
  2194. line-height:30px;
  2195. }
  2196. #u156119 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:249px;
  2200. top:648px;
  2201. width:37px;
  2202. height:30px;
  2203. display:flex;
  2204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2205. font-weight:400;
  2206. font-style:normal;
  2207. font-size:18px;
  2208. color:#0089FE;
  2209. text-align:right;
  2210. line-height:30px;
  2211. }
  2212. #u156119 .text {
  2213. position:absolute;
  2214. align-self:flex-start;
  2215. padding:0px 0px 0px 0px;
  2216. box-sizing:border-box;
  2217. width:100%;
  2218. }
  2219. #u156119_text {
  2220. border-width:0px;
  2221. white-space:nowrap;
  2222. text-transform:none;
  2223. }