styles.css 34 KB

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