styles.css 44 KB

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