styles.css 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-86px;
  6. width:1662px;
  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. #u16689 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u16690_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:800px;
  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. #u16690 {
  46. border-width:0px;
  47. position:absolute;
  48. left:86px;
  49. top:45px;
  50. width:800px;
  51. height:1198px;
  52. display:flex;
  53. }
  54. #u16690 .text {
  55. position:absolute;
  56. align-self:center;
  57. padding:2px 2px 2px 2px;
  58. box-sizing:border-box;
  59. width:100%;
  60. }
  61. #u16690_text {
  62. border-width:0px;
  63. word-wrap:break-word;
  64. text-transform:none;
  65. visibility:hidden;
  66. }
  67. #u16691_div {
  68. border-width:0px;
  69. position:absolute;
  70. left:0px;
  71. top:0px;
  72. width:73px;
  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. #u16691 {
  89. border-width:0px;
  90. position:absolute;
  91. left:106px;
  92. top:65px;
  93. width:73px;
  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. #u16691 .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. #u16691_text {
  111. border-width:0px;
  112. white-space:nowrap;
  113. text-transform:none;
  114. }
  115. #u16692_div {
  116. border-width:0px;
  117. position:absolute;
  118. left:0px;
  119. top:0px;
  120. width:78px;
  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. text-align:right;
  139. }
  140. #u16692 {
  141. border-width:0px;
  142. position:absolute;
  143. left:150px;
  144. top:216px;
  145. width:78px;
  146. height:30px;
  147. display:flex;
  148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  149. font-weight:400;
  150. font-style:normal;
  151. font-size:14px;
  152. text-align:right;
  153. }
  154. #u16692 .text {
  155. position:absolute;
  156. align-self:center;
  157. padding:5px 0px 5px 0px;
  158. box-sizing:border-box;
  159. width:100%;
  160. }
  161. #u16692_text {
  162. border-width:0px;
  163. white-space:nowrap;
  164. text-transform:none;
  165. }
  166. #u16693 {
  167. border-width:0px;
  168. position:absolute;
  169. left:0px;
  170. top:0px;
  171. width:0px;
  172. height:0px;
  173. }
  174. #u16694_div {
  175. border-width:0px;
  176. position:absolute;
  177. left:0px;
  178. top:0px;
  179. width:40px;
  180. height:40px;
  181. background:inherit;
  182. background-color:rgba(255, 255, 255, 0);
  183. border:none;
  184. border-top:0px;
  185. border-right:0px;
  186. border-bottom:0px;
  187. border-radius:0px;
  188. border-top-left-radius:0px;
  189. border-bottom-left-radius:0px;
  190. -moz-box-shadow:none;
  191. -webkit-box-shadow:none;
  192. box-shadow:none;
  193. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  194. font-weight:500;
  195. font-style:normal;
  196. font-size:18px;
  197. text-align:center;
  198. }
  199. #u16694 {
  200. border-width:0px;
  201. position:absolute;
  202. left:846px;
  203. top:45px;
  204. width:40px;
  205. height:40px;
  206. display:flex;
  207. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  208. font-weight:500;
  209. font-style:normal;
  210. font-size:18px;
  211. text-align:center;
  212. }
  213. #u16694 .text {
  214. position:absolute;
  215. align-self:center;
  216. padding:5px 10px 5px 0px;
  217. box-sizing:border-box;
  218. width:100%;
  219. }
  220. #u16694_text {
  221. border-width:0px;
  222. word-wrap:break-word;
  223. text-transform:none;
  224. }
  225. #u16695_img {
  226. border-width:0px;
  227. position:absolute;
  228. left:0px;
  229. top:0px;
  230. width:13px;
  231. height:17px;
  232. }
  233. #u16695 {
  234. border-width:0px;
  235. position:absolute;
  236. left:833px;
  237. top:57px;
  238. width:13px;
  239. height:17px;
  240. display:flex;
  241. }
  242. #u16695 .text {
  243. position:absolute;
  244. align-self:center;
  245. padding:2px 2px 2px 2px;
  246. box-sizing:border-box;
  247. width:100%;
  248. }
  249. #u16695_text {
  250. border-width:0px;
  251. word-wrap:break-word;
  252. text-transform:none;
  253. visibility:hidden;
  254. }
  255. #u16696 {
  256. border-width:0px;
  257. position:absolute;
  258. left:0px;
  259. top:0px;
  260. width:0px;
  261. height:0px;
  262. }
  263. #u16697_div {
  264. border-width:0px;
  265. position:absolute;
  266. left:0px;
  267. top:0px;
  268. width:800px;
  269. height:60px;
  270. background:inherit;
  271. background-color:rgba(255, 255, 255, 1);
  272. box-sizing:border-box;
  273. border-width:1px;
  274. border-style:solid;
  275. border-color:rgba(215, 215, 215, 1);
  276. border-radius:0px;
  277. -moz-box-shadow:none;
  278. -webkit-box-shadow:none;
  279. box-shadow:none;
  280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  281. font-weight:400;
  282. font-style:normal;
  283. font-size:14px;
  284. color:#AAAAAA;
  285. text-align:center;
  286. line-height:30px;
  287. }
  288. #u16697 {
  289. border-width:0px;
  290. position:absolute;
  291. left:86px;
  292. top:1183px;
  293. width:800px;
  294. height:60px;
  295. display:flex;
  296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  297. font-weight:400;
  298. font-style:normal;
  299. font-size:14px;
  300. color:#AAAAAA;
  301. text-align:center;
  302. line-height:30px;
  303. }
  304. #u16697 .text {
  305. position:absolute;
  306. align-self:center;
  307. padding:5px 10px 5px 10px;
  308. box-sizing:border-box;
  309. width:100%;
  310. }
  311. #u16697_text {
  312. border-width:0px;
  313. word-wrap:break-word;
  314. text-transform:none;
  315. visibility:hidden;
  316. }
  317. #u16698_div {
  318. border-width:0px;
  319. position:absolute;
  320. left:0px;
  321. top:0px;
  322. width:80px;
  323. height:30px;
  324. background:inherit;
  325. background-color:rgba(24, 144, 255, 1);
  326. border:none;
  327. border-radius:4px;
  328. -moz-box-shadow:none;
  329. -webkit-box-shadow:none;
  330. box-shadow:none;
  331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  332. font-weight:400;
  333. font-style:normal;
  334. font-size:14px;
  335. color:#FFFFFF;
  336. }
  337. #u16698 {
  338. border-width:0px;
  339. position:absolute;
  340. left:761px;
  341. top:1198px;
  342. width:80px;
  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. #u16698 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u16698_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. }
  363. #u16699_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. #u16699 {
  386. border-width:0px;
  387. position:absolute;
  388. left:662px;
  389. top:1198px;
  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. #u16699 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u16699_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. }
  410. #u16700 {
  411. border-width:0px;
  412. position:absolute;
  413. left:0px;
  414. top:0px;
  415. width:0px;
  416. height:0px;
  417. }
  418. #u16701_div {
  419. border-width:0px;
  420. position:absolute;
  421. left:0px;
  422. top:0px;
  423. width:400px;
  424. height:80px;
  425. background:inherit;
  426. background-color:rgba(255, 255, 255, 1);
  427. box-sizing:border-box;
  428. border-width:1px;
  429. border-style:solid;
  430. border-color:rgba(170, 170, 170, 1);
  431. border-radius:4px;
  432. -moz-box-shadow:none;
  433. -webkit-box-shadow:none;
  434. box-shadow:none;
  435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  436. font-weight:400;
  437. font-style:normal;
  438. text-align:left;
  439. }
  440. #u16701 {
  441. border-width:0px;
  442. position:absolute;
  443. left:238px;
  444. top:701px;
  445. width:400px;
  446. height:80px;
  447. display:flex;
  448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  449. font-weight:400;
  450. font-style:normal;
  451. text-align:left;
  452. }
  453. #u16701 .text {
  454. position:absolute;
  455. align-self:center;
  456. padding:2px 2px 2px 10px;
  457. box-sizing:border-box;
  458. width:100%;
  459. }
  460. #u16701_text {
  461. border-width:0px;
  462. word-wrap:break-word;
  463. text-transform:none;
  464. visibility:hidden;
  465. }
  466. #u16702_input {
  467. position:absolute;
  468. left:0px;
  469. top:0px;
  470. width:188px;
  471. height:31px;
  472. padding:2px 2px 2px 2px;
  473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  474. font-weight:400;
  475. font-style:normal;
  476. font-size:13px;
  477. letter-spacing:normal;
  478. color:#AAAAAA;
  479. vertical-align:none;
  480. text-align:left;
  481. text-transform:none;
  482. background-color:transparent;
  483. border-color:transparent;
  484. }
  485. #u16702_input.disabled {
  486. position:absolute;
  487. left:0px;
  488. top:0px;
  489. width:188px;
  490. height:31px;
  491. padding:2px 2px 2px 2px;
  492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  493. font-weight:400;
  494. font-style:normal;
  495. font-size:13px;
  496. letter-spacing:normal;
  497. color:#AAAAAA;
  498. vertical-align:none;
  499. text-align:left;
  500. text-transform:none;
  501. background-color:transparent;
  502. border-color:transparent;
  503. }
  504. #u16702_div {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:188px;
  510. height:31px;
  511. background:inherit;
  512. background-color:rgba(255, 255, 255, 0);
  513. border:none;
  514. border-radius:0px;
  515. -moz-box-shadow:none;
  516. -webkit-box-shadow:none;
  517. box-shadow:none;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. color:#AAAAAA;
  522. }
  523. #u16702 {
  524. border-width:0px;
  525. position:absolute;
  526. left:248px;
  527. top:706px;
  528. width:188px;
  529. height:31px;
  530. display:flex;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. color:#AAAAAA;
  535. }
  536. #u16702 .text {
  537. position:absolute;
  538. align-self:center;
  539. padding:2px 2px 2px 2px;
  540. box-sizing:border-box;
  541. width:100%;
  542. }
  543. #u16702_div.disabled {
  544. border-width:0px;
  545. position:absolute;
  546. left:0px;
  547. top:0px;
  548. width:188px;
  549. height:31px;
  550. background:inherit;
  551. background-color:rgba(240, 240, 240, 1);
  552. border:none;
  553. border-radius:0px;
  554. -moz-box-shadow:none;
  555. -webkit-box-shadow:none;
  556. box-shadow:none;
  557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. color:#AAAAAA;
  561. }
  562. #u16702.disabled {
  563. }
  564. #u16703_div {
  565. border-width:0px;
  566. position:absolute;
  567. left:0px;
  568. top:0px;
  569. width:39px;
  570. height:24px;
  571. background:inherit;
  572. background-color:rgba(255, 255, 255, 0);
  573. border:none;
  574. border-top:0px;
  575. border-right:0px;
  576. border-bottom:0px;
  577. border-radius:0px;
  578. border-top-left-radius:0px;
  579. border-bottom-left-radius:0px;
  580. -moz-box-shadow:none;
  581. -webkit-box-shadow:none;
  582. box-shadow:none;
  583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  584. font-weight:400;
  585. font-style:normal;
  586. font-size:10px;
  587. color:#AAAAAA;
  588. text-align:right;
  589. }
  590. #u16703 {
  591. border-width:0px;
  592. position:absolute;
  593. left:596px;
  594. top:756px;
  595. width:39px;
  596. height:24px;
  597. display:flex;
  598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  599. font-weight:400;
  600. font-style:normal;
  601. font-size:10px;
  602. color:#AAAAAA;
  603. text-align:right;
  604. }
  605. #u16703 .text {
  606. position:absolute;
  607. align-self:center;
  608. padding:5px 0px 5px 0px;
  609. box-sizing:border-box;
  610. width:100%;
  611. }
  612. #u16703_text {
  613. border-width:0px;
  614. white-space:nowrap;
  615. text-transform:none;
  616. }
  617. #u16704_div {
  618. border-width:0px;
  619. position:absolute;
  620. left:0px;
  621. top:0px;
  622. width:50px;
  623. height:30px;
  624. background:inherit;
  625. background-color:rgba(255, 255, 255, 0);
  626. border:none;
  627. border-top:0px;
  628. border-right:0px;
  629. border-bottom:0px;
  630. border-radius:0px;
  631. border-top-left-radius:0px;
  632. border-bottom-left-radius:0px;
  633. -moz-box-shadow:none;
  634. -webkit-box-shadow:none;
  635. box-shadow:none;
  636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  637. font-weight:400;
  638. font-style:normal;
  639. font-size:14px;
  640. text-align:right;
  641. }
  642. #u16704 {
  643. border-width:0px;
  644. position:absolute;
  645. left:178px;
  646. top:166px;
  647. width:50px;
  648. height:30px;
  649. display:flex;
  650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  651. font-weight:400;
  652. font-style:normal;
  653. font-size:14px;
  654. text-align:right;
  655. }
  656. #u16704 .text {
  657. position:absolute;
  658. align-self:center;
  659. padding:5px 0px 5px 0px;
  660. box-sizing:border-box;
  661. width:100%;
  662. }
  663. #u16704_text {
  664. border-width:0px;
  665. white-space:nowrap;
  666. text-transform:none;
  667. }
  668. #u16705_div {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:71px;
  674. height:30px;
  675. background:inherit;
  676. background-color:rgba(255, 255, 255, 0);
  677. border:none;
  678. border-top:0px;
  679. border-right:0px;
  680. border-bottom:0px;
  681. border-radius:0px;
  682. border-top-left-radius:0px;
  683. border-bottom-left-radius:0px;
  684. -moz-box-shadow:none;
  685. -webkit-box-shadow:none;
  686. box-shadow:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:14px;
  691. text-align:right;
  692. }
  693. #u16705 {
  694. border-width:0px;
  695. position:absolute;
  696. left:157px;
  697. top:316px;
  698. width:71px;
  699. height:30px;
  700. display:flex;
  701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  702. font-weight:400;
  703. font-style:normal;
  704. font-size:14px;
  705. text-align:right;
  706. }
  707. #u16705 .text {
  708. position:absolute;
  709. align-self:center;
  710. padding:5px 0px 5px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u16705_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u16706_div {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:87px;
  725. height:30px;
  726. background:inherit;
  727. background-color:rgba(255, 255, 255, 0);
  728. border:none;
  729. border-top:0px;
  730. border-right:0px;
  731. border-bottom:0px;
  732. border-radius:0px;
  733. border-top-left-radius:0px;
  734. border-bottom-left-radius:0px;
  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. font-size:14px;
  742. text-align:right;
  743. }
  744. #u16706 {
  745. border-width:0px;
  746. position:absolute;
  747. left:141px;
  748. top:466px;
  749. width:87px;
  750. height:30px;
  751. display:flex;
  752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  753. font-weight:400;
  754. font-style:normal;
  755. font-size:14px;
  756. text-align:right;
  757. }
  758. #u16706 .text {
  759. position:absolute;
  760. align-self:center;
  761. padding:5px 0px 5px 0px;
  762. box-sizing:border-box;
  763. width:100%;
  764. }
  765. #u16706_text {
  766. border-width:0px;
  767. white-space:nowrap;
  768. text-transform:none;
  769. }
  770. #u16707 {
  771. border-width:0px;
  772. position:absolute;
  773. left:0px;
  774. top:0px;
  775. width:0px;
  776. height:0px;
  777. }
  778. #u16708_div {
  779. border-width:0px;
  780. position:absolute;
  781. left:0px;
  782. top:0px;
  783. width:400px;
  784. height:40px;
  785. background:inherit;
  786. background-color:rgba(255, 255, 255, 1);
  787. box-sizing:border-box;
  788. border-width:1px;
  789. border-style:solid;
  790. border-color:rgba(170, 170, 170, 1);
  791. border-radius:4px;
  792. -moz-box-shadow:none;
  793. -webkit-box-shadow:none;
  794. box-shadow:none;
  795. }
  796. #u16708 {
  797. border-width:0px;
  798. position:absolute;
  799. left:238px;
  800. top:161px;
  801. width:400px;
  802. height:40px;
  803. display:flex;
  804. }
  805. #u16708 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 0px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u16708_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u16709_input {
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:380px;
  823. height:30px;
  824. padding:2px 2px 2px 0px;
  825. font-family:'ArialMT', 'Arial', sans-serif;
  826. font-weight:400;
  827. font-style:normal;
  828. font-size:13px;
  829. letter-spacing:normal;
  830. color:#AAAAAA;
  831. vertical-align:none;
  832. text-align:left;
  833. text-transform:none;
  834. background-color:transparent;
  835. border-color:transparent;
  836. }
  837. #u16709_input.disabled {
  838. position:absolute;
  839. left:0px;
  840. top:0px;
  841. width:380px;
  842. height:30px;
  843. padding:2px 2px 2px 0px;
  844. font-family:'ArialMT', 'Arial', sans-serif;
  845. font-weight:400;
  846. font-style:normal;
  847. font-size:13px;
  848. letter-spacing:normal;
  849. color:#AAAAAA;
  850. vertical-align:none;
  851. text-align:left;
  852. text-transform:none;
  853. background-color:transparent;
  854. border-color:transparent;
  855. }
  856. #u16709_div {
  857. border-width:0px;
  858. position:absolute;
  859. left:0px;
  860. top:0px;
  861. width:380px;
  862. height:30px;
  863. background:inherit;
  864. background-color:rgba(255, 255, 255, 1);
  865. border:none;
  866. border-radius:0px;
  867. -moz-box-shadow:none;
  868. -webkit-box-shadow:none;
  869. box-shadow:none;
  870. color:#AAAAAA;
  871. }
  872. #u16709 {
  873. border-width:0px;
  874. position:absolute;
  875. left:248px;
  876. top:165px;
  877. width:380px;
  878. height:30px;
  879. display:flex;
  880. color:#AAAAAA;
  881. }
  882. #u16709 .text {
  883. position:absolute;
  884. align-self:flex-start;
  885. padding:2px 2px 2px 0px;
  886. box-sizing:border-box;
  887. width:100%;
  888. }
  889. #u16709_div.disabled {
  890. border-width:0px;
  891. position:absolute;
  892. left:0px;
  893. top:0px;
  894. width:380px;
  895. height:30px;
  896. background:inherit;
  897. background-color:rgba(240, 240, 240, 1);
  898. border:none;
  899. border-radius:0px;
  900. -moz-box-shadow:none;
  901. -webkit-box-shadow:none;
  902. box-shadow:none;
  903. color:#AAAAAA;
  904. }
  905. #u16709.disabled {
  906. }
  907. .u16709_input_option {
  908. }
  909. #u16710_div {
  910. border-width:0px;
  911. position:absolute;
  912. left:0px;
  913. top:0px;
  914. width:71px;
  915. height:30px;
  916. background:inherit;
  917. background-color:rgba(255, 255, 255, 0);
  918. border:none;
  919. border-top:0px;
  920. border-right:0px;
  921. border-bottom:0px;
  922. border-radius:0px;
  923. border-top-left-radius:0px;
  924. border-bottom-left-radius:0px;
  925. -moz-box-shadow:none;
  926. -webkit-box-shadow:none;
  927. box-shadow:none;
  928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  929. font-weight:400;
  930. font-style:normal;
  931. font-size:14px;
  932. text-align:right;
  933. }
  934. #u16710 {
  935. border-width:0px;
  936. position:absolute;
  937. left:157px;
  938. top:706px;
  939. width:71px;
  940. height:30px;
  941. display:flex;
  942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  943. font-weight:400;
  944. font-style:normal;
  945. font-size:14px;
  946. text-align:right;
  947. }
  948. #u16710 .text {
  949. position:absolute;
  950. align-self:center;
  951. padding:5px 0px 5px 0px;
  952. box-sizing:border-box;
  953. width:100%;
  954. }
  955. #u16710_text {
  956. border-width:0px;
  957. white-space:nowrap;
  958. text-transform:none;
  959. }
  960. #u16711_div {
  961. border-width:0px;
  962. position:absolute;
  963. left:0px;
  964. top:0px;
  965. width:71px;
  966. height:30px;
  967. background:inherit;
  968. background-color:rgba(255, 255, 255, 0);
  969. border:none;
  970. border-top:0px;
  971. border-right:0px;
  972. border-bottom:0px;
  973. border-radius:0px;
  974. border-top-left-radius:0px;
  975. border-bottom-left-radius:0px;
  976. -moz-box-shadow:none;
  977. -webkit-box-shadow:none;
  978. box-shadow:none;
  979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  980. font-weight:400;
  981. font-style:normal;
  982. font-size:14px;
  983. text-align:right;
  984. }
  985. #u16711 {
  986. border-width:0px;
  987. position:absolute;
  988. left:157px;
  989. top:516px;
  990. width:71px;
  991. height:30px;
  992. display:flex;
  993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  994. font-weight:400;
  995. font-style:normal;
  996. font-size:14px;
  997. text-align:right;
  998. }
  999. #u16711 .text {
  1000. position:absolute;
  1001. align-self:center;
  1002. padding:5px 0px 5px 0px;
  1003. box-sizing:border-box;
  1004. width:100%;
  1005. }
  1006. #u16711_text {
  1007. border-width:0px;
  1008. white-space:nowrap;
  1009. text-transform:none;
  1010. }
  1011. #u16712 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u16713_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:400px;
  1025. height:40px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 1);
  1028. box-sizing:border-box;
  1029. border-width:1px;
  1030. border-style:solid;
  1031. border-color:rgba(170, 170, 170, 1);
  1032. border-radius:4px;
  1033. -moz-box-shadow:none;
  1034. -webkit-box-shadow:none;
  1035. box-shadow:none;
  1036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1037. font-weight:400;
  1038. font-style:normal;
  1039. text-align:left;
  1040. }
  1041. #u16713 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:238px;
  1045. top:311px;
  1046. width:400px;
  1047. height:40px;
  1048. display:flex;
  1049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. text-align:left;
  1053. }
  1054. #u16713 .text {
  1055. position:absolute;
  1056. align-self:center;
  1057. padding:2px 2px 2px 10px;
  1058. box-sizing:border-box;
  1059. width:100%;
  1060. }
  1061. #u16713_text {
  1062. border-width:0px;
  1063. word-wrap:break-word;
  1064. text-transform:none;
  1065. visibility:hidden;
  1066. }
  1067. #u16714_input {
  1068. position:absolute;
  1069. left:0px;
  1070. top:0px;
  1071. width:380px;
  1072. height:31px;
  1073. padding:2px 2px 2px 2px;
  1074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1075. font-weight:400;
  1076. font-style:normal;
  1077. font-size:13px;
  1078. letter-spacing:normal;
  1079. color:#AAAAAA;
  1080. vertical-align:none;
  1081. text-align:left;
  1082. text-transform:none;
  1083. background-color:transparent;
  1084. border-color:transparent;
  1085. }
  1086. #u16714_input.disabled {
  1087. position:absolute;
  1088. left:0px;
  1089. top:0px;
  1090. width:380px;
  1091. height:31px;
  1092. padding:2px 2px 2px 2px;
  1093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1094. font-weight:400;
  1095. font-style:normal;
  1096. font-size:13px;
  1097. letter-spacing:normal;
  1098. color:#AAAAAA;
  1099. vertical-align:none;
  1100. text-align:left;
  1101. text-transform:none;
  1102. background-color:transparent;
  1103. border-color:transparent;
  1104. }
  1105. #u16714_div {
  1106. border-width:0px;
  1107. position:absolute;
  1108. left:0px;
  1109. top:0px;
  1110. width:380px;
  1111. height:31px;
  1112. background:inherit;
  1113. background-color:rgba(255, 255, 255, 0);
  1114. border:none;
  1115. border-radius:0px;
  1116. -moz-box-shadow:none;
  1117. -webkit-box-shadow:none;
  1118. box-shadow:none;
  1119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. color:#AAAAAA;
  1123. }
  1124. #u16714 {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:248px;
  1128. top:316px;
  1129. width:380px;
  1130. height:31px;
  1131. display:flex;
  1132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. color:#AAAAAA;
  1136. }
  1137. #u16714 .text {
  1138. position:absolute;
  1139. align-self:center;
  1140. padding:2px 2px 2px 2px;
  1141. box-sizing:border-box;
  1142. width:100%;
  1143. }
  1144. #u16714_div.disabled {
  1145. border-width:0px;
  1146. position:absolute;
  1147. left:0px;
  1148. top:0px;
  1149. width:380px;
  1150. height:31px;
  1151. background:inherit;
  1152. background-color:rgba(240, 240, 240, 1);
  1153. border:none;
  1154. border-radius:0px;
  1155. -moz-box-shadow:none;
  1156. -webkit-box-shadow:none;
  1157. box-shadow:none;
  1158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1159. font-weight:400;
  1160. font-style:normal;
  1161. color:#AAAAAA;
  1162. }
  1163. #u16714.disabled {
  1164. }
  1165. #u16715 {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:0px;
  1169. top:0px;
  1170. width:0px;
  1171. height:0px;
  1172. }
  1173. #u16716_div {
  1174. border-width:0px;
  1175. position:absolute;
  1176. left:0px;
  1177. top:0px;
  1178. width:400px;
  1179. height:40px;
  1180. background:inherit;
  1181. background-color:rgba(255, 255, 255, 1);
  1182. box-sizing:border-box;
  1183. border-width:1px;
  1184. border-style:solid;
  1185. border-color:rgba(170, 170, 170, 1);
  1186. border-radius:4px;
  1187. -moz-box-shadow:none;
  1188. -webkit-box-shadow:none;
  1189. box-shadow:none;
  1190. }
  1191. #u16716 {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:238px;
  1195. top:461px;
  1196. width:400px;
  1197. height:40px;
  1198. display:flex;
  1199. }
  1200. #u16716 .text {
  1201. position:absolute;
  1202. align-self:center;
  1203. padding:2px 2px 2px 0px;
  1204. box-sizing:border-box;
  1205. width:100%;
  1206. }
  1207. #u16716_text {
  1208. border-width:0px;
  1209. word-wrap:break-word;
  1210. text-transform:none;
  1211. visibility:hidden;
  1212. }
  1213. #u16717_input {
  1214. position:absolute;
  1215. left:0px;
  1216. top:0px;
  1217. width:380px;
  1218. height:30px;
  1219. padding:2px 2px 2px 0px;
  1220. font-family:'ArialMT', 'Arial', sans-serif;
  1221. font-weight:400;
  1222. font-style:normal;
  1223. font-size:13px;
  1224. letter-spacing:normal;
  1225. color:#AAAAAA;
  1226. vertical-align:none;
  1227. text-align:left;
  1228. text-transform:none;
  1229. background-color:transparent;
  1230. border-color:transparent;
  1231. }
  1232. #u16717_input.disabled {
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:380px;
  1237. height:30px;
  1238. padding:2px 2px 2px 0px;
  1239. font-family:'ArialMT', 'Arial', sans-serif;
  1240. font-weight:400;
  1241. font-style:normal;
  1242. font-size:13px;
  1243. letter-spacing:normal;
  1244. color:#AAAAAA;
  1245. vertical-align:none;
  1246. text-align:left;
  1247. text-transform:none;
  1248. background-color:transparent;
  1249. border-color:transparent;
  1250. }
  1251. #u16717_div {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:380px;
  1257. height:30px;
  1258. background:inherit;
  1259. background-color:rgba(255, 255, 255, 1);
  1260. border:none;
  1261. border-radius:0px;
  1262. -moz-box-shadow:none;
  1263. -webkit-box-shadow:none;
  1264. box-shadow:none;
  1265. color:#AAAAAA;
  1266. }
  1267. #u16717 {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:248px;
  1271. top:465px;
  1272. width:380px;
  1273. height:30px;
  1274. display:flex;
  1275. color:#AAAAAA;
  1276. }
  1277. #u16717 .text {
  1278. position:absolute;
  1279. align-self:flex-start;
  1280. padding:2px 2px 2px 0px;
  1281. box-sizing:border-box;
  1282. width:100%;
  1283. }
  1284. #u16717_div.disabled {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:0px;
  1288. top:0px;
  1289. width:380px;
  1290. height:30px;
  1291. background:inherit;
  1292. background-color:rgba(240, 240, 240, 1);
  1293. border:none;
  1294. border-radius:0px;
  1295. -moz-box-shadow:none;
  1296. -webkit-box-shadow:none;
  1297. box-shadow:none;
  1298. color:#AAAAAA;
  1299. }
  1300. #u16717.disabled {
  1301. }
  1302. .u16717_input_option {
  1303. }
  1304. #u16718 {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:0px;
  1308. top:0px;
  1309. width:0px;
  1310. height:0px;
  1311. }
  1312. #u16719_div {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:0px;
  1316. top:0px;
  1317. width:400px;
  1318. height:40px;
  1319. background:inherit;
  1320. background-color:rgba(255, 255, 255, 1);
  1321. box-sizing:border-box;
  1322. border-width:1px;
  1323. border-style:solid;
  1324. border-color:rgba(170, 170, 170, 1);
  1325. border-radius:4px;
  1326. -moz-box-shadow:none;
  1327. -webkit-box-shadow:none;
  1328. box-shadow:none;
  1329. }
  1330. #u16719 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:238px;
  1334. top:511px;
  1335. width:400px;
  1336. height:40px;
  1337. display:flex;
  1338. }
  1339. #u16719 .text {
  1340. position:absolute;
  1341. align-self:center;
  1342. padding:2px 2px 2px 0px;
  1343. box-sizing:border-box;
  1344. width:100%;
  1345. }
  1346. #u16719_text {
  1347. border-width:0px;
  1348. word-wrap:break-word;
  1349. text-transform:none;
  1350. visibility:hidden;
  1351. }
  1352. #u16720_input {
  1353. position:absolute;
  1354. left:0px;
  1355. top:0px;
  1356. width:380px;
  1357. height:30px;
  1358. padding:2px 2px 2px 0px;
  1359. font-family:'ArialMT', 'Arial', sans-serif;
  1360. font-weight:400;
  1361. font-style:normal;
  1362. font-size:13px;
  1363. letter-spacing:normal;
  1364. color:#AAAAAA;
  1365. vertical-align:none;
  1366. text-align:left;
  1367. text-transform:none;
  1368. background-color:transparent;
  1369. border-color:transparent;
  1370. }
  1371. #u16720_input.disabled {
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:380px;
  1376. height:30px;
  1377. padding:2px 2px 2px 0px;
  1378. font-family:'ArialMT', 'Arial', sans-serif;
  1379. font-weight:400;
  1380. font-style:normal;
  1381. font-size:13px;
  1382. letter-spacing:normal;
  1383. color:#AAAAAA;
  1384. vertical-align:none;
  1385. text-align:left;
  1386. text-transform:none;
  1387. background-color:transparent;
  1388. border-color:transparent;
  1389. }
  1390. #u16720_div {
  1391. border-width:0px;
  1392. position:absolute;
  1393. left:0px;
  1394. top:0px;
  1395. width:380px;
  1396. height:30px;
  1397. background:inherit;
  1398. background-color:rgba(255, 255, 255, 1);
  1399. border:none;
  1400. border-radius:0px;
  1401. -moz-box-shadow:none;
  1402. -webkit-box-shadow:none;
  1403. box-shadow:none;
  1404. color:#AAAAAA;
  1405. }
  1406. #u16720 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:248px;
  1410. top:515px;
  1411. width:380px;
  1412. height:30px;
  1413. display:flex;
  1414. color:#AAAAAA;
  1415. }
  1416. #u16720 .text {
  1417. position:absolute;
  1418. align-self:flex-start;
  1419. padding:2px 2px 2px 0px;
  1420. box-sizing:border-box;
  1421. width:100%;
  1422. }
  1423. #u16720_div.disabled {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:0px;
  1427. top:0px;
  1428. width:380px;
  1429. height:30px;
  1430. background:inherit;
  1431. background-color:rgba(240, 240, 240, 1);
  1432. border:none;
  1433. border-radius:0px;
  1434. -moz-box-shadow:none;
  1435. -webkit-box-shadow:none;
  1436. box-shadow:none;
  1437. color:#AAAAAA;
  1438. }
  1439. #u16720.disabled {
  1440. }
  1441. .u16720_input_option {
  1442. }
  1443. #u16721 {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:0px;
  1449. height:0px;
  1450. }
  1451. #u16722_div {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:0px;
  1455. top:0px;
  1456. width:400px;
  1457. height:40px;
  1458. background:inherit;
  1459. background-color:rgba(255, 255, 255, 1);
  1460. box-sizing:border-box;
  1461. border-width:1px;
  1462. border-style:solid;
  1463. border-color:rgba(170, 170, 170, 1);
  1464. border-radius:4px;
  1465. -moz-box-shadow:none;
  1466. -webkit-box-shadow:none;
  1467. box-shadow:none;
  1468. }
  1469. #u16722 {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:238px;
  1473. top:211px;
  1474. width:400px;
  1475. height:40px;
  1476. display:flex;
  1477. }
  1478. #u16722 .text {
  1479. position:absolute;
  1480. align-self:center;
  1481. padding:2px 2px 2px 0px;
  1482. box-sizing:border-box;
  1483. width:100%;
  1484. }
  1485. #u16722_text {
  1486. border-width:0px;
  1487. word-wrap:break-word;
  1488. text-transform:none;
  1489. visibility:hidden;
  1490. }
  1491. #u16723_input {
  1492. position:absolute;
  1493. left:0px;
  1494. top:0px;
  1495. width:380px;
  1496. height:30px;
  1497. padding:2px 2px 2px 0px;
  1498. font-family:'ArialMT', 'Arial', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:13px;
  1502. letter-spacing:normal;
  1503. color:#AAAAAA;
  1504. vertical-align:none;
  1505. text-align:left;
  1506. text-transform:none;
  1507. background-color:transparent;
  1508. border-color:transparent;
  1509. }
  1510. #u16723_input.disabled {
  1511. position:absolute;
  1512. left:0px;
  1513. top:0px;
  1514. width:380px;
  1515. height:30px;
  1516. padding:2px 2px 2px 0px;
  1517. font-family:'ArialMT', 'Arial', sans-serif;
  1518. font-weight:400;
  1519. font-style:normal;
  1520. font-size:13px;
  1521. letter-spacing:normal;
  1522. color:#AAAAAA;
  1523. vertical-align:none;
  1524. text-align:left;
  1525. text-transform:none;
  1526. background-color:transparent;
  1527. border-color:transparent;
  1528. }
  1529. #u16723_div {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:0px;
  1533. top:0px;
  1534. width:380px;
  1535. height:30px;
  1536. background:inherit;
  1537. background-color:rgba(255, 255, 255, 1);
  1538. border:none;
  1539. border-radius:0px;
  1540. -moz-box-shadow:none;
  1541. -webkit-box-shadow:none;
  1542. box-shadow:none;
  1543. color:#AAAAAA;
  1544. }
  1545. #u16723 {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:248px;
  1549. top:215px;
  1550. width:380px;
  1551. height:30px;
  1552. display:flex;
  1553. color:#AAAAAA;
  1554. }
  1555. #u16723 .text {
  1556. position:absolute;
  1557. align-self:flex-start;
  1558. padding:2px 2px 2px 0px;
  1559. box-sizing:border-box;
  1560. width:100%;
  1561. }
  1562. #u16723_div.disabled {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:380px;
  1568. height:30px;
  1569. background:inherit;
  1570. background-color:rgba(240, 240, 240, 1);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. color:#AAAAAA;
  1577. }
  1578. #u16723.disabled {
  1579. }
  1580. .u16723_input_option {
  1581. }
  1582. #u16724_div {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:71px;
  1588. height:30px;
  1589. background:inherit;
  1590. background-color:rgba(255, 255, 255, 0);
  1591. border:none;
  1592. border-top:0px;
  1593. border-right:0px;
  1594. border-bottom:0px;
  1595. border-radius:0px;
  1596. border-top-left-radius:0px;
  1597. border-bottom-left-radius:0px;
  1598. -moz-box-shadow:none;
  1599. -webkit-box-shadow:none;
  1600. box-shadow:none;
  1601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1602. font-weight:400;
  1603. font-style:normal;
  1604. font-size:14px;
  1605. text-align:right;
  1606. }
  1607. #u16724 {
  1608. border-width:0px;
  1609. position:absolute;
  1610. left:157px;
  1611. top:566px;
  1612. width:71px;
  1613. height:30px;
  1614. display:flex;
  1615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1616. font-weight:400;
  1617. font-style:normal;
  1618. font-size:14px;
  1619. text-align:right;
  1620. }
  1621. #u16724 .text {
  1622. position:absolute;
  1623. align-self:center;
  1624. padding:5px 0px 5px 0px;
  1625. box-sizing:border-box;
  1626. width:100%;
  1627. }
  1628. #u16724_text {
  1629. border-width:0px;
  1630. white-space:nowrap;
  1631. text-transform:none;
  1632. }
  1633. #u16725 {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:0px;
  1639. height:0px;
  1640. }
  1641. #u16726_div {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:400px;
  1647. height:40px;
  1648. background:inherit;
  1649. background-color:rgba(242, 242, 242, 1);
  1650. box-sizing:border-box;
  1651. border-width:1px;
  1652. border-style:solid;
  1653. border-color:rgba(170, 170, 170, 1);
  1654. border-radius:4px;
  1655. -moz-box-shadow:none;
  1656. -webkit-box-shadow:none;
  1657. box-shadow:none;
  1658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1659. font-weight:400;
  1660. font-style:normal;
  1661. text-align:left;
  1662. }
  1663. #u16726 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:238px;
  1667. top:561px;
  1668. width:400px;
  1669. height:40px;
  1670. display:flex;
  1671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. text-align:left;
  1675. }
  1676. #u16726 .text {
  1677. position:absolute;
  1678. align-self:center;
  1679. padding:2px 2px 2px 10px;
  1680. box-sizing:border-box;
  1681. width:100%;
  1682. }
  1683. #u16726_text {
  1684. border-width:0px;
  1685. word-wrap:break-word;
  1686. text-transform:none;
  1687. visibility:hidden;
  1688. }
  1689. #u16727_div {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:0px;
  1693. top:0px;
  1694. width:68px;
  1695. height:40px;
  1696. background:inherit;
  1697. background-color:rgba(24, 144, 255, 1);
  1698. border:none;
  1699. border-radius:4px;
  1700. -moz-box-shadow:none;
  1701. -webkit-box-shadow:none;
  1702. box-shadow:none;
  1703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1704. font-weight:400;
  1705. font-style:normal;
  1706. color:#FFFFFF;
  1707. }
  1708. #u16727 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:570px;
  1712. top:561px;
  1713. width:68px;
  1714. height:40px;
  1715. display:flex;
  1716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. color:#FFFFFF;
  1720. }
  1721. #u16727 .text {
  1722. position:absolute;
  1723. align-self:center;
  1724. padding:2px 2px 2px 2px;
  1725. box-sizing:border-box;
  1726. width:100%;
  1727. }
  1728. #u16727_text {
  1729. border-width:0px;
  1730. word-wrap:break-word;
  1731. text-transform:none;
  1732. }
  1733. #u16728_div {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:0px;
  1737. top:0px;
  1738. width:78px;
  1739. height:30px;
  1740. background:inherit;
  1741. background-color:rgba(255, 255, 255, 0);
  1742. border:none;
  1743. border-top:0px;
  1744. border-right:0px;
  1745. border-bottom:0px;
  1746. border-radius:0px;
  1747. border-top-left-radius:0px;
  1748. border-bottom-left-radius:0px;
  1749. -moz-box-shadow:none;
  1750. -webkit-box-shadow:none;
  1751. box-shadow:none;
  1752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1753. font-weight:400;
  1754. font-style:normal;
  1755. font-size:14px;
  1756. text-align:right;
  1757. }
  1758. #u16728 {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:150px;
  1762. top:266px;
  1763. width:78px;
  1764. height:30px;
  1765. display:flex;
  1766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1767. font-weight:400;
  1768. font-style:normal;
  1769. font-size:14px;
  1770. text-align:right;
  1771. }
  1772. #u16728 .text {
  1773. position:absolute;
  1774. align-self:center;
  1775. padding:5px 0px 5px 0px;
  1776. box-sizing:border-box;
  1777. width:100%;
  1778. }
  1779. #u16728_text {
  1780. border-width:0px;
  1781. white-space:nowrap;
  1782. text-transform:none;
  1783. }
  1784. #u16729 {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:0px;
  1788. top:0px;
  1789. width:0px;
  1790. height:0px;
  1791. }
  1792. #u16730_div {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:400px;
  1798. height:40px;
  1799. background:inherit;
  1800. background-color:rgba(255, 255, 255, 1);
  1801. box-sizing:border-box;
  1802. border-width:1px;
  1803. border-style:solid;
  1804. border-color:rgba(170, 170, 170, 1);
  1805. border-radius:4px;
  1806. -moz-box-shadow:none;
  1807. -webkit-box-shadow:none;
  1808. box-shadow:none;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. text-align:left;
  1813. }
  1814. #u16730 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:238px;
  1818. top:261px;
  1819. width:400px;
  1820. height:40px;
  1821. display:flex;
  1822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1823. font-weight:400;
  1824. font-style:normal;
  1825. text-align:left;
  1826. }
  1827. #u16730 .text {
  1828. position:absolute;
  1829. align-self:center;
  1830. padding:2px 2px 2px 10px;
  1831. box-sizing:border-box;
  1832. width:100%;
  1833. }
  1834. #u16730_text {
  1835. border-width:0px;
  1836. word-wrap:break-word;
  1837. text-transform:none;
  1838. visibility:hidden;
  1839. }
  1840. #u16731_input {
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:380px;
  1845. height:31px;
  1846. padding:2px 2px 2px 2px;
  1847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1848. font-weight:400;
  1849. font-style:normal;
  1850. font-size:13px;
  1851. letter-spacing:normal;
  1852. color:#AAAAAA;
  1853. vertical-align:none;
  1854. text-align:left;
  1855. text-transform:none;
  1856. background-color:transparent;
  1857. border-color:transparent;
  1858. }
  1859. #u16731_input.disabled {
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:380px;
  1864. height:31px;
  1865. padding:2px 2px 2px 2px;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:13px;
  1870. letter-spacing:normal;
  1871. color:#AAAAAA;
  1872. vertical-align:none;
  1873. text-align:left;
  1874. text-transform:none;
  1875. background-color:transparent;
  1876. border-color:transparent;
  1877. }
  1878. #u16731_div {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:0px;
  1882. top:0px;
  1883. width:380px;
  1884. height:31px;
  1885. background:inherit;
  1886. background-color:rgba(255, 255, 255, 0);
  1887. border:none;
  1888. border-radius:0px;
  1889. -moz-box-shadow:none;
  1890. -webkit-box-shadow:none;
  1891. box-shadow:none;
  1892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1893. font-weight:400;
  1894. font-style:normal;
  1895. color:#AAAAAA;
  1896. }
  1897. #u16731 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:248px;
  1901. top:266px;
  1902. width:380px;
  1903. height:31px;
  1904. display:flex;
  1905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1906. font-weight:400;
  1907. font-style:normal;
  1908. color:#AAAAAA;
  1909. }
  1910. #u16731 .text {
  1911. position:absolute;
  1912. align-self:center;
  1913. padding:2px 2px 2px 2px;
  1914. box-sizing:border-box;
  1915. width:100%;
  1916. }
  1917. #u16731_div.disabled {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:380px;
  1923. height:31px;
  1924. background:inherit;
  1925. background-color:rgba(240, 240, 240, 1);
  1926. border:none;
  1927. border-radius:0px;
  1928. -moz-box-shadow:none;
  1929. -webkit-box-shadow:none;
  1930. box-shadow:none;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. color:#AAAAAA;
  1935. }
  1936. #u16731.disabled {
  1937. }
  1938. #u16732_div {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:80px;
  1944. height:80px;
  1945. background:inherit;
  1946. background-color:rgba(255, 255, 255, 1);
  1947. box-sizing:border-box;
  1948. border-width:1px;
  1949. border-style:solid;
  1950. border-color:rgba(170, 170, 170, 1);
  1951. border-radius:4px;
  1952. -moz-box-shadow:none;
  1953. -webkit-box-shadow:none;
  1954. box-shadow:none;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. }
  1959. #u16732 {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:238px;
  1963. top:611px;
  1964. width:80px;
  1965. height:80px;
  1966. display:flex;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. }
  1971. #u16732 .text {
  1972. position:absolute;
  1973. align-self:center;
  1974. padding:2px 2px 2px 2px;
  1975. box-sizing:border-box;
  1976. width:100%;
  1977. }
  1978. #u16732_text {
  1979. border-width:0px;
  1980. word-wrap:break-word;
  1981. text-transform:none;
  1982. }
  1983. #u16733_div {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:71px;
  1989. height:30px;
  1990. background:inherit;
  1991. background-color:rgba(255, 255, 255, 0);
  1992. border:none;
  1993. border-top:0px;
  1994. border-right:0px;
  1995. border-bottom:0px;
  1996. border-radius:0px;
  1997. border-top-left-radius:0px;
  1998. border-bottom-left-radius:0px;
  1999. -moz-box-shadow:none;
  2000. -webkit-box-shadow:none;
  2001. box-shadow:none;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:14px;
  2006. text-align:right;
  2007. }
  2008. #u16733 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:157px;
  2012. top:616px;
  2013. width:71px;
  2014. height:30px;
  2015. display:flex;
  2016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. font-size:14px;
  2020. text-align:right;
  2021. }
  2022. #u16733 .text {
  2023. position:absolute;
  2024. align-self:center;
  2025. padding:5px 0px 5px 0px;
  2026. box-sizing:border-box;
  2027. width:100%;
  2028. }
  2029. #u16733_text {
  2030. border-width:0px;
  2031. white-space:nowrap;
  2032. text-transform:none;
  2033. }
  2034. #u16734_div {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:50px;
  2040. height:30px;
  2041. background:inherit;
  2042. background-color:rgba(255, 255, 255, 0);
  2043. border:none;
  2044. border-top:0px;
  2045. border-right:0px;
  2046. border-bottom:0px;
  2047. border-radius:0px;
  2048. border-top-left-radius:0px;
  2049. border-bottom-left-radius:0px;
  2050. -moz-box-shadow:none;
  2051. -webkit-box-shadow:none;
  2052. box-shadow:none;
  2053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2054. font-weight:400;
  2055. font-style:normal;
  2056. font-size:14px;
  2057. text-align:right;
  2058. }
  2059. #u16734 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:178px;
  2063. top:366px;
  2064. width:50px;
  2065. height:30px;
  2066. display:flex;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:14px;
  2071. text-align:right;
  2072. }
  2073. #u16734 .text {
  2074. position:absolute;
  2075. align-self:center;
  2076. padding:5px 0px 5px 0px;
  2077. box-sizing:border-box;
  2078. width:100%;
  2079. }
  2080. #u16734_text {
  2081. border-width:0px;
  2082. white-space:nowrap;
  2083. text-transform:none;
  2084. }
  2085. #u16735_div {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:50px;
  2091. height:30px;
  2092. background:inherit;
  2093. background-color:rgba(255, 255, 255, 0);
  2094. border:none;
  2095. border-top:0px;
  2096. border-right:0px;
  2097. border-bottom:0px;
  2098. border-radius:0px;
  2099. border-top-left-radius:0px;
  2100. border-bottom-left-radius:0px;
  2101. -moz-box-shadow:none;
  2102. -webkit-box-shadow:none;
  2103. box-shadow:none;
  2104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:14px;
  2108. text-align:right;
  2109. }
  2110. #u16735 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:178px;
  2114. top:416px;
  2115. width:50px;
  2116. height:30px;
  2117. display:flex;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:14px;
  2122. text-align:right;
  2123. }
  2124. #u16735 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:5px 0px 5px 0px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u16735_text {
  2132. border-width:0px;
  2133. white-space:nowrap;
  2134. text-transform:none;
  2135. }
  2136. #u16736 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:0px;
  2142. height:0px;
  2143. }
  2144. #u16737_div {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:400px;
  2150. height:40px;
  2151. background:inherit;
  2152. background-color:rgba(255, 255, 255, 1);
  2153. box-sizing:border-box;
  2154. border-width:1px;
  2155. border-style:solid;
  2156. border-color:rgba(170, 170, 170, 1);
  2157. border-radius:4px;
  2158. -moz-box-shadow:none;
  2159. -webkit-box-shadow:none;
  2160. box-shadow:none;
  2161. }
  2162. #u16737 {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:238px;
  2166. top:361px;
  2167. width:400px;
  2168. height:40px;
  2169. display:flex;
  2170. }
  2171. #u16737 .text {
  2172. position:absolute;
  2173. align-self:center;
  2174. padding:2px 2px 2px 0px;
  2175. box-sizing:border-box;
  2176. width:100%;
  2177. }
  2178. #u16737_text {
  2179. border-width:0px;
  2180. word-wrap:break-word;
  2181. text-transform:none;
  2182. visibility:hidden;
  2183. }
  2184. #u16738_input {
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:380px;
  2189. height:30px;
  2190. padding:2px 2px 2px 0px;
  2191. font-family:'ArialMT', 'Arial', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:13px;
  2195. letter-spacing:normal;
  2196. color:#AAAAAA;
  2197. vertical-align:none;
  2198. text-align:left;
  2199. text-transform:none;
  2200. background-color:transparent;
  2201. border-color:transparent;
  2202. }
  2203. #u16738_input.disabled {
  2204. position:absolute;
  2205. left:0px;
  2206. top:0px;
  2207. width:380px;
  2208. height:30px;
  2209. padding:2px 2px 2px 0px;
  2210. font-family:'ArialMT', 'Arial', sans-serif;
  2211. font-weight:400;
  2212. font-style:normal;
  2213. font-size:13px;
  2214. letter-spacing:normal;
  2215. color:#AAAAAA;
  2216. vertical-align:none;
  2217. text-align:left;
  2218. text-transform:none;
  2219. background-color:transparent;
  2220. border-color:transparent;
  2221. }
  2222. #u16738_div {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:0px;
  2226. top:0px;
  2227. width:380px;
  2228. height:30px;
  2229. background:inherit;
  2230. background-color:rgba(255, 255, 255, 1);
  2231. border:none;
  2232. border-radius:0px;
  2233. -moz-box-shadow:none;
  2234. -webkit-box-shadow:none;
  2235. box-shadow:none;
  2236. color:#AAAAAA;
  2237. }
  2238. #u16738 {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:248px;
  2242. top:365px;
  2243. width:380px;
  2244. height:30px;
  2245. display:flex;
  2246. color:#AAAAAA;
  2247. }
  2248. #u16738 .text {
  2249. position:absolute;
  2250. align-self:flex-start;
  2251. padding:2px 2px 2px 0px;
  2252. box-sizing:border-box;
  2253. width:100%;
  2254. }
  2255. #u16738_div.disabled {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:380px;
  2261. height:30px;
  2262. background:inherit;
  2263. background-color:rgba(240, 240, 240, 1);
  2264. border:none;
  2265. border-radius:0px;
  2266. -moz-box-shadow:none;
  2267. -webkit-box-shadow:none;
  2268. box-shadow:none;
  2269. color:#AAAAAA;
  2270. }
  2271. #u16738.disabled {
  2272. }
  2273. .u16738_input_option {
  2274. }
  2275. #u16739 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:0px;
  2281. height:0px;
  2282. }
  2283. #u16740_div {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:400px;
  2289. height:40px;
  2290. background:inherit;
  2291. background-color:rgba(255, 255, 255, 1);
  2292. box-sizing:border-box;
  2293. border-width:1px;
  2294. border-style:solid;
  2295. border-color:rgba(170, 170, 170, 1);
  2296. border-radius:4px;
  2297. -moz-box-shadow:none;
  2298. -webkit-box-shadow:none;
  2299. box-shadow:none;
  2300. }
  2301. #u16740 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:238px;
  2305. top:411px;
  2306. width:400px;
  2307. height:40px;
  2308. display:flex;
  2309. }
  2310. #u16740 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:2px 2px 2px 0px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u16740_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. visibility:hidden;
  2322. }
  2323. #u16741_input {
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:380px;
  2328. height:30px;
  2329. padding:2px 2px 2px 0px;
  2330. font-family:'ArialMT', 'Arial', sans-serif;
  2331. font-weight:400;
  2332. font-style:normal;
  2333. font-size:13px;
  2334. letter-spacing:normal;
  2335. color:#AAAAAA;
  2336. vertical-align:none;
  2337. text-align:left;
  2338. text-transform:none;
  2339. background-color:transparent;
  2340. border-color:transparent;
  2341. }
  2342. #u16741_input.disabled {
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:380px;
  2347. height:30px;
  2348. padding:2px 2px 2px 0px;
  2349. font-family:'ArialMT', 'Arial', sans-serif;
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:13px;
  2353. letter-spacing:normal;
  2354. color:#AAAAAA;
  2355. vertical-align:none;
  2356. text-align:left;
  2357. text-transform:none;
  2358. background-color:transparent;
  2359. border-color:transparent;
  2360. }
  2361. #u16741_div {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:380px;
  2367. height:30px;
  2368. background:inherit;
  2369. background-color:rgba(255, 255, 255, 1);
  2370. border:none;
  2371. border-radius:0px;
  2372. -moz-box-shadow:none;
  2373. -webkit-box-shadow:none;
  2374. box-shadow:none;
  2375. color:#AAAAAA;
  2376. }
  2377. #u16741 {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:248px;
  2381. top:415px;
  2382. width:380px;
  2383. height:30px;
  2384. display:flex;
  2385. color:#AAAAAA;
  2386. }
  2387. #u16741 .text {
  2388. position:absolute;
  2389. align-self:flex-start;
  2390. padding:2px 2px 2px 0px;
  2391. box-sizing:border-box;
  2392. width:100%;
  2393. }
  2394. #u16741_div.disabled {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:380px;
  2400. height:30px;
  2401. background:inherit;
  2402. background-color:rgba(240, 240, 240, 1);
  2403. border:none;
  2404. border-radius:0px;
  2405. -moz-box-shadow:none;
  2406. -webkit-box-shadow:none;
  2407. box-shadow:none;
  2408. color:#AAAAAA;
  2409. }
  2410. #u16741.disabled {
  2411. }
  2412. .u16741_input_option {
  2413. }
  2414. #u16742_div {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:78px;
  2420. height:30px;
  2421. background:inherit;
  2422. background-color:rgba(255, 255, 255, 0);
  2423. border:none;
  2424. border-top:0px;
  2425. border-right:0px;
  2426. border-bottom:0px;
  2427. border-radius:0px;
  2428. border-top-left-radius:0px;
  2429. border-bottom-left-radius:0px;
  2430. -moz-box-shadow:none;
  2431. -webkit-box-shadow:none;
  2432. box-shadow:none;
  2433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:14px;
  2437. text-align:right;
  2438. }
  2439. #u16742 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:150px;
  2443. top:117px;
  2444. width:78px;
  2445. height:30px;
  2446. display:flex;
  2447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2448. font-weight:400;
  2449. font-style:normal;
  2450. font-size:14px;
  2451. text-align:right;
  2452. }
  2453. #u16742 .text {
  2454. position:absolute;
  2455. align-self:center;
  2456. padding:5px 0px 5px 0px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u16742_text {
  2461. border-width:0px;
  2462. white-space:nowrap;
  2463. text-transform:none;
  2464. }
  2465. #u16743 label {
  2466. left:0px;
  2467. width:100%;
  2468. }
  2469. #u16743_img {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:3px;
  2474. width:12px;
  2475. height:12px;
  2476. }
  2477. #u16743 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:238px;
  2481. top:123px;
  2482. width:100px;
  2483. height:18px;
  2484. display:flex;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. }
  2489. #u16743 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:0px 2px 0px 2px;
  2493. box-sizing:border-box;
  2494. }
  2495. #u16743_img.selected {
  2496. }
  2497. #u16743.selected {
  2498. }
  2499. #u16743_img.disabled {
  2500. }
  2501. #u16743.disabled {
  2502. }
  2503. #u16743_img.selectedDisabled {
  2504. }
  2505. #u16743.selectedDisabled {
  2506. }
  2507. #u16743_text {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:14px;
  2511. top:0px;
  2512. width:84px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. }
  2516. #u16743_input {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:0px;
  2522. height:0px;
  2523. opacity:0;
  2524. }
  2525. #u16744 label {
  2526. left:0px;
  2527. width:100%;
  2528. }
  2529. #u16744_img {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:3px;
  2534. width:12px;
  2535. height:12px;
  2536. }
  2537. #u16744 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:338px;
  2541. top:123px;
  2542. width:100px;
  2543. height:18px;
  2544. display:flex;
  2545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2546. font-weight:400;
  2547. font-style:normal;
  2548. }
  2549. #u16744 .text {
  2550. position:absolute;
  2551. align-self:center;
  2552. padding:0px 2px 0px 2px;
  2553. box-sizing:border-box;
  2554. }
  2555. #u16744_img.selected {
  2556. }
  2557. #u16744.selected {
  2558. }
  2559. #u16744_img.disabled {
  2560. }
  2561. #u16744.disabled {
  2562. }
  2563. #u16744_img.selectedDisabled {
  2564. }
  2565. #u16744.selectedDisabled {
  2566. }
  2567. #u16744_text {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:14px;
  2571. top:0px;
  2572. width:84px;
  2573. word-wrap:break-word;
  2574. text-transform:none;
  2575. }
  2576. #u16744_input {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:0px;
  2580. top:0px;
  2581. width:0px;
  2582. height:0px;
  2583. opacity:0;
  2584. }
  2585. #u16745 label {
  2586. left:0px;
  2587. width:100%;
  2588. }
  2589. #u16745_img {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:0px;
  2593. top:3px;
  2594. width:12px;
  2595. height:12px;
  2596. }
  2597. #u16745 {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:438px;
  2601. top:123px;
  2602. width:100px;
  2603. height:18px;
  2604. display:flex;
  2605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2606. font-weight:400;
  2607. font-style:normal;
  2608. }
  2609. #u16745 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:0px 2px 0px 2px;
  2613. box-sizing:border-box;
  2614. }
  2615. #u16745_img.selected {
  2616. }
  2617. #u16745.selected {
  2618. }
  2619. #u16745_img.disabled {
  2620. }
  2621. #u16745.disabled {
  2622. }
  2623. #u16745_img.selectedDisabled {
  2624. }
  2625. #u16745.selectedDisabled {
  2626. }
  2627. #u16745_text {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:14px;
  2631. top:0px;
  2632. width:84px;
  2633. word-wrap:break-word;
  2634. text-transform:none;
  2635. }
  2636. #u16745_input {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:0px;
  2640. top:0px;
  2641. width:0px;
  2642. height:0px;
  2643. opacity:0;
  2644. }
  2645. #u16746_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:798px;
  2651. height:526px;
  2652. }
  2653. #u16746 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:950px;
  2657. top:191px;
  2658. width:798px;
  2659. height:526px;
  2660. display:flex;
  2661. }
  2662. #u16746 .text {
  2663. position:absolute;
  2664. align-self:center;
  2665. padding:2px 2px 2px 2px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u16746_text {
  2670. border-width:0px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. visibility:hidden;
  2674. }
  2675. #u16747_div {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:639px;
  2681. height:100px;
  2682. background:inherit;
  2683. background-color:rgba(255, 255, 255, 0);
  2684. border:none;
  2685. border-top:0px;
  2686. border-right:0px;
  2687. border-bottom:0px;
  2688. border-radius:0px;
  2689. border-top-left-radius:0px;
  2690. border-bottom-left-radius:0px;
  2691. -moz-box-shadow:none;
  2692. -webkit-box-shadow:none;
  2693. box-shadow:none;
  2694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2695. font-weight:400;
  2696. font-style:normal;
  2697. font-size:14px;
  2698. color:#D9001B;
  2699. line-height:30px;
  2700. }
  2701. #u16747 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:137px;
  2705. top:790px;
  2706. width:639px;
  2707. height:100px;
  2708. display:flex;
  2709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2710. font-weight:400;
  2711. font-style:normal;
  2712. font-size:14px;
  2713. color:#D9001B;
  2714. line-height:30px;
  2715. }
  2716. #u16747 .text {
  2717. position:absolute;
  2718. align-self:center;
  2719. padding:5px 0px 5px 0px;
  2720. box-sizing:border-box;
  2721. width:100%;
  2722. }
  2723. #u16747_text {
  2724. border-width:0px;
  2725. white-space:nowrap;
  2726. text-transform:none;
  2727. }