styles.css 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-116px;
  6. width:1000px;
  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. #u6540 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u6541_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1201px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u6541 {
  53. border-width:0px;
  54. position:absolute;
  55. left:116px;
  56. top:21px;
  57. width:1000px;
  58. height:1201px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u6541 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u6541_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u6542_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:1000px;
  87. height:1021px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(215, 215, 215, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u6542 {
  107. border-width:0px;
  108. position:absolute;
  109. left:116px;
  110. top:201px;
  111. width:1000px;
  112. height:1021px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u6542 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u6542_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u6543_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:1000px;
  141. height:170px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 1);
  144. box-sizing:border-box;
  145. border-width:1px;
  146. border-style:solid;
  147. border-color:rgba(215, 215, 215, 1);
  148. border-radius:0px;
  149. -moz-box-shadow:none;
  150. -webkit-box-shadow:none;
  151. box-shadow:none;
  152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  153. font-weight:400;
  154. font-style:normal;
  155. font-size:14px;
  156. color:#AAAAAA;
  157. text-align:center;
  158. line-height:30px;
  159. }
  160. #u6543 {
  161. border-width:0px;
  162. position:absolute;
  163. left:116px;
  164. top:21px;
  165. width:1000px;
  166. height:170px;
  167. display:flex;
  168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  169. font-weight:400;
  170. font-style:normal;
  171. font-size:14px;
  172. color:#AAAAAA;
  173. text-align:center;
  174. line-height:30px;
  175. }
  176. #u6543 .text {
  177. position:absolute;
  178. align-self:center;
  179. padding:5px 10px 5px 10px;
  180. box-sizing:border-box;
  181. width:100%;
  182. }
  183. #u6543_text {
  184. border-width:0px;
  185. word-wrap:break-word;
  186. text-transform:none;
  187. visibility:hidden;
  188. }
  189. #u6544_div {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:119px;
  195. height:35px;
  196. background:inherit;
  197. background-color:rgba(255, 255, 255, 0);
  198. border:none;
  199. border-top:0px;
  200. border-right:0px;
  201. border-bottom:0px;
  202. border-radius:0px;
  203. border-top-left-radius:0px;
  204. border-bottom-left-radius:0px;
  205. -moz-box-shadow:none;
  206. -webkit-box-shadow:none;
  207. box-shadow:none;
  208. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  209. font-weight:500;
  210. font-style:normal;
  211. font-size:18px;
  212. }
  213. #u6544 {
  214. border-width:0px;
  215. position:absolute;
  216. left:136px;
  217. top:39px;
  218. width:119px;
  219. height:35px;
  220. display:flex;
  221. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  222. font-weight:500;
  223. font-style:normal;
  224. font-size:18px;
  225. }
  226. #u6544 .text {
  227. position:absolute;
  228. align-self:center;
  229. padding:5px 10px 5px 0px;
  230. box-sizing:border-box;
  231. width:100%;
  232. }
  233. #u6544_text {
  234. border-width:0px;
  235. white-space:nowrap;
  236. text-transform:none;
  237. }
  238. #u6545 {
  239. border-width:0px;
  240. position:absolute;
  241. left:0px;
  242. top:0px;
  243. width:0px;
  244. height:0px;
  245. }
  246. #u6546_div {
  247. border-width:0px;
  248. position:absolute;
  249. left:0px;
  250. top:0px;
  251. width:40px;
  252. height:40px;
  253. background:inherit;
  254. background-color:rgba(255, 255, 255, 0);
  255. border:none;
  256. border-top:0px;
  257. border-right:0px;
  258. border-bottom:0px;
  259. border-radius:0px;
  260. border-top-left-radius:0px;
  261. border-bottom-left-radius:0px;
  262. -moz-box-shadow:none;
  263. -webkit-box-shadow:none;
  264. box-shadow:none;
  265. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  266. font-weight:500;
  267. font-style:normal;
  268. font-size:14px;
  269. text-align:center;
  270. }
  271. #u6546 {
  272. border-width:0px;
  273. position:absolute;
  274. left:1076px;
  275. top:21px;
  276. width:40px;
  277. height:40px;
  278. display:flex;
  279. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  280. font-weight:500;
  281. font-style:normal;
  282. font-size:14px;
  283. text-align:center;
  284. }
  285. #u6546 .text {
  286. position:absolute;
  287. align-self:center;
  288. padding:5px 10px 5px 0px;
  289. box-sizing:border-box;
  290. width:100%;
  291. }
  292. #u6546_text {
  293. border-width:0px;
  294. word-wrap:break-word;
  295. text-transform:none;
  296. }
  297. #u6547_img {
  298. border-width:0px;
  299. position:absolute;
  300. left:0px;
  301. top:0px;
  302. width:13px;
  303. height:13px;
  304. }
  305. #u6547 {
  306. border-width:0px;
  307. position:absolute;
  308. left:1064px;
  309. top:37px;
  310. width:13px;
  311. height:13px;
  312. display:flex;
  313. font-size:14px;
  314. }
  315. #u6547 .text {
  316. position:absolute;
  317. align-self:center;
  318. padding:2px 2px 2px 2px;
  319. box-sizing:border-box;
  320. width:100%;
  321. }
  322. #u6547_text {
  323. border-width:0px;
  324. word-wrap:break-word;
  325. text-transform:none;
  326. visibility:hidden;
  327. }
  328. #u6548_div {
  329. border-width:0px;
  330. position:absolute;
  331. left:0px;
  332. top:0px;
  333. width:134px;
  334. height:43px;
  335. background:inherit;
  336. background-color:rgba(255, 255, 255, 0);
  337. border:none;
  338. border-top:0px;
  339. border-right:0px;
  340. border-bottom:0px;
  341. border-radius:0px;
  342. border-top-left-radius:0px;
  343. border-bottom-left-radius:0px;
  344. -moz-box-shadow:none;
  345. -webkit-box-shadow:none;
  346. box-shadow:none;
  347. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  348. font-weight:500;
  349. font-style:normal;
  350. font-size:24px;
  351. }
  352. #u6548 {
  353. border-width:0px;
  354. position:absolute;
  355. left:146px;
  356. top:90px;
  357. width:134px;
  358. height:43px;
  359. display:flex;
  360. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  361. font-weight:500;
  362. font-style:normal;
  363. font-size:24px;
  364. }
  365. #u6548 .text {
  366. position:absolute;
  367. align-self:center;
  368. padding:5px 10px 5px 0px;
  369. box-sizing:border-box;
  370. width:100%;
  371. }
  372. #u6548_text {
  373. border-width:0px;
  374. white-space:nowrap;
  375. text-transform:none;
  376. }
  377. #u6549_div {
  378. border-width:0px;
  379. position:absolute;
  380. left:0px;
  381. top:0px;
  382. width:320px;
  383. height:30px;
  384. background:inherit;
  385. background-color:rgba(255, 255, 255, 0);
  386. border:none;
  387. border-left:0px;
  388. border-top:0px;
  389. border-right:0px;
  390. border-radius:0px;
  391. border-bottom-right-radius:0px;
  392. border-bottom-left-radius:0px;
  393. -moz-box-shadow:none;
  394. -webkit-box-shadow:none;
  395. box-shadow:none;
  396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  397. font-weight:400;
  398. font-style:normal;
  399. font-size:14px;
  400. line-height:30px;
  401. }
  402. #u6549 {
  403. border-width:0px;
  404. position:absolute;
  405. left:146px;
  406. top:145px;
  407. width:320px;
  408. height:30px;
  409. display:flex;
  410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  411. font-weight:400;
  412. font-style:normal;
  413. font-size:14px;
  414. line-height:30px;
  415. }
  416. #u6549 .text {
  417. position:absolute;
  418. align-self:flex-start;
  419. padding:0px 0px 0px 0px;
  420. box-sizing:border-box;
  421. width:100%;
  422. }
  423. #u6549_text {
  424. border-width:0px;
  425. word-wrap:break-word;
  426. text-transform:none;
  427. }
  428. #u6550_div {
  429. border-width:0px;
  430. position:absolute;
  431. left:0px;
  432. top:0px;
  433. width:320px;
  434. height:30px;
  435. background:inherit;
  436. background-color:rgba(255, 255, 255, 0);
  437. border:none;
  438. border-left:0px;
  439. border-top:0px;
  440. border-right:0px;
  441. border-radius:0px;
  442. border-bottom-right-radius:0px;
  443. border-bottom-left-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:14px;
  451. line-height:30px;
  452. }
  453. #u6550 {
  454. border-width:0px;
  455. position:absolute;
  456. left:466px;
  457. top:145px;
  458. width:320px;
  459. height:30px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:14px;
  465. line-height:30px;
  466. }
  467. #u6550 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u6550_text {
  475. border-width:0px;
  476. word-wrap:break-word;
  477. text-transform:none;
  478. }
  479. #u6551_div {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:320px;
  485. height:30px;
  486. background:inherit;
  487. background-color:rgba(255, 255, 255, 0);
  488. border:none;
  489. border-left:0px;
  490. border-top:0px;
  491. border-right:0px;
  492. border-radius:0px;
  493. border-bottom-right-radius:0px;
  494. border-bottom-left-radius:0px;
  495. -moz-box-shadow:none;
  496. -webkit-box-shadow:none;
  497. box-shadow:none;
  498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  499. font-weight:400;
  500. font-style:normal;
  501. font-size:14px;
  502. line-height:30px;
  503. }
  504. #u6551 {
  505. border-width:0px;
  506. position:absolute;
  507. left:786px;
  508. top:145px;
  509. width:320px;
  510. height:30px;
  511. display:flex;
  512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  513. font-weight:400;
  514. font-style:normal;
  515. font-size:14px;
  516. line-height:30px;
  517. }
  518. #u6551 .text {
  519. position:absolute;
  520. align-self:flex-start;
  521. padding:0px 0px 0px 0px;
  522. box-sizing:border-box;
  523. width:100%;
  524. }
  525. #u6551_text {
  526. border-width:0px;
  527. word-wrap:break-word;
  528. text-transform:none;
  529. }
  530. #u6552_img {
  531. border-width:0px;
  532. position:absolute;
  533. left:0px;
  534. top:0px;
  535. width:108px;
  536. height:108px;
  537. }
  538. #u6552 {
  539. border-width:0px;
  540. position:absolute;
  541. left:966px;
  542. top:91px;
  543. width:108px;
  544. height:108px;
  545. display:flex;
  546. -webkit-transform:rotate(315deg);
  547. -moz-transform:rotate(315deg);
  548. -ms-transform:rotate(315deg);
  549. transform:rotate(315deg);
  550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  551. font-weight:400;
  552. font-style:normal;
  553. font-size:28px;
  554. color:#F59A23;
  555. }
  556. #u6552 .text {
  557. position:absolute;
  558. align-self:center;
  559. padding:2px 2px 2px 2px;
  560. box-sizing:border-box;
  561. width:100%;
  562. }
  563. #u6552_text {
  564. border-width:0px;
  565. word-wrap:break-word;
  566. text-transform:none;
  567. }
  568. #u6553 {
  569. border-width:0px;
  570. position:absolute;
  571. left:0px;
  572. top:0px;
  573. width:0px;
  574. height:0px;
  575. }
  576. #u6554_div {
  577. border-width:0px;
  578. position:absolute;
  579. left:0px;
  580. top:0px;
  581. width:1000px;
  582. height:60px;
  583. background:inherit;
  584. background-color:rgba(255, 255, 255, 1);
  585. box-sizing:border-box;
  586. border-width:1px;
  587. border-style:solid;
  588. border-color:rgba(215, 215, 215, 1);
  589. border-radius:0px;
  590. -moz-box-shadow:none;
  591. -webkit-box-shadow:none;
  592. box-shadow:none;
  593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  594. font-weight:400;
  595. font-style:normal;
  596. font-size:14px;
  597. color:#AAAAAA;
  598. text-align:center;
  599. line-height:30px;
  600. }
  601. #u6554 {
  602. border-width:0px;
  603. position:absolute;
  604. left:116px;
  605. top:1162px;
  606. width:1000px;
  607. height:60px;
  608. display:flex;
  609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  610. font-weight:400;
  611. font-style:normal;
  612. font-size:14px;
  613. color:#AAAAAA;
  614. text-align:center;
  615. line-height:30px;
  616. }
  617. #u6554 .text {
  618. position:absolute;
  619. align-self:center;
  620. padding:5px 10px 5px 10px;
  621. box-sizing:border-box;
  622. width:100%;
  623. }
  624. #u6554_text {
  625. border-width:0px;
  626. word-wrap:break-word;
  627. text-transform:none;
  628. visibility:hidden;
  629. }
  630. #u6555_div {
  631. border-width:0px;
  632. position:absolute;
  633. left:0px;
  634. top:0px;
  635. width:80px;
  636. height:30px;
  637. background:inherit;
  638. background-color:rgba(24, 144, 255, 1);
  639. border:none;
  640. border-radius:4px;
  641. -moz-box-shadow:none;
  642. -webkit-box-shadow:none;
  643. box-shadow:none;
  644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  645. font-weight:400;
  646. font-style:normal;
  647. font-size:14px;
  648. color:#FFFFFF;
  649. }
  650. #u6555 {
  651. border-width:0px;
  652. position:absolute;
  653. left:1010px;
  654. top:1177px;
  655. width:80px;
  656. height:30px;
  657. display:flex;
  658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  659. font-weight:400;
  660. font-style:normal;
  661. font-size:14px;
  662. color:#FFFFFF;
  663. }
  664. #u6555 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u6555_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. }
  676. #u6556_div {
  677. border-width:0px;
  678. position:absolute;
  679. left:0px;
  680. top:0px;
  681. width:80px;
  682. height:30px;
  683. background:inherit;
  684. background-color:rgba(245, 154, 35, 1);
  685. border:none;
  686. border-radius:4px;
  687. -moz-box-shadow:none;
  688. -webkit-box-shadow:none;
  689. box-shadow:none;
  690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  691. font-weight:400;
  692. font-style:normal;
  693. font-size:14px;
  694. color:#FFFFFF;
  695. }
  696. #u6556 {
  697. border-width:0px;
  698. position:absolute;
  699. left:920px;
  700. top:1177px;
  701. width:80px;
  702. height:30px;
  703. display:flex;
  704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  705. font-weight:400;
  706. font-style:normal;
  707. font-size:14px;
  708. color:#FFFFFF;
  709. }
  710. #u6556 .text {
  711. position:absolute;
  712. align-self:center;
  713. padding:2px 2px 2px 2px;
  714. box-sizing:border-box;
  715. width:100%;
  716. }
  717. #u6556_text {
  718. border-width:0px;
  719. word-wrap:break-word;
  720. text-transform:none;
  721. }
  722. #u6557_div {
  723. border-width:0px;
  724. position:absolute;
  725. left:0px;
  726. top:0px;
  727. width:80px;
  728. height:30px;
  729. background:inherit;
  730. background-color:rgba(255, 255, 255, 1);
  731. box-sizing:border-box;
  732. border-width:1px;
  733. border-style:solid;
  734. border-color:rgba(170, 170, 170, 1);
  735. border-radius:4px;
  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:14px;
  743. }
  744. #u6557 {
  745. border-width:0px;
  746. position:absolute;
  747. left:830px;
  748. top:1177px;
  749. width:80px;
  750. height:30px;
  751. display:flex;
  752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  753. font-weight:400;
  754. font-style:normal;
  755. font-size:14px;
  756. }
  757. #u6557 .text {
  758. position:absolute;
  759. align-self:center;
  760. padding:2px 2px 2px 2px;
  761. box-sizing:border-box;
  762. width:100%;
  763. }
  764. #u6557_text {
  765. border-width:0px;
  766. word-wrap:break-word;
  767. text-transform:none;
  768. }
  769. #u6558_img {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:155px;
  775. height:115px;
  776. }
  777. #u6558 {
  778. border-width:0px;
  779. position:absolute;
  780. left:156px;
  781. top:289px;
  782. width:155px;
  783. height:115px;
  784. display:flex;
  785. }
  786. #u6558 .text {
  787. position:absolute;
  788. align-self:center;
  789. padding:2px 2px 2px 2px;
  790. box-sizing:border-box;
  791. width:100%;
  792. }
  793. #u6558_text {
  794. border-width:0px;
  795. word-wrap:break-word;
  796. text-transform:none;
  797. visibility:hidden;
  798. }
  799. #u6559_div {
  800. border-width:0px;
  801. position:absolute;
  802. left:0px;
  803. top:0px;
  804. width:320px;
  805. height:90px;
  806. background:inherit;
  807. background-color:rgba(255, 255, 255, 0);
  808. border:none;
  809. border-left:0px;
  810. border-top:0px;
  811. border-right:0px;
  812. border-radius:0px;
  813. border-bottom-right-radius:0px;
  814. border-bottom-left-radius:0px;
  815. -moz-box-shadow:none;
  816. -webkit-box-shadow:none;
  817. box-shadow:none;
  818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  819. font-weight:400;
  820. font-style:normal;
  821. font-size:14px;
  822. line-height:30px;
  823. }
  824. #u6559 {
  825. border-width:0px;
  826. position:absolute;
  827. left:329px;
  828. top:302px;
  829. width:320px;
  830. height:90px;
  831. display:flex;
  832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  833. font-weight:400;
  834. font-style:normal;
  835. font-size:14px;
  836. line-height:30px;
  837. }
  838. #u6559 .text {
  839. position:absolute;
  840. align-self:flex-start;
  841. padding:0px 0px 0px 0px;
  842. box-sizing:border-box;
  843. width:100%;
  844. }
  845. #u6559_text {
  846. border-width:0px;
  847. word-wrap:break-word;
  848. text-transform:none;
  849. }
  850. #u6560_div {
  851. border-width:0px;
  852. position:absolute;
  853. left:0px;
  854. top:0px;
  855. width:155px;
  856. height:43px;
  857. background:inherit;
  858. background-color:rgba(255, 255, 255, 0);
  859. border:none;
  860. border-top:0px;
  861. border-right:0px;
  862. border-bottom:0px;
  863. border-radius:0px;
  864. border-top-left-radius:0px;
  865. border-bottom-left-radius:0px;
  866. -moz-box-shadow:none;
  867. -webkit-box-shadow:none;
  868. box-shadow:none;
  869. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  870. font-weight:500;
  871. font-style:normal;
  872. font-size:24px;
  873. }
  874. #u6560 {
  875. border-width:0px;
  876. position:absolute;
  877. left:156px;
  878. top:236px;
  879. width:155px;
  880. height:43px;
  881. display:flex;
  882. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  883. font-weight:500;
  884. font-style:normal;
  885. font-size:24px;
  886. }
  887. #u6560 .text {
  888. position:absolute;
  889. align-self:center;
  890. padding:5px 10px 5px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u6560_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u6561_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:155px;
  905. height:165px;
  906. }
  907. #u6561 {
  908. border-width:0px;
  909. position:absolute;
  910. left:723px;
  911. top:291px;
  912. width:155px;
  913. height:165px;
  914. display:flex;
  915. }
  916. #u6561 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u6561_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u6562_div {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:155px;
  935. height:43px;
  936. background:inherit;
  937. background-color:rgba(255, 255, 255, 0);
  938. border:none;
  939. border-top:0px;
  940. border-right:0px;
  941. border-bottom:0px;
  942. border-radius:0px;
  943. border-top-left-radius:0px;
  944. border-bottom-left-radius:0px;
  945. -moz-box-shadow:none;
  946. -webkit-box-shadow:none;
  947. box-shadow:none;
  948. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  949. font-weight:500;
  950. font-style:normal;
  951. font-size:24px;
  952. }
  953. #u6562 {
  954. border-width:0px;
  955. position:absolute;
  956. left:723px;
  957. top:238px;
  958. width:155px;
  959. height:43px;
  960. display:flex;
  961. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  962. font-weight:500;
  963. font-style:normal;
  964. font-size:24px;
  965. }
  966. #u6562 .text {
  967. position:absolute;
  968. align-self:center;
  969. padding:5px 10px 5px 0px;
  970. box-sizing:border-box;
  971. width:100%;
  972. }
  973. #u6562_text {
  974. border-width:0px;
  975. white-space:nowrap;
  976. text-transform:none;
  977. }
  978. #u6563_img {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:155px;
  984. height:115px;
  985. }
  986. #u6563 {
  987. border-width:0px;
  988. position:absolute;
  989. left:156px;
  990. top:487px;
  991. width:155px;
  992. height:115px;
  993. display:flex;
  994. }
  995. #u6563 .text {
  996. position:absolute;
  997. align-self:center;
  998. padding:2px 2px 2px 2px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u6563_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. visibility:hidden;
  1007. }
  1008. #u6564_div {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:320px;
  1014. height:90px;
  1015. background:inherit;
  1016. background-color:rgba(255, 255, 255, 0);
  1017. border:none;
  1018. border-left:0px;
  1019. border-top:0px;
  1020. border-right:0px;
  1021. border-radius:0px;
  1022. border-bottom-right-radius:0px;
  1023. border-bottom-left-radius:0px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. font-size:14px;
  1031. line-height:30px;
  1032. }
  1033. #u6564 {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:329px;
  1037. top:500px;
  1038. width:320px;
  1039. height:90px;
  1040. display:flex;
  1041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1042. font-weight:400;
  1043. font-style:normal;
  1044. font-size:14px;
  1045. line-height:30px;
  1046. }
  1047. #u6564 .text {
  1048. position:absolute;
  1049. align-self:flex-start;
  1050. padding:0px 0px 0px 0px;
  1051. box-sizing:border-box;
  1052. width:100%;
  1053. }
  1054. #u6564_text {
  1055. border-width:0px;
  1056. word-wrap:break-word;
  1057. text-transform:none;
  1058. }
  1059. #u6565_div {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:0px;
  1063. top:0px;
  1064. width:131px;
  1065. height:43px;
  1066. background:inherit;
  1067. background-color:rgba(255, 255, 255, 0);
  1068. border:none;
  1069. border-top:0px;
  1070. border-right:0px;
  1071. border-bottom:0px;
  1072. border-radius:0px;
  1073. border-top-left-radius:0px;
  1074. border-bottom-left-radius:0px;
  1075. -moz-box-shadow:none;
  1076. -webkit-box-shadow:none;
  1077. box-shadow:none;
  1078. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1079. font-weight:500;
  1080. font-style:normal;
  1081. font-size:24px;
  1082. }
  1083. #u6565 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:156px;
  1087. top:434px;
  1088. width:131px;
  1089. height:43px;
  1090. display:flex;
  1091. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1092. font-weight:500;
  1093. font-style:normal;
  1094. font-size:24px;
  1095. }
  1096. #u6565 .text {
  1097. position:absolute;
  1098. align-self:center;
  1099. padding:5px 10px 5px 0px;
  1100. box-sizing:border-box;
  1101. width:100%;
  1102. }
  1103. #u6565_text {
  1104. border-width:0px;
  1105. white-space:nowrap;
  1106. text-transform:none;
  1107. }
  1108. #u6566 {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:0px;
  1114. height:0px;
  1115. }
  1116. #u6567_img {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:-5px;
  1120. top:-5px;
  1121. width:370px;
  1122. height:200px;
  1123. }
  1124. #u6567 {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:671px;
  1128. top:912px;
  1129. width:360px;
  1130. height:190px;
  1131. display:flex;
  1132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:12px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u6567 .text {
  1139. position:absolute;
  1140. align-self:center;
  1141. padding:2px 2px 2px 2px;
  1142. box-sizing:border-box;
  1143. width:100%;
  1144. }
  1145. #u6567_text {
  1146. border-width:0px;
  1147. word-wrap:break-word;
  1148. text-transform:none;
  1149. visibility:hidden;
  1150. }
  1151. #u6568_div {
  1152. border-width:0px;
  1153. position:absolute;
  1154. left:0px;
  1155. top:0px;
  1156. width:37px;
  1157. height:25px;
  1158. background:inherit;
  1159. background-color:rgba(255, 255, 255, 0);
  1160. border:none;
  1161. border-radius:0px;
  1162. -moz-box-shadow:none;
  1163. -webkit-box-shadow:none;
  1164. box-shadow:none;
  1165. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1166. font-weight:500;
  1167. font-style:normal;
  1168. font-size:18px;
  1169. }
  1170. #u6568 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:694px;
  1174. top:928px;
  1175. width:37px;
  1176. height:25px;
  1177. display:flex;
  1178. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1179. font-weight:500;
  1180. font-style:normal;
  1181. font-size:18px;
  1182. }
  1183. #u6568 .text {
  1184. position:absolute;
  1185. align-self:flex-start;
  1186. padding:0px 0px 0px 0px;
  1187. box-sizing:border-box;
  1188. width:100%;
  1189. }
  1190. #u6568_text {
  1191. border-width:0px;
  1192. white-space:nowrap;
  1193. text-transform:none;
  1194. }
  1195. #u6569_img {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:0px;
  1199. top:0px;
  1200. width:8px;
  1201. height:8px;
  1202. }
  1203. #u6569 {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:1008px;
  1207. top:924px;
  1208. width:8px;
  1209. height:8px;
  1210. display:flex;
  1211. opacity:0.5;
  1212. }
  1213. #u6569 .text {
  1214. position:absolute;
  1215. align-self:center;
  1216. padding:2px 2px 2px 2px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u6569_text {
  1221. border-width:0px;
  1222. word-wrap:break-word;
  1223. text-transform:none;
  1224. visibility:hidden;
  1225. }
  1226. #u6570_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:80px;
  1232. height:30px;
  1233. background:inherit;
  1234. background-color:rgba(51, 153, 255, 1);
  1235. border:none;
  1236. border-radius:4px;
  1237. -moz-box-shadow:none;
  1238. -webkit-box-shadow:none;
  1239. box-shadow:none;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. font-size:14px;
  1244. color:#FFFFFF;
  1245. }
  1246. #u6570 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:936px;
  1250. top:1056px;
  1251. width:80px;
  1252. height:30px;
  1253. display:flex;
  1254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1255. font-weight:400;
  1256. font-style:normal;
  1257. font-size:14px;
  1258. color:#FFFFFF;
  1259. }
  1260. #u6570 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:8px 0px 8px 0px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u6570_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. }
  1272. #u6571_div {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:322px;
  1278. height:80px;
  1279. background:inherit;
  1280. background-color:rgba(255, 255, 255, 1);
  1281. box-sizing:border-box;
  1282. border-width:1px;
  1283. border-style:solid;
  1284. border-color:rgba(51, 153, 255, 1);
  1285. border-radius:2px;
  1286. -moz-box-shadow:none;
  1287. -webkit-box-shadow:none;
  1288. box-shadow:none;
  1289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1290. font-weight:400;
  1291. font-style:normal;
  1292. font-size:12px;
  1293. color:#FFFFFF;
  1294. text-align:left;
  1295. }
  1296. #u6571 {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:694px;
  1300. top:963px;
  1301. width:322px;
  1302. height:80px;
  1303. display:flex;
  1304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1305. font-weight:400;
  1306. font-style:normal;
  1307. font-size:12px;
  1308. color:#FFFFFF;
  1309. text-align:left;
  1310. }
  1311. #u6571 .text {
  1312. position:absolute;
  1313. align-self:center;
  1314. padding:8px 15px 8px 15px;
  1315. box-sizing:border-box;
  1316. width:100%;
  1317. }
  1318. #u6571_text {
  1319. border-width:0px;
  1320. word-wrap:break-word;
  1321. text-transform:none;
  1322. }
  1323. #u6572_div {
  1324. border-width:0px;
  1325. position:absolute;
  1326. left:0px;
  1327. top:0px;
  1328. width:99px;
  1329. height:20px;
  1330. background:inherit;
  1331. background-color:rgba(255, 255, 255, 0);
  1332. border:none;
  1333. border-radius:0px;
  1334. -moz-box-shadow:none;
  1335. -webkit-box-shadow:none;
  1336. box-shadow:none;
  1337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1338. font-weight:400;
  1339. font-style:normal;
  1340. color:#D7D7D7;
  1341. }
  1342. #u6572 {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:705px;
  1346. top:974px;
  1347. width:99px;
  1348. height:20px;
  1349. display:flex;
  1350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1351. font-weight:400;
  1352. font-style:normal;
  1353. color:#D7D7D7;
  1354. }
  1355. #u6572 .text {
  1356. position:absolute;
  1357. align-self:flex-start;
  1358. padding:0px 0px 0px 0px;
  1359. box-sizing:border-box;
  1360. width:100%;
  1361. }
  1362. #u6572_text {
  1363. border-width:0px;
  1364. white-space:nowrap;
  1365. text-transform:none;
  1366. }
  1367. #u6573_div {
  1368. border-width:0px;
  1369. position:absolute;
  1370. left:0px;
  1371. top:0px;
  1372. width:60px;
  1373. height:30px;
  1374. background:inherit;
  1375. background-color:rgba(255, 255, 255, 1);
  1376. box-sizing:border-box;
  1377. border-width:1px;
  1378. border-style:solid;
  1379. border-color:rgba(170, 170, 170, 1);
  1380. border-radius:4px;
  1381. -moz-box-shadow:none;
  1382. -webkit-box-shadow:none;
  1383. box-shadow:none;
  1384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1385. font-weight:400;
  1386. font-style:normal;
  1387. font-size:14px;
  1388. }
  1389. #u6573 {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:866px;
  1393. top:1056px;
  1394. width:60px;
  1395. height:30px;
  1396. display:flex;
  1397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1398. font-weight:400;
  1399. font-style:normal;
  1400. font-size:14px;
  1401. }
  1402. #u6573 .text {
  1403. position:absolute;
  1404. align-self:center;
  1405. padding:2px 2px 2px 2px;
  1406. box-sizing:border-box;
  1407. width:100%;
  1408. }
  1409. #u6573_text {
  1410. border-width:0px;
  1411. word-wrap:break-word;
  1412. text-transform:none;
  1413. }
  1414. #u6574 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:0px;
  1420. height:0px;
  1421. }
  1422. #u6575_img {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:-5px;
  1426. top:-5px;
  1427. width:370px;
  1428. height:200px;
  1429. }
  1430. #u6575 {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:280px;
  1434. top:912px;
  1435. width:360px;
  1436. height:190px;
  1437. display:flex;
  1438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1439. font-weight:400;
  1440. font-style:normal;
  1441. font-size:12px;
  1442. color:#FFFFFF;
  1443. }
  1444. #u6575 .text {
  1445. position:absolute;
  1446. align-self:center;
  1447. padding:2px 2px 2px 2px;
  1448. box-sizing:border-box;
  1449. width:100%;
  1450. }
  1451. #u6575_text {
  1452. border-width:0px;
  1453. word-wrap:break-word;
  1454. text-transform:none;
  1455. visibility:hidden;
  1456. }
  1457. #u6576_div {
  1458. border-width:0px;
  1459. position:absolute;
  1460. left:0px;
  1461. top:0px;
  1462. width:37px;
  1463. height:25px;
  1464. background:inherit;
  1465. background-color:rgba(255, 255, 255, 0);
  1466. border:none;
  1467. border-radius:0px;
  1468. -moz-box-shadow:none;
  1469. -webkit-box-shadow:none;
  1470. box-shadow:none;
  1471. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1472. font-weight:500;
  1473. font-style:normal;
  1474. font-size:18px;
  1475. }
  1476. #u6576 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:303px;
  1480. top:928px;
  1481. width:37px;
  1482. height:25px;
  1483. display:flex;
  1484. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1485. font-weight:500;
  1486. font-style:normal;
  1487. font-size:18px;
  1488. }
  1489. #u6576 .text {
  1490. position:absolute;
  1491. align-self:flex-start;
  1492. padding:0px 0px 0px 0px;
  1493. box-sizing:border-box;
  1494. width:100%;
  1495. }
  1496. #u6576_text {
  1497. border-width:0px;
  1498. white-space:nowrap;
  1499. text-transform:none;
  1500. }
  1501. #u6577_img {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:0px;
  1505. top:0px;
  1506. width:8px;
  1507. height:8px;
  1508. }
  1509. #u6577 {
  1510. border-width:0px;
  1511. position:absolute;
  1512. left:617px;
  1513. top:924px;
  1514. width:8px;
  1515. height:8px;
  1516. display:flex;
  1517. opacity:0.5;
  1518. }
  1519. #u6577 .text {
  1520. position:absolute;
  1521. align-self:center;
  1522. padding:2px 2px 2px 2px;
  1523. box-sizing:border-box;
  1524. width:100%;
  1525. }
  1526. #u6577_text {
  1527. border-width:0px;
  1528. word-wrap:break-word;
  1529. text-transform:none;
  1530. visibility:hidden;
  1531. }
  1532. #u6578_div {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:80px;
  1538. height:30px;
  1539. background:inherit;
  1540. background-color:rgba(51, 153, 255, 1);
  1541. border:none;
  1542. border-radius:4px;
  1543. -moz-box-shadow:none;
  1544. -webkit-box-shadow:none;
  1545. box-shadow:none;
  1546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1547. font-weight:400;
  1548. font-style:normal;
  1549. font-size:14px;
  1550. color:#FFFFFF;
  1551. }
  1552. #u6578 {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:545px;
  1556. top:1056px;
  1557. width:80px;
  1558. height:30px;
  1559. display:flex;
  1560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1561. font-weight:400;
  1562. font-style:normal;
  1563. font-size:14px;
  1564. color:#FFFFFF;
  1565. }
  1566. #u6578 .text {
  1567. position:absolute;
  1568. align-self:center;
  1569. padding:8px 0px 8px 0px;
  1570. box-sizing:border-box;
  1571. width:100%;
  1572. }
  1573. #u6578_text {
  1574. border-width:0px;
  1575. word-wrap:break-word;
  1576. text-transform:none;
  1577. }
  1578. #u6579_div {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:322px;
  1584. height:80px;
  1585. background:inherit;
  1586. background-color:rgba(255, 255, 255, 1);
  1587. box-sizing:border-box;
  1588. border-width:1px;
  1589. border-style:solid;
  1590. border-color:rgba(51, 153, 255, 1);
  1591. border-radius:2px;
  1592. -moz-box-shadow:none;
  1593. -webkit-box-shadow:none;
  1594. box-shadow:none;
  1595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1596. font-weight:400;
  1597. font-style:normal;
  1598. font-size:12px;
  1599. color:#FFFFFF;
  1600. text-align:left;
  1601. }
  1602. #u6579 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:303px;
  1606. top:963px;
  1607. width:322px;
  1608. height:80px;
  1609. display:flex;
  1610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1611. font-weight:400;
  1612. font-style:normal;
  1613. font-size:12px;
  1614. color:#FFFFFF;
  1615. text-align:left;
  1616. }
  1617. #u6579 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:8px 15px 8px 15px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u6579_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. }
  1629. #u6580_div {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:99px;
  1635. height:20px;
  1636. background:inherit;
  1637. background-color:rgba(255, 255, 255, 0);
  1638. border:none;
  1639. border-radius:0px;
  1640. -moz-box-shadow:none;
  1641. -webkit-box-shadow:none;
  1642. box-shadow:none;
  1643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1644. font-weight:400;
  1645. font-style:normal;
  1646. color:#D7D7D7;
  1647. }
  1648. #u6580 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:314px;
  1652. top:974px;
  1653. width:99px;
  1654. height:20px;
  1655. display:flex;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. color:#D7D7D7;
  1660. }
  1661. #u6580 .text {
  1662. position:absolute;
  1663. align-self:flex-start;
  1664. padding:0px 0px 0px 0px;
  1665. box-sizing:border-box;
  1666. width:100%;
  1667. }
  1668. #u6580_text {
  1669. border-width:0px;
  1670. white-space:nowrap;
  1671. text-transform:none;
  1672. }
  1673. #u6581_div {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:60px;
  1679. height:30px;
  1680. background:inherit;
  1681. background-color:rgba(255, 255, 255, 1);
  1682. box-sizing:border-box;
  1683. border-width:1px;
  1684. border-style:solid;
  1685. border-color:rgba(170, 170, 170, 1);
  1686. border-radius:4px;
  1687. -moz-box-shadow:none;
  1688. -webkit-box-shadow:none;
  1689. box-shadow:none;
  1690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1691. font-weight:400;
  1692. font-style:normal;
  1693. font-size:14px;
  1694. }
  1695. #u6581 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:475px;
  1699. top:1056px;
  1700. width:60px;
  1701. height:30px;
  1702. display:flex;
  1703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1704. font-weight:400;
  1705. font-style:normal;
  1706. font-size:14px;
  1707. }
  1708. #u6581 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u6581_text {
  1716. border-width:0px;
  1717. word-wrap:break-word;
  1718. text-transform:none;
  1719. }