styles.css 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985
  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. #u38587 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u38588_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. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u38588 {
  52. border-width:0px;
  53. position:absolute;
  54. left:53px;
  55. top:49px;
  56. width:800px;
  57. height:1201px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u38588 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u38588_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u38589_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:800px;
  88. height:1131px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 1);
  91. box-sizing:border-box;
  92. border-width:1px;
  93. border-style:solid;
  94. border-color:rgba(242, 242, 242, 1);
  95. border-radius:0px;
  96. filter:drop-shadow(none);
  97. transition: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. #u38589 {
  107. border-width:0px;
  108. position:absolute;
  109. left:53px;
  110. top:119px;
  111. width:800px;
  112. height:1131px;
  113. display:flex;
  114. transition:none;
  115. transform-origin:50% 50%;
  116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  117. font-weight:400;
  118. font-style:normal;
  119. font-size:14px;
  120. color:#AAAAAA;
  121. text-align:center;
  122. line-height:30px;
  123. }
  124. #u38589 .text {
  125. position:absolute;
  126. align-self:center;
  127. padding:5px 10px 5px 10px;
  128. box-sizing:border-box;
  129. width:100%;
  130. }
  131. #u38589_text {
  132. border-width:0px;
  133. word-wrap:break-word;
  134. text-transform:none;
  135. visibility:hidden;
  136. }
  137. #u38590_div {
  138. border-width:0px;
  139. position:absolute;
  140. left:0px;
  141. top:0px;
  142. width:800px;
  143. height:60px;
  144. background:inherit;
  145. background-color:rgba(255, 255, 255, 1);
  146. box-sizing:border-box;
  147. border-width:1px;
  148. border-style:solid;
  149. border-color:rgba(242, 242, 242, 1);
  150. border-radius:0px;
  151. filter:drop-shadow(none);
  152. transition:none;
  153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  154. font-weight:400;
  155. font-style:normal;
  156. font-size:14px;
  157. color:#AAAAAA;
  158. text-align:center;
  159. line-height:30px;
  160. }
  161. #u38590 {
  162. border-width:0px;
  163. position:absolute;
  164. left:53px;
  165. top:49px;
  166. width:800px;
  167. height:60px;
  168. display:flex;
  169. transition:none;
  170. transform-origin:50% 50%;
  171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  172. font-weight:400;
  173. font-style:normal;
  174. font-size:14px;
  175. color:#AAAAAA;
  176. text-align:center;
  177. line-height:30px;
  178. }
  179. #u38590 .text {
  180. position:absolute;
  181. align-self:center;
  182. padding:5px 10px 5px 10px;
  183. box-sizing:border-box;
  184. width:100%;
  185. }
  186. #u38590_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u38591_div {
  193. border-width:0px;
  194. position:absolute;
  195. left:0px;
  196. top:0px;
  197. width:119px;
  198. height:60px;
  199. background:inherit;
  200. background-color:rgba(255, 255, 255, 0);
  201. border-top:0px;
  202. border-right:0px;
  203. border-bottom:0px;
  204. border-radius:0px;
  205. border-top-left-radius:0px;
  206. border-bottom-left-radius:0px;
  207. filter:drop-shadow(none);
  208. transition:none;
  209. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  210. font-weight:500;
  211. font-style:normal;
  212. font-size:18px;
  213. line-height:50px;
  214. }
  215. #u38591 {
  216. border-width:0px;
  217. position:absolute;
  218. left:84px;
  219. top:49px;
  220. width:119px;
  221. height:60px;
  222. display:flex;
  223. transition:none;
  224. transform-origin:50% 50%;
  225. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  226. font-weight:500;
  227. font-style:normal;
  228. font-size:18px;
  229. line-height:50px;
  230. }
  231. #u38591 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:5px 10px 5px 0px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u38591_text {
  239. border-width:0px;
  240. white-space:nowrap;
  241. text-transform:none;
  242. }
  243. #u38592_div {
  244. border-width:0px;
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:40px;
  249. height:40px;
  250. background:inherit;
  251. background-color:rgba(255, 255, 255, 0);
  252. border-top:0px;
  253. border-right:0px;
  254. border-bottom:0px;
  255. border-radius:0px;
  256. border-top-left-radius:0px;
  257. border-bottom-left-radius:0px;
  258. filter:drop-shadow(none);
  259. transition:none;
  260. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  261. font-weight:500;
  262. font-style:normal;
  263. font-size:24px;
  264. text-align:center;
  265. }
  266. #u38592 {
  267. border-width:0px;
  268. position:absolute;
  269. left:803px;
  270. top:49px;
  271. width:40px;
  272. height:40px;
  273. display:flex;
  274. transition:none;
  275. transform-origin:50% 50%;
  276. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  277. font-weight:500;
  278. font-style:normal;
  279. font-size:24px;
  280. text-align:center;
  281. }
  282. #u38592 .text {
  283. position:absolute;
  284. align-self:center;
  285. padding:5px 10px 5px 0px;
  286. box-sizing:border-box;
  287. width:100%;
  288. }
  289. #u38592_text {
  290. border-width:0px;
  291. word-wrap:break-word;
  292. text-transform:none;
  293. }
  294. #u38593 {
  295. border-width:0px;
  296. position:absolute;
  297. left:0px;
  298. top:0px;
  299. width:0px;
  300. height:0px;
  301. }
  302. #u38594_div {
  303. border-width:0px;
  304. position:absolute;
  305. left:0px;
  306. top:0px;
  307. width:800px;
  308. height:60px;
  309. background:inherit;
  310. background-color:rgba(255, 255, 255, 1);
  311. box-sizing:border-box;
  312. border-width:1px;
  313. border-style:solid;
  314. border-color:rgba(215, 215, 215, 1);
  315. border-radius:0px;
  316. filter:drop-shadow(none);
  317. transition:none;
  318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  319. font-weight:400;
  320. font-style:normal;
  321. font-size:14px;
  322. color:#AAAAAA;
  323. text-align:center;
  324. line-height:30px;
  325. }
  326. #u38594 {
  327. border-width:0px;
  328. position:absolute;
  329. left:53px;
  330. top:1190px;
  331. width:800px;
  332. height:60px;
  333. display:flex;
  334. transition:none;
  335. transform-origin:50% 50%;
  336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  337. font-weight:400;
  338. font-style:normal;
  339. font-size:14px;
  340. color:#AAAAAA;
  341. text-align:center;
  342. line-height:30px;
  343. }
  344. #u38594 .text {
  345. position:absolute;
  346. align-self:center;
  347. padding:5px 10px 5px 10px;
  348. box-sizing:border-box;
  349. width:100%;
  350. }
  351. #u38594_text {
  352. border-width:0px;
  353. word-wrap:break-word;
  354. text-transform:none;
  355. visibility:hidden;
  356. }
  357. #u38595_div {
  358. border-width:0px;
  359. position:absolute;
  360. left:0px;
  361. top:0px;
  362. width:80px;
  363. height:30px;
  364. background:inherit;
  365. background-color:rgba(24, 144, 255, 1);
  366. box-sizing:border-box;
  367. border-width:1px;
  368. border-style:solid;
  369. border-color:rgba(170, 170, 170, 1);
  370. border-radius:4px;
  371. filter:drop-shadow(none);
  372. transition:none;
  373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  374. font-weight:400;
  375. font-style:normal;
  376. font-size:14px;
  377. color:#FFFFFF;
  378. }
  379. #u38595 {
  380. border-width:0px;
  381. position:absolute;
  382. left:737px;
  383. top:1205px;
  384. width:80px;
  385. height:30px;
  386. display:flex;
  387. transition:none;
  388. transform-origin:50% 50%;
  389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  390. font-weight:400;
  391. font-style:normal;
  392. font-size:14px;
  393. color:#FFFFFF;
  394. }
  395. #u38595 .text {
  396. position:absolute;
  397. align-self:center;
  398. padding:2px 2px 2px 2px;
  399. box-sizing:border-box;
  400. width:100%;
  401. }
  402. #u38595_text {
  403. border-width:0px;
  404. word-wrap:break-word;
  405. text-transform:none;
  406. }
  407. #u38596_div {
  408. border-width:0px;
  409. position:absolute;
  410. left:0px;
  411. top:0px;
  412. width:80px;
  413. height:30px;
  414. background:inherit;
  415. background-color:rgba(255, 255, 255, 1);
  416. box-sizing:border-box;
  417. border-width:1px;
  418. border-style:solid;
  419. border-color:rgba(170, 170, 170, 1);
  420. border-radius:4px;
  421. filter:drop-shadow(none);
  422. transition:none;
  423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  424. font-weight:400;
  425. font-style:normal;
  426. font-size:14px;
  427. }
  428. #u38596 {
  429. border-width:0px;
  430. position:absolute;
  431. left:647px;
  432. top:1205px;
  433. width:80px;
  434. height:30px;
  435. display:flex;
  436. transition:none;
  437. transform-origin:50% 50%;
  438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  439. font-weight:400;
  440. font-style:normal;
  441. font-size:14px;
  442. }
  443. #u38596 .text {
  444. position:absolute;
  445. align-self:center;
  446. padding:2px 2px 2px 2px;
  447. box-sizing:border-box;
  448. width:100%;
  449. }
  450. #u38596_text {
  451. border-width:0px;
  452. word-wrap:break-word;
  453. text-transform:none;
  454. }
  455. #u38597_div {
  456. border-width:0px;
  457. position:absolute;
  458. left:0px;
  459. top:0px;
  460. width:88px;
  461. height:30px;
  462. background:inherit;
  463. background-color:rgba(255, 255, 255, 0);
  464. border-top:0px;
  465. border-right:0px;
  466. border-bottom:0px;
  467. border-radius:0px;
  468. border-top-left-radius:0px;
  469. border-bottom-left-radius:0px;
  470. filter:drop-shadow(none);
  471. transition:none;
  472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:14px;
  476. text-align:right;
  477. }
  478. #u38597 {
  479. border-width:0px;
  480. position:absolute;
  481. left:97px;
  482. top:145px;
  483. width:88px;
  484. height:30px;
  485. display:flex;
  486. transition:none;
  487. transform-origin:50% 50%;
  488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  489. font-weight:400;
  490. font-style:normal;
  491. font-size:14px;
  492. text-align:right;
  493. }
  494. #u38597 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:5px 10px 5px 0px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u38597_text {
  502. border-width:0px;
  503. white-space:nowrap;
  504. text-transform:none;
  505. }
  506. #u38598 {
  507. border-width:0px;
  508. position:absolute;
  509. left:0px;
  510. top:0px;
  511. width:0px;
  512. height:0px;
  513. }
  514. #u38599_div {
  515. border-width:0px;
  516. position:absolute;
  517. left:0px;
  518. top:0px;
  519. width:609px;
  520. height:40px;
  521. background:inherit;
  522. background-color:rgba(255, 255, 255, 1);
  523. box-sizing:border-box;
  524. border-width:1px;
  525. border-style:solid;
  526. border-color:rgba(170, 170, 170, 1);
  527. border-radius:4px;
  528. filter:drop-shadow(none);
  529. transition:none;
  530. }
  531. #u38599 {
  532. border-width:0px;
  533. position:absolute;
  534. left:215px;
  535. top:140px;
  536. width:609px;
  537. height:40px;
  538. display:flex;
  539. transition:none;
  540. transform-origin:50% 50%;
  541. }
  542. #u38599 .text {
  543. position:absolute;
  544. align-self:center;
  545. padding:2px 2px 2px 2px;
  546. box-sizing:border-box;
  547. width:100%;
  548. }
  549. #u38599_text {
  550. border-width:0px;
  551. word-wrap:break-word;
  552. text-transform:none;
  553. visibility:hidden;
  554. }
  555. #u38600_input {
  556. position:absolute;
  557. left:0px;
  558. top:0px;
  559. width:588px;
  560. height:31px;
  561. padding:2px 2px 2px 2px;
  562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  563. font-weight:400;
  564. font-style:normal;
  565. font-size:13px;
  566. letter-spacing:normal;
  567. color:#AAAAAA;
  568. vertical-align:none;
  569. text-align:left;
  570. text-transform:none;
  571. background-color:transparent;
  572. border-color:transparent;
  573. }
  574. #u38600_input.hint {
  575. position:absolute;
  576. left:0px;
  577. top:0px;
  578. width:588px;
  579. height:31px;
  580. padding:2px 2px 2px 2px;
  581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  582. font-weight:400;
  583. font-style:normal;
  584. font-size:13px;
  585. letter-spacing:normal;
  586. color:#999999;
  587. vertical-align:none;
  588. text-align:left;
  589. text-transform:none;
  590. background-color:transparent;
  591. border-color:transparent;
  592. }
  593. #u38600_input.disabled {
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:588px;
  598. height:31px;
  599. padding:2px 2px 2px 2px;
  600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  601. font-weight:400;
  602. font-style:normal;
  603. font-size:13px;
  604. letter-spacing:normal;
  605. color:#AAAAAA;
  606. vertical-align:none;
  607. text-align:left;
  608. text-transform:none;
  609. background-color:transparent;
  610. border-color:transparent;
  611. }
  612. #u38600_input.hint.disabled {
  613. position:absolute;
  614. left:0px;
  615. top:0px;
  616. width:588px;
  617. height:31px;
  618. padding:2px 2px 2px 2px;
  619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  620. font-weight:400;
  621. font-style:normal;
  622. font-size:13px;
  623. letter-spacing:normal;
  624. color:#999999;
  625. vertical-align:none;
  626. text-align:left;
  627. text-transform:none;
  628. background-color:transparent;
  629. border-color:transparent;
  630. }
  631. #u38600_div {
  632. border-width:0px;
  633. position:absolute;
  634. left:0px;
  635. top:0px;
  636. width:588px;
  637. height:31px;
  638. background:inherit;
  639. background-color:rgba(255, 255, 255, 0);
  640. border-radius:0px;
  641. filter:drop-shadow(none);
  642. transition:none;
  643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  644. font-weight:400;
  645. font-style:normal;
  646. color:#AAAAAA;
  647. }
  648. #u38600 {
  649. border-width:0px;
  650. position:absolute;
  651. left:225px;
  652. top:145px;
  653. width:588px;
  654. height:31px;
  655. display:flex;
  656. transition:none;
  657. transform-origin:50% 50%;
  658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  659. font-weight:400;
  660. font-style:normal;
  661. color:#AAAAAA;
  662. }
  663. #u38600 .text {
  664. position:absolute;
  665. align-self:center;
  666. padding:2px 2px 2px 2px;
  667. box-sizing:border-box;
  668. width:100%;
  669. }
  670. #u38600_div.hint {
  671. border-width:0px;
  672. position:absolute;
  673. left:0px;
  674. top:0px;
  675. width:588px;
  676. height:31px;
  677. background:inherit;
  678. background-color:rgba(255, 255, 255, 0);
  679. border-radius:0px;
  680. filter:drop-shadow(none);
  681. transition:none;
  682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  683. font-weight:400;
  684. font-style:normal;
  685. color:#AAAAAA;
  686. }
  687. #u38600.hint {
  688. }
  689. #u38600_div.disabled {
  690. border-width:0px;
  691. position:absolute;
  692. left:0px;
  693. top:0px;
  694. width:588px;
  695. height:31px;
  696. background:inherit;
  697. background-color:rgba(240, 240, 240, 1);
  698. border-radius:0px;
  699. filter:drop-shadow(none);
  700. transition:none;
  701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  702. font-weight:400;
  703. font-style:normal;
  704. color:#AAAAAA;
  705. }
  706. #u38600.disabled {
  707. }
  708. #u38600_div.hint.disabled {
  709. border-width:0px;
  710. position:absolute;
  711. left:0px;
  712. top:0px;
  713. width:588px;
  714. height:31px;
  715. background:inherit;
  716. background-color:rgba(240, 240, 240, 1);
  717. border-radius:0px;
  718. filter:drop-shadow(none);
  719. transition:none;
  720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  721. font-weight:400;
  722. font-style:normal;
  723. color:#AAAAAA;
  724. }
  725. #u38600.hint.disabled {
  726. }
  727. #u38601 {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:0px;
  733. height:0px;
  734. }
  735. #u38602_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:740px;
  741. height:60px;
  742. background:inherit;
  743. background-color:rgba(242, 242, 242, 1);
  744. border-radius:0px;
  745. filter:drop-shadow(none);
  746. transition:none;
  747. }
  748. #u38602 {
  749. border-width:0px;
  750. position:absolute;
  751. left:84px;
  752. top:200px;
  753. width:740px;
  754. height:60px;
  755. display:flex;
  756. transition:none;
  757. transform-origin:50% 50%;
  758. }
  759. #u38602 .text {
  760. position:absolute;
  761. align-self:center;
  762. padding:2px 2px 2px 2px;
  763. box-sizing:border-box;
  764. width:100%;
  765. }
  766. #u38602_text {
  767. border-width:0px;
  768. word-wrap:break-word;
  769. text-transform:none;
  770. visibility:hidden;
  771. }
  772. #u38603_div {
  773. border-width:0px;
  774. position:absolute;
  775. left:0px;
  776. top:0px;
  777. width:81px;
  778. height:30px;
  779. background:inherit;
  780. background-color:rgba(255, 255, 255, 0);
  781. border-top:0px;
  782. border-right:0px;
  783. border-bottom:0px;
  784. border-radius:0px;
  785. border-top-left-radius:0px;
  786. border-bottom-left-radius:0px;
  787. filter:drop-shadow(none);
  788. transition:none;
  789. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  790. font-weight:500;
  791. font-style:normal;
  792. font-size:14px;
  793. text-align:right;
  794. }
  795. #u38603 {
  796. border-width:0px;
  797. position:absolute;
  798. left:104px;
  799. top:215px;
  800. width:81px;
  801. height:30px;
  802. display:flex;
  803. transition:none;
  804. transform-origin:50% 50%;
  805. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  806. font-weight:500;
  807. font-style:normal;
  808. font-size:14px;
  809. text-align:right;
  810. }
  811. #u38603 .text {
  812. position:absolute;
  813. align-self:center;
  814. padding:5px 10px 5px 0px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u38603_text {
  819. border-width:0px;
  820. white-space:nowrap;
  821. text-transform:none;
  822. }
  823. #u38604 label {
  824. left:0px;
  825. width:100%;
  826. height:100%;
  827. }
  828. #u38604_img {
  829. border-width:0px;
  830. position:absolute;
  831. left:0px;
  832. top:4px;
  833. width:12px;
  834. height:12px;
  835. }
  836. #u38604 {
  837. border-width:0px;
  838. position:absolute;
  839. left:215px;
  840. top:220px;
  841. width:65px;
  842. height:20px;
  843. display:flex;
  844. transition:none;
  845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  846. font-weight:400;
  847. font-style:normal;
  848. font-size:14px;
  849. }
  850. #u38604 .text {
  851. position:absolute;
  852. align-self:center;
  853. padding:0px 2px 0px 2px;
  854. box-sizing:border-box;
  855. }
  856. #u38604_img.selected {
  857. }
  858. #u38604.selected {
  859. }
  860. #u38604_img.disabled {
  861. }
  862. #u38604.disabled {
  863. }
  864. #u38604_img.selected.error {
  865. }
  866. #u38604.selected.error {
  867. }
  868. #u38604_img.selected.hint {
  869. }
  870. #u38604.selected.hint {
  871. }
  872. #u38604_img.selected.error.hint {
  873. }
  874. #u38604.selected.error.hint {
  875. }
  876. #u38604_img.mouseOver.selected {
  877. }
  878. #u38604.mouseOver.selected {
  879. }
  880. #u38604_img.mouseOver.selected.error {
  881. }
  882. #u38604.mouseOver.selected.error {
  883. }
  884. #u38604_img.mouseOver.selected.hint {
  885. }
  886. #u38604.mouseOver.selected.hint {
  887. }
  888. #u38604_img.mouseOver.selected.error.hint {
  889. }
  890. #u38604.mouseOver.selected.error.hint {
  891. }
  892. #u38604_img.mouseDown.selected {
  893. }
  894. #u38604.mouseDown.selected {
  895. }
  896. #u38604_img.mouseDown.selected.error {
  897. }
  898. #u38604.mouseDown.selected.error {
  899. }
  900. #u38604_img.mouseDown.selected.hint {
  901. }
  902. #u38604.mouseDown.selected.hint {
  903. }
  904. #u38604_img.mouseDown.selected.error.hint {
  905. }
  906. #u38604.mouseDown.selected.error.hint {
  907. }
  908. #u38604_img.mouseOver.mouseDown.selected {
  909. }
  910. #u38604.mouseOver.mouseDown.selected {
  911. }
  912. #u38604_img.mouseOver.mouseDown.selected.error {
  913. }
  914. #u38604.mouseOver.mouseDown.selected.error {
  915. }
  916. #u38604_img.mouseOver.mouseDown.selected.hint {
  917. }
  918. #u38604.mouseOver.mouseDown.selected.hint {
  919. }
  920. #u38604_img.mouseOver.mouseDown.selected.error.hint {
  921. }
  922. #u38604.mouseOver.mouseDown.selected.error.hint {
  923. }
  924. #u38604_img.focused.selected {
  925. }
  926. #u38604.focused.selected {
  927. }
  928. #u38604_img.focused.selected.error {
  929. }
  930. #u38604.focused.selected.error {
  931. }
  932. #u38604_img.focused.selected.hint {
  933. }
  934. #u38604.focused.selected.hint {
  935. }
  936. #u38604_img.focused.selected.error.hint {
  937. }
  938. #u38604.focused.selected.error.hint {
  939. }
  940. #u38604_img.selected.disabled {
  941. }
  942. #u38604.selected.disabled {
  943. }
  944. #u38604_img.selected.hint.disabled {
  945. }
  946. #u38604.selected.hint.disabled {
  947. }
  948. #u38604_img.selected.error.disabled {
  949. }
  950. #u38604.selected.error.disabled {
  951. }
  952. #u38604_img.selected.error.hint.disabled {
  953. }
  954. #u38604.selected.error.hint.disabled {
  955. }
  956. #u38604_text {
  957. border-width:0px;
  958. position:absolute;
  959. left:12px;
  960. top:0px;
  961. width:53px;
  962. word-wrap:break-word;
  963. text-transform:none;
  964. }
  965. #u38604_input {
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:0px;
  971. height:0px;
  972. opacity:0;
  973. }
  974. #u38605_div {
  975. border-width:0px;
  976. position:absolute;
  977. left:0px;
  978. top:0px;
  979. width:35px;
  980. height:27px;
  981. background:inherit;
  982. background-color:rgba(255, 255, 255, 0);
  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. filter:drop-shadow(none);
  990. transition:none;
  991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  992. font-weight:400;
  993. font-style:normal;
  994. font-size:12px;
  995. color:#1890FF;
  996. }
  997. #u38605 {
  998. border-width:0px;
  999. position:absolute;
  1000. left:285px;
  1001. top:217px;
  1002. width:35px;
  1003. height:27px;
  1004. display:flex;
  1005. transition:none;
  1006. transform-origin:50% 50%;
  1007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1008. font-weight:400;
  1009. font-style:normal;
  1010. font-size:12px;
  1011. color:#1890FF;
  1012. }
  1013. #u38605 .text {
  1014. position:absolute;
  1015. align-self:center;
  1016. padding:5px 10px 5px 0px;
  1017. box-sizing:border-box;
  1018. width:100%;
  1019. }
  1020. #u38605_text {
  1021. border-width:0px;
  1022. white-space:nowrap;
  1023. text-transform:none;
  1024. }
  1025. #u38606 {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:0px;
  1031. height:0px;
  1032. }
  1033. #u38607_div {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:740px;
  1039. height:60px;
  1040. background:inherit;
  1041. background-color:rgba(242, 242, 242, 1);
  1042. border-radius:0px;
  1043. filter:drop-shadow(none);
  1044. transition:none;
  1045. }
  1046. #u38607 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:84px;
  1050. top:270px;
  1051. width:740px;
  1052. height:60px;
  1053. display:flex;
  1054. transition:none;
  1055. transform-origin:50% 50%;
  1056. }
  1057. #u38607 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u38607_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u38608_div {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:81px;
  1076. height:30px;
  1077. background:inherit;
  1078. background-color:rgba(255, 255, 255, 0);
  1079. border-top:0px;
  1080. border-right:0px;
  1081. border-bottom:0px;
  1082. border-radius:0px;
  1083. border-top-left-radius:0px;
  1084. border-bottom-left-radius:0px;
  1085. filter:drop-shadow(none);
  1086. transition:none;
  1087. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1088. font-weight:500;
  1089. font-style:normal;
  1090. font-size:14px;
  1091. text-align:right;
  1092. }
  1093. #u38608 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:104px;
  1097. top:285px;
  1098. width:81px;
  1099. height:30px;
  1100. display:flex;
  1101. transition:none;
  1102. transform-origin:50% 50%;
  1103. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1104. font-weight:500;
  1105. font-style:normal;
  1106. font-size:14px;
  1107. text-align:right;
  1108. }
  1109. #u38608 .text {
  1110. position:absolute;
  1111. align-self:center;
  1112. padding:5px 10px 5px 0px;
  1113. box-sizing:border-box;
  1114. width:100%;
  1115. }
  1116. #u38608_text {
  1117. border-width:0px;
  1118. white-space:nowrap;
  1119. text-transform:none;
  1120. }
  1121. #u38609_div {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:0px;
  1125. top:0px;
  1126. width:187px;
  1127. height:27px;
  1128. background:inherit;
  1129. background-color:rgba(255, 255, 255, 0);
  1130. border-top:0px;
  1131. border-right:0px;
  1132. border-bottom:0px;
  1133. border-radius:0px;
  1134. border-top-left-radius:0px;
  1135. border-bottom-left-radius:0px;
  1136. filter:drop-shadow(none);
  1137. transition:none;
  1138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1139. font-weight:400;
  1140. font-style:normal;
  1141. font-size:12px;
  1142. color:#AAAAAA;
  1143. }
  1144. #u38609 {
  1145. border-width:0px;
  1146. position:absolute;
  1147. left:623px;
  1148. top:287px;
  1149. width:187px;
  1150. height:27px;
  1151. display:flex;
  1152. transition:none;
  1153. transform-origin:50% 50%;
  1154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1155. font-weight:400;
  1156. font-style:normal;
  1157. font-size:12px;
  1158. color:#AAAAAA;
  1159. }
  1160. #u38609 .text {
  1161. position:absolute;
  1162. align-self:center;
  1163. padding:5px 10px 5px 0px;
  1164. box-sizing:border-box;
  1165. width:100%;
  1166. }
  1167. #u38609_text {
  1168. border-width:0px;
  1169. white-space:nowrap;
  1170. text-transform:none;
  1171. }
  1172. #u38610 label {
  1173. left:0px;
  1174. width:100%;
  1175. height:100%;
  1176. }
  1177. #u38610_img {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:4px;
  1182. width:12px;
  1183. height:12px;
  1184. }
  1185. #u38610 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:215px;
  1189. top:290px;
  1190. width:70px;
  1191. height:20px;
  1192. display:flex;
  1193. transition:none;
  1194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1195. font-weight:400;
  1196. font-style:normal;
  1197. font-size:14px;
  1198. }
  1199. #u38610 .text {
  1200. position:absolute;
  1201. align-self:center;
  1202. padding:0px 2px 0px 2px;
  1203. box-sizing:border-box;
  1204. }
  1205. #u38610_img.selected {
  1206. }
  1207. #u38610.selected {
  1208. }
  1209. #u38610_img.disabled {
  1210. }
  1211. #u38610.disabled {
  1212. }
  1213. #u38610_img.selected.error {
  1214. }
  1215. #u38610.selected.error {
  1216. }
  1217. #u38610_img.selected.hint {
  1218. }
  1219. #u38610.selected.hint {
  1220. }
  1221. #u38610_img.selected.error.hint {
  1222. }
  1223. #u38610.selected.error.hint {
  1224. }
  1225. #u38610_img.mouseOver.selected {
  1226. }
  1227. #u38610.mouseOver.selected {
  1228. }
  1229. #u38610_img.mouseOver.selected.error {
  1230. }
  1231. #u38610.mouseOver.selected.error {
  1232. }
  1233. #u38610_img.mouseOver.selected.hint {
  1234. }
  1235. #u38610.mouseOver.selected.hint {
  1236. }
  1237. #u38610_img.mouseOver.selected.error.hint {
  1238. }
  1239. #u38610.mouseOver.selected.error.hint {
  1240. }
  1241. #u38610_img.mouseDown.selected {
  1242. }
  1243. #u38610.mouseDown.selected {
  1244. }
  1245. #u38610_img.mouseDown.selected.error {
  1246. }
  1247. #u38610.mouseDown.selected.error {
  1248. }
  1249. #u38610_img.mouseDown.selected.hint {
  1250. }
  1251. #u38610.mouseDown.selected.hint {
  1252. }
  1253. #u38610_img.mouseDown.selected.error.hint {
  1254. }
  1255. #u38610.mouseDown.selected.error.hint {
  1256. }
  1257. #u38610_img.mouseOver.mouseDown.selected {
  1258. }
  1259. #u38610.mouseOver.mouseDown.selected {
  1260. }
  1261. #u38610_img.mouseOver.mouseDown.selected.error {
  1262. }
  1263. #u38610.mouseOver.mouseDown.selected.error {
  1264. }
  1265. #u38610_img.mouseOver.mouseDown.selected.hint {
  1266. }
  1267. #u38610.mouseOver.mouseDown.selected.hint {
  1268. }
  1269. #u38610_img.mouseOver.mouseDown.selected.error.hint {
  1270. }
  1271. #u38610.mouseOver.mouseDown.selected.error.hint {
  1272. }
  1273. #u38610_img.focused.selected {
  1274. }
  1275. #u38610.focused.selected {
  1276. }
  1277. #u38610_img.focused.selected.error {
  1278. }
  1279. #u38610.focused.selected.error {
  1280. }
  1281. #u38610_img.focused.selected.hint {
  1282. }
  1283. #u38610.focused.selected.hint {
  1284. }
  1285. #u38610_img.focused.selected.error.hint {
  1286. }
  1287. #u38610.focused.selected.error.hint {
  1288. }
  1289. #u38610_img.selected.disabled {
  1290. }
  1291. #u38610.selected.disabled {
  1292. }
  1293. #u38610_img.selected.hint.disabled {
  1294. }
  1295. #u38610.selected.hint.disabled {
  1296. }
  1297. #u38610_img.selected.error.disabled {
  1298. }
  1299. #u38610.selected.error.disabled {
  1300. }
  1301. #u38610_img.selected.error.hint.disabled {
  1302. }
  1303. #u38610.selected.error.hint.disabled {
  1304. }
  1305. #u38610_text {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:12px;
  1309. top:0px;
  1310. width:58px;
  1311. word-wrap:break-word;
  1312. text-transform:none;
  1313. }
  1314. #u38610_input {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:0px;
  1318. top:0px;
  1319. width:0px;
  1320. height:0px;
  1321. opacity:0;
  1322. }
  1323. #u38611_div {
  1324. border-width:0px;
  1325. position:absolute;
  1326. left:0px;
  1327. top:0px;
  1328. width:35px;
  1329. height:27px;
  1330. background:inherit;
  1331. background-color:rgba(255, 255, 255, 0);
  1332. border-top:0px;
  1333. border-right:0px;
  1334. border-bottom:0px;
  1335. border-radius:0px;
  1336. border-top-left-radius:0px;
  1337. border-bottom-left-radius:0px;
  1338. filter:drop-shadow(none);
  1339. transition:none;
  1340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1341. font-weight:400;
  1342. font-style:normal;
  1343. font-size:12px;
  1344. color:#1890FF;
  1345. }
  1346. #u38611 {
  1347. border-width:0px;
  1348. position:absolute;
  1349. left:285px;
  1350. top:287px;
  1351. width:35px;
  1352. height:27px;
  1353. display:flex;
  1354. transition:none;
  1355. transform-origin:50% 50%;
  1356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1357. font-weight:400;
  1358. font-style:normal;
  1359. font-size:12px;
  1360. color:#1890FF;
  1361. }
  1362. #u38611 .text {
  1363. position:absolute;
  1364. align-self:center;
  1365. padding:5px 10px 5px 0px;
  1366. box-sizing:border-box;
  1367. width:100%;
  1368. }
  1369. #u38611_text {
  1370. border-width:0px;
  1371. white-space:nowrap;
  1372. text-transform:none;
  1373. }
  1374. #u38612_div {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:0px;
  1378. top:0px;
  1379. width:763px;
  1380. height:40px;
  1381. background:inherit;
  1382. background-color:rgba(255, 255, 255, 0);
  1383. border-left:0px;
  1384. border-top:0px;
  1385. border-right:0px;
  1386. border-radius:0px;
  1387. border-bottom-right-radius:0px;
  1388. border-bottom-left-radius:0px;
  1389. filter:drop-shadow(none);
  1390. transition:none;
  1391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1392. font-weight:400;
  1393. font-style:normal;
  1394. font-size:14px;
  1395. color:#D9001B;
  1396. }
  1397. #u38612 {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:61px;
  1401. top:371px;
  1402. width:763px;
  1403. height:40px;
  1404. display:flex;
  1405. transition:none;
  1406. transform-origin:50% 50%;
  1407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1408. font-weight:400;
  1409. font-style:normal;
  1410. font-size:14px;
  1411. color:#D9001B;
  1412. }
  1413. #u38612 .text {
  1414. position:absolute;
  1415. align-self:center;
  1416. padding:0px 0px 0px 0px;
  1417. box-sizing:border-box;
  1418. width:100%;
  1419. }
  1420. #u38612_text {
  1421. border-width:0px;
  1422. white-space:nowrap;
  1423. text-transform:none;
  1424. }
  1425. #u38613 {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:0px;
  1429. top:0px;
  1430. width:0px;
  1431. height:0px;
  1432. }
  1433. #u38614_div {
  1434. border-width:0px;
  1435. position:absolute;
  1436. left:0px;
  1437. top:0px;
  1438. width:800px;
  1439. height:1201px;
  1440. background:inherit;
  1441. background-color:rgba(242, 242, 242, 1);
  1442. box-sizing:border-box;
  1443. border-width:1px;
  1444. border-style:solid;
  1445. border-color:rgba(215, 215, 215, 1);
  1446. border-radius:0px;
  1447. filter:drop-shadow(none);
  1448. transition:none;
  1449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1450. font-weight:400;
  1451. font-style:normal;
  1452. font-size:14px;
  1453. color:#AAAAAA;
  1454. text-align:center;
  1455. line-height:30px;
  1456. }
  1457. #u38614 {
  1458. border-width:0px;
  1459. position:absolute;
  1460. left:873px;
  1461. top:49px;
  1462. width:800px;
  1463. height:1201px;
  1464. display:flex;
  1465. transition:none;
  1466. transform-origin:50% 50%;
  1467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1468. font-weight:400;
  1469. font-style:normal;
  1470. font-size:14px;
  1471. color:#AAAAAA;
  1472. text-align:center;
  1473. line-height:30px;
  1474. }
  1475. #u38614 .text {
  1476. position:absolute;
  1477. align-self:center;
  1478. padding:5px 10px 5px 10px;
  1479. box-sizing:border-box;
  1480. width:100%;
  1481. }
  1482. #u38614_text {
  1483. border-width:0px;
  1484. word-wrap:break-word;
  1485. text-transform:none;
  1486. visibility:hidden;
  1487. }
  1488. #u38615_div {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:800px;
  1494. height:1131px;
  1495. background:inherit;
  1496. background-color:rgba(255, 255, 255, 1);
  1497. box-sizing:border-box;
  1498. border-width:1px;
  1499. border-style:solid;
  1500. border-color:rgba(242, 242, 242, 1);
  1501. border-radius:0px;
  1502. filter:drop-shadow(none);
  1503. transition:none;
  1504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1505. font-weight:400;
  1506. font-style:normal;
  1507. font-size:14px;
  1508. color:#AAAAAA;
  1509. text-align:center;
  1510. line-height:30px;
  1511. }
  1512. #u38615 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:873px;
  1516. top:119px;
  1517. width:800px;
  1518. height:1131px;
  1519. display:flex;
  1520. transition:none;
  1521. transform-origin:50% 50%;
  1522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1523. font-weight:400;
  1524. font-style:normal;
  1525. font-size:14px;
  1526. color:#AAAAAA;
  1527. text-align:center;
  1528. line-height:30px;
  1529. }
  1530. #u38615 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:5px 10px 5px 10px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u38615_text {
  1538. border-width:0px;
  1539. word-wrap:break-word;
  1540. text-transform:none;
  1541. visibility:hidden;
  1542. }
  1543. #u38616_div {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:0px;
  1547. top:0px;
  1548. width:800px;
  1549. height:60px;
  1550. background:inherit;
  1551. background-color:rgba(255, 255, 255, 1);
  1552. box-sizing:border-box;
  1553. border-width:1px;
  1554. border-style:solid;
  1555. border-color:rgba(242, 242, 242, 1);
  1556. border-radius:0px;
  1557. filter:drop-shadow(none);
  1558. transition:none;
  1559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1560. font-weight:400;
  1561. font-style:normal;
  1562. font-size:14px;
  1563. color:#AAAAAA;
  1564. text-align:center;
  1565. line-height:30px;
  1566. }
  1567. #u38616 {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:873px;
  1571. top:49px;
  1572. width:800px;
  1573. height:60px;
  1574. display:flex;
  1575. transition:none;
  1576. transform-origin:50% 50%;
  1577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1578. font-weight:400;
  1579. font-style:normal;
  1580. font-size:14px;
  1581. color:#AAAAAA;
  1582. text-align:center;
  1583. line-height:30px;
  1584. }
  1585. #u38616 .text {
  1586. position:absolute;
  1587. align-self:center;
  1588. padding:5px 10px 5px 10px;
  1589. box-sizing:border-box;
  1590. width:100%;
  1591. }
  1592. #u38616_text {
  1593. border-width:0px;
  1594. word-wrap:break-word;
  1595. text-transform:none;
  1596. visibility:hidden;
  1597. }
  1598. #u38617_div {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:0px;
  1602. top:0px;
  1603. width:119px;
  1604. height:60px;
  1605. background:inherit;
  1606. background-color:rgba(255, 255, 255, 0);
  1607. border-top:0px;
  1608. border-right:0px;
  1609. border-bottom:0px;
  1610. border-radius:0px;
  1611. border-top-left-radius:0px;
  1612. border-bottom-left-radius:0px;
  1613. filter:drop-shadow(none);
  1614. transition:none;
  1615. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1616. font-weight:500;
  1617. font-style:normal;
  1618. font-size:18px;
  1619. line-height:50px;
  1620. }
  1621. #u38617 {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:904px;
  1625. top:49px;
  1626. width:119px;
  1627. height:60px;
  1628. display:flex;
  1629. transition:none;
  1630. transform-origin:50% 50%;
  1631. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1632. font-weight:500;
  1633. font-style:normal;
  1634. font-size:18px;
  1635. line-height:50px;
  1636. }
  1637. #u38617 .text {
  1638. position:absolute;
  1639. align-self:center;
  1640. padding:5px 10px 5px 0px;
  1641. box-sizing:border-box;
  1642. width:100%;
  1643. }
  1644. #u38617_text {
  1645. border-width:0px;
  1646. white-space:nowrap;
  1647. text-transform:none;
  1648. }
  1649. #u38618_div {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:40px;
  1655. height:40px;
  1656. background:inherit;
  1657. background-color:rgba(255, 255, 255, 0);
  1658. border-top:0px;
  1659. border-right:0px;
  1660. border-bottom:0px;
  1661. border-radius:0px;
  1662. border-top-left-radius:0px;
  1663. border-bottom-left-radius:0px;
  1664. filter:drop-shadow(none);
  1665. transition:none;
  1666. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1667. font-weight:500;
  1668. font-style:normal;
  1669. font-size:24px;
  1670. text-align:center;
  1671. }
  1672. #u38618 {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:1623px;
  1676. top:49px;
  1677. width:40px;
  1678. height:40px;
  1679. display:flex;
  1680. transition:none;
  1681. transform-origin:50% 50%;
  1682. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1683. font-weight:500;
  1684. font-style:normal;
  1685. font-size:24px;
  1686. text-align:center;
  1687. }
  1688. #u38618 .text {
  1689. position:absolute;
  1690. align-self:center;
  1691. padding:5px 10px 5px 0px;
  1692. box-sizing:border-box;
  1693. width:100%;
  1694. }
  1695. #u38618_text {
  1696. border-width:0px;
  1697. word-wrap:break-word;
  1698. text-transform:none;
  1699. }
  1700. #u38619 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:0px;
  1704. top:0px;
  1705. width:0px;
  1706. height:0px;
  1707. }
  1708. #u38620_div {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:800px;
  1714. height:60px;
  1715. background:inherit;
  1716. background-color:rgba(255, 255, 255, 1);
  1717. box-sizing:border-box;
  1718. border-width:1px;
  1719. border-style:solid;
  1720. border-color:rgba(215, 215, 215, 1);
  1721. border-radius:0px;
  1722. filter:drop-shadow(none);
  1723. transition:none;
  1724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1725. font-weight:400;
  1726. font-style:normal;
  1727. font-size:14px;
  1728. color:#AAAAAA;
  1729. text-align:center;
  1730. line-height:30px;
  1731. }
  1732. #u38620 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:873px;
  1736. top:1190px;
  1737. width:800px;
  1738. height:60px;
  1739. display:flex;
  1740. transition:none;
  1741. transform-origin:50% 50%;
  1742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1743. font-weight:400;
  1744. font-style:normal;
  1745. font-size:14px;
  1746. color:#AAAAAA;
  1747. text-align:center;
  1748. line-height:30px;
  1749. }
  1750. #u38620 .text {
  1751. position:absolute;
  1752. align-self:center;
  1753. padding:5px 10px 5px 10px;
  1754. box-sizing:border-box;
  1755. width:100%;
  1756. }
  1757. #u38620_text {
  1758. border-width:0px;
  1759. word-wrap:break-word;
  1760. text-transform:none;
  1761. visibility:hidden;
  1762. }
  1763. #u38621_div {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:80px;
  1769. height:30px;
  1770. background:inherit;
  1771. background-color:rgba(24, 144, 255, 1);
  1772. box-sizing:border-box;
  1773. border-width:1px;
  1774. border-style:solid;
  1775. border-color:rgba(170, 170, 170, 1);
  1776. border-radius:4px;
  1777. filter:drop-shadow(none);
  1778. transition:none;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:14px;
  1783. color:#FFFFFF;
  1784. }
  1785. #u38621 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:1557px;
  1789. top:1205px;
  1790. width:80px;
  1791. height:30px;
  1792. display:flex;
  1793. transition:none;
  1794. transform-origin:50% 50%;
  1795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1796. font-weight:400;
  1797. font-style:normal;
  1798. font-size:14px;
  1799. color:#FFFFFF;
  1800. }
  1801. #u38621 .text {
  1802. position:absolute;
  1803. align-self:center;
  1804. padding:2px 2px 2px 2px;
  1805. box-sizing:border-box;
  1806. width:100%;
  1807. }
  1808. #u38621_text {
  1809. border-width:0px;
  1810. word-wrap:break-word;
  1811. text-transform:none;
  1812. }
  1813. #u38622_div {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:0px;
  1817. top:0px;
  1818. width:80px;
  1819. height:30px;
  1820. background:inherit;
  1821. background-color:rgba(255, 255, 255, 1);
  1822. box-sizing:border-box;
  1823. border-width:1px;
  1824. border-style:solid;
  1825. border-color:rgba(170, 170, 170, 1);
  1826. border-radius:4px;
  1827. filter:drop-shadow(none);
  1828. transition:none;
  1829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:14px;
  1833. }
  1834. #u38622 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:1467px;
  1838. top:1205px;
  1839. width:80px;
  1840. height:30px;
  1841. display:flex;
  1842. transition:none;
  1843. transform-origin:50% 50%;
  1844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1845. font-weight:400;
  1846. font-style:normal;
  1847. font-size:14px;
  1848. }
  1849. #u38622 .text {
  1850. position:absolute;
  1851. align-self:center;
  1852. padding:2px 2px 2px 2px;
  1853. box-sizing:border-box;
  1854. width:100%;
  1855. }
  1856. #u38622_text {
  1857. border-width:0px;
  1858. word-wrap:break-word;
  1859. text-transform:none;
  1860. }
  1861. #u38623_div {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:88px;
  1867. height:30px;
  1868. background:inherit;
  1869. background-color:rgba(255, 255, 255, 0);
  1870. border-top:0px;
  1871. border-right:0px;
  1872. border-bottom:0px;
  1873. border-radius:0px;
  1874. border-top-left-radius:0px;
  1875. border-bottom-left-radius:0px;
  1876. filter:drop-shadow(none);
  1877. transition:none;
  1878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1879. font-weight:400;
  1880. font-style:normal;
  1881. font-size:14px;
  1882. text-align:right;
  1883. }
  1884. #u38623 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:917px;
  1888. top:145px;
  1889. width:88px;
  1890. height:30px;
  1891. display:flex;
  1892. transition:none;
  1893. transform-origin:50% 50%;
  1894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1895. font-weight:400;
  1896. font-style:normal;
  1897. font-size:14px;
  1898. text-align:right;
  1899. }
  1900. #u38623 .text {
  1901. position:absolute;
  1902. align-self:center;
  1903. padding:5px 10px 5px 0px;
  1904. box-sizing:border-box;
  1905. width:100%;
  1906. }
  1907. #u38623_text {
  1908. border-width:0px;
  1909. white-space:nowrap;
  1910. text-transform:none;
  1911. }
  1912. #u38624 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:0px;
  1918. height:0px;
  1919. }
  1920. #u38625_div {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:609px;
  1926. height:40px;
  1927. background:inherit;
  1928. background-color:rgba(255, 255, 255, 1);
  1929. box-sizing:border-box;
  1930. border-width:1px;
  1931. border-style:solid;
  1932. border-color:rgba(170, 170, 170, 1);
  1933. border-radius:4px;
  1934. filter:drop-shadow(none);
  1935. transition:none;
  1936. }
  1937. #u38625 {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:1035px;
  1941. top:140px;
  1942. width:609px;
  1943. height:40px;
  1944. display:flex;
  1945. transition:none;
  1946. transform-origin:50% 50%;
  1947. }
  1948. #u38625 .text {
  1949. position:absolute;
  1950. align-self:center;
  1951. padding:2px 2px 2px 2px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u38625_text {
  1956. border-width:0px;
  1957. word-wrap:break-word;
  1958. text-transform:none;
  1959. visibility:hidden;
  1960. }
  1961. #u38626_input {
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:588px;
  1966. height:31px;
  1967. padding:2px 2px 2px 2px;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:13px;
  1972. letter-spacing:normal;
  1973. color:#AAAAAA;
  1974. vertical-align:none;
  1975. text-align:left;
  1976. text-transform:none;
  1977. background-color:transparent;
  1978. border-color:transparent;
  1979. }
  1980. #u38626_input.hint {
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:588px;
  1985. height:31px;
  1986. padding:2px 2px 2px 2px;
  1987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:13px;
  1991. letter-spacing:normal;
  1992. color:#999999;
  1993. vertical-align:none;
  1994. text-align:left;
  1995. text-transform:none;
  1996. background-color:transparent;
  1997. border-color:transparent;
  1998. }
  1999. #u38626_input.disabled {
  2000. position:absolute;
  2001. left:0px;
  2002. top:0px;
  2003. width:588px;
  2004. height:31px;
  2005. padding:2px 2px 2px 2px;
  2006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2007. font-weight:400;
  2008. font-style:normal;
  2009. font-size:13px;
  2010. letter-spacing:normal;
  2011. color:#AAAAAA;
  2012. vertical-align:none;
  2013. text-align:left;
  2014. text-transform:none;
  2015. background-color:transparent;
  2016. border-color:transparent;
  2017. }
  2018. #u38626_input.hint.disabled {
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:588px;
  2023. height:31px;
  2024. padding:2px 2px 2px 2px;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:13px;
  2029. letter-spacing:normal;
  2030. color:#999999;
  2031. vertical-align:none;
  2032. text-align:left;
  2033. text-transform:none;
  2034. background-color:transparent;
  2035. border-color:transparent;
  2036. }
  2037. #u38626_div {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:588px;
  2043. height:31px;
  2044. background:inherit;
  2045. background-color:rgba(255, 255, 255, 0);
  2046. border-radius:0px;
  2047. filter:drop-shadow(none);
  2048. transition:none;
  2049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2050. font-weight:400;
  2051. font-style:normal;
  2052. color:#AAAAAA;
  2053. }
  2054. #u38626 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:1045px;
  2058. top:145px;
  2059. width:588px;
  2060. height:31px;
  2061. display:flex;
  2062. transition:none;
  2063. transform-origin:50% 50%;
  2064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2065. font-weight:400;
  2066. font-style:normal;
  2067. color:#AAAAAA;
  2068. }
  2069. #u38626 .text {
  2070. position:absolute;
  2071. align-self:center;
  2072. padding:2px 2px 2px 2px;
  2073. box-sizing:border-box;
  2074. width:100%;
  2075. }
  2076. #u38626_div.hint {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:588px;
  2082. height:31px;
  2083. background:inherit;
  2084. background-color:rgba(255, 255, 255, 0);
  2085. border-radius:0px;
  2086. filter:drop-shadow(none);
  2087. transition:none;
  2088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2089. font-weight:400;
  2090. font-style:normal;
  2091. color:#AAAAAA;
  2092. }
  2093. #u38626.hint {
  2094. }
  2095. #u38626_div.disabled {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:588px;
  2101. height:31px;
  2102. background:inherit;
  2103. background-color:rgba(240, 240, 240, 1);
  2104. border-radius:0px;
  2105. filter:drop-shadow(none);
  2106. transition:none;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. color:#AAAAAA;
  2111. }
  2112. #u38626.disabled {
  2113. }
  2114. #u38626_div.hint.disabled {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:588px;
  2120. height:31px;
  2121. background:inherit;
  2122. background-color:rgba(240, 240, 240, 1);
  2123. border-radius:0px;
  2124. filter:drop-shadow(none);
  2125. transition:none;
  2126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. color:#AAAAAA;
  2130. }
  2131. #u38626.hint.disabled {
  2132. }
  2133. #u38627 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:0px;
  2139. height:0px;
  2140. }
  2141. #u38628_div {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:740px;
  2147. height:120px;
  2148. background:inherit;
  2149. background-color:rgba(242, 242, 242, 1);
  2150. border-radius:0px;
  2151. filter:drop-shadow(none);
  2152. transition:none;
  2153. }
  2154. #u38628 {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:904px;
  2158. top:200px;
  2159. width:740px;
  2160. height:120px;
  2161. display:flex;
  2162. transition:none;
  2163. transform-origin:50% 50%;
  2164. }
  2165. #u38628 .text {
  2166. position:absolute;
  2167. align-self:center;
  2168. padding:2px 2px 2px 2px;
  2169. box-sizing:border-box;
  2170. width:100%;
  2171. }
  2172. #u38628_text {
  2173. border-width:0px;
  2174. word-wrap:break-word;
  2175. text-transform:none;
  2176. visibility:hidden;
  2177. }
  2178. #u38629_div {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:81px;
  2184. height:30px;
  2185. background:inherit;
  2186. background-color:rgba(255, 255, 255, 0);
  2187. border-top:0px;
  2188. border-right:0px;
  2189. border-bottom:0px;
  2190. border-radius:0px;
  2191. border-top-left-radius:0px;
  2192. border-bottom-left-radius:0px;
  2193. filter:drop-shadow(none);
  2194. transition:none;
  2195. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2196. font-weight:500;
  2197. font-style:normal;
  2198. font-size:14px;
  2199. text-align:right;
  2200. }
  2201. #u38629 {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:924px;
  2205. top:215px;
  2206. width:81px;
  2207. height:30px;
  2208. display:flex;
  2209. transition:none;
  2210. transform-origin:50% 50%;
  2211. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2212. font-weight:500;
  2213. font-style:normal;
  2214. font-size:14px;
  2215. text-align:right;
  2216. }
  2217. #u38629 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:5px 10px 5px 0px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u38629_text {
  2225. border-width:0px;
  2226. white-space:nowrap;
  2227. text-transform:none;
  2228. }
  2229. #u38630 label {
  2230. left:0px;
  2231. width:100%;
  2232. height:100%;
  2233. }
  2234. #u38630_img {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:4px;
  2239. width:12px;
  2240. height:12px;
  2241. }
  2242. #u38630 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:1035px;
  2246. top:220px;
  2247. width:65px;
  2248. height:20px;
  2249. display:flex;
  2250. transition:none;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:14px;
  2255. }
  2256. #u38630 .text {
  2257. position:absolute;
  2258. align-self:center;
  2259. padding:0px 2px 0px 2px;
  2260. box-sizing:border-box;
  2261. }
  2262. #u38630_img.selected {
  2263. }
  2264. #u38630.selected {
  2265. }
  2266. #u38630_img.disabled {
  2267. }
  2268. #u38630.disabled {
  2269. }
  2270. #u38630_img.selected.error {
  2271. }
  2272. #u38630.selected.error {
  2273. }
  2274. #u38630_img.selected.hint {
  2275. }
  2276. #u38630.selected.hint {
  2277. }
  2278. #u38630_img.selected.error.hint {
  2279. }
  2280. #u38630.selected.error.hint {
  2281. }
  2282. #u38630_img.mouseOver.selected {
  2283. }
  2284. #u38630.mouseOver.selected {
  2285. }
  2286. #u38630_img.mouseOver.selected.error {
  2287. }
  2288. #u38630.mouseOver.selected.error {
  2289. }
  2290. #u38630_img.mouseOver.selected.hint {
  2291. }
  2292. #u38630.mouseOver.selected.hint {
  2293. }
  2294. #u38630_img.mouseOver.selected.error.hint {
  2295. }
  2296. #u38630.mouseOver.selected.error.hint {
  2297. }
  2298. #u38630_img.mouseDown.selected {
  2299. }
  2300. #u38630.mouseDown.selected {
  2301. }
  2302. #u38630_img.mouseDown.selected.error {
  2303. }
  2304. #u38630.mouseDown.selected.error {
  2305. }
  2306. #u38630_img.mouseDown.selected.hint {
  2307. }
  2308. #u38630.mouseDown.selected.hint {
  2309. }
  2310. #u38630_img.mouseDown.selected.error.hint {
  2311. }
  2312. #u38630.mouseDown.selected.error.hint {
  2313. }
  2314. #u38630_img.mouseOver.mouseDown.selected {
  2315. }
  2316. #u38630.mouseOver.mouseDown.selected {
  2317. }
  2318. #u38630_img.mouseOver.mouseDown.selected.error {
  2319. }
  2320. #u38630.mouseOver.mouseDown.selected.error {
  2321. }
  2322. #u38630_img.mouseOver.mouseDown.selected.hint {
  2323. }
  2324. #u38630.mouseOver.mouseDown.selected.hint {
  2325. }
  2326. #u38630_img.mouseOver.mouseDown.selected.error.hint {
  2327. }
  2328. #u38630.mouseOver.mouseDown.selected.error.hint {
  2329. }
  2330. #u38630_img.focused.selected {
  2331. }
  2332. #u38630.focused.selected {
  2333. }
  2334. #u38630_img.focused.selected.error {
  2335. }
  2336. #u38630.focused.selected.error {
  2337. }
  2338. #u38630_img.focused.selected.hint {
  2339. }
  2340. #u38630.focused.selected.hint {
  2341. }
  2342. #u38630_img.focused.selected.error.hint {
  2343. }
  2344. #u38630.focused.selected.error.hint {
  2345. }
  2346. #u38630_img.selected.disabled {
  2347. }
  2348. #u38630.selected.disabled {
  2349. }
  2350. #u38630_img.selected.hint.disabled {
  2351. }
  2352. #u38630.selected.hint.disabled {
  2353. }
  2354. #u38630_img.selected.error.disabled {
  2355. }
  2356. #u38630.selected.error.disabled {
  2357. }
  2358. #u38630_img.selected.error.hint.disabled {
  2359. }
  2360. #u38630.selected.error.hint.disabled {
  2361. }
  2362. #u38630_text {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:12px;
  2366. top:0px;
  2367. width:53px;
  2368. word-wrap:break-word;
  2369. text-transform:none;
  2370. }
  2371. #u38630_input {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:0px;
  2377. height:0px;
  2378. opacity:0;
  2379. }
  2380. #u38631_div {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:35px;
  2386. height:27px;
  2387. background:inherit;
  2388. background-color:rgba(255, 255, 255, 0);
  2389. border-top:0px;
  2390. border-right:0px;
  2391. border-bottom:0px;
  2392. border-radius:0px;
  2393. border-top-left-radius:0px;
  2394. border-bottom-left-radius:0px;
  2395. filter:drop-shadow(none);
  2396. transition:none;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:12px;
  2401. color:#1890FF;
  2402. }
  2403. #u38631 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:1105px;
  2407. top:217px;
  2408. width:35px;
  2409. height:27px;
  2410. display:flex;
  2411. transition:none;
  2412. transform-origin:50% 50%;
  2413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:12px;
  2417. color:#1890FF;
  2418. }
  2419. #u38631 .text {
  2420. position:absolute;
  2421. align-self:center;
  2422. padding:5px 10px 5px 0px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u38631_text {
  2427. border-width:0px;
  2428. white-space:nowrap;
  2429. text-transform:none;
  2430. }
  2431. #u38632_div {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:67px;
  2437. height:30px;
  2438. background:inherit;
  2439. background-color:rgba(255, 255, 255, 0);
  2440. border-top:0px;
  2441. border-right:0px;
  2442. border-bottom:0px;
  2443. border-radius:0px;
  2444. border-top-left-radius:0px;
  2445. border-bottom-left-radius:0px;
  2446. filter:drop-shadow(none);
  2447. transition:none;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:14px;
  2452. }
  2453. #u38632 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:1035px;
  2457. top:270px;
  2458. width:67px;
  2459. height:30px;
  2460. display:flex;
  2461. transition:none;
  2462. transform-origin:50% 50%;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:14px;
  2467. }
  2468. #u38632 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:5px 10px 5px 0px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u38632_text {
  2476. border-width:0px;
  2477. white-space:nowrap;
  2478. text-transform:none;
  2479. }
  2480. #u38633_div {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:95px;
  2486. height:30px;
  2487. background:inherit;
  2488. background-color:rgba(255, 255, 255, 0);
  2489. border-top:0px;
  2490. border-right:0px;
  2491. border-bottom:0px;
  2492. border-radius:0px;
  2493. border-top-left-radius:0px;
  2494. border-bottom-left-radius:0px;
  2495. filter:drop-shadow(none);
  2496. transition:none;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:14px;
  2501. color:#AAAAAA;
  2502. text-align:right;
  2503. }
  2504. #u38633 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:924px;
  2508. top:270px;
  2509. width:95px;
  2510. height:30px;
  2511. display:flex;
  2512. transition:none;
  2513. transform-origin:50% 50%;
  2514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:14px;
  2518. color:#AAAAAA;
  2519. text-align:right;
  2520. }
  2521. #u38633 .text {
  2522. position:absolute;
  2523. align-self:center;
  2524. padding:5px 10px 5px 0px;
  2525. box-sizing:border-box;
  2526. width:100%;
  2527. }
  2528. #u38633_text {
  2529. border-width:0px;
  2530. white-space:nowrap;
  2531. text-transform:none;
  2532. }
  2533. #u38634 {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:0px;
  2539. height:0px;
  2540. }
  2541. #u38635_div {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:740px;
  2547. height:120px;
  2548. background:inherit;
  2549. background-color:rgba(242, 242, 242, 1);
  2550. border-radius:0px;
  2551. filter:drop-shadow(none);
  2552. transition:none;
  2553. }
  2554. #u38635 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:904px;
  2558. top:330px;
  2559. width:740px;
  2560. height:120px;
  2561. display:flex;
  2562. transition:none;
  2563. transform-origin:50% 50%;
  2564. }
  2565. #u38635 .text {
  2566. position:absolute;
  2567. align-self:center;
  2568. padding:2px 2px 2px 2px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u38635_text {
  2573. border-width:0px;
  2574. word-wrap:break-word;
  2575. text-transform:none;
  2576. visibility:hidden;
  2577. }
  2578. #u38636_div {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:81px;
  2584. height:30px;
  2585. background:inherit;
  2586. background-color:rgba(255, 255, 255, 0);
  2587. border-top:0px;
  2588. border-right:0px;
  2589. border-bottom:0px;
  2590. border-radius:0px;
  2591. border-top-left-radius:0px;
  2592. border-bottom-left-radius:0px;
  2593. filter:drop-shadow(none);
  2594. transition:none;
  2595. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2596. font-weight:500;
  2597. font-style:normal;
  2598. font-size:14px;
  2599. text-align:right;
  2600. }
  2601. #u38636 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:924px;
  2605. top:345px;
  2606. width:81px;
  2607. height:30px;
  2608. display:flex;
  2609. transition:none;
  2610. transform-origin:50% 50%;
  2611. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2612. font-weight:500;
  2613. font-style:normal;
  2614. font-size:14px;
  2615. text-align:right;
  2616. }
  2617. #u38636 .text {
  2618. position:absolute;
  2619. align-self:center;
  2620. padding:5px 10px 5px 0px;
  2621. box-sizing:border-box;
  2622. width:100%;
  2623. }
  2624. #u38636_text {
  2625. border-width:0px;
  2626. white-space:nowrap;
  2627. text-transform:none;
  2628. }
  2629. #u38637_div {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:223px;
  2635. height:27px;
  2636. background:inherit;
  2637. background-color:rgba(255, 255, 255, 0);
  2638. border-top:0px;
  2639. border-right:0px;
  2640. border-bottom:0px;
  2641. border-radius:0px;
  2642. border-top-left-radius:0px;
  2643. border-bottom-left-radius:0px;
  2644. filter:drop-shadow(none);
  2645. transition:none;
  2646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2647. font-weight:400;
  2648. font-style:normal;
  2649. font-size:12px;
  2650. color:#AAAAAA;
  2651. text-align:right;
  2652. }
  2653. #u38637 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:1410px;
  2657. top:347px;
  2658. width:223px;
  2659. height:27px;
  2660. display:flex;
  2661. transition:none;
  2662. transform-origin:50% 50%;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:12px;
  2667. color:#AAAAAA;
  2668. text-align:right;
  2669. }
  2670. #u38637 .text {
  2671. position:absolute;
  2672. align-self:center;
  2673. padding:5px 10px 5px 0px;
  2674. box-sizing:border-box;
  2675. width:100%;
  2676. }
  2677. #u38637_text {
  2678. border-width:0px;
  2679. white-space:nowrap;
  2680. text-transform:none;
  2681. }
  2682. #u38638 label {
  2683. left:0px;
  2684. width:100%;
  2685. height:100%;
  2686. }
  2687. #u38638_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:4px;
  2692. width:12px;
  2693. height:12px;
  2694. }
  2695. #u38638 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:1035px;
  2699. top:350px;
  2700. width:70px;
  2701. height:20px;
  2702. display:flex;
  2703. transition:none;
  2704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2705. font-weight:400;
  2706. font-style:normal;
  2707. font-size:14px;
  2708. }
  2709. #u38638 .text {
  2710. position:absolute;
  2711. align-self:center;
  2712. padding:0px 2px 0px 2px;
  2713. box-sizing:border-box;
  2714. }
  2715. #u38638_img.selected {
  2716. }
  2717. #u38638.selected {
  2718. }
  2719. #u38638_img.disabled {
  2720. }
  2721. #u38638.disabled {
  2722. }
  2723. #u38638_img.selected.error {
  2724. }
  2725. #u38638.selected.error {
  2726. }
  2727. #u38638_img.selected.hint {
  2728. }
  2729. #u38638.selected.hint {
  2730. }
  2731. #u38638_img.selected.error.hint {
  2732. }
  2733. #u38638.selected.error.hint {
  2734. }
  2735. #u38638_img.mouseOver.selected {
  2736. }
  2737. #u38638.mouseOver.selected {
  2738. }
  2739. #u38638_img.mouseOver.selected.error {
  2740. }
  2741. #u38638.mouseOver.selected.error {
  2742. }
  2743. #u38638_img.mouseOver.selected.hint {
  2744. }
  2745. #u38638.mouseOver.selected.hint {
  2746. }
  2747. #u38638_img.mouseOver.selected.error.hint {
  2748. }
  2749. #u38638.mouseOver.selected.error.hint {
  2750. }
  2751. #u38638_img.mouseDown.selected {
  2752. }
  2753. #u38638.mouseDown.selected {
  2754. }
  2755. #u38638_img.mouseDown.selected.error {
  2756. }
  2757. #u38638.mouseDown.selected.error {
  2758. }
  2759. #u38638_img.mouseDown.selected.hint {
  2760. }
  2761. #u38638.mouseDown.selected.hint {
  2762. }
  2763. #u38638_img.mouseDown.selected.error.hint {
  2764. }
  2765. #u38638.mouseDown.selected.error.hint {
  2766. }
  2767. #u38638_img.mouseOver.mouseDown.selected {
  2768. }
  2769. #u38638.mouseOver.mouseDown.selected {
  2770. }
  2771. #u38638_img.mouseOver.mouseDown.selected.error {
  2772. }
  2773. #u38638.mouseOver.mouseDown.selected.error {
  2774. }
  2775. #u38638_img.mouseOver.mouseDown.selected.hint {
  2776. }
  2777. #u38638.mouseOver.mouseDown.selected.hint {
  2778. }
  2779. #u38638_img.mouseOver.mouseDown.selected.error.hint {
  2780. }
  2781. #u38638.mouseOver.mouseDown.selected.error.hint {
  2782. }
  2783. #u38638_img.focused.selected {
  2784. }
  2785. #u38638.focused.selected {
  2786. }
  2787. #u38638_img.focused.selected.error {
  2788. }
  2789. #u38638.focused.selected.error {
  2790. }
  2791. #u38638_img.focused.selected.hint {
  2792. }
  2793. #u38638.focused.selected.hint {
  2794. }
  2795. #u38638_img.focused.selected.error.hint {
  2796. }
  2797. #u38638.focused.selected.error.hint {
  2798. }
  2799. #u38638_img.selected.disabled {
  2800. }
  2801. #u38638.selected.disabled {
  2802. }
  2803. #u38638_img.selected.hint.disabled {
  2804. }
  2805. #u38638.selected.hint.disabled {
  2806. }
  2807. #u38638_img.selected.error.disabled {
  2808. }
  2809. #u38638.selected.error.disabled {
  2810. }
  2811. #u38638_img.selected.error.hint.disabled {
  2812. }
  2813. #u38638.selected.error.hint.disabled {
  2814. }
  2815. #u38638_text {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:12px;
  2819. top:0px;
  2820. width:58px;
  2821. word-wrap:break-word;
  2822. text-transform:none;
  2823. }
  2824. #u38638_input {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:0px;
  2830. height:0px;
  2831. opacity:0;
  2832. }
  2833. #u38639_div {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:35px;
  2839. height:27px;
  2840. background:inherit;
  2841. background-color:rgba(255, 255, 255, 0);
  2842. border-top:0px;
  2843. border-right:0px;
  2844. border-bottom:0px;
  2845. border-radius:0px;
  2846. border-top-left-radius:0px;
  2847. border-bottom-left-radius:0px;
  2848. filter:drop-shadow(none);
  2849. transition:none;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:12px;
  2854. color:#1890FF;
  2855. }
  2856. #u38639 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:1105px;
  2860. top:347px;
  2861. width:35px;
  2862. height:27px;
  2863. display:flex;
  2864. transition:none;
  2865. transform-origin:50% 50%;
  2866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. font-size:12px;
  2870. color:#1890FF;
  2871. }
  2872. #u38639 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:5px 10px 5px 0px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u38639_text {
  2880. border-width:0px;
  2881. white-space:nowrap;
  2882. text-transform:none;
  2883. }
  2884. #u38640_div {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:0px;
  2888. top:0px;
  2889. width:441px;
  2890. height:30px;
  2891. background:inherit;
  2892. background-color:rgba(255, 255, 255, 0);
  2893. border-top:0px;
  2894. border-right:0px;
  2895. border-bottom:0px;
  2896. border-radius:0px;
  2897. border-top-left-radius:0px;
  2898. border-bottom-left-radius:0px;
  2899. filter:drop-shadow(none);
  2900. transition:none;
  2901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:14px;
  2905. }
  2906. #u38640 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:1035px;
  2910. top:390px;
  2911. width:441px;
  2912. height:30px;
  2913. display:flex;
  2914. transition:none;
  2915. transform-origin:50% 50%;
  2916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2917. font-weight:400;
  2918. font-style:normal;
  2919. font-size:14px;
  2920. }
  2921. #u38640 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:5px 10px 5px 0px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u38640_text {
  2929. border-width:0px;
  2930. white-space:nowrap;
  2931. text-transform:none;
  2932. }
  2933. #u38641_div {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:95px;
  2939. height:30px;
  2940. background:inherit;
  2941. background-color:rgba(255, 255, 255, 0);
  2942. border-top:0px;
  2943. border-right:0px;
  2944. border-bottom:0px;
  2945. border-radius:0px;
  2946. border-top-left-radius:0px;
  2947. border-bottom-left-radius:0px;
  2948. filter:drop-shadow(none);
  2949. transition:none;
  2950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2951. font-weight:400;
  2952. font-style:normal;
  2953. font-size:14px;
  2954. color:#AAAAAA;
  2955. text-align:right;
  2956. }
  2957. #u38641 {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:924px;
  2961. top:390px;
  2962. width:95px;
  2963. height:30px;
  2964. display:flex;
  2965. transition:none;
  2966. transform-origin:50% 50%;
  2967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2968. font-weight:400;
  2969. font-style:normal;
  2970. font-size:14px;
  2971. color:#AAAAAA;
  2972. text-align:right;
  2973. }
  2974. #u38641 .text {
  2975. position:absolute;
  2976. align-self:center;
  2977. padding:5px 10px 5px 0px;
  2978. box-sizing:border-box;
  2979. width:100%;
  2980. }
  2981. #u38641_text {
  2982. border-width:0px;
  2983. white-space:nowrap;
  2984. text-transform:none;
  2985. }