styles.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890
  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. #u37803_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u37803 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u37803 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u37803_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u37804_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. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u37804 {
  70. border-width:0px;
  71. position:absolute;
  72. left:29px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u37804 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u37804_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u37805 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u37806_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u37806 {
  118. border-width:0px;
  119. position:absolute;
  120. left:309px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u37806 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u37806_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u37807 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u37808_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u37808 {
  156. border-width:0px;
  157. position:absolute;
  158. left:372px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u37808 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u37808_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u37809_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u37809 {
  186. border-width:0px;
  187. position:absolute;
  188. left:378px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u37809 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u37809_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u37810 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u37811_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u37811 {
  224. border-width:0px;
  225. position:absolute;
  226. left:323px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u37811 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u37811_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u37812_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u37812 {
  254. border-width:0px;
  255. position:absolute;
  256. left:339px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u37812 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u37812_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u37813_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u37813 {
  284. border-width:0px;
  285. position:absolute;
  286. left:330px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u37813 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u37813_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u37814_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u37814 {
  314. border-width:0px;
  315. position:absolute;
  316. left:347px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u37814 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u37814_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u37815_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:44px;
  346. }
  347. #u37815 {
  348. border-width:0px;
  349. position:absolute;
  350. left:29px;
  351. top:24px;
  352. width:375px;
  353. height:44px;
  354. display:flex;
  355. }
  356. #u37815 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 2px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u37815_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u37816_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:375px;
  375. height:50px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 1);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(242, 242, 242, 1);
  382. border-radius:26px;
  383. border-top-left-radius:0px;
  384. border-top-right-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. }
  389. #u37816 {
  390. border-width:0px;
  391. position:absolute;
  392. left:29px;
  393. top:788px;
  394. width:375px;
  395. height:50px;
  396. display:flex;
  397. }
  398. #u37816 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u37816_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. visibility:hidden;
  410. }
  411. #u37817 {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:0px;
  417. height:0px;
  418. }
  419. #u37818_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:24px;
  425. height:24px;
  426. }
  427. #u37818 {
  428. border-width:0px;
  429. position:absolute;
  430. left:69px;
  431. top:792px;
  432. width:24px;
  433. height:24px;
  434. display:flex;
  435. font-size:8px;
  436. }
  437. #u37818 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u37818_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u37819_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:25px;
  455. height:17px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:12px;
  467. }
  468. #u37819 {
  469. border-width:0px;
  470. position:absolute;
  471. left:69px;
  472. top:817px;
  473. width:25px;
  474. height:17px;
  475. display:flex;
  476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  477. font-weight:400;
  478. font-style:normal;
  479. font-size:12px;
  480. }
  481. #u37819 .text {
  482. position:absolute;
  483. align-self:flex-start;
  484. padding:0px 0px 0px 0px;
  485. box-sizing:border-box;
  486. width:100%;
  487. }
  488. #u37819_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u37820 {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:0px;
  499. height:0px;
  500. }
  501. #u37821_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:24px;
  507. height:24px;
  508. }
  509. #u37821 {
  510. border-width:0px;
  511. position:absolute;
  512. left:339px;
  513. top:794px;
  514. width:24px;
  515. height:24px;
  516. display:flex;
  517. font-size:8px;
  518. }
  519. #u37821 .text {
  520. position:absolute;
  521. align-self:center;
  522. padding:2px 2px 2px 2px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u37821_text {
  527. border-width:0px;
  528. word-wrap:break-word;
  529. text-transform:none;
  530. }
  531. #u37822_div {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:25px;
  537. height:17px;
  538. background:inherit;
  539. background-color:rgba(255, 255, 255, 0);
  540. border:none;
  541. border-radius:0px;
  542. -moz-box-shadow:none;
  543. -webkit-box-shadow:none;
  544. box-shadow:none;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:12px;
  549. }
  550. #u37822 {
  551. border-width:0px;
  552. position:absolute;
  553. left:339px;
  554. top:819px;
  555. width:25px;
  556. height:17px;
  557. display:flex;
  558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  559. font-weight:400;
  560. font-style:normal;
  561. font-size:12px;
  562. }
  563. #u37822 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u37822_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u37823_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:375px;
  581. height:681px;
  582. background:inherit;
  583. background-color:rgba(242, 242, 242, 0.462745098039216);
  584. border:none;
  585. border-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. }
  590. #u37823 {
  591. border-width:0px;
  592. position:absolute;
  593. left:29px;
  594. top:107px;
  595. width:375px;
  596. height:681px;
  597. display:flex;
  598. }
  599. #u37823 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u37823_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. visibility:hidden;
  611. }
  612. #u37824 {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. height:0px;
  619. }
  620. #u37825_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:24px;
  626. height:24px;
  627. }
  628. #u37825 {
  629. border-width:0px;
  630. position:absolute;
  631. left:251px;
  632. top:792px;
  633. width:24px;
  634. height:24px;
  635. display:flex;
  636. font-size:8px;
  637. }
  638. #u37825 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u37825_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u37826_div {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:37px;
  656. height:17px;
  657. background:inherit;
  658. background-color:rgba(255, 255, 255, 0);
  659. border:none;
  660. border-radius:0px;
  661. -moz-box-shadow:none;
  662. -webkit-box-shadow:none;
  663. box-shadow:none;
  664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  665. font-weight:400;
  666. font-style:normal;
  667. font-size:12px;
  668. }
  669. #u37826 {
  670. border-width:0px;
  671. position:absolute;
  672. left:245px;
  673. top:817px;
  674. width:37px;
  675. height:17px;
  676. display:flex;
  677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  678. font-weight:400;
  679. font-style:normal;
  680. font-size:12px;
  681. }
  682. #u37826 .text {
  683. position:absolute;
  684. align-self:flex-start;
  685. padding:0px 0px 0px 0px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u37826_text {
  690. border-width:0px;
  691. white-space:nowrap;
  692. text-transform:none;
  693. }
  694. #u37827 {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:0px;
  700. height:0px;
  701. }
  702. #u37828_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u37828 {
  711. border-width:0px;
  712. position:absolute;
  713. left:157px;
  714. top:792px;
  715. width:24px;
  716. height:24px;
  717. display:flex;
  718. font-size:8px;
  719. }
  720. #u37828 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u37828_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u37829_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:37px;
  738. height:17px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border:none;
  742. border-radius:0px;
  743. -moz-box-shadow:none;
  744. -webkit-box-shadow:none;
  745. box-shadow:none;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:12px;
  750. }
  751. #u37829 {
  752. border-width:0px;
  753. position:absolute;
  754. left:151px;
  755. top:817px;
  756. width:37px;
  757. height:17px;
  758. display:flex;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:12px;
  763. }
  764. #u37829 .text {
  765. position:absolute;
  766. align-self:flex-start;
  767. padding:0px 0px 0px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u37829_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u37830_img {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:375px;
  782. height:732px;
  783. }
  784. #u37830 {
  785. border-width:0px;
  786. position:absolute;
  787. left:30px;
  788. top:106px;
  789. width:375px;
  790. height:732px;
  791. display:flex;
  792. }
  793. #u37830 .text {
  794. position:absolute;
  795. align-self:center;
  796. padding:2px 2px 2px 2px;
  797. box-sizing:border-box;
  798. width:100%;
  799. }
  800. #u37830_text {
  801. border-width:0px;
  802. word-wrap:break-word;
  803. text-transform:none;
  804. visibility:hidden;
  805. }
  806. #u37831 {
  807. border-width:0px;
  808. position:absolute;
  809. left:0px;
  810. top:0px;
  811. width:0px;
  812. height:0px;
  813. }
  814. #u37832_div {
  815. border-width:0px;
  816. position:absolute;
  817. left:0px;
  818. top:0px;
  819. width:375px;
  820. height:40px;
  821. background:inherit;
  822. background-color:rgba(255, 255, 255, 1);
  823. border:none;
  824. border-left:0px;
  825. border-top:0px;
  826. border-right:0px;
  827. border-radius:0px;
  828. border-bottom-right-radius:0px;
  829. border-bottom-left-radius:0px;
  830. -moz-box-shadow:none;
  831. -webkit-box-shadow:none;
  832. box-shadow:none;
  833. }
  834. #u37832 {
  835. border-width:0px;
  836. position:absolute;
  837. left:29px;
  838. top:106px;
  839. width:375px;
  840. height:40px;
  841. display:flex;
  842. }
  843. #u37832 .text {
  844. position:absolute;
  845. align-self:center;
  846. padding:2px 2px 2px 2px;
  847. box-sizing:border-box;
  848. width:100%;
  849. }
  850. #u37832_text {
  851. border-width:0px;
  852. word-wrap:break-word;
  853. text-transform:none;
  854. visibility:hidden;
  855. }
  856. #u37833_input {
  857. position:absolute;
  858. left:0px;
  859. top:0px;
  860. width:160px;
  861. height:22px;
  862. padding:2px 2px 2px 2px;
  863. font-family:'ArialMT', 'Arial', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:12px;
  867. letter-spacing:normal;
  868. color:#AAAAAA;
  869. vertical-align:none;
  870. text-align:left;
  871. text-transform:none;
  872. background-color:transparent;
  873. border-color:transparent;
  874. }
  875. #u37833_input.disabled {
  876. position:absolute;
  877. left:0px;
  878. top:0px;
  879. width:160px;
  880. height:22px;
  881. padding:2px 2px 2px 2px;
  882. font-family:'ArialMT', 'Arial', sans-serif;
  883. font-weight:400;
  884. font-style:normal;
  885. font-size:12px;
  886. letter-spacing:normal;
  887. color:#AAAAAA;
  888. vertical-align:none;
  889. text-align:left;
  890. text-transform:none;
  891. background-color:transparent;
  892. border-color:transparent;
  893. }
  894. #u37833_div {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:160px;
  900. height:22px;
  901. background:inherit;
  902. background-color:rgba(255, 255, 255, 1);
  903. border:none;
  904. border-radius:0px;
  905. -moz-box-shadow:none;
  906. -webkit-box-shadow:none;
  907. box-shadow:none;
  908. font-size:12px;
  909. color:#AAAAAA;
  910. }
  911. #u37833 {
  912. border-width:0px;
  913. position:absolute;
  914. left:39px;
  915. top:115px;
  916. width:160px;
  917. height:22px;
  918. display:flex;
  919. font-size:12px;
  920. color:#AAAAAA;
  921. }
  922. #u37833 .text {
  923. position:absolute;
  924. align-self:flex-start;
  925. padding:2px 2px 2px 2px;
  926. box-sizing:border-box;
  927. width:100%;
  928. }
  929. #u37833_div.disabled {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:160px;
  935. height:22px;
  936. background:inherit;
  937. background-color:rgba(240, 240, 240, 1);
  938. border:none;
  939. border-radius:0px;
  940. -moz-box-shadow:none;
  941. -webkit-box-shadow:none;
  942. box-shadow:none;
  943. font-size:12px;
  944. color:#AAAAAA;
  945. }
  946. #u37833.disabled {
  947. }
  948. .u37833_input_option {
  949. font-size:12px;
  950. }
  951. #u37834_input {
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:160px;
  956. height:22px;
  957. padding:2px 2px 2px 2px;
  958. font-family:'ArialMT', 'Arial', sans-serif;
  959. font-weight:400;
  960. font-style:normal;
  961. font-size:12px;
  962. letter-spacing:normal;
  963. color:#AAAAAA;
  964. vertical-align:none;
  965. text-align:left;
  966. text-transform:none;
  967. background-color:transparent;
  968. border-color:transparent;
  969. }
  970. #u37834_input.disabled {
  971. position:absolute;
  972. left:0px;
  973. top:0px;
  974. width:160px;
  975. height:22px;
  976. padding:2px 2px 2px 2px;
  977. font-family:'ArialMT', 'Arial', sans-serif;
  978. font-weight:400;
  979. font-style:normal;
  980. font-size:12px;
  981. letter-spacing:normal;
  982. color:#AAAAAA;
  983. vertical-align:none;
  984. text-align:left;
  985. text-transform:none;
  986. background-color:transparent;
  987. border-color:transparent;
  988. }
  989. #u37834_div {
  990. border-width:0px;
  991. position:absolute;
  992. left:0px;
  993. top:0px;
  994. width:160px;
  995. height:22px;
  996. background:inherit;
  997. background-color:rgba(255, 255, 255, 1);
  998. border:none;
  999. border-radius:0px;
  1000. -moz-box-shadow:none;
  1001. -webkit-box-shadow:none;
  1002. box-shadow:none;
  1003. font-size:12px;
  1004. color:#AAAAAA;
  1005. }
  1006. #u37834 {
  1007. border-width:0px;
  1008. position:absolute;
  1009. left:223px;
  1010. top:115px;
  1011. width:160px;
  1012. height:22px;
  1013. display:flex;
  1014. font-size:12px;
  1015. color:#AAAAAA;
  1016. }
  1017. #u37834 .text {
  1018. position:absolute;
  1019. align-self:flex-start;
  1020. padding:2px 2px 2px 2px;
  1021. box-sizing:border-box;
  1022. width:100%;
  1023. }
  1024. #u37834_div.disabled {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:0px;
  1028. top:0px;
  1029. width:160px;
  1030. height:22px;
  1031. background:inherit;
  1032. background-color:rgba(240, 240, 240, 1);
  1033. border:none;
  1034. border-radius:0px;
  1035. -moz-box-shadow:none;
  1036. -webkit-box-shadow:none;
  1037. box-shadow:none;
  1038. font-size:12px;
  1039. color:#AAAAAA;
  1040. }
  1041. #u37834.disabled {
  1042. }
  1043. .u37834_input_option {
  1044. font-size:12px;
  1045. }
  1046. #u37835 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:0px;
  1050. top:0px;
  1051. width:0px;
  1052. height:0px;
  1053. }
  1054. #u37836_img {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:0px;
  1058. top:0px;
  1059. width:11px;
  1060. height:18px;
  1061. }
  1062. #u37836 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:40px;
  1066. top:79px;
  1067. width:11px;
  1068. height:18px;
  1069. display:flex;
  1070. }
  1071. #u37836 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 2px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u37836_text {
  1079. border-width:0px;
  1080. word-wrap:break-word;
  1081. text-transform:none;
  1082. visibility:hidden;
  1083. }
  1084. #u37837_div {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:0px;
  1088. top:0px;
  1089. width:57px;
  1090. height:30px;
  1091. background:inherit;
  1092. background-color:rgba(255, 255, 255, 0);
  1093. border:none;
  1094. border-left:0px;
  1095. border-top:0px;
  1096. border-right:0px;
  1097. border-radius:0px;
  1098. border-bottom-right-radius:0px;
  1099. border-bottom-left-radius:0px;
  1100. -moz-box-shadow:none;
  1101. -webkit-box-shadow:none;
  1102. box-shadow:none;
  1103. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1104. font-weight:500;
  1105. font-style:normal;
  1106. font-size:14px;
  1107. line-height:30px;
  1108. }
  1109. #u37837 {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:188px;
  1113. top:73px;
  1114. width:57px;
  1115. height:30px;
  1116. display:flex;
  1117. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1118. font-weight:500;
  1119. font-style:normal;
  1120. font-size:14px;
  1121. line-height:30px;
  1122. }
  1123. #u37837 .text {
  1124. position:absolute;
  1125. align-self:flex-start;
  1126. padding:0px 0px 0px 0px;
  1127. box-sizing:border-box;
  1128. width:100%;
  1129. }
  1130. #u37837_text {
  1131. border-width:0px;
  1132. white-space:nowrap;
  1133. text-transform:none;
  1134. }
  1135. #u37838 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:0px;
  1141. height:0px;
  1142. }
  1143. #u37839_img {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:355px;
  1149. height:229px;
  1150. }
  1151. #u37839 {
  1152. border-width:0px;
  1153. position:absolute;
  1154. left:39px;
  1155. top:156px;
  1156. width:355px;
  1157. height:229px;
  1158. display:flex;
  1159. }
  1160. #u37839 .text {
  1161. position:absolute;
  1162. align-self:center;
  1163. padding:2px 2px 2px 2px;
  1164. box-sizing:border-box;
  1165. width:100%;
  1166. }
  1167. #u37839_text {
  1168. border-width:0px;
  1169. word-wrap:break-word;
  1170. text-transform:none;
  1171. visibility:hidden;
  1172. }
  1173. #u37840_div {
  1174. border-width:0px;
  1175. position:absolute;
  1176. left:0px;
  1177. top:0px;
  1178. width:113px;
  1179. height:30px;
  1180. background:inherit;
  1181. background-color:rgba(255, 255, 255, 0);
  1182. border:none;
  1183. border-left:0px;
  1184. border-top:0px;
  1185. border-right:0px;
  1186. border-radius:0px;
  1187. border-bottom-right-radius:0px;
  1188. border-bottom-left-radius:0px;
  1189. -moz-box-shadow:none;
  1190. -webkit-box-shadow:none;
  1191. box-shadow:none;
  1192. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1193. font-weight:500;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. line-height:30px;
  1197. }
  1198. #u37840 {
  1199. border-width:0px;
  1200. position:absolute;
  1201. left:55px;
  1202. top:171px;
  1203. width:113px;
  1204. height:30px;
  1205. display:flex;
  1206. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1207. font-weight:500;
  1208. font-style:normal;
  1209. font-size:14px;
  1210. line-height:30px;
  1211. }
  1212. #u37840 .text {
  1213. position:absolute;
  1214. align-self:flex-start;
  1215. padding:0px 0px 0px 0px;
  1216. box-sizing:border-box;
  1217. width:100%;
  1218. }
  1219. #u37840_text {
  1220. border-width:0px;
  1221. white-space:nowrap;
  1222. text-transform:none;
  1223. }
  1224. #u37841_div {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:0px;
  1228. top:0px;
  1229. width:207px;
  1230. height:125px;
  1231. background:inherit;
  1232. background-color:rgba(255, 255, 255, 0);
  1233. border:none;
  1234. border-left:0px;
  1235. border-top:0px;
  1236. border-right:0px;
  1237. border-radius:0px;
  1238. border-bottom-right-radius:0px;
  1239. border-bottom-left-radius:0px;
  1240. -moz-box-shadow:none;
  1241. -webkit-box-shadow:none;
  1242. box-shadow:none;
  1243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1244. font-weight:400;
  1245. font-style:normal;
  1246. font-size:12px;
  1247. line-height:25px;
  1248. }
  1249. #u37841 {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:55px;
  1253. top:201px;
  1254. width:207px;
  1255. height:125px;
  1256. display:flex;
  1257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1258. font-weight:400;
  1259. font-style:normal;
  1260. font-size:12px;
  1261. line-height:25px;
  1262. }
  1263. #u37841 .text {
  1264. position:absolute;
  1265. align-self:flex-start;
  1266. padding:0px 0px 0px 0px;
  1267. box-sizing:border-box;
  1268. width:100%;
  1269. }
  1270. #u37841_text {
  1271. border-width:0px;
  1272. word-wrap:break-word;
  1273. text-transform:none;
  1274. }
  1275. #u37842_div {
  1276. border-width:0px;
  1277. position:absolute;
  1278. left:0px;
  1279. top:0px;
  1280. width:37px;
  1281. height:24px;
  1282. background:inherit;
  1283. background-color:rgba(255, 255, 255, 0);
  1284. border:none;
  1285. border-left:0px;
  1286. border-top:0px;
  1287. border-right:0px;
  1288. border-radius:0px;
  1289. border-bottom-right-radius:0px;
  1290. border-bottom-left-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:12px;
  1298. color:#298FFF;
  1299. text-align:right;
  1300. line-height:24px;
  1301. }
  1302. #u37842 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:347px;
  1306. top:171px;
  1307. width:37px;
  1308. height:24px;
  1309. display:flex;
  1310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1311. font-weight:400;
  1312. font-style:normal;
  1313. font-size:12px;
  1314. color:#298FFF;
  1315. text-align:right;
  1316. line-height:24px;
  1317. }
  1318. #u37842 .text {
  1319. position:absolute;
  1320. align-self:flex-start;
  1321. padding:0px 0px 0px 0px;
  1322. box-sizing:border-box;
  1323. width:100%;
  1324. }
  1325. #u37842_text {
  1326. border-width:0px;
  1327. white-space:nowrap;
  1328. text-transform:none;
  1329. }
  1330. #u37843 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:0px;
  1335. width:0px;
  1336. height:0px;
  1337. }
  1338. #u37844_div {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:0px;
  1342. top:0px;
  1343. width:360px;
  1344. height:50px;
  1345. background:inherit;
  1346. background-color:rgba(255, 255, 255, 1);
  1347. border:none;
  1348. border-radius:6px;
  1349. -moz-box-shadow:none;
  1350. -webkit-box-shadow:none;
  1351. box-shadow:none;
  1352. }
  1353. #u37844 {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:38px;
  1357. top:335px;
  1358. width:360px;
  1359. height:50px;
  1360. display:flex;
  1361. }
  1362. #u37844 .text {
  1363. position:absolute;
  1364. align-self:center;
  1365. padding:2px 2px 2px 2px;
  1366. box-sizing:border-box;
  1367. width:100%;
  1368. }
  1369. #u37844_text {
  1370. border-width:0px;
  1371. word-wrap:break-word;
  1372. text-transform:none;
  1373. visibility:hidden;
  1374. }
  1375. #u37845_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:70px;
  1381. height:28px;
  1382. background:inherit;
  1383. background-color:rgba(245, 154, 35, 0);
  1384. box-sizing:border-box;
  1385. border-width:1px;
  1386. border-style:solid;
  1387. border-color:rgba(245, 154, 35, 1);
  1388. border-radius:29px;
  1389. -moz-box-shadow:none;
  1390. -webkit-box-shadow:none;
  1391. box-shadow:none;
  1392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1393. font-weight:400;
  1394. font-style:normal;
  1395. font-size:12px;
  1396. color:#F59A23;
  1397. text-align:center;
  1398. line-height:25px;
  1399. }
  1400. #u37845 {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:313px;
  1404. top:346px;
  1405. width:70px;
  1406. height:28px;
  1407. display:flex;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:12px;
  1412. color:#F59A23;
  1413. text-align:center;
  1414. line-height:25px;
  1415. }
  1416. #u37845 .text {
  1417. position:absolute;
  1418. align-self:center;
  1419. padding:0px 0px 0px 0px;
  1420. box-sizing:border-box;
  1421. width:100%;
  1422. }
  1423. #u37845_text {
  1424. border-width:0px;
  1425. word-wrap:break-word;
  1426. text-transform:none;
  1427. }
  1428. #u37846_div {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:0px;
  1432. top:0px;
  1433. width:121px;
  1434. height:30px;
  1435. background:inherit;
  1436. background-color:rgba(255, 255, 255, 0);
  1437. border:none;
  1438. border-left:0px;
  1439. border-top:0px;
  1440. border-right:0px;
  1441. border-radius:0px;
  1442. border-bottom-right-radius:0px;
  1443. border-bottom-left-radius:0px;
  1444. -moz-box-shadow:none;
  1445. -webkit-box-shadow:none;
  1446. box-shadow:none;
  1447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1448. font-weight:400;
  1449. font-style:normal;
  1450. font-size:12px;
  1451. color:#AAAAAA;
  1452. line-height:30px;
  1453. }
  1454. #u37846 {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:54px;
  1458. top:345px;
  1459. width:121px;
  1460. height:30px;
  1461. display:flex;
  1462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1463. font-weight:400;
  1464. font-style:normal;
  1465. font-size:12px;
  1466. color:#AAAAAA;
  1467. line-height:30px;
  1468. }
  1469. #u37846 .text {
  1470. position:absolute;
  1471. align-self:flex-start;
  1472. padding:0px 0px 0px 0px;
  1473. box-sizing:border-box;
  1474. width:100%;
  1475. }
  1476. #u37846_text {
  1477. border-width:0px;
  1478. white-space:nowrap;
  1479. text-transform:none;
  1480. }
  1481. #u37847_img {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:0px;
  1485. top:0px;
  1486. width:111px;
  1487. height:88px;
  1488. }
  1489. #u37847 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:272px;
  1493. top:220px;
  1494. width:111px;
  1495. height:88px;
  1496. display:flex;
  1497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1498. font-weight:400;
  1499. font-style:normal;
  1500. }
  1501. #u37847 .text {
  1502. position:absolute;
  1503. align-self:center;
  1504. padding:2px 2px 2px 2px;
  1505. box-sizing:border-box;
  1506. width:100%;
  1507. }
  1508. #u37847_text {
  1509. border-width:0px;
  1510. word-wrap:break-word;
  1511. text-transform:none;
  1512. }
  1513. #u37848 {
  1514. border-width:0px;
  1515. position:absolute;
  1516. left:0px;
  1517. top:0px;
  1518. width:0px;
  1519. height:0px;
  1520. }
  1521. #u37849_img {
  1522. border-width:0px;
  1523. position:absolute;
  1524. left:0px;
  1525. top:0px;
  1526. width:355px;
  1527. height:229px;
  1528. }
  1529. #u37849 {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:39px;
  1533. top:395px;
  1534. width:355px;
  1535. height:229px;
  1536. display:flex;
  1537. }
  1538. #u37849 .text {
  1539. position:absolute;
  1540. align-self:center;
  1541. padding:2px 2px 2px 2px;
  1542. box-sizing:border-box;
  1543. width:100%;
  1544. }
  1545. #u37849_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u37850_div {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:0px;
  1555. top:0px;
  1556. width:113px;
  1557. height:30px;
  1558. background:inherit;
  1559. background-color:rgba(255, 255, 255, 0);
  1560. border:none;
  1561. border-left:0px;
  1562. border-top:0px;
  1563. border-right:0px;
  1564. border-radius:0px;
  1565. border-bottom-right-radius:0px;
  1566. border-bottom-left-radius:0px;
  1567. -moz-box-shadow:none;
  1568. -webkit-box-shadow:none;
  1569. box-shadow:none;
  1570. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1571. font-weight:500;
  1572. font-style:normal;
  1573. font-size:14px;
  1574. line-height:30px;
  1575. }
  1576. #u37850 {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:55px;
  1580. top:410px;
  1581. width:113px;
  1582. height:30px;
  1583. display:flex;
  1584. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1585. font-weight:500;
  1586. font-style:normal;
  1587. font-size:14px;
  1588. line-height:30px;
  1589. }
  1590. #u37850 .text {
  1591. position:absolute;
  1592. align-self:flex-start;
  1593. padding:0px 0px 0px 0px;
  1594. box-sizing:border-box;
  1595. width:100%;
  1596. }
  1597. #u37850_text {
  1598. border-width:0px;
  1599. white-space:nowrap;
  1600. text-transform:none;
  1601. }
  1602. #u37851_div {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:0px;
  1606. top:0px;
  1607. width:207px;
  1608. height:125px;
  1609. background:inherit;
  1610. background-color:rgba(255, 255, 255, 0);
  1611. border:none;
  1612. border-left:0px;
  1613. border-top:0px;
  1614. border-right:0px;
  1615. border-radius:0px;
  1616. border-bottom-right-radius:0px;
  1617. border-bottom-left-radius:0px;
  1618. -moz-box-shadow:none;
  1619. -webkit-box-shadow:none;
  1620. box-shadow:none;
  1621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1622. font-weight:400;
  1623. font-style:normal;
  1624. font-size:12px;
  1625. line-height:25px;
  1626. }
  1627. #u37851 {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:55px;
  1631. top:440px;
  1632. width:207px;
  1633. height:125px;
  1634. display:flex;
  1635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1636. font-weight:400;
  1637. font-style:normal;
  1638. font-size:12px;
  1639. line-height:25px;
  1640. }
  1641. #u37851 .text {
  1642. position:absolute;
  1643. align-self:flex-start;
  1644. padding:0px 0px 0px 0px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u37851_text {
  1649. border-width:0px;
  1650. word-wrap:break-word;
  1651. text-transform:none;
  1652. }
  1653. #u37852_div {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:37px;
  1659. height:24px;
  1660. background:inherit;
  1661. background-color:rgba(255, 255, 255, 0);
  1662. border:none;
  1663. border-left:0px;
  1664. border-top:0px;
  1665. border-right:0px;
  1666. border-radius:0px;
  1667. border-bottom-right-radius:0px;
  1668. border-bottom-left-radius:0px;
  1669. -moz-box-shadow:none;
  1670. -webkit-box-shadow:none;
  1671. box-shadow:none;
  1672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1673. font-weight:400;
  1674. font-style:normal;
  1675. font-size:12px;
  1676. color:#AAAAAA;
  1677. text-align:right;
  1678. line-height:24px;
  1679. }
  1680. #u37852 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:347px;
  1684. top:410px;
  1685. width:37px;
  1686. height:24px;
  1687. display:flex;
  1688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1689. font-weight:400;
  1690. font-style:normal;
  1691. font-size:12px;
  1692. color:#AAAAAA;
  1693. text-align:right;
  1694. line-height:24px;
  1695. }
  1696. #u37852 .text {
  1697. position:absolute;
  1698. align-self:flex-start;
  1699. padding:0px 0px 0px 0px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u37852_text {
  1704. border-width:0px;
  1705. white-space:nowrap;
  1706. text-transform:none;
  1707. }
  1708. #u37853 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:0px;
  1714. height:0px;
  1715. }
  1716. #u37854_div {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:360px;
  1722. height:50px;
  1723. background:inherit;
  1724. background-color:rgba(255, 255, 255, 1);
  1725. border:none;
  1726. border-radius:6px;
  1727. -moz-box-shadow:none;
  1728. -webkit-box-shadow:none;
  1729. box-shadow:none;
  1730. }
  1731. #u37854 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:38px;
  1735. top:574px;
  1736. width:360px;
  1737. height:50px;
  1738. display:flex;
  1739. }
  1740. #u37854 .text {
  1741. position:absolute;
  1742. align-self:center;
  1743. padding:2px 2px 2px 2px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u37854_text {
  1748. border-width:0px;
  1749. word-wrap:break-word;
  1750. text-transform:none;
  1751. visibility:hidden;
  1752. }
  1753. #u37855_div {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:70px;
  1759. height:28px;
  1760. background:inherit;
  1761. background-color:rgba(245, 154, 35, 0);
  1762. box-sizing:border-box;
  1763. border-width:1px;
  1764. border-style:solid;
  1765. border-color:rgba(170, 170, 170, 1);
  1766. border-radius:29px;
  1767. -moz-box-shadow:none;
  1768. -webkit-box-shadow:none;
  1769. box-shadow:none;
  1770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1771. font-weight:400;
  1772. font-style:normal;
  1773. font-size:12px;
  1774. color:#7F7F7F;
  1775. text-align:center;
  1776. line-height:25px;
  1777. }
  1778. #u37855 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:313px;
  1782. top:585px;
  1783. width:70px;
  1784. height:28px;
  1785. display:flex;
  1786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1787. font-weight:400;
  1788. font-style:normal;
  1789. font-size:12px;
  1790. color:#7F7F7F;
  1791. text-align:center;
  1792. line-height:25px;
  1793. }
  1794. #u37855 .text {
  1795. position:absolute;
  1796. align-self:center;
  1797. padding:0px 0px 0px 0px;
  1798. box-sizing:border-box;
  1799. width:100%;
  1800. }
  1801. #u37855_text {
  1802. border-width:0px;
  1803. word-wrap:break-word;
  1804. text-transform:none;
  1805. }
  1806. #u37856_div {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:121px;
  1812. height:30px;
  1813. background:inherit;
  1814. background-color:rgba(255, 255, 255, 0);
  1815. border:none;
  1816. border-left:0px;
  1817. border-top:0px;
  1818. border-right:0px;
  1819. border-radius:0px;
  1820. border-bottom-right-radius:0px;
  1821. border-bottom-left-radius:0px;
  1822. -moz-box-shadow:none;
  1823. -webkit-box-shadow:none;
  1824. box-shadow:none;
  1825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:12px;
  1829. color:#AAAAAA;
  1830. line-height:30px;
  1831. }
  1832. #u37856 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:54px;
  1836. top:584px;
  1837. width:121px;
  1838. height:30px;
  1839. display:flex;
  1840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1841. font-weight:400;
  1842. font-style:normal;
  1843. font-size:12px;
  1844. color:#AAAAAA;
  1845. line-height:30px;
  1846. }
  1847. #u37856 .text {
  1848. position:absolute;
  1849. align-self:flex-start;
  1850. padding:0px 0px 0px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u37856_text {
  1855. border-width:0px;
  1856. white-space:nowrap;
  1857. text-transform:none;
  1858. }
  1859. #u37857_img {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:111px;
  1865. height:88px;
  1866. }
  1867. #u37857 {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:272px;
  1871. top:459px;
  1872. width:111px;
  1873. height:88px;
  1874. display:flex;
  1875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1876. font-weight:400;
  1877. font-style:normal;
  1878. }
  1879. #u37857 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 2px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u37857_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }