styles.css 37 KB

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