styles.css 34 KB

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