styles.css 31 KB

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