styles.css 34 KB

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