styles.css 38 KB

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