styles.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797
  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. #u5591_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. #u5591 {
  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. #u5591 .text {
  61. position:absolute;
  62. align-self:center;
  63. padding:5px 10px 5px 10px;
  64. box-sizing:border-box;
  65. width:100%;
  66. }
  67. #u5591_text {
  68. border-width:0px;
  69. word-wrap:break-word;
  70. text-transform:none;
  71. visibility:hidden;
  72. }
  73. #u5592_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. #u5592 {
  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. #u5592 .text {
  111. position:absolute;
  112. align-self:center;
  113. padding:5px 10px 5px 0px;
  114. box-sizing:border-box;
  115. width:100%;
  116. }
  117. #u5592_text {
  118. border-width:0px;
  119. white-space:nowrap;
  120. text-transform:none;
  121. }
  122. #u5593 {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:0px;
  128. height:0px;
  129. }
  130. #u5594_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. #u5594 {
  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. #u5594 .text {
  170. position:absolute;
  171. align-self:center;
  172. padding:5px 10px 5px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u5594_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u5595_img {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:13px;
  187. height:13px;
  188. }
  189. #u5595 {
  190. border-width:0px;
  191. position:absolute;
  192. left:620px;
  193. top:59px;
  194. width:13px;
  195. height:13px;
  196. display:flex;
  197. }
  198. #u5595 .text {
  199. position:absolute;
  200. align-self:center;
  201. padding:2px 2px 2px 2px;
  202. box-sizing:border-box;
  203. width:100%;
  204. }
  205. #u5595_text {
  206. border-width:0px;
  207. word-wrap:break-word;
  208. text-transform:none;
  209. visibility:hidden;
  210. }
  211. #u5596 {
  212. border-width:0px;
  213. position:absolute;
  214. left:0px;
  215. top:0px;
  216. width:0px;
  217. height:0px;
  218. }
  219. #u5597_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. #u5597 {
  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. #u5597 .text {
  261. position:absolute;
  262. align-self:center;
  263. padding:5px 10px 5px 10px;
  264. box-sizing:border-box;
  265. width:100%;
  266. }
  267. #u5597_text {
  268. border-width:0px;
  269. word-wrap:break-word;
  270. text-transform:none;
  271. visibility:hidden;
  272. }
  273. #u5598_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. #u5598 {
  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. #u5598 .text {
  308. position:absolute;
  309. align-self:center;
  310. padding:2px 2px 2px 2px;
  311. box-sizing:border-box;
  312. width:100%;
  313. }
  314. #u5598_text {
  315. border-width:0px;
  316. word-wrap:break-word;
  317. text-transform:none;
  318. }
  319. #u5599_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. #u5599 {
  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. #u5599 .text {
  355. position:absolute;
  356. align-self:center;
  357. padding:2px 2px 2px 2px;
  358. box-sizing:border-box;
  359. width:100%;
  360. }
  361. #u5599_text {
  362. border-width:0px;
  363. word-wrap:break-word;
  364. text-transform:none;
  365. }
  366. #u5600_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. #u5600 {
  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. #u5600 .text {
  404. position:absolute;
  405. align-self:center;
  406. padding:5px 10px 5px 0px;
  407. box-sizing:border-box;
  408. width:100%;
  409. }
  410. #u5600_text {
  411. border-width:0px;
  412. white-space:nowrap;
  413. text-transform:none;
  414. }
  415. #u5601 {
  416. border-width:0px;
  417. position:absolute;
  418. left:0px;
  419. top:0px;
  420. width:0px;
  421. height:0px;
  422. }
  423. #u5602_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:'Microsoft YaHei', sans-serif;
  441. font-weight:400;
  442. font-style:normal;
  443. font-size:14px;
  444. color:#CCCCCC;
  445. text-align:left;
  446. }
  447. #u5602 {
  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:'Microsoft YaHei', sans-serif;
  456. font-weight:400;
  457. font-style:normal;
  458. font-size:14px;
  459. color:#CCCCCC;
  460. text-align:left;
  461. }
  462. #u5602 .text {
  463. position:absolute;
  464. align-self:center;
  465. padding:2px 8px 2px 8px;
  466. box-sizing:border-box;
  467. width:100%;
  468. }
  469. #u5602_text {
  470. border-width:0px;
  471. word-wrap:break-word;
  472. text-transform:none;
  473. visibility:hidden;
  474. }
  475. #u5603_input {
  476. position:absolute;
  477. left:0px;
  478. top:0px;
  479. width:266px;
  480. height:38px;
  481. padding:2px 2px 2px 2px;
  482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  483. font-weight:400;
  484. font-style:normal;
  485. font-size:14px;
  486. letter-spacing:normal;
  487. color:#000000;
  488. vertical-align:none;
  489. text-align:left;
  490. text-transform:none;
  491. background-color:transparent;
  492. border-color:transparent;
  493. }
  494. #u5603_input.disabled {
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:266px;
  499. height:38px;
  500. padding:2px 2px 2px 2px;
  501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  502. font-weight:400;
  503. font-style:normal;
  504. font-size:14px;
  505. letter-spacing:normal;
  506. color:#000000;
  507. vertical-align:none;
  508. text-align:left;
  509. text-transform:none;
  510. background-color:transparent;
  511. border-color:transparent;
  512. }
  513. #u5603_div {
  514. border-width:0px;
  515. position:absolute;
  516. left:0px;
  517. top:0px;
  518. width:266px;
  519. height:38px;
  520. background:inherit;
  521. background-color:rgba(255, 255, 255, 1);
  522. border:none;
  523. border-radius:0px;
  524. -moz-box-shadow:none;
  525. -webkit-box-shadow:none;
  526. box-shadow:none;
  527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  528. font-weight:400;
  529. font-style:normal;
  530. font-size:14px;
  531. }
  532. #u5603 {
  533. border-width:0px;
  534. position:absolute;
  535. left:129px;
  536. top:148px;
  537. width:266px;
  538. height:38px;
  539. display:flex;
  540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  541. font-weight:400;
  542. font-style:normal;
  543. font-size:14px;
  544. }
  545. #u5603 .text {
  546. position:absolute;
  547. align-self:center;
  548. padding:2px 2px 2px 2px;
  549. box-sizing:border-box;
  550. width:100%;
  551. }
  552. #u5603_div.disabled {
  553. border-width:0px;
  554. position:absolute;
  555. left:0px;
  556. top:0px;
  557. width:266px;
  558. height:38px;
  559. background:inherit;
  560. background-color:rgba(240, 240, 240, 1);
  561. border:none;
  562. border-radius:0px;
  563. -moz-box-shadow:none;
  564. -webkit-box-shadow:none;
  565. box-shadow:none;
  566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  567. font-weight:400;
  568. font-style:normal;
  569. font-size:14px;
  570. }
  571. #u5603.disabled {
  572. }
  573. #u5604_div {
  574. border-width:0px;
  575. position:absolute;
  576. left:0px;
  577. top:0px;
  578. width:82px;
  579. height:30px;
  580. background:inherit;
  581. background-color:rgba(255, 255, 255, 0);
  582. border:none;
  583. border-top:0px;
  584. border-right:0px;
  585. border-bottom:0px;
  586. border-radius:0px;
  587. border-top-left-radius:0px;
  588. border-bottom-left-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  593. font-weight:400;
  594. font-style:normal;
  595. font-size:14px;
  596. }
  597. #u5604 {
  598. border-width:0px;
  599. position:absolute;
  600. left:121px;
  601. top:207px;
  602. width:82px;
  603. height:30px;
  604. display:flex;
  605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  606. font-weight:400;
  607. font-style:normal;
  608. font-size:14px;
  609. }
  610. #u5604 .text {
  611. position:absolute;
  612. align-self:center;
  613. padding:5px 10px 5px 0px;
  614. box-sizing:border-box;
  615. width:100%;
  616. }
  617. #u5604_text {
  618. border-width:0px;
  619. white-space:nowrap;
  620. text-transform:none;
  621. }
  622. #u5605 {
  623. border-width:0px;
  624. position:absolute;
  625. left:0px;
  626. top:0px;
  627. width:0px;
  628. height:0px;
  629. }
  630. #u5606_div {
  631. border-width:0px;
  632. position:absolute;
  633. left:0px;
  634. top:0px;
  635. width:280px;
  636. height:40px;
  637. background:inherit;
  638. background-color:rgba(255, 255, 255, 1);
  639. box-sizing:border-box;
  640. border-width:1px;
  641. border-style:solid;
  642. border-color:rgba(201, 201, 201, 1);
  643. border-radius:4px;
  644. -moz-box-shadow:none;
  645. -webkit-box-shadow:none;
  646. box-shadow:none;
  647. font-family:'Microsoft YaHei', sans-serif;
  648. font-weight:400;
  649. font-style:normal;
  650. font-size:14px;
  651. color:#CCCCCC;
  652. text-align:left;
  653. }
  654. #u5606 {
  655. border-width:0px;
  656. position:absolute;
  657. left:121px;
  658. top:237px;
  659. width:280px;
  660. height:40px;
  661. display:flex;
  662. font-family:'Microsoft YaHei', sans-serif;
  663. font-weight:400;
  664. font-style:normal;
  665. font-size:14px;
  666. color:#CCCCCC;
  667. text-align:left;
  668. }
  669. #u5606 .text {
  670. position:absolute;
  671. align-self:center;
  672. padding:2px 8px 2px 8px;
  673. box-sizing:border-box;
  674. width:100%;
  675. }
  676. #u5606_text {
  677. border-width:0px;
  678. word-wrap:break-word;
  679. text-transform:none;
  680. visibility:hidden;
  681. }
  682. #u5607_input {
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:266px;
  687. height:38px;
  688. padding:2px 2px 2px 2px;
  689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  690. font-weight:400;
  691. font-style:normal;
  692. font-size:14px;
  693. letter-spacing:normal;
  694. color:#000000;
  695. vertical-align:none;
  696. text-align:left;
  697. text-transform:none;
  698. background-color:transparent;
  699. border-color:transparent;
  700. }
  701. #u5607_input.disabled {
  702. position:absolute;
  703. left:0px;
  704. top:0px;
  705. width:266px;
  706. height:38px;
  707. padding:2px 2px 2px 2px;
  708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  709. font-weight:400;
  710. font-style:normal;
  711. font-size:14px;
  712. letter-spacing:normal;
  713. color:#000000;
  714. vertical-align:none;
  715. text-align:left;
  716. text-transform:none;
  717. background-color:transparent;
  718. border-color:transparent;
  719. }
  720. #u5607_div {
  721. border-width:0px;
  722. position:absolute;
  723. left:0px;
  724. top:0px;
  725. width:266px;
  726. height:38px;
  727. background:inherit;
  728. background-color:rgba(255, 255, 255, 1);
  729. border:none;
  730. border-radius:0px;
  731. -moz-box-shadow:none;
  732. -webkit-box-shadow:none;
  733. box-shadow:none;
  734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  735. font-weight:400;
  736. font-style:normal;
  737. font-size:14px;
  738. }
  739. #u5607 {
  740. border-width:0px;
  741. position:absolute;
  742. left:129px;
  743. top:238px;
  744. width:266px;
  745. height:38px;
  746. display:flex;
  747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  748. font-weight:400;
  749. font-style:normal;
  750. font-size:14px;
  751. }
  752. #u5607 .text {
  753. position:absolute;
  754. align-self:center;
  755. padding:2px 2px 2px 2px;
  756. box-sizing:border-box;
  757. width:100%;
  758. }
  759. #u5607_div.disabled {
  760. border-width:0px;
  761. position:absolute;
  762. left:0px;
  763. top:0px;
  764. width:266px;
  765. height:38px;
  766. background:inherit;
  767. background-color:rgba(240, 240, 240, 1);
  768. border:none;
  769. border-radius:0px;
  770. -moz-box-shadow:none;
  771. -webkit-box-shadow:none;
  772. box-shadow:none;
  773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  774. font-weight:400;
  775. font-style:normal;
  776. font-size:14px;
  777. }
  778. #u5607.disabled {
  779. }
  780. #u5608_div {
  781. border-width:0px;
  782. position:absolute;
  783. left:0px;
  784. top:0px;
  785. width:82px;
  786. height:30px;
  787. background:inherit;
  788. background-color:rgba(255, 255, 255, 0);
  789. border:none;
  790. border-top:0px;
  791. border-right:0px;
  792. border-bottom:0px;
  793. border-radius:0px;
  794. border-top-left-radius:0px;
  795. border-bottom-left-radius:0px;
  796. -moz-box-shadow:none;
  797. -webkit-box-shadow:none;
  798. box-shadow:none;
  799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  800. font-weight:400;
  801. font-style:normal;
  802. font-size:14px;
  803. }
  804. #u5608 {
  805. border-width:0px;
  806. position:absolute;
  807. left:121px;
  808. top:297px;
  809. width:82px;
  810. height:30px;
  811. display:flex;
  812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:14px;
  816. }
  817. #u5608 .text {
  818. position:absolute;
  819. align-self:center;
  820. padding:5px 10px 5px 0px;
  821. box-sizing:border-box;
  822. width:100%;
  823. }
  824. #u5608_text {
  825. border-width:0px;
  826. white-space:nowrap;
  827. text-transform:none;
  828. }
  829. #u5609 {
  830. border-width:0px;
  831. position:absolute;
  832. left:0px;
  833. top:0px;
  834. width:0px;
  835. height:0px;
  836. }
  837. #u5610_div {
  838. border-width:0px;
  839. position:absolute;
  840. left:0px;
  841. top:0px;
  842. width:280px;
  843. height:40px;
  844. background:inherit;
  845. background-color:rgba(255, 255, 255, 1);
  846. box-sizing:border-box;
  847. border-width:1px;
  848. border-style:solid;
  849. border-color:rgba(201, 201, 201, 1);
  850. border-radius:4px;
  851. -moz-box-shadow:none;
  852. -webkit-box-shadow:none;
  853. box-shadow:none;
  854. font-family:'Microsoft YaHei', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:14px;
  858. color:#CCCCCC;
  859. text-align:left;
  860. }
  861. #u5610 {
  862. border-width:0px;
  863. position:absolute;
  864. left:121px;
  865. top:327px;
  866. width:280px;
  867. height:40px;
  868. display:flex;
  869. font-family:'Microsoft YaHei', sans-serif;
  870. font-weight:400;
  871. font-style:normal;
  872. font-size:14px;
  873. color:#CCCCCC;
  874. text-align:left;
  875. }
  876. #u5610 .text {
  877. position:absolute;
  878. align-self:center;
  879. padding:2px 8px 2px 8px;
  880. box-sizing:border-box;
  881. width:100%;
  882. }
  883. #u5610_text {
  884. border-width:0px;
  885. word-wrap:break-word;
  886. text-transform:none;
  887. visibility:hidden;
  888. }
  889. #u5611_input {
  890. position:absolute;
  891. left:0px;
  892. top:0px;
  893. width:266px;
  894. height:38px;
  895. padding:2px 2px 2px 2px;
  896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  897. font-weight:400;
  898. font-style:normal;
  899. font-size:14px;
  900. letter-spacing:normal;
  901. color:#000000;
  902. vertical-align:none;
  903. text-align:left;
  904. text-transform:none;
  905. background-color:transparent;
  906. border-color:transparent;
  907. }
  908. #u5611_input.disabled {
  909. position:absolute;
  910. left:0px;
  911. top:0px;
  912. width:266px;
  913. height:38px;
  914. padding:2px 2px 2px 2px;
  915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  916. font-weight:400;
  917. font-style:normal;
  918. font-size:14px;
  919. letter-spacing:normal;
  920. color:#000000;
  921. vertical-align:none;
  922. text-align:left;
  923. text-transform:none;
  924. background-color:transparent;
  925. border-color:transparent;
  926. }
  927. #u5611_div {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:266px;
  933. height:38px;
  934. background:inherit;
  935. background-color:rgba(255, 255, 255, 1);
  936. border:none;
  937. border-radius:0px;
  938. -moz-box-shadow:none;
  939. -webkit-box-shadow:none;
  940. box-shadow:none;
  941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  942. font-weight:400;
  943. font-style:normal;
  944. font-size:14px;
  945. }
  946. #u5611 {
  947. border-width:0px;
  948. position:absolute;
  949. left:129px;
  950. top:328px;
  951. width:266px;
  952. height:38px;
  953. display:flex;
  954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  955. font-weight:400;
  956. font-style:normal;
  957. font-size:14px;
  958. }
  959. #u5611 .text {
  960. position:absolute;
  961. align-self:center;
  962. padding:2px 2px 2px 2px;
  963. box-sizing:border-box;
  964. width:100%;
  965. }
  966. #u5611_div.disabled {
  967. border-width:0px;
  968. position:absolute;
  969. left:0px;
  970. top:0px;
  971. width:266px;
  972. height:38px;
  973. background:inherit;
  974. background-color:rgba(240, 240, 240, 1);
  975. border:none;
  976. border-radius:0px;
  977. -moz-box-shadow:none;
  978. -webkit-box-shadow:none;
  979. box-shadow:none;
  980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  981. font-weight:400;
  982. font-style:normal;
  983. font-size:14px;
  984. }
  985. #u5611.disabled {
  986. }
  987. #u5612_div {
  988. border-width:0px;
  989. position:absolute;
  990. left:0px;
  991. top:0px;
  992. width:137px;
  993. height:30px;
  994. background:inherit;
  995. background-color:rgba(255, 255, 255, 0);
  996. border:none;
  997. border-top:0px;
  998. border-right:0px;
  999. border-bottom:0px;
  1000. border-radius:0px;
  1001. border-top-left-radius:0px;
  1002. border-bottom-left-radius:0px;
  1003. -moz-box-shadow:none;
  1004. -webkit-box-shadow:none;
  1005. box-shadow:none;
  1006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1007. font-weight:400;
  1008. font-style:normal;
  1009. font-size:14px;
  1010. color:#298FFF;
  1011. }
  1012. #u5612 {
  1013. border-width:0px;
  1014. position:absolute;
  1015. left:121px;
  1016. top:373px;
  1017. width:137px;
  1018. height:30px;
  1019. display:flex;
  1020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1021. font-weight:400;
  1022. font-style:normal;
  1023. font-size:14px;
  1024. color:#298FFF;
  1025. }
  1026. #u5612 .text {
  1027. position:absolute;
  1028. align-self:center;
  1029. padding:5px 10px 5px 0px;
  1030. box-sizing:border-box;
  1031. width:100%;
  1032. }
  1033. #u5612_text {
  1034. border-width:0px;
  1035. word-wrap:break-word;
  1036. text-transform:none;
  1037. }
  1038. #u5613_div {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:39px;
  1044. height:30px;
  1045. background:inherit;
  1046. background-color:rgba(255, 255, 255, 0);
  1047. border:none;
  1048. border-top:0px;
  1049. border-right:0px;
  1050. border-bottom:0px;
  1051. border-radius:0px;
  1052. border-top-left-radius:0px;
  1053. border-bottom-left-radius:0px;
  1054. -moz-box-shadow:none;
  1055. -webkit-box-shadow:none;
  1056. box-shadow:none;
  1057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1058. font-weight:400;
  1059. font-style:normal;
  1060. font-size:14px;
  1061. color:#298FFF;
  1062. }
  1063. #u5613 {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:410px;
  1067. top:330px;
  1068. width:39px;
  1069. height:30px;
  1070. display:flex;
  1071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1072. font-weight:400;
  1073. font-style:normal;
  1074. font-size:14px;
  1075. color:#298FFF;
  1076. }
  1077. #u5613 .text {
  1078. position:absolute;
  1079. align-self:center;
  1080. padding:5px 10px 5px 0px;
  1081. box-sizing:border-box;
  1082. width:100%;
  1083. }
  1084. #u5613_text {
  1085. border-width:0px;
  1086. white-space:nowrap;
  1087. text-transform:none;
  1088. }
  1089. #u5614_div {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:0px;
  1093. top:0px;
  1094. width:39px;
  1095. height:30px;
  1096. background:inherit;
  1097. background-color:rgba(255, 255, 255, 0);
  1098. border:none;
  1099. border-top:0px;
  1100. border-right:0px;
  1101. border-bottom:0px;
  1102. border-radius:0px;
  1103. border-top-left-radius:0px;
  1104. border-bottom-left-radius:0px;
  1105. -moz-box-shadow:none;
  1106. -webkit-box-shadow:none;
  1107. box-shadow:none;
  1108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1109. font-weight:400;
  1110. font-style:normal;
  1111. font-size:14px;
  1112. color:#298FFF;
  1113. }
  1114. #u5614 {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:410px;
  1118. top:242px;
  1119. width:39px;
  1120. height:30px;
  1121. display:flex;
  1122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1123. font-weight:400;
  1124. font-style:normal;
  1125. font-size:14px;
  1126. color:#298FFF;
  1127. }
  1128. #u5614 .text {
  1129. position:absolute;
  1130. align-self:center;
  1131. padding:5px 10px 5px 0px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u5614_text {
  1136. border-width:0px;
  1137. white-space:nowrap;
  1138. text-transform:none;
  1139. }
  1140. #u5615_div {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:0px;
  1145. width:39px;
  1146. height:30px;
  1147. background:inherit;
  1148. background-color:rgba(255, 255, 255, 0);
  1149. border:none;
  1150. border-top:0px;
  1151. border-right:0px;
  1152. border-bottom:0px;
  1153. border-radius:0px;
  1154. border-top-left-radius:0px;
  1155. border-bottom-left-radius:0px;
  1156. -moz-box-shadow:none;
  1157. -webkit-box-shadow:none;
  1158. box-shadow:none;
  1159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1160. font-weight:400;
  1161. font-style:normal;
  1162. font-size:14px;
  1163. color:#298FFF;
  1164. }
  1165. #u5615 {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:410px;
  1169. top:152px;
  1170. width:39px;
  1171. height:30px;
  1172. display:flex;
  1173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1174. font-weight:400;
  1175. font-style:normal;
  1176. font-size:14px;
  1177. color:#298FFF;
  1178. }
  1179. #u5615 .text {
  1180. position:absolute;
  1181. align-self:center;
  1182. padding:5px 10px 5px 0px;
  1183. box-sizing:border-box;
  1184. width:100%;
  1185. }
  1186. #u5615_text {
  1187. border-width:0px;
  1188. white-space:nowrap;
  1189. text-transform:none;
  1190. }
  1191. #u5616_div {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:0px;
  1195. top:0px;
  1196. width:442px;
  1197. height:50px;
  1198. background:inherit;
  1199. background-color:rgba(255, 255, 255, 0);
  1200. border:none;
  1201. border-top:0px;
  1202. border-right:0px;
  1203. border-bottom:0px;
  1204. border-radius:0px;
  1205. border-top-left-radius:0px;
  1206. border-bottom-left-radius:0px;
  1207. -moz-box-shadow:none;
  1208. -webkit-box-shadow:none;
  1209. box-shadow:none;
  1210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1211. font-weight:400;
  1212. font-style:normal;
  1213. font-size:14px;
  1214. color:#D9001B;
  1215. }
  1216. #u5616 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:129px;
  1220. top:429px;
  1221. width:442px;
  1222. height:50px;
  1223. display:flex;
  1224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1225. font-weight:400;
  1226. font-style:normal;
  1227. font-size:14px;
  1228. color:#D9001B;
  1229. }
  1230. #u5616 .text {
  1231. position:absolute;
  1232. align-self:center;
  1233. padding:5px 10px 5px 0px;
  1234. box-sizing:border-box;
  1235. width:100%;
  1236. }
  1237. #u5616_text {
  1238. border-width:0px;
  1239. white-space:nowrap;
  1240. text-transform:none;
  1241. }
  1242. #u5617 {
  1243. border-width:0px;
  1244. position:absolute;
  1245. left:0px;
  1246. top:0px;
  1247. width:0px;
  1248. height:0px;
  1249. }
  1250. #u5618 {
  1251. border-width:0px;
  1252. position:absolute;
  1253. left:0px;
  1254. top:0px;
  1255. width:0px;
  1256. height:0px;
  1257. }
  1258. #u5619_div {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:380px;
  1264. height:140px;
  1265. background:inherit;
  1266. background-color:rgba(255, 255, 255, 1);
  1267. border:none;
  1268. border-radius:4px;
  1269. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  1270. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  1271. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  1272. font-family:'Microsoft YaHei', sans-serif;
  1273. font-weight:400;
  1274. font-style:normal;
  1275. }
  1276. #u5619 {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:140px;
  1280. top:506px;
  1281. width:380px;
  1282. height:140px;
  1283. display:flex;
  1284. font-family:'Microsoft YaHei', sans-serif;
  1285. font-weight:400;
  1286. font-style:normal;
  1287. }
  1288. #u5619 .text {
  1289. position:absolute;
  1290. align-self:center;
  1291. padding:2px 2px 2px 2px;
  1292. box-sizing:border-box;
  1293. width:100%;
  1294. }
  1295. #u5619_text {
  1296. border-width:0px;
  1297. word-wrap:break-word;
  1298. text-transform:none;
  1299. visibility:hidden;
  1300. }
  1301. #u5620_div {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:0px;
  1305. top:0px;
  1306. width:299px;
  1307. height:22px;
  1308. background:inherit;
  1309. background-color:rgba(255, 255, 255, 0);
  1310. border:none;
  1311. border-radius:0px;
  1312. -moz-box-shadow:none;
  1313. -webkit-box-shadow:none;
  1314. box-shadow:none;
  1315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1316. font-weight:400;
  1317. font-style:normal;
  1318. font-size:14px;
  1319. color:#666666;
  1320. line-height:22px;
  1321. }
  1322. #u5620 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:200px;
  1326. top:561px;
  1327. width:299px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:14px;
  1334. color:#666666;
  1335. line-height:22px;
  1336. }
  1337. #u5620 .text {
  1338. position:absolute;
  1339. align-self:flex-start;
  1340. padding:0px 0px 0px 0px;
  1341. box-sizing:border-box;
  1342. width:100%;
  1343. }
  1344. #u5620_text {
  1345. border-width:0px;
  1346. word-wrap:break-word;
  1347. text-transform:none;
  1348. }
  1349. #u5621_div {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:0px;
  1353. top:0px;
  1354. width:127px;
  1355. height:21px;
  1356. background:inherit;
  1357. background-color:rgba(255, 255, 255, 0);
  1358. border:none;
  1359. border-radius:0px;
  1360. -moz-box-shadow:none;
  1361. -webkit-box-shadow:none;
  1362. box-shadow:none;
  1363. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1364. font-weight:650;
  1365. font-style:normal;
  1366. font-size:18px;
  1367. color:#000000;
  1368. line-height:22px;
  1369. }
  1370. #u5621 {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:200px;
  1374. top:531px;
  1375. width:127px;
  1376. height:21px;
  1377. display:flex;
  1378. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1379. font-weight:650;
  1380. font-style:normal;
  1381. font-size:18px;
  1382. color:#000000;
  1383. line-height:22px;
  1384. }
  1385. #u5621 .text {
  1386. position:absolute;
  1387. align-self:flex-start;
  1388. padding:0px 0px 0px 0px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u5621_text {
  1393. border-width:0px;
  1394. white-space:nowrap;
  1395. text-transform:none;
  1396. }
  1397. #u5622_div {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:61px;
  1403. height:32px;
  1404. background:inherit;
  1405. background-color:rgba(24, 144, 255, 1);
  1406. border:none;
  1407. border-radius:4px;
  1408. -moz-box-shadow:none;
  1409. -webkit-box-shadow:none;
  1410. box-shadow:none;
  1411. font-family:'Microsoft YaHei', sans-serif;
  1412. font-weight:400;
  1413. font-style:normal;
  1414. font-size:14px;
  1415. color:#FFFFFF;
  1416. }
  1417. #u5622 {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:442px;
  1421. top:595px;
  1422. width:61px;
  1423. height:32px;
  1424. display:flex;
  1425. font-family:'Microsoft YaHei', sans-serif;
  1426. font-weight:400;
  1427. font-style:normal;
  1428. font-size:14px;
  1429. color:#FFFFFF;
  1430. }
  1431. #u5622 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:2px 16px 2px 16px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u5622_text {
  1439. border-width:0px;
  1440. white-space:nowrap;
  1441. text-transform:none;
  1442. }
  1443. #u5623_div {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:66px;
  1449. height:32px;
  1450. background:inherit;
  1451. background-color:rgba(255, 255, 255, 1);
  1452. box-sizing:border-box;
  1453. border-width:1px;
  1454. border-style:solid;
  1455. border-color:rgba(217, 217, 217, 1);
  1456. border-radius:4px;
  1457. -moz-box-shadow:none;
  1458. -webkit-box-shadow:none;
  1459. box-shadow:none;
  1460. font-family:'Microsoft YaHei', sans-serif;
  1461. font-weight:400;
  1462. font-style:normal;
  1463. font-size:14px;
  1464. color:rgba(0, 0, 0, 0.647058823529412);
  1465. line-height:21px;
  1466. }
  1467. #u5623 {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:360px;
  1471. top:595px;
  1472. width:66px;
  1473. height:32px;
  1474. display:flex;
  1475. font-family:'Microsoft YaHei', sans-serif;
  1476. font-weight:400;
  1477. font-style:normal;
  1478. font-size:14px;
  1479. color:rgba(0, 0, 0, 0.647058823529412);
  1480. line-height:21px;
  1481. }
  1482. #u5623 .text {
  1483. position:absolute;
  1484. align-self:center;
  1485. padding:2px 16px 2px 16px;
  1486. box-sizing:border-box;
  1487. width:100%;
  1488. }
  1489. #u5623_text {
  1490. border-width:0px;
  1491. white-space:nowrap;
  1492. text-transform:none;
  1493. }
  1494. #u5624_img {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:0px;
  1498. top:0px;
  1499. width:20px;
  1500. height:20px;
  1501. }
  1502. #u5624 {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:169px;
  1506. top:535px;
  1507. width:20px;
  1508. height:20px;
  1509. display:flex;
  1510. }
  1511. #u5624 .text {
  1512. position:absolute;
  1513. align-self:center;
  1514. padding:2px 2px 2px 2px;
  1515. box-sizing:border-box;
  1516. width:100%;
  1517. }
  1518. #u5624_text {
  1519. border-width:0px;
  1520. word-wrap:break-word;
  1521. text-transform:none;
  1522. visibility:hidden;
  1523. }
  1524. #u5625 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:0px;
  1530. height:0px;
  1531. }
  1532. #u5626_div {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:380px;
  1538. height:140px;
  1539. background:inherit;
  1540. background-color:rgba(255, 255, 255, 1);
  1541. border:none;
  1542. border-radius:4px;
  1543. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  1544. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  1545. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  1546. font-family:'Microsoft YaHei', sans-serif;
  1547. font-weight:400;
  1548. font-style:normal;
  1549. }
  1550. #u5626 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:140px;
  1554. top:667px;
  1555. width:380px;
  1556. height:140px;
  1557. display:flex;
  1558. font-family:'Microsoft YaHei', sans-serif;
  1559. font-weight:400;
  1560. font-style:normal;
  1561. }
  1562. #u5626 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u5626_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u5627_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:288px;
  1581. height:22px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1590. font-weight:400;
  1591. font-style:normal;
  1592. font-size:14px;
  1593. color:#666666;
  1594. line-height:22px;
  1595. }
  1596. #u5627 {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:200px;
  1600. top:722px;
  1601. width:288px;
  1602. height:22px;
  1603. display:flex;
  1604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1605. font-weight:400;
  1606. font-style:normal;
  1607. font-size:14px;
  1608. color:#666666;
  1609. line-height:22px;
  1610. }
  1611. #u5627 .text {
  1612. position:absolute;
  1613. align-self:flex-start;
  1614. padding:0px 0px 0px 0px;
  1615. box-sizing:border-box;
  1616. width:100%;
  1617. }
  1618. #u5627_text {
  1619. border-width:0px;
  1620. word-wrap:break-word;
  1621. text-transform:none;
  1622. }
  1623. #u5628_div {
  1624. border-width:0px;
  1625. position:absolute;
  1626. left:0px;
  1627. top:0px;
  1628. width:91px;
  1629. height:21px;
  1630. background:inherit;
  1631. background-color:rgba(255, 255, 255, 0);
  1632. border:none;
  1633. border-radius:0px;
  1634. -moz-box-shadow:none;
  1635. -webkit-box-shadow:none;
  1636. box-shadow:none;
  1637. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1638. font-weight:650;
  1639. font-style:normal;
  1640. font-size:18px;
  1641. color:#000000;
  1642. line-height:22px;
  1643. }
  1644. #u5628 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:200px;
  1648. top:692px;
  1649. width:91px;
  1650. height:21px;
  1651. display:flex;
  1652. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1653. font-weight:650;
  1654. font-style:normal;
  1655. font-size:18px;
  1656. color:#000000;
  1657. line-height:22px;
  1658. }
  1659. #u5628 .text {
  1660. position:absolute;
  1661. align-self:flex-start;
  1662. padding:0px 0px 0px 0px;
  1663. box-sizing:border-box;
  1664. width:100%;
  1665. }
  1666. #u5628_text {
  1667. border-width:0px;
  1668. white-space:nowrap;
  1669. text-transform:none;
  1670. }
  1671. #u5629_div {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:61px;
  1677. height:32px;
  1678. background:inherit;
  1679. background-color:rgba(24, 144, 255, 1);
  1680. border:none;
  1681. border-radius:4px;
  1682. -moz-box-shadow:none;
  1683. -webkit-box-shadow:none;
  1684. box-shadow:none;
  1685. font-family:'Microsoft YaHei', sans-serif;
  1686. font-weight:400;
  1687. font-style:normal;
  1688. font-size:14px;
  1689. color:#FFFFFF;
  1690. }
  1691. #u5629 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:439px;
  1695. top:756px;
  1696. width:61px;
  1697. height:32px;
  1698. display:flex;
  1699. font-family:'Microsoft YaHei', sans-serif;
  1700. font-weight:400;
  1701. font-style:normal;
  1702. font-size:14px;
  1703. color:#FFFFFF;
  1704. }
  1705. #u5629 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 16px 2px 16px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u5629_text {
  1713. border-width:0px;
  1714. white-space:nowrap;
  1715. text-transform:none;
  1716. }
  1717. #u5630_div {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:66px;
  1723. height:32px;
  1724. background:inherit;
  1725. background-color:rgba(255, 255, 255, 1);
  1726. box-sizing:border-box;
  1727. border-width:1px;
  1728. border-style:solid;
  1729. border-color:rgba(217, 217, 217, 1);
  1730. border-radius:4px;
  1731. -moz-box-shadow:none;
  1732. -webkit-box-shadow:none;
  1733. box-shadow:none;
  1734. font-family:'Microsoft YaHei', sans-serif;
  1735. font-weight:400;
  1736. font-style:normal;
  1737. font-size:14px;
  1738. color:rgba(0, 0, 0, 0.647058823529412);
  1739. line-height:21px;
  1740. }
  1741. #u5630 {
  1742. border-width:0px;
  1743. position:absolute;
  1744. left:360px;
  1745. top:756px;
  1746. width:66px;
  1747. height:32px;
  1748. display:flex;
  1749. font-family:'Microsoft YaHei', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. font-size:14px;
  1753. color:rgba(0, 0, 0, 0.647058823529412);
  1754. line-height:21px;
  1755. }
  1756. #u5630 .text {
  1757. position:absolute;
  1758. align-self:center;
  1759. padding:2px 16px 2px 16px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u5630_text {
  1764. border-width:0px;
  1765. white-space:nowrap;
  1766. text-transform:none;
  1767. }
  1768. #u5631_img {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:20px;
  1774. height:20px;
  1775. }
  1776. #u5631 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:169px;
  1780. top:694px;
  1781. width:20px;
  1782. height:20px;
  1783. display:flex;
  1784. }
  1785. #u5631 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u5631_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. visibility:hidden;
  1797. }