styles.css 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-80px;
  6. width:3163px;
  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. #u21967 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u21968_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1029px;
  33. height:1162px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  39. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  40. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  41. color:#1890FF;
  42. }
  43. #u21968 {
  44. border-width:0px;
  45. position:absolute;
  46. left:80px;
  47. top:48px;
  48. width:1029px;
  49. height:1162px;
  50. display:flex;
  51. color:#1890FF;
  52. }
  53. #u21968 .text {
  54. position:absolute;
  55. align-self:center;
  56. padding:2px 2px 2px 2px;
  57. box-sizing:border-box;
  58. width:100%;
  59. }
  60. #u21968_text {
  61. border-width:0px;
  62. word-wrap:break-word;
  63. text-transform:none;
  64. visibility:hidden;
  65. }
  66. #u21969_div {
  67. border-width:0px;
  68. position:absolute;
  69. left:0px;
  70. top:0px;
  71. width:71px;
  72. height:40px;
  73. background:inherit;
  74. background-color:rgba(255, 255, 255, 0);
  75. border:none;
  76. border-left:0px;
  77. border-top:0px;
  78. border-right:0px;
  79. border-radius:0px;
  80. border-bottom-right-radius:0px;
  81. border-bottom-left-radius:0px;
  82. -moz-box-shadow:none;
  83. -webkit-box-shadow:none;
  84. box-shadow:none;
  85. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  86. font-weight:500;
  87. font-style:normal;
  88. line-height:40px;
  89. }
  90. #u21969 {
  91. border-width:0px;
  92. position:absolute;
  93. left:116px;
  94. top:185px;
  95. width:71px;
  96. height:40px;
  97. display:flex;
  98. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  99. font-weight:500;
  100. font-style:normal;
  101. line-height:40px;
  102. }
  103. #u21969 .text {
  104. position:absolute;
  105. align-self:flex-start;
  106. padding:0px 0px 0px 0px;
  107. box-sizing:border-box;
  108. width:100%;
  109. }
  110. #u21969_text {
  111. border-width:0px;
  112. white-space:nowrap;
  113. text-transform:none;
  114. }
  115. #u21970_div {
  116. border-width:0px;
  117. position:absolute;
  118. left:0px;
  119. top:0px;
  120. width:60px;
  121. height:30px;
  122. background:inherit;
  123. background-color:rgba(24, 144, 255, 1);
  124. border:none;
  125. border-radius:4px;
  126. -moz-box-shadow:none;
  127. -webkit-box-shadow:none;
  128. box-shadow:none;
  129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  130. font-weight:400;
  131. font-style:normal;
  132. font-size:14px;
  133. color:#FFFFFF;
  134. }
  135. #u21970 {
  136. border-width:0px;
  137. position:absolute;
  138. left:1013px;
  139. top:190px;
  140. width:60px;
  141. height:30px;
  142. display:flex;
  143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  144. font-weight:400;
  145. font-style:normal;
  146. font-size:14px;
  147. color:#FFFFFF;
  148. }
  149. #u21970 .text {
  150. position:absolute;
  151. align-self:center;
  152. padding:2px 2px 2px 2px;
  153. box-sizing:border-box;
  154. width:100%;
  155. }
  156. #u21970_text {
  157. border-width:0px;
  158. word-wrap:break-word;
  159. text-transform:none;
  160. }
  161. #u21971 {
  162. border-width:0px;
  163. position:absolute;
  164. left:0px;
  165. top:0px;
  166. width:0px;
  167. height:0px;
  168. }
  169. #u21972 {
  170. border-width:0px;
  171. position:absolute;
  172. left:116px;
  173. top:230px;
  174. width:957px;
  175. height:90px;
  176. }
  177. #u21973_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:376px;
  183. height:30px;
  184. }
  185. #u21973 {
  186. border-width:0px;
  187. position:absolute;
  188. left:0px;
  189. top:0px;
  190. width:376px;
  191. height:30px;
  192. display:flex;
  193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. font-size:14px;
  197. color:#FFFFFF;
  198. }
  199. #u21973 .text {
  200. position:absolute;
  201. align-self:center;
  202. padding:2px 2px 2px 2px;
  203. box-sizing:border-box;
  204. width:100%;
  205. }
  206. #u21973_text {
  207. border-width:0px;
  208. word-wrap:break-word;
  209. text-transform:none;
  210. }
  211. #u21974_img {
  212. border-width:0px;
  213. position:absolute;
  214. left:0px;
  215. top:0px;
  216. width:376px;
  217. height:30px;
  218. }
  219. #u21974 {
  220. border-width:0px;
  221. position:absolute;
  222. left:376px;
  223. top:0px;
  224. width:376px;
  225. height:30px;
  226. display:flex;
  227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  228. font-weight:400;
  229. font-style:normal;
  230. font-size:14px;
  231. color:#FFFFFF;
  232. }
  233. #u21974 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:2px 2px 2px 2px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u21974_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. }
  245. #u21975_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:205px;
  251. height:30px;
  252. }
  253. #u21975 {
  254. border-width:0px;
  255. position:absolute;
  256. left:752px;
  257. top:0px;
  258. width:205px;
  259. height:30px;
  260. display:flex;
  261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  262. font-weight:400;
  263. font-style:normal;
  264. font-size:14px;
  265. color:#FFFFFF;
  266. }
  267. #u21975 .text {
  268. position:absolute;
  269. align-self:center;
  270. padding:2px 2px 2px 2px;
  271. box-sizing:border-box;
  272. width:100%;
  273. }
  274. #u21975_text {
  275. border-width:0px;
  276. word-wrap:break-word;
  277. text-transform:none;
  278. }
  279. #u21976_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:376px;
  285. height:30px;
  286. }
  287. #u21976 {
  288. border-width:0px;
  289. position:absolute;
  290. left:0px;
  291. top:30px;
  292. width:376px;
  293. height:30px;
  294. display:flex;
  295. }
  296. #u21976 .text {
  297. position:absolute;
  298. align-self:center;
  299. padding:2px 2px 2px 2px;
  300. box-sizing:border-box;
  301. width:100%;
  302. }
  303. #u21976_text {
  304. border-width:0px;
  305. word-wrap:break-word;
  306. text-transform:none;
  307. visibility:hidden;
  308. }
  309. #u21977_img {
  310. border-width:0px;
  311. position:absolute;
  312. left:0px;
  313. top:0px;
  314. width:376px;
  315. height:30px;
  316. }
  317. #u21977 {
  318. border-width:0px;
  319. position:absolute;
  320. left:376px;
  321. top:30px;
  322. width:376px;
  323. height:30px;
  324. display:flex;
  325. }
  326. #u21977 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u21977_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u21978_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:205px;
  345. height:30px;
  346. }
  347. #u21978 {
  348. border-width:0px;
  349. position:absolute;
  350. left:752px;
  351. top:30px;
  352. width:205px;
  353. height:30px;
  354. display:flex;
  355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  356. font-weight:400;
  357. font-style:normal;
  358. color:#D9001B;
  359. }
  360. #u21978 .text {
  361. position:absolute;
  362. align-self:center;
  363. padding:2px 2px 2px 2px;
  364. box-sizing:border-box;
  365. width:100%;
  366. }
  367. #u21978_text {
  368. border-width:0px;
  369. word-wrap:break-word;
  370. text-transform:none;
  371. }
  372. #u21979_img {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:376px;
  378. height:30px;
  379. }
  380. #u21979 {
  381. border-width:0px;
  382. position:absolute;
  383. left:0px;
  384. top:60px;
  385. width:376px;
  386. height:30px;
  387. display:flex;
  388. }
  389. #u21979 .text {
  390. position:absolute;
  391. align-self:center;
  392. padding:2px 2px 2px 2px;
  393. box-sizing:border-box;
  394. width:100%;
  395. }
  396. #u21979_text {
  397. border-width:0px;
  398. word-wrap:break-word;
  399. text-transform:none;
  400. visibility:hidden;
  401. }
  402. #u21980_img {
  403. border-width:0px;
  404. position:absolute;
  405. left:0px;
  406. top:0px;
  407. width:376px;
  408. height:30px;
  409. }
  410. #u21980 {
  411. border-width:0px;
  412. position:absolute;
  413. left:376px;
  414. top:60px;
  415. width:376px;
  416. height:30px;
  417. display:flex;
  418. }
  419. #u21980 .text {
  420. position:absolute;
  421. align-self:center;
  422. padding:2px 2px 2px 2px;
  423. box-sizing:border-box;
  424. width:100%;
  425. }
  426. #u21980_text {
  427. border-width:0px;
  428. word-wrap:break-word;
  429. text-transform:none;
  430. visibility:hidden;
  431. }
  432. #u21981_img {
  433. border-width:0px;
  434. position:absolute;
  435. left:0px;
  436. top:0px;
  437. width:205px;
  438. height:30px;
  439. }
  440. #u21981 {
  441. border-width:0px;
  442. position:absolute;
  443. left:752px;
  444. top:60px;
  445. width:205px;
  446. height:30px;
  447. display:flex;
  448. }
  449. #u21981 .text {
  450. position:absolute;
  451. align-self:center;
  452. padding:2px 2px 2px 2px;
  453. box-sizing:border-box;
  454. width:100%;
  455. }
  456. #u21981_text {
  457. border-width:0px;
  458. word-wrap:break-word;
  459. text-transform:none;
  460. visibility:hidden;
  461. }
  462. #u21982_input {
  463. position:absolute;
  464. left:0px;
  465. top:0px;
  466. width:335px;
  467. height:22px;
  468. padding:2px 2px 2px 2px;
  469. font-family:'ArialMT', 'Arial', sans-serif;
  470. font-weight:400;
  471. font-style:normal;
  472. font-size:13px;
  473. letter-spacing:normal;
  474. color:#000000;
  475. vertical-align:none;
  476. text-align:left;
  477. text-transform:none;
  478. background-color:transparent;
  479. border-color:transparent;
  480. }
  481. #u21982_input.disabled {
  482. position:absolute;
  483. left:0px;
  484. top:0px;
  485. width:335px;
  486. height:22px;
  487. padding:2px 2px 2px 2px;
  488. font-family:'ArialMT', 'Arial', sans-serif;
  489. font-weight:400;
  490. font-style:normal;
  491. font-size:13px;
  492. letter-spacing:normal;
  493. color:#000000;
  494. vertical-align:none;
  495. text-align:left;
  496. text-transform:none;
  497. background-color:transparent;
  498. border-color:transparent;
  499. }
  500. #u21982_div {
  501. border-width:0px;
  502. position:absolute;
  503. left:0px;
  504. top:0px;
  505. width:335px;
  506. height:22px;
  507. background:inherit;
  508. background-color:rgba(255, 255, 255, 1);
  509. border:none;
  510. border-radius:0px;
  511. -moz-box-shadow:none;
  512. -webkit-box-shadow:none;
  513. box-shadow:none;
  514. }
  515. #u21982 {
  516. border-width:0px;
  517. position:absolute;
  518. left:133px;
  519. top:264px;
  520. width:335px;
  521. height:22px;
  522. display:flex;
  523. }
  524. #u21982 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:2px 2px 2px 2px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u21982_div.disabled {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:335px;
  537. height:22px;
  538. background:inherit;
  539. background-color:rgba(240, 240, 240, 1);
  540. border:none;
  541. border-radius:0px;
  542. -moz-box-shadow:none;
  543. -webkit-box-shadow:none;
  544. box-shadow:none;
  545. }
  546. #u21982.disabled {
  547. }
  548. .u21982_input_option {
  549. }
  550. #u21983_input {
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:345px;
  555. height:22px;
  556. padding:2px 2px 2px 2px;
  557. font-family:'ArialMT', 'Arial', sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:13px;
  561. letter-spacing:normal;
  562. color:#000000;
  563. vertical-align:none;
  564. text-align:left;
  565. text-transform:none;
  566. background-color:transparent;
  567. border-color:transparent;
  568. }
  569. #u21983_input.disabled {
  570. position:absolute;
  571. left:0px;
  572. top:0px;
  573. width:345px;
  574. height:22px;
  575. padding:2px 2px 2px 2px;
  576. font-family:'ArialMT', 'Arial', sans-serif;
  577. font-weight:400;
  578. font-style:normal;
  579. font-size:13px;
  580. letter-spacing:normal;
  581. color:#000000;
  582. vertical-align:none;
  583. text-align:left;
  584. text-transform:none;
  585. background-color:transparent;
  586. border-color:transparent;
  587. }
  588. #u21983_div {
  589. border-width:0px;
  590. position:absolute;
  591. left:0px;
  592. top:0px;
  593. width:345px;
  594. height:22px;
  595. background:inherit;
  596. background-color:rgba(255, 255, 255, 1);
  597. border:none;
  598. border-radius:0px;
  599. -moz-box-shadow:none;
  600. -webkit-box-shadow:none;
  601. box-shadow:none;
  602. }
  603. #u21983 {
  604. border-width:0px;
  605. position:absolute;
  606. left:507px;
  607. top:264px;
  608. width:345px;
  609. height:22px;
  610. display:flex;
  611. }
  612. #u21983 .text {
  613. position:absolute;
  614. align-self:flex-start;
  615. padding:2px 2px 2px 2px;
  616. box-sizing:border-box;
  617. width:100%;
  618. }
  619. #u21983_div.disabled {
  620. border-width:0px;
  621. position:absolute;
  622. left:0px;
  623. top:0px;
  624. width:345px;
  625. height:22px;
  626. background:inherit;
  627. background-color:rgba(240, 240, 240, 1);
  628. border:none;
  629. border-radius:0px;
  630. -moz-box-shadow:none;
  631. -webkit-box-shadow:none;
  632. box-shadow:none;
  633. }
  634. #u21983.disabled {
  635. }
  636. .u21983_input_option {
  637. }
  638. #u21984_div {
  639. border-width:0px;
  640. position:absolute;
  641. left:0px;
  642. top:0px;
  643. width:73px;
  644. height:30px;
  645. background:inherit;
  646. background-color:rgba(255, 255, 255, 0);
  647. border:none;
  648. border-radius:0px;
  649. -moz-box-shadow:none;
  650. -webkit-box-shadow:none;
  651. box-shadow:none;
  652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  653. font-weight:400;
  654. font-style:normal;
  655. font-size:18px;
  656. color:#000000;
  657. line-height:30px;
  658. }
  659. #u21984 {
  660. border-width:0px;
  661. position:absolute;
  662. left:116px;
  663. top:80px;
  664. width:73px;
  665. height:30px;
  666. display:flex;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:18px;
  671. color:#000000;
  672. line-height:30px;
  673. }
  674. #u21984 .text {
  675. position:absolute;
  676. align-self:flex-start;
  677. padding:0px 0px 0px 0px;
  678. box-sizing:border-box;
  679. width:100%;
  680. }
  681. #u21984_text {
  682. border-width:0px;
  683. white-space:nowrap;
  684. text-transform:none;
  685. }
  686. #u21985 {
  687. border-width:0px;
  688. position:absolute;
  689. left:0px;
  690. top:0px;
  691. width:0px;
  692. height:0px;
  693. }
  694. #u21986_div {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:40px;
  700. height:40px;
  701. background:inherit;
  702. background-color:rgba(255, 255, 255, 0);
  703. border:none;
  704. border-top:0px;
  705. border-right:0px;
  706. border-bottom:0px;
  707. border-radius:0px;
  708. border-top-left-radius:0px;
  709. border-bottom-left-radius:0px;
  710. -moz-box-shadow:none;
  711. -webkit-box-shadow:none;
  712. box-shadow:none;
  713. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  714. font-weight:500;
  715. font-style:normal;
  716. font-size:18px;
  717. text-align:center;
  718. }
  719. #u21986 {
  720. border-width:0px;
  721. position:absolute;
  722. left:1069px;
  723. top:48px;
  724. width:40px;
  725. height:40px;
  726. display:flex;
  727. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  728. font-weight:500;
  729. font-style:normal;
  730. font-size:18px;
  731. text-align:center;
  732. }
  733. #u21986 .text {
  734. position:absolute;
  735. align-self:center;
  736. padding:5px 10px 5px 0px;
  737. box-sizing:border-box;
  738. width:100%;
  739. }
  740. #u21986_text {
  741. border-width:0px;
  742. word-wrap:break-word;
  743. text-transform:none;
  744. }
  745. #u21987_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:13px;
  751. height:13px;
  752. }
  753. #u21987 {
  754. border-width:0px;
  755. position:absolute;
  756. left:1056px;
  757. top:66px;
  758. width:13px;
  759. height:13px;
  760. display:flex;
  761. }
  762. #u21987 .text {
  763. position:absolute;
  764. align-self:center;
  765. padding:2px 2px 2px 2px;
  766. box-sizing:border-box;
  767. width:100%;
  768. }
  769. #u21987_text {
  770. border-width:0px;
  771. word-wrap:break-word;
  772. text-transform:none;
  773. visibility:hidden;
  774. }
  775. #u21988 {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:0px;
  781. height:0px;
  782. }
  783. #u21989_div {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:1029px;
  789. height:60px;
  790. background:inherit;
  791. background-color:rgba(255, 255, 255, 1);
  792. box-sizing:border-box;
  793. border-width:1px;
  794. border-style:solid;
  795. border-color:rgba(215, 215, 215, 1);
  796. border-radius:0px;
  797. -moz-box-shadow:none;
  798. -webkit-box-shadow:none;
  799. box-shadow:none;
  800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  801. font-weight:400;
  802. font-style:normal;
  803. font-size:14px;
  804. color:#AAAAAA;
  805. text-align:center;
  806. line-height:30px;
  807. }
  808. #u21989 {
  809. border-width:0px;
  810. position:absolute;
  811. left:80px;
  812. top:1150px;
  813. width:1029px;
  814. height:60px;
  815. display:flex;
  816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  817. font-weight:400;
  818. font-style:normal;
  819. font-size:14px;
  820. color:#AAAAAA;
  821. text-align:center;
  822. line-height:30px;
  823. }
  824. #u21989 .text {
  825. position:absolute;
  826. align-self:center;
  827. padding:5px 10px 5px 10px;
  828. box-sizing:border-box;
  829. width:100%;
  830. }
  831. #u21989_text {
  832. border-width:0px;
  833. word-wrap:break-word;
  834. text-transform:none;
  835. visibility:hidden;
  836. }
  837. #u21990_div {
  838. border-width:0px;
  839. position:absolute;
  840. left:0px;
  841. top:0px;
  842. width:80px;
  843. height:30px;
  844. background:inherit;
  845. background-color:rgba(24, 144, 255, 1);
  846. border:none;
  847. border-radius:4px;
  848. -moz-box-shadow:none;
  849. -webkit-box-shadow:none;
  850. box-shadow:none;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. font-size:14px;
  855. color:#FFFFFF;
  856. }
  857. #u21990 {
  858. border-width:0px;
  859. position:absolute;
  860. left:984px;
  861. top:1165px;
  862. width:80px;
  863. height:30px;
  864. display:flex;
  865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  866. font-weight:400;
  867. font-style:normal;
  868. font-size:14px;
  869. color:#FFFFFF;
  870. }
  871. #u21990 .text {
  872. position:absolute;
  873. align-self:center;
  874. padding:2px 2px 2px 2px;
  875. box-sizing:border-box;
  876. width:100%;
  877. }
  878. #u21990_text {
  879. border-width:0px;
  880. word-wrap:break-word;
  881. text-transform:none;
  882. }
  883. #u21991_div {
  884. border-width:0px;
  885. position:absolute;
  886. left:0px;
  887. top:0px;
  888. width:80px;
  889. height:30px;
  890. background:inherit;
  891. background-color:rgba(255, 255, 255, 1);
  892. box-sizing:border-box;
  893. border-width:1px;
  894. border-style:solid;
  895. border-color:rgba(170, 170, 170, 1);
  896. border-radius:4px;
  897. -moz-box-shadow:none;
  898. -webkit-box-shadow:none;
  899. box-shadow:none;
  900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  901. font-weight:400;
  902. font-style:normal;
  903. font-size:14px;
  904. }
  905. #u21991 {
  906. border-width:0px;
  907. position:absolute;
  908. left:885px;
  909. top:1165px;
  910. width:80px;
  911. height:30px;
  912. display:flex;
  913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  914. font-weight:400;
  915. font-style:normal;
  916. font-size:14px;
  917. }
  918. #u21991 .text {
  919. position:absolute;
  920. align-self:center;
  921. padding:2px 2px 2px 2px;
  922. box-sizing:border-box;
  923. width:100%;
  924. }
  925. #u21991_text {
  926. border-width:0px;
  927. word-wrap:break-word;
  928. text-transform:none;
  929. }
  930. #u21992_div {
  931. border-width:0px;
  932. position:absolute;
  933. left:0px;
  934. top:0px;
  935. width:211px;
  936. height:40px;
  937. background:inherit;
  938. background-color:rgba(255, 255, 255, 0);
  939. border:none;
  940. border-top:0px;
  941. border-right:0px;
  942. border-bottom:0px;
  943. border-radius:0px;
  944. border-top-left-radius:0px;
  945. border-bottom-left-radius:0px;
  946. -moz-box-shadow:none;
  947. -webkit-box-shadow:none;
  948. box-shadow:none;
  949. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  950. font-weight:500;
  951. font-style:normal;
  952. font-size:14px;
  953. }
  954. #u21992 {
  955. border-width:0px;
  956. position:absolute;
  957. left:116px;
  958. top:125px;
  959. width:211px;
  960. height:40px;
  961. display:flex;
  962. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  963. font-weight:500;
  964. font-style:normal;
  965. font-size:14px;
  966. }
  967. #u21992 .text {
  968. position:absolute;
  969. align-self:center;
  970. padding:5px 0px 5px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u21992_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u21993_div {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:267px;
  985. height:70px;
  986. background:inherit;
  987. background-color:rgba(255, 255, 255, 0);
  988. border:none;
  989. border-top:0px;
  990. border-right:0px;
  991. border-bottom:0px;
  992. border-radius:0px;
  993. border-top-left-radius:0px;
  994. border-bottom-left-radius:0px;
  995. -moz-box-shadow:none;
  996. -webkit-box-shadow:none;
  997. box-shadow:none;
  998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  999. font-weight:400;
  1000. font-style:normal;
  1001. font-size:14px;
  1002. color:#D9001B;
  1003. line-height:30px;
  1004. }
  1005. #u21993 {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:757px;
  1009. top:110px;
  1010. width:267px;
  1011. height:70px;
  1012. display:flex;
  1013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1014. font-weight:400;
  1015. font-style:normal;
  1016. font-size:14px;
  1017. color:#D9001B;
  1018. line-height:30px;
  1019. }
  1020. #u21993 .text {
  1021. position:absolute;
  1022. align-self:center;
  1023. padding:5px 0px 5px 0px;
  1024. box-sizing:border-box;
  1025. width:100%;
  1026. }
  1027. #u21993_text {
  1028. border-width:0px;
  1029. white-space:nowrap;
  1030. text-transform:none;
  1031. }
  1032. #u21994 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:0px;
  1038. height:0px;
  1039. }
  1040. #u21995_div {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:1029px;
  1046. height:1162px;
  1047. background:inherit;
  1048. background-color:rgba(255, 255, 255, 1);
  1049. border:none;
  1050. border-radius:0px;
  1051. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1052. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1053. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1054. color:#1890FF;
  1055. }
  1056. #u21995 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:1155px;
  1060. top:48px;
  1061. width:1029px;
  1062. height:1162px;
  1063. display:flex;
  1064. color:#1890FF;
  1065. }
  1066. #u21995 .text {
  1067. position:absolute;
  1068. align-self:center;
  1069. padding:2px 2px 2px 2px;
  1070. box-sizing:border-box;
  1071. width:100%;
  1072. }
  1073. #u21995_text {
  1074. border-width:0px;
  1075. word-wrap:break-word;
  1076. text-transform:none;
  1077. visibility:hidden;
  1078. }
  1079. #u21996 {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:0px;
  1083. top:0px;
  1084. width:0px;
  1085. height:0px;
  1086. }
  1087. #u21997 {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:1191px;
  1091. top:235px;
  1092. width:957px;
  1093. height:90px;
  1094. }
  1095. #u21998_img {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:0px;
  1099. top:0px;
  1100. width:328px;
  1101. height:30px;
  1102. }
  1103. #u21998 {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:0px;
  1107. top:0px;
  1108. width:328px;
  1109. height:30px;
  1110. display:flex;
  1111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1112. font-weight:400;
  1113. font-style:normal;
  1114. font-size:14px;
  1115. color:#FFFFFF;
  1116. }
  1117. #u21998 .text {
  1118. position:absolute;
  1119. align-self:center;
  1120. padding:2px 2px 2px 2px;
  1121. box-sizing:border-box;
  1122. width:100%;
  1123. }
  1124. #u21998_text {
  1125. border-width:0px;
  1126. word-wrap:break-word;
  1127. text-transform:none;
  1128. }
  1129. #u21999_img {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:0px;
  1133. top:0px;
  1134. width:328px;
  1135. height:30px;
  1136. }
  1137. #u21999 {
  1138. border-width:0px;
  1139. position:absolute;
  1140. left:328px;
  1141. top:0px;
  1142. width:328px;
  1143. height:30px;
  1144. display:flex;
  1145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1146. font-weight:400;
  1147. font-style:normal;
  1148. font-size:14px;
  1149. color:#FFFFFF;
  1150. }
  1151. #u21999 .text {
  1152. position:absolute;
  1153. align-self:center;
  1154. padding:2px 2px 2px 2px;
  1155. box-sizing:border-box;
  1156. width:100%;
  1157. }
  1158. #u21999_text {
  1159. border-width:0px;
  1160. word-wrap:break-word;
  1161. text-transform:none;
  1162. }
  1163. #u22000_img {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:0px;
  1167. top:0px;
  1168. width:301px;
  1169. height:30px;
  1170. }
  1171. #u22000 {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:656px;
  1175. top:0px;
  1176. width:301px;
  1177. height:30px;
  1178. display:flex;
  1179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1180. font-weight:400;
  1181. font-style:normal;
  1182. font-size:14px;
  1183. color:#FFFFFF;
  1184. }
  1185. #u22000 .text {
  1186. position:absolute;
  1187. align-self:center;
  1188. padding:2px 2px 2px 2px;
  1189. box-sizing:border-box;
  1190. width:100%;
  1191. }
  1192. #u22000_text {
  1193. border-width:0px;
  1194. word-wrap:break-word;
  1195. text-transform:none;
  1196. }
  1197. #u22001_img {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:328px;
  1203. height:30px;
  1204. }
  1205. #u22001 {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:0px;
  1209. top:30px;
  1210. width:328px;
  1211. height:30px;
  1212. display:flex;
  1213. }
  1214. #u22001 .text {
  1215. position:absolute;
  1216. align-self:center;
  1217. padding:2px 2px 2px 2px;
  1218. box-sizing:border-box;
  1219. width:100%;
  1220. }
  1221. #u22001_text {
  1222. border-width:0px;
  1223. word-wrap:break-word;
  1224. text-transform:none;
  1225. visibility:hidden;
  1226. }
  1227. #u22002_img {
  1228. border-width:0px;
  1229. position:absolute;
  1230. left:0px;
  1231. top:0px;
  1232. width:328px;
  1233. height:30px;
  1234. }
  1235. #u22002 {
  1236. border-width:0px;
  1237. position:absolute;
  1238. left:328px;
  1239. top:30px;
  1240. width:328px;
  1241. height:30px;
  1242. display:flex;
  1243. }
  1244. #u22002 .text {
  1245. position:absolute;
  1246. align-self:center;
  1247. padding:2px 2px 2px 2px;
  1248. box-sizing:border-box;
  1249. width:100%;
  1250. }
  1251. #u22002_text {
  1252. border-width:0px;
  1253. word-wrap:break-word;
  1254. text-transform:none;
  1255. visibility:hidden;
  1256. }
  1257. #u22003_img {
  1258. border-width:0px;
  1259. position:absolute;
  1260. left:0px;
  1261. top:0px;
  1262. width:301px;
  1263. height:30px;
  1264. }
  1265. #u22003 {
  1266. border-width:0px;
  1267. position:absolute;
  1268. left:656px;
  1269. top:30px;
  1270. width:301px;
  1271. height:30px;
  1272. display:flex;
  1273. }
  1274. #u22003 .text {
  1275. position:absolute;
  1276. align-self:center;
  1277. padding:2px 2px 2px 2px;
  1278. box-sizing:border-box;
  1279. width:100%;
  1280. }
  1281. #u22003_text {
  1282. border-width:0px;
  1283. word-wrap:break-word;
  1284. text-transform:none;
  1285. }
  1286. #u22004_img {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:328px;
  1292. height:30px;
  1293. }
  1294. #u22004 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:60px;
  1299. width:328px;
  1300. height:30px;
  1301. display:flex;
  1302. }
  1303. #u22004 .text {
  1304. position:absolute;
  1305. align-self:center;
  1306. padding:2px 2px 2px 2px;
  1307. box-sizing:border-box;
  1308. width:100%;
  1309. }
  1310. #u22004_text {
  1311. border-width:0px;
  1312. word-wrap:break-word;
  1313. text-transform:none;
  1314. visibility:hidden;
  1315. }
  1316. #u22005_img {
  1317. border-width:0px;
  1318. position:absolute;
  1319. left:0px;
  1320. top:0px;
  1321. width:328px;
  1322. height:30px;
  1323. }
  1324. #u22005 {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:328px;
  1328. top:60px;
  1329. width:328px;
  1330. height:30px;
  1331. display:flex;
  1332. }
  1333. #u22005 .text {
  1334. position:absolute;
  1335. align-self:center;
  1336. padding:2px 2px 2px 2px;
  1337. box-sizing:border-box;
  1338. width:100%;
  1339. }
  1340. #u22005_text {
  1341. border-width:0px;
  1342. word-wrap:break-word;
  1343. text-transform:none;
  1344. visibility:hidden;
  1345. }
  1346. #u22006_img {
  1347. border-width:0px;
  1348. position:absolute;
  1349. left:0px;
  1350. top:0px;
  1351. width:301px;
  1352. height:30px;
  1353. }
  1354. #u22006 {
  1355. border-width:0px;
  1356. position:absolute;
  1357. left:656px;
  1358. top:60px;
  1359. width:301px;
  1360. height:30px;
  1361. display:flex;
  1362. }
  1363. #u22006 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:2px 2px 2px 2px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u22006_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. visibility:hidden;
  1375. }
  1376. #u22007_div {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:0px;
  1380. top:0px;
  1381. width:73px;
  1382. height:30px;
  1383. background:inherit;
  1384. background-color:rgba(255, 255, 255, 0);
  1385. border:none;
  1386. border-radius:0px;
  1387. -moz-box-shadow:none;
  1388. -webkit-box-shadow:none;
  1389. box-shadow:none;
  1390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1391. font-weight:400;
  1392. font-style:normal;
  1393. font-size:18px;
  1394. color:#000000;
  1395. line-height:30px;
  1396. }
  1397. #u22007 {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:1191px;
  1401. top:80px;
  1402. width:73px;
  1403. height:30px;
  1404. display:flex;
  1405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1406. font-weight:400;
  1407. font-style:normal;
  1408. font-size:18px;
  1409. color:#000000;
  1410. line-height:30px;
  1411. }
  1412. #u22007 .text {
  1413. position:absolute;
  1414. align-self:flex-start;
  1415. padding:0px 0px 0px 0px;
  1416. box-sizing:border-box;
  1417. width:100%;
  1418. }
  1419. #u22007_text {
  1420. border-width:0px;
  1421. white-space:nowrap;
  1422. text-transform:none;
  1423. }
  1424. #u22008 {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:0px;
  1428. top:0px;
  1429. width:0px;
  1430. height:0px;
  1431. }
  1432. #u22009_div {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:40px;
  1438. height:40px;
  1439. background:inherit;
  1440. background-color:rgba(255, 255, 255, 0);
  1441. border:none;
  1442. border-top:0px;
  1443. border-right:0px;
  1444. border-bottom:0px;
  1445. border-radius:0px;
  1446. border-top-left-radius:0px;
  1447. border-bottom-left-radius:0px;
  1448. -moz-box-shadow:none;
  1449. -webkit-box-shadow:none;
  1450. box-shadow:none;
  1451. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1452. font-weight:500;
  1453. font-style:normal;
  1454. font-size:18px;
  1455. text-align:center;
  1456. }
  1457. #u22009 {
  1458. border-width:0px;
  1459. position:absolute;
  1460. left:2144px;
  1461. top:48px;
  1462. width:40px;
  1463. height:40px;
  1464. display:flex;
  1465. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1466. font-weight:500;
  1467. font-style:normal;
  1468. font-size:18px;
  1469. text-align:center;
  1470. }
  1471. #u22009 .text {
  1472. position:absolute;
  1473. align-self:center;
  1474. padding:5px 10px 5px 0px;
  1475. box-sizing:border-box;
  1476. width:100%;
  1477. }
  1478. #u22009_text {
  1479. border-width:0px;
  1480. word-wrap:break-word;
  1481. text-transform:none;
  1482. }
  1483. #u22010_img {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:0px;
  1487. top:0px;
  1488. width:13px;
  1489. height:13px;
  1490. }
  1491. #u22010 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:2131px;
  1495. top:66px;
  1496. width:13px;
  1497. height:13px;
  1498. display:flex;
  1499. }
  1500. #u22010 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:2px 2px 2px 2px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u22010_text {
  1508. border-width:0px;
  1509. word-wrap:break-word;
  1510. text-transform:none;
  1511. visibility:hidden;
  1512. }
  1513. #u22011 {
  1514. border-width:0px;
  1515. position:absolute;
  1516. left:0px;
  1517. top:0px;
  1518. width:0px;
  1519. height:0px;
  1520. }
  1521. #u22012_div {
  1522. border-width:0px;
  1523. position:absolute;
  1524. left:0px;
  1525. top:0px;
  1526. width:1029px;
  1527. height:60px;
  1528. background:inherit;
  1529. background-color:rgba(255, 255, 255, 1);
  1530. box-sizing:border-box;
  1531. border-width:1px;
  1532. border-style:solid;
  1533. border-color:rgba(215, 215, 215, 1);
  1534. border-radius:0px;
  1535. -moz-box-shadow:none;
  1536. -webkit-box-shadow:none;
  1537. box-shadow:none;
  1538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1539. font-weight:400;
  1540. font-style:normal;
  1541. font-size:14px;
  1542. color:#AAAAAA;
  1543. text-align:center;
  1544. line-height:30px;
  1545. }
  1546. #u22012 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:1155px;
  1550. top:1150px;
  1551. width:1029px;
  1552. height:60px;
  1553. display:flex;
  1554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1555. font-weight:400;
  1556. font-style:normal;
  1557. font-size:14px;
  1558. color:#AAAAAA;
  1559. text-align:center;
  1560. line-height:30px;
  1561. }
  1562. #u22012 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:5px 10px 5px 10px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u22012_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u22013_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:80px;
  1581. height:30px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 1);
  1584. box-sizing:border-box;
  1585. border-width:1px;
  1586. border-style:solid;
  1587. border-color:rgba(170, 170, 170, 1);
  1588. border-radius:4px;
  1589. -moz-box-shadow:none;
  1590. -webkit-box-shadow:none;
  1591. box-shadow:none;
  1592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1593. font-weight:400;
  1594. font-style:normal;
  1595. font-size:14px;
  1596. }
  1597. #u22013 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:2064px;
  1601. top:1165px;
  1602. width:80px;
  1603. height:30px;
  1604. display:flex;
  1605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1606. font-weight:400;
  1607. font-style:normal;
  1608. font-size:14px;
  1609. }
  1610. #u22013 .text {
  1611. position:absolute;
  1612. align-self:center;
  1613. padding:2px 2px 2px 2px;
  1614. box-sizing:border-box;
  1615. width:100%;
  1616. }
  1617. #u22013_text {
  1618. border-width:0px;
  1619. word-wrap:break-word;
  1620. text-transform:none;
  1621. }
  1622. #u22014_div {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:0px;
  1626. top:0px;
  1627. width:957px;
  1628. height:40px;
  1629. background:inherit;
  1630. background-color:rgba(129, 211, 248, 0.0980392156862745);
  1631. box-sizing:border-box;
  1632. border-width:1px;
  1633. border-style:solid;
  1634. border-color:rgba(24, 144, 255, 1);
  1635. border-radius:4px;
  1636. -moz-box-shadow:none;
  1637. -webkit-box-shadow:none;
  1638. box-shadow:none;
  1639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1640. font-weight:400;
  1641. font-style:normal;
  1642. color:#1890FF;
  1643. line-height:40px;
  1644. }
  1645. #u22014 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:1191px;
  1649. top:175px;
  1650. width:957px;
  1651. height:40px;
  1652. display:flex;
  1653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1654. font-weight:400;
  1655. font-style:normal;
  1656. color:#1890FF;
  1657. line-height:40px;
  1658. }
  1659. #u22014 .text {
  1660. position:absolute;
  1661. align-self:flex-start;
  1662. padding:0px 0px 0px 10px;
  1663. box-sizing:border-box;
  1664. width:100%;
  1665. }
  1666. #u22014_text {
  1667. border-width:0px;
  1668. word-wrap:break-word;
  1669. text-transform:none;
  1670. }
  1671. #u22015_div {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:211px;
  1677. height:40px;
  1678. background:inherit;
  1679. background-color:rgba(255, 255, 255, 0);
  1680. border:none;
  1681. border-top:0px;
  1682. border-right:0px;
  1683. border-bottom:0px;
  1684. border-radius:0px;
  1685. border-top-left-radius:0px;
  1686. border-bottom-left-radius:0px;
  1687. -moz-box-shadow:none;
  1688. -webkit-box-shadow:none;
  1689. box-shadow:none;
  1690. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1691. font-weight:500;
  1692. font-style:normal;
  1693. font-size:14px;
  1694. }
  1695. #u22015 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:1191px;
  1699. top:125px;
  1700. width:211px;
  1701. height:40px;
  1702. display:flex;
  1703. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1704. font-weight:500;
  1705. font-style:normal;
  1706. font-size:14px;
  1707. }
  1708. #u22015 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:5px 0px 5px 0px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u22015_text {
  1716. border-width:0px;
  1717. white-space:nowrap;
  1718. text-transform:none;
  1719. }
  1720. #u22016 {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:0px;
  1726. height:0px;
  1727. }
  1728. #u22017_div {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:1029px;
  1734. height:1162px;
  1735. background:inherit;
  1736. background-color:rgba(255, 255, 255, 1);
  1737. border:none;
  1738. border-radius:0px;
  1739. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1740. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1741. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1742. color:#1890FF;
  1743. }
  1744. #u22017 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:2214px;
  1748. top:48px;
  1749. width:1029px;
  1750. height:1162px;
  1751. display:flex;
  1752. color:#1890FF;
  1753. }
  1754. #u22017 .text {
  1755. position:absolute;
  1756. align-self:center;
  1757. padding:2px 2px 2px 2px;
  1758. box-sizing:border-box;
  1759. width:100%;
  1760. }
  1761. #u22017_text {
  1762. border-width:0px;
  1763. word-wrap:break-word;
  1764. text-transform:none;
  1765. visibility:hidden;
  1766. }
  1767. #u22018_div {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:73px;
  1773. height:30px;
  1774. background:inherit;
  1775. background-color:rgba(255, 255, 255, 0);
  1776. border:none;
  1777. border-radius:0px;
  1778. -moz-box-shadow:none;
  1779. -webkit-box-shadow:none;
  1780. box-shadow:none;
  1781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1782. font-weight:400;
  1783. font-style:normal;
  1784. font-size:18px;
  1785. color:#000000;
  1786. line-height:30px;
  1787. }
  1788. #u22018 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:2250px;
  1792. top:80px;
  1793. width:73px;
  1794. height:30px;
  1795. display:flex;
  1796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1797. font-weight:400;
  1798. font-style:normal;
  1799. font-size:18px;
  1800. color:#000000;
  1801. line-height:30px;
  1802. }
  1803. #u22018 .text {
  1804. position:absolute;
  1805. align-self:flex-start;
  1806. padding:0px 0px 0px 0px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u22018_text {
  1811. border-width:0px;
  1812. white-space:nowrap;
  1813. text-transform:none;
  1814. }
  1815. #u22019 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:0px;
  1821. height:0px;
  1822. }
  1823. #u22020_div {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:40px;
  1829. height:40px;
  1830. background:inherit;
  1831. background-color:rgba(255, 255, 255, 0);
  1832. border:none;
  1833. border-top:0px;
  1834. border-right:0px;
  1835. border-bottom:0px;
  1836. border-radius:0px;
  1837. border-top-left-radius:0px;
  1838. border-bottom-left-radius:0px;
  1839. -moz-box-shadow:none;
  1840. -webkit-box-shadow:none;
  1841. box-shadow:none;
  1842. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1843. font-weight:500;
  1844. font-style:normal;
  1845. font-size:18px;
  1846. text-align:center;
  1847. }
  1848. #u22020 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:3203px;
  1852. top:48px;
  1853. width:40px;
  1854. height:40px;
  1855. display:flex;
  1856. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1857. font-weight:500;
  1858. font-style:normal;
  1859. font-size:18px;
  1860. text-align:center;
  1861. }
  1862. #u22020 .text {
  1863. position:absolute;
  1864. align-self:center;
  1865. padding:5px 10px 5px 0px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u22020_text {
  1870. border-width:0px;
  1871. word-wrap:break-word;
  1872. text-transform:none;
  1873. }
  1874. #u22021_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:13px;
  1880. height:13px;
  1881. }
  1882. #u22021 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:3190px;
  1886. top:66px;
  1887. width:13px;
  1888. height:13px;
  1889. display:flex;
  1890. }
  1891. #u22021 .text {
  1892. position:absolute;
  1893. align-self:center;
  1894. padding:2px 2px 2px 2px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u22021_text {
  1899. border-width:0px;
  1900. word-wrap:break-word;
  1901. text-transform:none;
  1902. visibility:hidden;
  1903. }
  1904. #u22022 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:0px;
  1910. height:0px;
  1911. }
  1912. #u22023_div {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:1029px;
  1918. height:60px;
  1919. background:inherit;
  1920. background-color:rgba(255, 255, 255, 1);
  1921. box-sizing:border-box;
  1922. border-width:1px;
  1923. border-style:solid;
  1924. border-color:rgba(215, 215, 215, 1);
  1925. border-radius:0px;
  1926. -moz-box-shadow:none;
  1927. -webkit-box-shadow:none;
  1928. box-shadow:none;
  1929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1930. font-weight:400;
  1931. font-style:normal;
  1932. font-size:14px;
  1933. color:#AAAAAA;
  1934. text-align:center;
  1935. line-height:30px;
  1936. }
  1937. #u22023 {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:2214px;
  1941. top:1150px;
  1942. width:1029px;
  1943. height:60px;
  1944. display:flex;
  1945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:14px;
  1949. color:#AAAAAA;
  1950. text-align:center;
  1951. line-height:30px;
  1952. }
  1953. #u22023 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:5px 10px 5px 10px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u22023_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. visibility:hidden;
  1965. }
  1966. #u22024_div {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:80px;
  1972. height:30px;
  1973. background:inherit;
  1974. background-color:rgba(255, 255, 255, 1);
  1975. box-sizing:border-box;
  1976. border-width:1px;
  1977. border-style:solid;
  1978. border-color:rgba(170, 170, 170, 1);
  1979. border-radius:4px;
  1980. -moz-box-shadow:none;
  1981. -webkit-box-shadow:none;
  1982. box-shadow:none;
  1983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1984. font-weight:400;
  1985. font-style:normal;
  1986. font-size:14px;
  1987. }
  1988. #u22024 {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:3123px;
  1992. top:1165px;
  1993. width:80px;
  1994. height:30px;
  1995. display:flex;
  1996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1997. font-weight:400;
  1998. font-style:normal;
  1999. font-size:14px;
  2000. }
  2001. #u22024 .text {
  2002. position:absolute;
  2003. align-self:center;
  2004. padding:2px 2px 2px 2px;
  2005. box-sizing:border-box;
  2006. width:100%;
  2007. }
  2008. #u22024_text {
  2009. border-width:0px;
  2010. word-wrap:break-word;
  2011. text-transform:none;
  2012. }
  2013. #u22025_div {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:944px;
  2019. height:40px;
  2020. background:inherit;
  2021. background-color:rgba(129, 211, 248, 0.0980392156862745);
  2022. box-sizing:border-box;
  2023. border-width:1px;
  2024. border-style:solid;
  2025. border-color:rgba(24, 144, 255, 1);
  2026. border-radius:4px;
  2027. -moz-box-shadow:none;
  2028. -webkit-box-shadow:none;
  2029. box-shadow:none;
  2030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2031. font-weight:400;
  2032. font-style:normal;
  2033. color:#1890FF;
  2034. line-height:40px;
  2035. }
  2036. #u22025 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:2250px;
  2040. top:175px;
  2041. width:944px;
  2042. height:40px;
  2043. display:flex;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. color:#1890FF;
  2048. line-height:40px;
  2049. }
  2050. #u22025 .text {
  2051. position:absolute;
  2052. align-self:flex-start;
  2053. padding:0px 0px 0px 10px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u22025_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u22026_img {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:127px;
  2068. height:169px;
  2069. }
  2070. #u22026 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:2663px;
  2074. top:281px;
  2075. width:127px;
  2076. height:169px;
  2077. display:flex;
  2078. }
  2079. #u22026 .text {
  2080. position:absolute;
  2081. align-self:center;
  2082. padding:2px 2px 2px 2px;
  2083. box-sizing:border-box;
  2084. width:100%;
  2085. }
  2086. #u22026_text {
  2087. border-width:0px;
  2088. word-wrap:break-word;
  2089. text-transform:none;
  2090. visibility:hidden;
  2091. }
  2092. #u22027 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:2250px;
  2096. top:235px;
  2097. width:944px;
  2098. height:30px;
  2099. }
  2100. #u22028_img {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:324px;
  2106. height:30px;
  2107. }
  2108. #u22028 {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:324px;
  2114. height:30px;
  2115. display:flex;
  2116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2117. font-weight:400;
  2118. font-style:normal;
  2119. font-size:14px;
  2120. color:#FFFFFF;
  2121. }
  2122. #u22028 .text {
  2123. position:absolute;
  2124. align-self:center;
  2125. padding:2px 2px 2px 2px;
  2126. box-sizing:border-box;
  2127. width:100%;
  2128. }
  2129. #u22028_text {
  2130. border-width:0px;
  2131. word-wrap:break-word;
  2132. text-transform:none;
  2133. }
  2134. #u22029_img {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:0px;
  2139. width:324px;
  2140. height:30px;
  2141. }
  2142. #u22029 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:324px;
  2146. top:0px;
  2147. width:324px;
  2148. height:30px;
  2149. display:flex;
  2150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2151. font-weight:400;
  2152. font-style:normal;
  2153. font-size:14px;
  2154. color:#FFFFFF;
  2155. }
  2156. #u22029 .text {
  2157. position:absolute;
  2158. align-self:center;
  2159. padding:2px 2px 2px 2px;
  2160. box-sizing:border-box;
  2161. width:100%;
  2162. }
  2163. #u22029_text {
  2164. border-width:0px;
  2165. word-wrap:break-word;
  2166. text-transform:none;
  2167. }
  2168. #u22030_img {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:296px;
  2174. height:30px;
  2175. }
  2176. #u22030 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:648px;
  2180. top:0px;
  2181. width:296px;
  2182. height:30px;
  2183. display:flex;
  2184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2185. font-weight:400;
  2186. font-style:normal;
  2187. font-size:14px;
  2188. color:#FFFFFF;
  2189. }
  2190. #u22030 .text {
  2191. position:absolute;
  2192. align-self:center;
  2193. padding:2px 2px 2px 2px;
  2194. box-sizing:border-box;
  2195. width:100%;
  2196. }
  2197. #u22030_text {
  2198. border-width:0px;
  2199. word-wrap:break-word;
  2200. text-transform:none;
  2201. }
  2202. #u22031_div {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:0px;
  2206. top:0px;
  2207. width:211px;
  2208. height:40px;
  2209. background:inherit;
  2210. background-color:rgba(255, 255, 255, 0);
  2211. border:none;
  2212. border-top:0px;
  2213. border-right:0px;
  2214. border-bottom:0px;
  2215. border-radius:0px;
  2216. border-top-left-radius:0px;
  2217. border-bottom-left-radius:0px;
  2218. -moz-box-shadow:none;
  2219. -webkit-box-shadow:none;
  2220. box-shadow:none;
  2221. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2222. font-weight:500;
  2223. font-style:normal;
  2224. font-size:14px;
  2225. }
  2226. #u22031 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:2250px;
  2230. top:125px;
  2231. width:211px;
  2232. height:40px;
  2233. display:flex;
  2234. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2235. font-weight:500;
  2236. font-style:normal;
  2237. font-size:14px;
  2238. }
  2239. #u22031 .text {
  2240. position:absolute;
  2241. align-self:center;
  2242. padding:5px 0px 5px 0px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u22031_text {
  2247. border-width:0px;
  2248. white-space:nowrap;
  2249. text-transform:none;
  2250. }