styles.css 40 KB

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