styles.css 38 KB

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