styles.css 52 KB

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