styles.css 35 KB

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