styles.css 39 KB

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