styles.css 37 KB

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