styles.css 35 KB

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