styles.css 34 KB

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