styles.css 35 KB

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