styles.css 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:810px;
  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. #u9932_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u9932 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u9932 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u9932_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u9933_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u9933 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u9933 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u9933_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u9934 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u9935_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u9935 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u9935 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u9935_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u9936 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u9937_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u9937 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u9937 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u9937_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u9938_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u9938 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u9938 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u9938_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u9939 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u9940_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u9940 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u9940 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u9940_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u9941_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u9941 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u9941 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u9941_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u9942_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u9942 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u9942 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u9942_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u9943_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u9943 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u9943 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u9943_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u9944_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u9944 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u9944 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u9944_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u9945_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u9945 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u9945 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u9945_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u9946 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u9947_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u9947 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u9947 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u9947_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u9948_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u9948 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u9948 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u9948_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u9949 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u9950_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u9950 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u9950 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u9950_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u9951_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u9951 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u9951 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u9951_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u9952_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u9952 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u9952 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u9952_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u9953 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u9954_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u9954 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u9954 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u9954_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u9955_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  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:12px;
  671. }
  672. #u9955 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u9955 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u9955_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u9956 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u9957_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u9957 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u9957 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u9957_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u9958_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u9958 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u9958 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u9958_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u9959_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:732px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u9959 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:106px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u9959 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u9959_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u9960 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u9961_img {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:11px;
  833. height:18px;
  834. }
  835. #u9961 {
  836. border-width:0px;
  837. position:absolute;
  838. left:40px;
  839. top:80px;
  840. width:11px;
  841. height:18px;
  842. display:flex;
  843. }
  844. #u9961 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u9961_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u9962_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:64px;
  863. height:30px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 0);
  866. border:none;
  867. border-left:0px;
  868. border-top:0px;
  869. border-right:0px;
  870. border-radius:0px;
  871. border-bottom-right-radius:0px;
  872. border-bottom-left-radius:0px;
  873. -moz-box-shadow:none;
  874. -webkit-box-shadow:none;
  875. box-shadow:none;
  876. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  877. font-weight:500;
  878. font-style:normal;
  879. font-size:14px;
  880. line-height:30px;
  881. }
  882. #u9962 {
  883. border-width:0px;
  884. position:absolute;
  885. left:183px;
  886. top:72px;
  887. width:64px;
  888. height:30px;
  889. display:flex;
  890. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  891. font-weight:500;
  892. font-style:normal;
  893. font-size:14px;
  894. line-height:30px;
  895. }
  896. #u9962 .text {
  897. position:absolute;
  898. align-self:flex-start;
  899. padding:0px 0px 0px 0px;
  900. box-sizing:border-box;
  901. width:100%;
  902. }
  903. #u9962_text {
  904. border-width:0px;
  905. white-space:nowrap;
  906. text-transform:none;
  907. }
  908. #u9963 {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:0px;
  914. height:0px;
  915. }
  916. #u9964_img {
  917. border-width:0px;
  918. position:absolute;
  919. left:0px;
  920. top:0px;
  921. width:355px;
  922. height:120px;
  923. }
  924. #u9964 {
  925. border-width:0px;
  926. position:absolute;
  927. left:39px;
  928. top:248px;
  929. width:355px;
  930. height:120px;
  931. display:flex;
  932. }
  933. #u9964 .text {
  934. position:absolute;
  935. align-self:center;
  936. padding:2px 2px 2px 2px;
  937. box-sizing:border-box;
  938. width:100%;
  939. }
  940. #u9964_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u9965_div {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:71px;
  952. height:30px;
  953. background:inherit;
  954. background-color:rgba(255, 255, 255, 0);
  955. border:none;
  956. border-left:0px;
  957. border-top:0px;
  958. border-right:0px;
  959. border-radius:0px;
  960. border-bottom-right-radius:0px;
  961. border-bottom-left-radius:0px;
  962. -moz-box-shadow:none;
  963. -webkit-box-shadow:none;
  964. box-shadow:none;
  965. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  966. font-weight:500;
  967. font-style:normal;
  968. font-size:14px;
  969. line-height:30px;
  970. }
  971. #u9965 {
  972. border-width:0px;
  973. position:absolute;
  974. left:55px;
  975. top:283px;
  976. width:71px;
  977. height:30px;
  978. display:flex;
  979. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  980. font-weight:500;
  981. font-style:normal;
  982. font-size:14px;
  983. line-height:30px;
  984. }
  985. #u9965 .text {
  986. position:absolute;
  987. align-self:flex-start;
  988. padding:0px 0px 0px 0px;
  989. box-sizing:border-box;
  990. width:100%;
  991. }
  992. #u9965_text {
  993. border-width:0px;
  994. white-space:nowrap;
  995. text-transform:none;
  996. }
  997. #u9966_div {
  998. border-width:0px;
  999. position:absolute;
  1000. left:0px;
  1001. top:0px;
  1002. width:161px;
  1003. height:50px;
  1004. background:inherit;
  1005. background-color:rgba(255, 255, 255, 0);
  1006. border:none;
  1007. border-left:0px;
  1008. border-top:0px;
  1009. border-right:0px;
  1010. border-radius:0px;
  1011. border-bottom-right-radius:0px;
  1012. border-bottom-left-radius:0px;
  1013. -moz-box-shadow:none;
  1014. -webkit-box-shadow:none;
  1015. box-shadow:none;
  1016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:12px;
  1020. color:#7F7F7F;
  1021. line-height:25px;
  1022. }
  1023. #u9966 {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:55px;
  1027. top:313px;
  1028. width:161px;
  1029. height:50px;
  1030. display:flex;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:12px;
  1035. color:#7F7F7F;
  1036. line-height:25px;
  1037. }
  1038. #u9966 .text {
  1039. position:absolute;
  1040. align-self:flex-start;
  1041. padding:0px 0px 0px 0px;
  1042. box-sizing:border-box;
  1043. width:100%;
  1044. }
  1045. #u9966_text {
  1046. border-width:0px;
  1047. white-space:nowrap;
  1048. text-transform:none;
  1049. }
  1050. #u9967 {
  1051. border-width:0px;
  1052. position:absolute;
  1053. left:0px;
  1054. top:0px;
  1055. width:0px;
  1056. height:0px;
  1057. }
  1058. #u9968_div {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:0px;
  1062. top:0px;
  1063. width:355px;
  1064. height:30px;
  1065. background:inherit;
  1066. background-color:rgba(255, 255, 255, 0);
  1067. box-sizing:border-box;
  1068. border-width:1px;
  1069. border-style:solid;
  1070. border-color:rgba(242, 242, 242, 1);
  1071. border-left:0px;
  1072. border-top:0px;
  1073. border-right:0px;
  1074. border-radius:0px;
  1075. border-bottom-right-radius:0px;
  1076. border-bottom-left-radius:0px;
  1077. -moz-box-shadow:none;
  1078. -webkit-box-shadow:none;
  1079. box-shadow:none;
  1080. }
  1081. #u9968 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:39px;
  1085. top:248px;
  1086. width:355px;
  1087. height:30px;
  1088. display:flex;
  1089. }
  1090. #u9968 .text {
  1091. position:absolute;
  1092. align-self:center;
  1093. padding:2px 2px 2px 2px;
  1094. box-sizing:border-box;
  1095. width:100%;
  1096. }
  1097. #u9968_text {
  1098. border-width:0px;
  1099. word-wrap:break-word;
  1100. text-transform:none;
  1101. visibility:hidden;
  1102. }
  1103. #u9969_div {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:0px;
  1107. top:0px;
  1108. width:143px;
  1109. height:14px;
  1110. background:inherit;
  1111. background-color:rgba(255, 255, 255, 0);
  1112. border:none;
  1113. border-left:0px;
  1114. border-top:0px;
  1115. border-right:0px;
  1116. border-radius:0px;
  1117. border-bottom-right-radius:0px;
  1118. border-bottom-left-radius:0px;
  1119. -moz-box-shadow:none;
  1120. -webkit-box-shadow:none;
  1121. box-shadow:none;
  1122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1123. font-weight:400;
  1124. font-style:normal;
  1125. font-size:10px;
  1126. color:#000000;
  1127. text-align:center;
  1128. }
  1129. #u9969 {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:50px;
  1133. top:256px;
  1134. width:143px;
  1135. height:14px;
  1136. display:flex;
  1137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1138. font-weight:400;
  1139. font-style:normal;
  1140. font-size:10px;
  1141. color:#000000;
  1142. text-align:center;
  1143. }
  1144. #u9969 .text {
  1145. position:absolute;
  1146. align-self:flex-start;
  1147. padding:0px 0px 0px 0px;
  1148. box-sizing:border-box;
  1149. width:100%;
  1150. }
  1151. #u9969_text {
  1152. border-width:0px;
  1153. white-space:nowrap;
  1154. text-transform:none;
  1155. }
  1156. #u9970_div {
  1157. border-width:0px;
  1158. position:absolute;
  1159. left:0px;
  1160. top:0px;
  1161. width:60px;
  1162. height:24px;
  1163. background:inherit;
  1164. background-color:rgba(255, 255, 255, 0);
  1165. box-sizing:border-box;
  1166. border-width:1px;
  1167. border-style:solid;
  1168. border-color:rgba(51, 51, 51, 1);
  1169. border-radius:30px;
  1170. -moz-box-shadow:none;
  1171. -webkit-box-shadow:none;
  1172. box-shadow:none;
  1173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1174. font-weight:400;
  1175. font-style:normal;
  1176. font-size:12px;
  1177. color:#555555;
  1178. text-align:center;
  1179. line-height:24px;
  1180. }
  1181. #u9970 {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:320px;
  1185. top:297px;
  1186. width:60px;
  1187. height:24px;
  1188. display:flex;
  1189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1190. font-weight:400;
  1191. font-style:normal;
  1192. font-size:12px;
  1193. color:#555555;
  1194. text-align:center;
  1195. line-height:24px;
  1196. }
  1197. #u9970 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:0px 0px 0px 0px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u9970_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. }
  1209. #u9971 {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:0px;
  1213. top:0px;
  1214. width:0px;
  1215. height:0px;
  1216. }
  1217. #u9972_div {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:0px;
  1221. top:0px;
  1222. width:375px;
  1223. height:40px;
  1224. background:inherit;
  1225. background-color:rgba(255, 255, 255, 1);
  1226. border:none;
  1227. border-left:0px;
  1228. border-top:0px;
  1229. border-right:0px;
  1230. border-radius:0px;
  1231. border-bottom-right-radius:0px;
  1232. border-bottom-left-radius:0px;
  1233. -moz-box-shadow:none;
  1234. -webkit-box-shadow:none;
  1235. box-shadow:none;
  1236. }
  1237. #u9972 {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:29px;
  1241. top:147px;
  1242. width:375px;
  1243. height:40px;
  1244. display:flex;
  1245. }
  1246. #u9972 .text {
  1247. position:absolute;
  1248. align-self:center;
  1249. padding:2px 2px 2px 2px;
  1250. box-sizing:border-box;
  1251. width:100%;
  1252. }
  1253. #u9972_text {
  1254. border-width:0px;
  1255. word-wrap:break-word;
  1256. text-transform:none;
  1257. visibility:hidden;
  1258. }
  1259. #u9973_input {
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:136px;
  1264. height:22px;
  1265. padding:2px 2px 2px 2px;
  1266. font-family:'ArialMT', 'Arial', sans-serif;
  1267. font-weight:400;
  1268. font-style:normal;
  1269. font-size:12px;
  1270. letter-spacing:normal;
  1271. color:#AAAAAA;
  1272. vertical-align:none;
  1273. text-align:left;
  1274. text-transform:none;
  1275. background-color:transparent;
  1276. border-color:transparent;
  1277. }
  1278. #u9973_input.disabled {
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:136px;
  1283. height:22px;
  1284. padding:2px 2px 2px 2px;
  1285. font-family:'ArialMT', 'Arial', sans-serif;
  1286. font-weight:400;
  1287. font-style:normal;
  1288. font-size:12px;
  1289. letter-spacing:normal;
  1290. color:#AAAAAA;
  1291. vertical-align:none;
  1292. text-align:left;
  1293. text-transform:none;
  1294. background-color:transparent;
  1295. border-color:transparent;
  1296. }
  1297. #u9973_div {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:0px;
  1301. top:0px;
  1302. width:136px;
  1303. height:22px;
  1304. background:inherit;
  1305. background-color:rgba(255, 255, 255, 1);
  1306. border:none;
  1307. border-radius:0px;
  1308. -moz-box-shadow:none;
  1309. -webkit-box-shadow:none;
  1310. box-shadow:none;
  1311. font-size:12px;
  1312. color:#AAAAAA;
  1313. }
  1314. #u9973 {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:55px;
  1318. top:155px;
  1319. width:136px;
  1320. height:22px;
  1321. display:flex;
  1322. font-size:12px;
  1323. color:#AAAAAA;
  1324. }
  1325. #u9973 .text {
  1326. position:absolute;
  1327. align-self:flex-start;
  1328. padding:2px 2px 2px 2px;
  1329. box-sizing:border-box;
  1330. width:100%;
  1331. }
  1332. #u9973_div.disabled {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:0px;
  1336. top:0px;
  1337. width:136px;
  1338. height:22px;
  1339. background:inherit;
  1340. background-color:rgba(240, 240, 240, 1);
  1341. border:none;
  1342. border-radius:0px;
  1343. -moz-box-shadow:none;
  1344. -webkit-box-shadow:none;
  1345. box-shadow:none;
  1346. font-size:12px;
  1347. color:#AAAAAA;
  1348. }
  1349. #u9973.disabled {
  1350. }
  1351. .u9973_input_option {
  1352. font-size:12px;
  1353. }
  1354. #u9974_input {
  1355. position:absolute;
  1356. left:0px;
  1357. top:0px;
  1358. width:140px;
  1359. height:22px;
  1360. padding:2px 2px 2px 2px;
  1361. font-family:'ArialMT', 'Arial', sans-serif;
  1362. font-weight:400;
  1363. font-style:normal;
  1364. font-size:12px;
  1365. letter-spacing:normal;
  1366. color:#AAAAAA;
  1367. vertical-align:none;
  1368. text-align:left;
  1369. text-transform:none;
  1370. background-color:transparent;
  1371. border-color:transparent;
  1372. }
  1373. #u9974_input.disabled {
  1374. position:absolute;
  1375. left:0px;
  1376. top:0px;
  1377. width:140px;
  1378. height:22px;
  1379. padding:2px 2px 2px 2px;
  1380. font-family:'ArialMT', 'Arial', sans-serif;
  1381. font-weight:400;
  1382. font-style:normal;
  1383. font-size:12px;
  1384. letter-spacing:normal;
  1385. color:#AAAAAA;
  1386. vertical-align:none;
  1387. text-align:left;
  1388. text-transform:none;
  1389. background-color:transparent;
  1390. border-color:transparent;
  1391. }
  1392. #u9974_div {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:140px;
  1398. height:22px;
  1399. background:inherit;
  1400. background-color:rgba(255, 255, 255, 1);
  1401. border:none;
  1402. border-radius:0px;
  1403. -moz-box-shadow:none;
  1404. -webkit-box-shadow:none;
  1405. box-shadow:none;
  1406. font-size:12px;
  1407. color:#AAAAAA;
  1408. }
  1409. #u9974 {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:229px;
  1413. top:155px;
  1414. width:140px;
  1415. height:22px;
  1416. display:flex;
  1417. font-size:12px;
  1418. color:#AAAAAA;
  1419. }
  1420. #u9974 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:2px 2px 2px 2px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u9974_div.disabled {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:140px;
  1433. height:22px;
  1434. background:inherit;
  1435. background-color:rgba(240, 240, 240, 1);
  1436. border:none;
  1437. border-radius:0px;
  1438. -moz-box-shadow:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none;
  1441. font-size:12px;
  1442. color:#AAAAAA;
  1443. }
  1444. #u9974.disabled {
  1445. }
  1446. .u9974_input_option {
  1447. font-size:12px;
  1448. }
  1449. #u9975_div {
  1450. border-width:0px;
  1451. position:absolute;
  1452. left:0px;
  1453. top:0px;
  1454. width:375px;
  1455. height:40px;
  1456. background:inherit;
  1457. background-color:rgba(255, 255, 255, 1);
  1458. border:none;
  1459. border-left:0px;
  1460. border-top:0px;
  1461. border-right:0px;
  1462. border-radius:0px;
  1463. border-bottom-right-radius:0px;
  1464. border-bottom-left-radius:0px;
  1465. -moz-box-shadow:none;
  1466. -webkit-box-shadow:none;
  1467. box-shadow:none;
  1468. }
  1469. #u9975 {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:29px;
  1473. top:106px;
  1474. width:375px;
  1475. height:40px;
  1476. display:flex;
  1477. }
  1478. #u9975 .text {
  1479. position:absolute;
  1480. align-self:center;
  1481. padding:2px 2px 2px 2px;
  1482. box-sizing:border-box;
  1483. width:100%;
  1484. }
  1485. #u9975_text {
  1486. border-width:0px;
  1487. word-wrap:break-word;
  1488. text-transform:none;
  1489. visibility:hidden;
  1490. }
  1491. #u9976_div {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:0px;
  1495. top:0px;
  1496. width:57px;
  1497. height:40px;
  1498. background:inherit;
  1499. background-color:rgba(255, 255, 255, 0);
  1500. box-sizing:border-box;
  1501. border-width:2px;
  1502. border-style:solid;
  1503. border-color:rgba(51, 51, 51, 1);
  1504. border-left:0px;
  1505. border-top:0px;
  1506. border-right:0px;
  1507. border-radius:0px;
  1508. border-bottom-right-radius:0px;
  1509. border-bottom-left-radius:0px;
  1510. -moz-box-shadow:none;
  1511. -webkit-box-shadow:none;
  1512. box-shadow:none;
  1513. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1514. font-weight:500;
  1515. font-style:normal;
  1516. font-size:14px;
  1517. line-height:30px;
  1518. }
  1519. #u9976 {
  1520. border-width:0px;
  1521. position:absolute;
  1522. left:68px;
  1523. top:106px;
  1524. width:57px;
  1525. height:40px;
  1526. display:flex;
  1527. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1528. font-weight:500;
  1529. font-style:normal;
  1530. font-size:14px;
  1531. line-height:30px;
  1532. }
  1533. #u9976 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:0px 0px 0px 0px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u9976_text {
  1541. border-width:0px;
  1542. white-space:nowrap;
  1543. text-transform:none;
  1544. }
  1545. #u9977_div {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:57px;
  1551. height:40px;
  1552. background:inherit;
  1553. background-color:rgba(255, 255, 255, 0);
  1554. border:none;
  1555. border-left:0px;
  1556. border-top:0px;
  1557. border-right:0px;
  1558. border-radius:0px;
  1559. border-bottom-right-radius:0px;
  1560. border-bottom-left-radius:0px;
  1561. -moz-box-shadow:none;
  1562. -webkit-box-shadow:none;
  1563. box-shadow:none;
  1564. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1565. font-weight:500;
  1566. font-style:normal;
  1567. font-size:14px;
  1568. line-height:30px;
  1569. }
  1570. #u9977 {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:187px;
  1574. top:106px;
  1575. width:57px;
  1576. height:40px;
  1577. display:flex;
  1578. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1579. font-weight:500;
  1580. font-style:normal;
  1581. font-size:14px;
  1582. line-height:30px;
  1583. }
  1584. #u9977 .text {
  1585. position:absolute;
  1586. align-self:center;
  1587. padding:0px 0px 0px 0px;
  1588. box-sizing:border-box;
  1589. width:100%;
  1590. }
  1591. #u9977_text {
  1592. border-width:0px;
  1593. white-space:nowrap;
  1594. text-transform:none;
  1595. }
  1596. #u9978_div {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:0px;
  1600. top:0px;
  1601. width:57px;
  1602. height:40px;
  1603. background:inherit;
  1604. background-color:rgba(255, 255, 255, 0);
  1605. border:none;
  1606. border-left:0px;
  1607. border-top:0px;
  1608. border-right:0px;
  1609. border-radius:0px;
  1610. border-bottom-right-radius:0px;
  1611. border-bottom-left-radius:0px;
  1612. -moz-box-shadow:none;
  1613. -webkit-box-shadow:none;
  1614. box-shadow:none;
  1615. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1616. font-weight:500;
  1617. font-style:normal;
  1618. font-size:14px;
  1619. line-height:30px;
  1620. }
  1621. #u9978 {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:306px;
  1625. top:106px;
  1626. width:57px;
  1627. height:40px;
  1628. display:flex;
  1629. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1630. font-weight:500;
  1631. font-style:normal;
  1632. font-size:14px;
  1633. line-height:30px;
  1634. }
  1635. #u9978 .text {
  1636. position:absolute;
  1637. align-self:center;
  1638. padding:0px 0px 0px 0px;
  1639. box-sizing:border-box;
  1640. width:100%;
  1641. }
  1642. #u9978_text {
  1643. border-width:0px;
  1644. white-space:nowrap;
  1645. text-transform:none;
  1646. }
  1647. #u9979 {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:0px;
  1651. top:0px;
  1652. width:0px;
  1653. height:0px;
  1654. }
  1655. #u9980_img {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:0px;
  1659. top:0px;
  1660. width:355px;
  1661. height:120px;
  1662. }
  1663. #u9980 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:39px;
  1667. top:378px;
  1668. width:355px;
  1669. height:120px;
  1670. display:flex;
  1671. }
  1672. #u9980 .text {
  1673. position:absolute;
  1674. align-self:center;
  1675. padding:2px 2px 2px 2px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u9980_text {
  1680. border-width:0px;
  1681. word-wrap:break-word;
  1682. text-transform:none;
  1683. visibility:hidden;
  1684. }
  1685. #u9981_div {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:57px;
  1691. height:30px;
  1692. background:inherit;
  1693. background-color:rgba(255, 255, 255, 0);
  1694. border:none;
  1695. border-left:0px;
  1696. border-top:0px;
  1697. border-right:0px;
  1698. border-radius:0px;
  1699. border-bottom-right-radius:0px;
  1700. border-bottom-left-radius:0px;
  1701. -moz-box-shadow:none;
  1702. -webkit-box-shadow:none;
  1703. box-shadow:none;
  1704. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1705. font-weight:500;
  1706. font-style:normal;
  1707. font-size:14px;
  1708. line-height:30px;
  1709. }
  1710. #u9981 {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:55px;
  1714. top:413px;
  1715. width:57px;
  1716. height:30px;
  1717. display:flex;
  1718. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1719. font-weight:500;
  1720. font-style:normal;
  1721. font-size:14px;
  1722. line-height:30px;
  1723. }
  1724. #u9981 .text {
  1725. position:absolute;
  1726. align-self:flex-start;
  1727. padding:0px 0px 0px 0px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u9981_text {
  1732. border-width:0px;
  1733. white-space:nowrap;
  1734. text-transform:none;
  1735. }
  1736. #u9982_div {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:169px;
  1742. height:50px;
  1743. background:inherit;
  1744. background-color:rgba(255, 255, 255, 0);
  1745. border:none;
  1746. border-left:0px;
  1747. border-top:0px;
  1748. border-right:0px;
  1749. border-radius:0px;
  1750. border-bottom-right-radius:0px;
  1751. border-bottom-left-radius:0px;
  1752. -moz-box-shadow:none;
  1753. -webkit-box-shadow:none;
  1754. box-shadow:none;
  1755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1756. font-weight:400;
  1757. font-style:normal;
  1758. font-size:12px;
  1759. color:#7F7F7F;
  1760. line-height:25px;
  1761. }
  1762. #u9982 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:55px;
  1766. top:443px;
  1767. width:169px;
  1768. height:50px;
  1769. display:flex;
  1770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1771. font-weight:400;
  1772. font-style:normal;
  1773. font-size:12px;
  1774. color:#7F7F7F;
  1775. line-height:25px;
  1776. }
  1777. #u9982 .text {
  1778. position:absolute;
  1779. align-self:flex-start;
  1780. padding:0px 0px 0px 0px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u9982_text {
  1785. border-width:0px;
  1786. white-space:nowrap;
  1787. text-transform:none;
  1788. }
  1789. #u9983 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:0px;
  1795. height:0px;
  1796. }
  1797. #u9984_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:355px;
  1803. height:30px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. box-sizing:border-box;
  1807. border-width:1px;
  1808. border-style:solid;
  1809. border-color:rgba(242, 242, 242, 1);
  1810. border-left:0px;
  1811. border-top:0px;
  1812. border-right:0px;
  1813. border-radius:0px;
  1814. border-bottom-right-radius:0px;
  1815. border-bottom-left-radius:0px;
  1816. -moz-box-shadow:none;
  1817. -webkit-box-shadow:none;
  1818. box-shadow:none;
  1819. }
  1820. #u9984 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:39px;
  1824. top:378px;
  1825. width:355px;
  1826. height:30px;
  1827. display:flex;
  1828. }
  1829. #u9984 .text {
  1830. position:absolute;
  1831. align-self:center;
  1832. padding:2px 2px 2px 2px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u9984_text {
  1837. border-width:0px;
  1838. word-wrap:break-word;
  1839. text-transform:none;
  1840. visibility:hidden;
  1841. }
  1842. #u9985_div {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:0px;
  1846. top:0px;
  1847. width:143px;
  1848. height:14px;
  1849. background:inherit;
  1850. background-color:rgba(255, 255, 255, 0);
  1851. border:none;
  1852. border-left:0px;
  1853. border-top:0px;
  1854. border-right:0px;
  1855. border-radius:0px;
  1856. border-bottom-right-radius:0px;
  1857. border-bottom-left-radius:0px;
  1858. -moz-box-shadow:none;
  1859. -webkit-box-shadow:none;
  1860. box-shadow:none;
  1861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:10px;
  1865. color:#000000;
  1866. text-align:center;
  1867. }
  1868. #u9985 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:50px;
  1872. top:386px;
  1873. width:143px;
  1874. height:14px;
  1875. display:flex;
  1876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1877. font-weight:400;
  1878. font-style:normal;
  1879. font-size:10px;
  1880. color:#000000;
  1881. text-align:center;
  1882. }
  1883. #u9985 .text {
  1884. position:absolute;
  1885. align-self:flex-start;
  1886. padding:0px 0px 0px 0px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u9985_text {
  1891. border-width:0px;
  1892. white-space:nowrap;
  1893. text-transform:none;
  1894. }
  1895. #u9986_div {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:60px;
  1901. height:24px;
  1902. background:inherit;
  1903. background-color:rgba(255, 255, 255, 0);
  1904. box-sizing:border-box;
  1905. border-width:1px;
  1906. border-style:solid;
  1907. border-color:rgba(51, 51, 51, 1);
  1908. border-radius:30px;
  1909. -moz-box-shadow:none;
  1910. -webkit-box-shadow:none;
  1911. box-shadow:none;
  1912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1913. font-weight:400;
  1914. font-style:normal;
  1915. font-size:12px;
  1916. color:#555555;
  1917. text-align:center;
  1918. line-height:24px;
  1919. }
  1920. #u9986 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:320px;
  1924. top:427px;
  1925. width:60px;
  1926. height:24px;
  1927. display:flex;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:12px;
  1932. color:#555555;
  1933. text-align:center;
  1934. line-height:24px;
  1935. }
  1936. #u9986 .text {
  1937. position:absolute;
  1938. align-self:center;
  1939. padding:0px 0px 0px 0px;
  1940. box-sizing:border-box;
  1941. width:100%;
  1942. }
  1943. #u9986_text {
  1944. border-width:0px;
  1945. word-wrap:break-word;
  1946. text-transform:none;
  1947. }
  1948. #u9987_div {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:360px;
  1954. height:42px;
  1955. background:inherit;
  1956. background-color:rgba(255, 255, 0, 0);
  1957. border:none;
  1958. border-left:0px;
  1959. border-top:0px;
  1960. border-right:0px;
  1961. border-radius:0px;
  1962. border-bottom-right-radius:0px;
  1963. border-bottom-left-radius:0px;
  1964. -moz-box-shadow:none;
  1965. -webkit-box-shadow:none;
  1966. box-shadow:none;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:10px;
  1971. color:#F59A23;
  1972. }
  1973. #u9987 {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:39px;
  1977. top:196px;
  1978. width:360px;
  1979. height:42px;
  1980. display:flex;
  1981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1982. font-weight:400;
  1983. font-style:normal;
  1984. font-size:10px;
  1985. color:#F59A23;
  1986. }
  1987. #u9987 .text {
  1988. position:absolute;
  1989. align-self:center;
  1990. padding:0px 0px 0px 0px;
  1991. box-sizing:border-box;
  1992. width:100%;
  1993. }
  1994. #u9987_text {
  1995. border-width:0px;
  1996. word-wrap:break-word;
  1997. text-transform:none;
  1998. }
  1999. #u9988_div {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:360px;
  2005. height:28px;
  2006. background:inherit;
  2007. background-color:rgba(255, 255, 0, 0);
  2008. border:none;
  2009. border-left:0px;
  2010. border-top:0px;
  2011. border-right:0px;
  2012. border-radius:0px;
  2013. border-bottom-right-radius:0px;
  2014. border-bottom-left-radius:0px;
  2015. -moz-box-shadow:none;
  2016. -webkit-box-shadow:none;
  2017. box-shadow:none;
  2018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2019. font-weight:400;
  2020. font-style:normal;
  2021. font-size:10px;
  2022. color:#D9001B;
  2023. }
  2024. #u9988 {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:450px;
  2028. top:296px;
  2029. width:360px;
  2030. height:28px;
  2031. display:flex;
  2032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2033. font-weight:400;
  2034. font-style:normal;
  2035. font-size:10px;
  2036. color:#D9001B;
  2037. }
  2038. #u9988 .text {
  2039. position:absolute;
  2040. align-self:center;
  2041. padding:0px 0px 0px 0px;
  2042. box-sizing:border-box;
  2043. width:100%;
  2044. }
  2045. #u9988_text {
  2046. border-width:0px;
  2047. word-wrap:break-word;
  2048. text-transform:none;
  2049. }
  2050. #u9989_div {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:360px;
  2056. height:28px;
  2057. background:inherit;
  2058. background-color:rgba(255, 255, 0, 0);
  2059. border:none;
  2060. border-left:0px;
  2061. border-top:0px;
  2062. border-right:0px;
  2063. border-radius:0px;
  2064. border-bottom-right-radius:0px;
  2065. border-bottom-left-radius:0px;
  2066. -moz-box-shadow:none;
  2067. -webkit-box-shadow:none;
  2068. box-shadow:none;
  2069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:10px;
  2073. color:#D9001B;
  2074. }
  2075. #u9989 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:450px;
  2079. top:427px;
  2080. width:360px;
  2081. height:28px;
  2082. display:flex;
  2083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2084. font-weight:400;
  2085. font-style:normal;
  2086. font-size:10px;
  2087. color:#D9001B;
  2088. }
  2089. #u9989 .text {
  2090. position:absolute;
  2091. align-self:center;
  2092. padding:0px 0px 0px 0px;
  2093. box-sizing:border-box;
  2094. width:100%;
  2095. }
  2096. #u9989_text {
  2097. border-width:0px;
  2098. word-wrap:break-word;
  2099. text-transform:none;
  2100. }