styles.css 44 KB

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