styles.css 39 KB

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