styles.css 45 KB

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