styles.css 46 KB

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