styles.css 49 KB

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