styles.css 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:812px;
  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. #u225769_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u225769 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u225769 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u225769_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u225770_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. #u225770 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u225770 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u225770_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u225771 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u225772_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. #u225772 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u225772 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u225772_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u225773 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u225774_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u225774 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u225774 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u225774_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u225775_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u225775 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u225775 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u225775_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u225776 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u225777_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u225777 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u225777 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u225777_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u225778_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u225778 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u225778 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u225778_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u225779_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u225779 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u225779 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u225779_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u225780_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u225780 {
  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. #u225780 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u225780_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u225781_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u225781 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u225781 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u225781_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u225782_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. #u225782 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u225782 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u225782_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u225783 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u225784_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u225784 {
  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. #u225784 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u225784_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u225785_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. #u225785 {
  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. #u225785 .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. #u225785_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u225786 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u225787_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u225787 {
  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. #u225787 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u225787_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u225788_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. #u225788 {
  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. #u225788 .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. #u225788_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u225789_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. #u225789 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u225789 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u225789_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u225790 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u225791_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u225791 {
  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. #u225791 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u225791_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u225792_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. #u225792 {
  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. #u225792 .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. #u225792_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u225793 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u225794_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u225794 {
  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. #u225794 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u225794_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u225795_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. #u225795 {
  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. #u225795 .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. #u225795_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u225796_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:730px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  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. #u225796 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:730px;
  804. display:flex;
  805. }
  806. #u225796 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u225796_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u225797_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:12px;
  825. height:12px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. box-sizing:border-box;
  829. border-width:2px;
  830. border-style:solid;
  831. border-color:rgba(51, 51, 51, 1);
  832. border-right:0px;
  833. border-bottom:0px;
  834. border-radius:0px;
  835. border-top-right-radius:0px;
  836. border-bottom-left-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. }
  841. #u225797 {
  842. border-width:0px;
  843. position:absolute;
  844. left:39px;
  845. top:81px;
  846. width:12px;
  847. height:12px;
  848. display:flex;
  849. -webkit-transform:rotate(315deg);
  850. -moz-transform:rotate(315deg);
  851. -ms-transform:rotate(315deg);
  852. transform:rotate(315deg);
  853. }
  854. #u225797 .text {
  855. position:absolute;
  856. align-self:center;
  857. padding:2px 2px 2px 2px;
  858. box-sizing:border-box;
  859. width:100%;
  860. }
  861. #u225797_text {
  862. border-width:0px;
  863. word-wrap:break-word;
  864. text-transform:none;
  865. visibility:hidden;
  866. }
  867. #u225798_div {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:57px;
  873. height:30px;
  874. background:inherit;
  875. background-color:rgba(255, 255, 255, 0);
  876. border:none;
  877. border-left:0px;
  878. border-top:0px;
  879. border-right:0px;
  880. border-radius:0px;
  881. border-bottom-right-radius:0px;
  882. border-bottom-left-radius:0px;
  883. -moz-box-shadow:none;
  884. -webkit-box-shadow:none;
  885. box-shadow:none;
  886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  887. font-weight:400;
  888. font-style:normal;
  889. font-size:14px;
  890. line-height:30px;
  891. }
  892. #u225798 {
  893. border-width:0px;
  894. position:absolute;
  895. left:181px;
  896. top:72px;
  897. width:57px;
  898. height:30px;
  899. display:flex;
  900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  901. font-weight:400;
  902. font-style:normal;
  903. font-size:14px;
  904. line-height:30px;
  905. }
  906. #u225798 .text {
  907. position:absolute;
  908. align-self:center;
  909. padding:0px 0px 0px 0px;
  910. box-sizing:border-box;
  911. width:100%;
  912. }
  913. #u225798_text {
  914. border-width:0px;
  915. white-space:nowrap;
  916. text-transform:none;
  917. }
  918. #u225799_div {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:344px;
  924. height:40px;
  925. background:inherit;
  926. background-color:rgba(24, 144, 255, 1);
  927. border:none;
  928. border-radius:81px;
  929. -moz-box-shadow:none;
  930. -webkit-box-shadow:none;
  931. box-shadow:none;
  932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  933. font-weight:400;
  934. font-style:normal;
  935. font-size:14px;
  936. color:#FFFFFF;
  937. }
  938. #u225799 {
  939. border-width:0px;
  940. position:absolute;
  941. left:48px;
  942. top:777px;
  943. width:344px;
  944. height:40px;
  945. display:flex;
  946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  947. font-weight:400;
  948. font-style:normal;
  949. font-size:14px;
  950. color:#FFFFFF;
  951. }
  952. #u225799 .text {
  953. position:absolute;
  954. align-self:center;
  955. padding:2px 2px 2px 2px;
  956. box-sizing:border-box;
  957. width:100%;
  958. }
  959. #u225799_text {
  960. border-width:0px;
  961. word-wrap:break-word;
  962. text-transform:none;
  963. }
  964. #u225800_div {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:355px;
  970. height:197px;
  971. background:inherit;
  972. background-color:rgba(255, 255, 255, 1);
  973. border:none;
  974. border-left:0px;
  975. border-top:0px;
  976. border-right:0px;
  977. border-radius:10px;
  978. border-bottom-right-radius:0px;
  979. border-bottom-left-radius:0px;
  980. -moz-box-shadow:none;
  981. -webkit-box-shadow:none;
  982. box-shadow:none;
  983. }
  984. #u225800 {
  985. border-width:0px;
  986. position:absolute;
  987. left:39px;
  988. top:179px;
  989. width:355px;
  990. height:197px;
  991. display:flex;
  992. }
  993. #u225800 .text {
  994. position:absolute;
  995. align-self:center;
  996. padding:2px 2px 2px 2px;
  997. box-sizing:border-box;
  998. width:100%;
  999. }
  1000. #u225800_text {
  1001. border-width:0px;
  1002. word-wrap:break-word;
  1003. text-transform:none;
  1004. visibility:hidden;
  1005. }
  1006. #u225801_div {
  1007. border-width:0px;
  1008. position:absolute;
  1009. left:0px;
  1010. top:0px;
  1011. width:330px;
  1012. height:50px;
  1013. background:inherit;
  1014. background-color:rgba(255, 255, 255, 1);
  1015. box-sizing:border-box;
  1016. border-width:1px;
  1017. border-style:solid;
  1018. border-color:rgba(215, 215, 215, 1);
  1019. border-left:0px;
  1020. border-top:0px;
  1021. border-right:0px;
  1022. border-radius:0px;
  1023. border-bottom-right-radius:0px;
  1024. border-bottom-left-radius:0px;
  1025. -moz-box-shadow:none;
  1026. -webkit-box-shadow:none;
  1027. box-shadow:none;
  1028. }
  1029. #u225801 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:49px;
  1033. top:189px;
  1034. width:330px;
  1035. height:50px;
  1036. display:flex;
  1037. }
  1038. #u225801 .text {
  1039. position:absolute;
  1040. align-self:center;
  1041. padding:2px 2px 2px 2px;
  1042. box-sizing:border-box;
  1043. width:100%;
  1044. }
  1045. #u225801_text {
  1046. border-width:0px;
  1047. word-wrap:break-word;
  1048. text-transform:none;
  1049. visibility:hidden;
  1050. }
  1051. #u225802_div {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:82px;
  1057. height:30px;
  1058. background:inherit;
  1059. background-color:rgba(255, 255, 255, 0);
  1060. border:none;
  1061. border-left:0px;
  1062. border-top:0px;
  1063. border-right:0px;
  1064. border-radius:0px;
  1065. border-bottom-right-radius:0px;
  1066. border-bottom-left-radius:0px;
  1067. -moz-box-shadow:none;
  1068. -webkit-box-shadow:none;
  1069. box-shadow:none;
  1070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1071. font-weight:400;
  1072. font-style:normal;
  1073. font-size:14px;
  1074. color:#555555;
  1075. line-height:30px;
  1076. }
  1077. #u225802 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:132px;
  1081. top:199px;
  1082. width:82px;
  1083. height:30px;
  1084. display:flex;
  1085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1086. font-weight:400;
  1087. font-style:normal;
  1088. font-size:14px;
  1089. color:#555555;
  1090. line-height:30px;
  1091. }
  1092. #u225802 .text {
  1093. position:absolute;
  1094. align-self:flex-start;
  1095. padding:0px 0px 0px 0px;
  1096. box-sizing:border-box;
  1097. width:100%;
  1098. }
  1099. #u225802_text {
  1100. border-width:0px;
  1101. white-space:nowrap;
  1102. text-transform:none;
  1103. }
  1104. #u225803_div {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:281px;
  1110. height:30px;
  1111. background:inherit;
  1112. background-color:rgba(255, 255, 255, 0);
  1113. border:none;
  1114. border-left:0px;
  1115. border-top:0px;
  1116. border-right:0px;
  1117. border-radius:0px;
  1118. border-bottom-right-radius:0px;
  1119. border-bottom-left-radius:0px;
  1120. -moz-box-shadow:none;
  1121. -webkit-box-shadow:none;
  1122. box-shadow:none;
  1123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1124. font-weight:400;
  1125. font-style:normal;
  1126. font-size:14px;
  1127. line-height:30px;
  1128. }
  1129. #u225803 {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:37px;
  1133. top:147px;
  1134. width:281px;
  1135. height:30px;
  1136. display:flex;
  1137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1138. font-weight:400;
  1139. font-style:normal;
  1140. font-size:14px;
  1141. line-height:30px;
  1142. }
  1143. #u225803 .text {
  1144. position:absolute;
  1145. align-self:flex-start;
  1146. padding:0px 0px 0px 0px;
  1147. box-sizing:border-box;
  1148. width:100%;
  1149. }
  1150. #u225803_text {
  1151. border-width:0px;
  1152. white-space:nowrap;
  1153. text-transform:none;
  1154. }
  1155. #u225804_div {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:317px;
  1161. height:58px;
  1162. background:inherit;
  1163. background-color:rgba(242, 242, 242, 1);
  1164. border:none;
  1165. border-radius:4px;
  1166. -moz-box-shadow:none;
  1167. -webkit-box-shadow:none;
  1168. box-shadow:none;
  1169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1170. font-weight:400;
  1171. font-style:normal;
  1172. font-size:12px;
  1173. text-align:left;
  1174. line-height:25px;
  1175. }
  1176. #u225804 {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:58px;
  1180. top:289px;
  1181. width:317px;
  1182. height:58px;
  1183. display:flex;
  1184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1185. font-weight:400;
  1186. font-style:normal;
  1187. font-size:12px;
  1188. text-align:left;
  1189. line-height:25px;
  1190. }
  1191. #u225804 .text {
  1192. position:absolute;
  1193. align-self:flex-start;
  1194. padding:5px 2px 5px 10px;
  1195. box-sizing:border-box;
  1196. width:100%;
  1197. }
  1198. #u225804_text {
  1199. border-width:0px;
  1200. word-wrap:break-word;
  1201. text-transform:none;
  1202. }
  1203. #u225805_div {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:71px;
  1209. height:30px;
  1210. background:inherit;
  1211. background-color:rgba(255, 255, 255, 0);
  1212. border:none;
  1213. border-left:0px;
  1214. border-top:0px;
  1215. border-right:0px;
  1216. border-radius:0px;
  1217. border-bottom-right-radius:0px;
  1218. border-bottom-left-radius:0px;
  1219. -moz-box-shadow:none;
  1220. -webkit-box-shadow:none;
  1221. box-shadow:none;
  1222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1223. font-weight:400;
  1224. font-style:normal;
  1225. font-size:14px;
  1226. line-height:30px;
  1227. }
  1228. #u225805 {
  1229. border-width:0px;
  1230. position:absolute;
  1231. left:59px;
  1232. top:199px;
  1233. width:71px;
  1234. height:30px;
  1235. display:flex;
  1236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1237. font-weight:400;
  1238. font-style:normal;
  1239. font-size:14px;
  1240. line-height:30px;
  1241. }
  1242. #u225805 .text {
  1243. position:absolute;
  1244. align-self:flex-start;
  1245. padding:0px 0px 0px 0px;
  1246. box-sizing:border-box;
  1247. width:100%;
  1248. }
  1249. #u225805_text {
  1250. border-width:0px;
  1251. white-space:nowrap;
  1252. text-transform:none;
  1253. }
  1254. #u225806_div {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:330px;
  1260. height:50px;
  1261. background:inherit;
  1262. background-color:rgba(255, 255, 255, 1);
  1263. border:none;
  1264. border-left:0px;
  1265. border-top:0px;
  1266. border-right:0px;
  1267. border-radius:0px;
  1268. border-bottom-right-radius:0px;
  1269. border-bottom-left-radius:0px;
  1270. -moz-box-shadow:none;
  1271. -webkit-box-shadow:none;
  1272. box-shadow:none;
  1273. }
  1274. #u225806 {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:49px;
  1278. top:239px;
  1279. width:330px;
  1280. height:50px;
  1281. display:flex;
  1282. }
  1283. #u225806 .text {
  1284. position:absolute;
  1285. align-self:center;
  1286. padding:2px 2px 2px 2px;
  1287. box-sizing:border-box;
  1288. width:100%;
  1289. }
  1290. #u225806_text {
  1291. border-width:0px;
  1292. word-wrap:break-word;
  1293. text-transform:none;
  1294. visibility:hidden;
  1295. }
  1296. #u225807_div {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:0px;
  1300. top:0px;
  1301. width:58px;
  1302. height:30px;
  1303. background:inherit;
  1304. background-color:rgba(255, 255, 255, 0);
  1305. border:none;
  1306. border-left:0px;
  1307. border-top:0px;
  1308. border-right:0px;
  1309. border-radius:0px;
  1310. border-bottom-right-radius:0px;
  1311. border-bottom-left-radius:0px;
  1312. -moz-box-shadow:none;
  1313. -webkit-box-shadow:none;
  1314. box-shadow:none;
  1315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1316. font-weight:400;
  1317. font-style:normal;
  1318. font-size:14px;
  1319. line-height:30px;
  1320. }
  1321. #u225807 {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:132px;
  1325. top:249px;
  1326. width:58px;
  1327. height:30px;
  1328. display:flex;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:14px;
  1333. line-height:30px;
  1334. }
  1335. #u225807 .text {
  1336. position:absolute;
  1337. align-self:flex-start;
  1338. padding:0px 0px 0px 0px;
  1339. box-sizing:border-box;
  1340. width:100%;
  1341. }
  1342. #u225807_text {
  1343. border-width:0px;
  1344. white-space:nowrap;
  1345. text-transform:none;
  1346. }
  1347. #u225808_div {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:0px;
  1351. top:0px;
  1352. width:71px;
  1353. height:30px;
  1354. background:inherit;
  1355. background-color:rgba(255, 255, 255, 0);
  1356. border:none;
  1357. border-left:0px;
  1358. border-top:0px;
  1359. border-right:0px;
  1360. border-radius:0px;
  1361. border-bottom-right-radius:0px;
  1362. border-bottom-left-radius:0px;
  1363. -moz-box-shadow:none;
  1364. -webkit-box-shadow:none;
  1365. box-shadow:none;
  1366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1367. font-weight:400;
  1368. font-style:normal;
  1369. font-size:14px;
  1370. line-height:30px;
  1371. }
  1372. #u225808 {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:59px;
  1376. top:249px;
  1377. width:71px;
  1378. height:30px;
  1379. display:flex;
  1380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1381. font-weight:400;
  1382. font-style:normal;
  1383. font-size:14px;
  1384. line-height:30px;
  1385. }
  1386. #u225808 .text {
  1387. position:absolute;
  1388. align-self:flex-start;
  1389. padding:0px 0px 0px 0px;
  1390. box-sizing:border-box;
  1391. width:100%;
  1392. }
  1393. #u225808_text {
  1394. border-width:0px;
  1395. white-space:nowrap;
  1396. text-transform:none;
  1397. }
  1398. #u225809 {
  1399. border-width:0px;
  1400. position:absolute;
  1401. left:0px;
  1402. top:0px;
  1403. width:0px;
  1404. height:0px;
  1405. }
  1406. #u225810_div {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:342px;
  1412. height:240px;
  1413. background:inherit;
  1414. background-color:rgba(255, 255, 255, 1);
  1415. border:none;
  1416. border-radius:10px;
  1417. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1418. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1419. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1420. }
  1421. #u225810 {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:888px;
  1425. top:75px;
  1426. width:342px;
  1427. height:240px;
  1428. display:flex;
  1429. }
  1430. #u225810 .text {
  1431. position:absolute;
  1432. align-self:center;
  1433. padding:2px 2px 2px 2px;
  1434. box-sizing:border-box;
  1435. width:100%;
  1436. }
  1437. #u225810_text {
  1438. border-width:0px;
  1439. word-wrap:break-word;
  1440. text-transform:none;
  1441. visibility:hidden;
  1442. }
  1443. #u225811_div {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:91px;
  1449. height:30px;
  1450. background:inherit;
  1451. background-color:rgba(255, 255, 255, 0);
  1452. border:none;
  1453. border-left:0px;
  1454. border-top:0px;
  1455. border-right:0px;
  1456. border-radius:0px;
  1457. border-bottom-right-radius:0px;
  1458. border-bottom-left-radius:0px;
  1459. -moz-box-shadow:none;
  1460. -webkit-box-shadow:none;
  1461. box-shadow:none;
  1462. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1463. font-weight:500;
  1464. font-style:normal;
  1465. font-size:18px;
  1466. text-align:center;
  1467. line-height:30px;
  1468. }
  1469. #u225811 {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:1013px;
  1473. top:99px;
  1474. width:91px;
  1475. height:30px;
  1476. display:flex;
  1477. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1478. font-weight:500;
  1479. font-style:normal;
  1480. font-size:18px;
  1481. text-align:center;
  1482. line-height:30px;
  1483. }
  1484. #u225811 .text {
  1485. position:absolute;
  1486. align-self:flex-start;
  1487. padding:0px 0px 0px 0px;
  1488. box-sizing:border-box;
  1489. width:100%;
  1490. }
  1491. #u225811_text {
  1492. border-width:0px;
  1493. white-space:nowrap;
  1494. text-transform:none;
  1495. }
  1496. #u225812_img {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:0px;
  1500. top:0px;
  1501. width:343px;
  1502. height:2px;
  1503. }
  1504. #u225812 {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:888px;
  1508. top:248px;
  1509. width:342px;
  1510. height:1px;
  1511. display:flex;
  1512. }
  1513. #u225812 .text {
  1514. position:absolute;
  1515. align-self:center;
  1516. padding:2px 2px 2px 2px;
  1517. box-sizing:border-box;
  1518. width:100%;
  1519. }
  1520. #u225812_text {
  1521. border-width:0px;
  1522. word-wrap:break-word;
  1523. text-transform:none;
  1524. visibility:hidden;
  1525. }
  1526. #u225813_div {
  1527. border-width:0px;
  1528. position:absolute;
  1529. left:0px;
  1530. top:0px;
  1531. width:37px;
  1532. height:30px;
  1533. background:inherit;
  1534. background-color:rgba(255, 255, 255, 0);
  1535. border:none;
  1536. border-left:0px;
  1537. border-top:0px;
  1538. border-right:0px;
  1539. border-radius:0px;
  1540. border-bottom-right-radius:0px;
  1541. border-bottom-left-radius:0px;
  1542. -moz-box-shadow:none;
  1543. -webkit-box-shadow:none;
  1544. box-shadow:none;
  1545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1546. font-weight:400;
  1547. font-style:normal;
  1548. font-size:18px;
  1549. color:#0089FE;
  1550. text-align:right;
  1551. line-height:30px;
  1552. }
  1553. #u225813 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:1133px;
  1557. top:267px;
  1558. width:37px;
  1559. height:30px;
  1560. display:flex;
  1561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1562. font-weight:400;
  1563. font-style:normal;
  1564. font-size:18px;
  1565. color:#0089FE;
  1566. text-align:right;
  1567. line-height:30px;
  1568. }
  1569. #u225813 .text {
  1570. position:absolute;
  1571. align-self:flex-start;
  1572. padding:0px 0px 0px 0px;
  1573. box-sizing:border-box;
  1574. width:100%;
  1575. }
  1576. #u225813_text {
  1577. border-width:0px;
  1578. white-space:nowrap;
  1579. text-transform:none;
  1580. }
  1581. #u225814_div {
  1582. border-width:0px;
  1583. position:absolute;
  1584. left:0px;
  1585. top:0px;
  1586. width:37px;
  1587. height:30px;
  1588. background:inherit;
  1589. background-color:rgba(255, 255, 255, 0);
  1590. border:none;
  1591. border-left:0px;
  1592. border-top:0px;
  1593. border-right:0px;
  1594. border-radius:0px;
  1595. border-bottom-right-radius:0px;
  1596. border-bottom-left-radius:0px;
  1597. -moz-box-shadow:none;
  1598. -webkit-box-shadow:none;
  1599. box-shadow:none;
  1600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1601. font-weight:400;
  1602. font-style:normal;
  1603. font-size:18px;
  1604. color:#0089FE;
  1605. text-align:right;
  1606. line-height:30px;
  1607. }
  1608. #u225814 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:958px;
  1612. top:267px;
  1613. width:37px;
  1614. height:30px;
  1615. display:flex;
  1616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1617. font-weight:400;
  1618. font-style:normal;
  1619. font-size:18px;
  1620. color:#0089FE;
  1621. text-align:right;
  1622. line-height:30px;
  1623. }
  1624. #u225814 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u225814_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u225815_img {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:2px;
  1642. height:67px;
  1643. }
  1644. #u225815 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:1058px;
  1648. top:249px;
  1649. width:1px;
  1650. height:66px;
  1651. display:flex;
  1652. }
  1653. #u225815 .text {
  1654. position:absolute;
  1655. align-self:center;
  1656. padding:2px 2px 2px 2px;
  1657. box-sizing:border-box;
  1658. width:100%;
  1659. }
  1660. #u225815_text {
  1661. border-width:0px;
  1662. word-wrap:break-word;
  1663. text-transform:none;
  1664. visibility:hidden;
  1665. }
  1666. #u225816_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:317px;
  1672. height:90px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 0);
  1675. border:none;
  1676. border-left:0px;
  1677. border-top:0px;
  1678. border-right:0px;
  1679. border-radius:0px;
  1680. border-bottom-right-radius:0px;
  1681. border-bottom-left-radius:0px;
  1682. -moz-box-shadow:none;
  1683. -webkit-box-shadow:none;
  1684. box-shadow:none;
  1685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1686. font-weight:400;
  1687. font-style:normal;
  1688. font-size:14px;
  1689. text-align:center;
  1690. line-height:30px;
  1691. }
  1692. #u225816 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:903px;
  1696. top:141px;
  1697. width:317px;
  1698. height:90px;
  1699. display:flex;
  1700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1701. font-weight:400;
  1702. font-style:normal;
  1703. font-size:14px;
  1704. text-align:center;
  1705. line-height:30px;
  1706. }
  1707. #u225816 .text {
  1708. position:absolute;
  1709. align-self:flex-start;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u225816_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. }
  1719. #u225817_div {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:375px;
  1725. height:37px;
  1726. background:inherit;
  1727. background-color:rgba(255, 255, 0, 0.2);
  1728. border:none;
  1729. border-left:0px;
  1730. border-top:0px;
  1731. border-right:0px;
  1732. border-radius:0px;
  1733. border-bottom-right-radius:0px;
  1734. border-bottom-left-radius:0px;
  1735. -moz-box-shadow:none;
  1736. -webkit-box-shadow:none;
  1737. box-shadow:none;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:12px;
  1742. color:#F59A23;
  1743. }
  1744. #u225817 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:29px;
  1748. top:107px;
  1749. width:375px;
  1750. height:37px;
  1751. display:flex;
  1752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1753. font-weight:400;
  1754. font-style:normal;
  1755. font-size:12px;
  1756. color:#F59A23;
  1757. }
  1758. #u225817 .text {
  1759. position:absolute;
  1760. align-self:flex-start;
  1761. padding:10px 10px 10px 10px;
  1762. box-sizing:border-box;
  1763. width:100%;
  1764. }
  1765. #u225817_text {
  1766. border-width:0px;
  1767. word-wrap:break-word;
  1768. text-transform:none;
  1769. }
  1770. #u225818_img {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:9px;
  1776. height:9px;
  1777. }
  1778. #u225818 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:198px;
  1782. top:260px;
  1783. width:9px;
  1784. height:9px;
  1785. display:flex;
  1786. }
  1787. #u225818 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 2px 2px 2px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u225818_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. visibility:hidden;
  1799. }
  1800. #u225819 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:0px;
  1806. height:0px;
  1807. }
  1808. #u225820_div {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:342px;
  1814. height:186px;
  1815. background:inherit;
  1816. background-color:rgba(255, 255, 255, 1);
  1817. border:none;
  1818. border-radius:10px;
  1819. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1820. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1821. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1822. }
  1823. #u225820 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:470px;
  1827. top:576px;
  1828. width:342px;
  1829. height:186px;
  1830. display:flex;
  1831. }
  1832. #u225820 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:2px 2px 2px 2px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u225820_text {
  1840. border-width:0px;
  1841. word-wrap:break-word;
  1842. text-transform:none;
  1843. visibility:hidden;
  1844. }
  1845. #u225821_div {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:37px;
  1851. height:30px;
  1852. background:inherit;
  1853. background-color:rgba(255, 255, 255, 0);
  1854. border:none;
  1855. border-left:0px;
  1856. border-top:0px;
  1857. border-right:0px;
  1858. border-radius:0px;
  1859. border-bottom-right-radius:0px;
  1860. border-bottom-left-radius:0px;
  1861. -moz-box-shadow:none;
  1862. -webkit-box-shadow:none;
  1863. box-shadow:none;
  1864. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1865. font-weight:500;
  1866. font-style:normal;
  1867. font-size:18px;
  1868. text-align:center;
  1869. line-height:30px;
  1870. }
  1871. #u225821 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:622px;
  1875. top:600px;
  1876. width:37px;
  1877. height:30px;
  1878. display:flex;
  1879. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1880. font-weight:500;
  1881. font-style:normal;
  1882. font-size:18px;
  1883. text-align:center;
  1884. line-height:30px;
  1885. }
  1886. #u225821 .text {
  1887. position:absolute;
  1888. align-self:flex-start;
  1889. padding:0px 0px 0px 0px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u225821_text {
  1894. border-width:0px;
  1895. white-space:nowrap;
  1896. text-transform:none;
  1897. }
  1898. #u225822_img {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:343px;
  1904. height:2px;
  1905. }
  1906. #u225822 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:470px;
  1910. top:699px;
  1911. width:342px;
  1912. height:1px;
  1913. display:flex;
  1914. }
  1915. #u225822 .text {
  1916. position:absolute;
  1917. align-self:center;
  1918. padding:2px 2px 2px 2px;
  1919. box-sizing:border-box;
  1920. width:100%;
  1921. }
  1922. #u225822_text {
  1923. border-width:0px;
  1924. word-wrap:break-word;
  1925. text-transform:none;
  1926. visibility:hidden;
  1927. }
  1928. #u225823_div {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:37px;
  1934. height:30px;
  1935. background:inherit;
  1936. background-color:rgba(255, 255, 255, 0);
  1937. border:none;
  1938. border-left:0px;
  1939. border-top:0px;
  1940. border-right:0px;
  1941. border-radius:0px;
  1942. border-bottom-right-radius:0px;
  1943. border-bottom-left-radius:0px;
  1944. -moz-box-shadow:none;
  1945. -webkit-box-shadow:none;
  1946. box-shadow:none;
  1947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1948. font-weight:400;
  1949. font-style:normal;
  1950. font-size:18px;
  1951. color:#0089FE;
  1952. text-align:right;
  1953. line-height:30px;
  1954. }
  1955. #u225823 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:622px;
  1959. top:718px;
  1960. width:37px;
  1961. height:30px;
  1962. display:flex;
  1963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. font-size:18px;
  1967. color:#0089FE;
  1968. text-align:right;
  1969. line-height:30px;
  1970. }
  1971. #u225823 .text {
  1972. position:absolute;
  1973. align-self:flex-start;
  1974. padding:0px 0px 0px 0px;
  1975. box-sizing:border-box;
  1976. width:100%;
  1977. }
  1978. #u225823_text {
  1979. border-width:0px;
  1980. white-space:nowrap;
  1981. text-transform:none;
  1982. }
  1983. #u225824_div {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:317px;
  1989. height:30px;
  1990. background:inherit;
  1991. background-color:rgba(255, 255, 255, 0);
  1992. border:none;
  1993. border-left:0px;
  1994. border-top:0px;
  1995. border-right:0px;
  1996. border-radius:0px;
  1997. border-bottom-right-radius:0px;
  1998. border-bottom-left-radius:0px;
  1999. -moz-box-shadow:none;
  2000. -webkit-box-shadow:none;
  2001. box-shadow:none;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:14px;
  2006. text-align:center;
  2007. line-height:30px;
  2008. }
  2009. #u225824 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:485px;
  2013. top:642px;
  2014. width:317px;
  2015. height:30px;
  2016. display:flex;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:14px;
  2021. text-align:center;
  2022. line-height:30px;
  2023. }
  2024. #u225824 .text {
  2025. position:absolute;
  2026. align-self:flex-start;
  2027. padding:0px 0px 0px 0px;
  2028. box-sizing:border-box;
  2029. width:100%;
  2030. }
  2031. #u225824_text {
  2032. border-width:0px;
  2033. word-wrap:break-word;
  2034. text-transform:none;
  2035. }
  2036. #u225825 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:0px;
  2040. top:0px;
  2041. width:0px;
  2042. height:0px;
  2043. }
  2044. #u225826_div {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:0px;
  2048. top:0px;
  2049. width:342px;
  2050. height:210px;
  2051. background:inherit;
  2052. background-color:rgba(255, 255, 255, 1);
  2053. border:none;
  2054. border-radius:10px;
  2055. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2056. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2057. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2058. }
  2059. #u225826 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:470px;
  2063. top:64px;
  2064. width:342px;
  2065. height:210px;
  2066. display:flex;
  2067. }
  2068. #u225826 .text {
  2069. position:absolute;
  2070. align-self:center;
  2071. padding:2px 2px 2px 2px;
  2072. box-sizing:border-box;
  2073. width:100%;
  2074. }
  2075. #u225826_text {
  2076. border-width:0px;
  2077. word-wrap:break-word;
  2078. text-transform:none;
  2079. visibility:hidden;
  2080. }
  2081. #u225827_div {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:91px;
  2087. height:30px;
  2088. background:inherit;
  2089. background-color:rgba(255, 255, 255, 0);
  2090. border:none;
  2091. border-left:0px;
  2092. border-top:0px;
  2093. border-right:0px;
  2094. border-radius:0px;
  2095. border-bottom-right-radius:0px;
  2096. border-bottom-left-radius:0px;
  2097. -moz-box-shadow:none;
  2098. -webkit-box-shadow:none;
  2099. box-shadow:none;
  2100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2101. font-weight:500;
  2102. font-style:normal;
  2103. font-size:18px;
  2104. text-align:center;
  2105. line-height:30px;
  2106. }
  2107. #u225827 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:595px;
  2111. top:88px;
  2112. width:91px;
  2113. height:30px;
  2114. display:flex;
  2115. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2116. font-weight:500;
  2117. font-style:normal;
  2118. font-size:18px;
  2119. text-align:center;
  2120. line-height:30px;
  2121. }
  2122. #u225827 .text {
  2123. position:absolute;
  2124. align-self:flex-start;
  2125. padding:0px 0px 0px 0px;
  2126. box-sizing:border-box;
  2127. width:100%;
  2128. }
  2129. #u225827_text {
  2130. border-width:0px;
  2131. white-space:nowrap;
  2132. text-transform:none;
  2133. }
  2134. #u225828_img {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:0px;
  2139. width:343px;
  2140. height:2px;
  2141. }
  2142. #u225828 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:470px;
  2146. top:207px;
  2147. width:342px;
  2148. height:1px;
  2149. display:flex;
  2150. }
  2151. #u225828 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 2px 2px 2px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u225828_text {
  2159. border-width:0px;
  2160. word-wrap:break-word;
  2161. text-transform:none;
  2162. visibility:hidden;
  2163. }
  2164. #u225829_div {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:37px;
  2170. height:30px;
  2171. background:inherit;
  2172. background-color:rgba(255, 255, 255, 0);
  2173. border:none;
  2174. border-left:0px;
  2175. border-top:0px;
  2176. border-right:0px;
  2177. border-radius:0px;
  2178. border-bottom-right-radius:0px;
  2179. border-bottom-left-radius:0px;
  2180. -moz-box-shadow:none;
  2181. -webkit-box-shadow:none;
  2182. box-shadow:none;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:18px;
  2187. color:#0089FE;
  2188. text-align:right;
  2189. line-height:30px;
  2190. }
  2191. #u225829 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:715px;
  2195. top:226px;
  2196. width:37px;
  2197. height:30px;
  2198. display:flex;
  2199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2200. font-weight:400;
  2201. font-style:normal;
  2202. font-size:18px;
  2203. color:#0089FE;
  2204. text-align:right;
  2205. line-height:30px;
  2206. }
  2207. #u225829 .text {
  2208. position:absolute;
  2209. align-self:flex-start;
  2210. padding:0px 0px 0px 0px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u225829_text {
  2215. border-width:0px;
  2216. white-space:nowrap;
  2217. text-transform:none;
  2218. }
  2219. #u225830_div {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:37px;
  2225. height:30px;
  2226. background:inherit;
  2227. background-color:rgba(255, 255, 255, 0);
  2228. border:none;
  2229. border-left:0px;
  2230. border-top:0px;
  2231. border-right:0px;
  2232. border-radius:0px;
  2233. border-bottom-right-radius:0px;
  2234. border-bottom-left-radius:0px;
  2235. -moz-box-shadow:none;
  2236. -webkit-box-shadow:none;
  2237. box-shadow:none;
  2238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2239. font-weight:400;
  2240. font-style:normal;
  2241. font-size:18px;
  2242. color:#0089FE;
  2243. text-align:right;
  2244. line-height:30px;
  2245. }
  2246. #u225830 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:540px;
  2250. top:226px;
  2251. width:37px;
  2252. height:30px;
  2253. display:flex;
  2254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:18px;
  2258. color:#0089FE;
  2259. text-align:right;
  2260. line-height:30px;
  2261. }
  2262. #u225830 .text {
  2263. position:absolute;
  2264. align-self:flex-start;
  2265. padding:0px 0px 0px 0px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u225830_text {
  2270. border-width:0px;
  2271. white-space:nowrap;
  2272. text-transform:none;
  2273. }
  2274. #u225831_img {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:2px;
  2280. height:67px;
  2281. }
  2282. #u225831 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:640px;
  2286. top:208px;
  2287. width:1px;
  2288. height:66px;
  2289. display:flex;
  2290. }
  2291. #u225831 .text {
  2292. position:absolute;
  2293. align-self:center;
  2294. padding:2px 2px 2px 2px;
  2295. box-sizing:border-box;
  2296. width:100%;
  2297. }
  2298. #u225831_text {
  2299. border-width:0px;
  2300. word-wrap:break-word;
  2301. text-transform:none;
  2302. visibility:hidden;
  2303. }
  2304. #u225832_div {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:0px;
  2308. top:0px;
  2309. width:317px;
  2310. height:60px;
  2311. background:inherit;
  2312. background-color:rgba(255, 255, 255, 0);
  2313. border:none;
  2314. border-left:0px;
  2315. border-top:0px;
  2316. border-right:0px;
  2317. border-radius:0px;
  2318. border-bottom-right-radius:0px;
  2319. border-bottom-left-radius:0px;
  2320. -moz-box-shadow:none;
  2321. -webkit-box-shadow:none;
  2322. box-shadow:none;
  2323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:14px;
  2327. text-align:center;
  2328. line-height:30px;
  2329. }
  2330. #u225832 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:485px;
  2334. top:131px;
  2335. width:317px;
  2336. height:60px;
  2337. display:flex;
  2338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2339. font-weight:400;
  2340. font-style:normal;
  2341. font-size:14px;
  2342. text-align:center;
  2343. line-height:30px;
  2344. }
  2345. #u225832 .text {
  2346. position:absolute;
  2347. align-self:flex-start;
  2348. padding:0px 0px 0px 0px;
  2349. box-sizing:border-box;
  2350. width:100%;
  2351. }
  2352. #u225832_text {
  2353. border-width:0px;
  2354. word-wrap:break-word;
  2355. text-transform:none;
  2356. }
  2357. #u225833 {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:0px;
  2361. top:0px;
  2362. width:0px;
  2363. height:0px;
  2364. }
  2365. #u225834_div {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:0px;
  2369. top:0px;
  2370. width:342px;
  2371. height:210px;
  2372. background:inherit;
  2373. background-color:rgba(255, 255, 255, 1);
  2374. border:none;
  2375. border-radius:10px;
  2376. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2377. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2378. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2379. }
  2380. #u225834 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:470px;
  2384. top:326px;
  2385. width:342px;
  2386. height:210px;
  2387. display:flex;
  2388. }
  2389. #u225834 .text {
  2390. position:absolute;
  2391. align-self:center;
  2392. padding:2px 2px 2px 2px;
  2393. box-sizing:border-box;
  2394. width:100%;
  2395. }
  2396. #u225834_text {
  2397. border-width:0px;
  2398. word-wrap:break-word;
  2399. text-transform:none;
  2400. visibility:hidden;
  2401. }
  2402. #u225835_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:343px;
  2408. height:2px;
  2409. }
  2410. #u225835 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:470px;
  2414. top:469px;
  2415. width:342px;
  2416. height:1px;
  2417. display:flex;
  2418. }
  2419. #u225835 .text {
  2420. position:absolute;
  2421. align-self:center;
  2422. padding:2px 2px 2px 2px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u225835_text {
  2427. border-width:0px;
  2428. word-wrap:break-word;
  2429. text-transform:none;
  2430. visibility:hidden;
  2431. }
  2432. #u225836_div {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:73px;
  2438. height:30px;
  2439. background:inherit;
  2440. background-color:rgba(255, 255, 255, 0);
  2441. border:none;
  2442. border-left:0px;
  2443. border-top:0px;
  2444. border-right:0px;
  2445. border-radius:0px;
  2446. border-bottom-right-radius:0px;
  2447. border-bottom-left-radius:0px;
  2448. -moz-box-shadow:none;
  2449. -webkit-box-shadow:none;
  2450. box-shadow:none;
  2451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:18px;
  2455. color:#0089FE;
  2456. text-align:right;
  2457. line-height:30px;
  2458. }
  2459. #u225836 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:679px;
  2463. top:488px;
  2464. width:73px;
  2465. height:30px;
  2466. display:flex;
  2467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2468. font-weight:400;
  2469. font-style:normal;
  2470. font-size:18px;
  2471. color:#0089FE;
  2472. text-align:right;
  2473. line-height:30px;
  2474. }
  2475. #u225836 .text {
  2476. position:absolute;
  2477. align-self:flex-start;
  2478. padding:0px 0px 0px 0px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u225836_text {
  2483. border-width:0px;
  2484. white-space:nowrap;
  2485. text-transform:none;
  2486. }
  2487. #u225837_div {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:37px;
  2493. height:30px;
  2494. background:inherit;
  2495. background-color:rgba(255, 255, 255, 0);
  2496. border:none;
  2497. border-left:0px;
  2498. border-top:0px;
  2499. border-right:0px;
  2500. border-radius:0px;
  2501. border-bottom-right-radius:0px;
  2502. border-bottom-left-radius:0px;
  2503. -moz-box-shadow:none;
  2504. -webkit-box-shadow:none;
  2505. box-shadow:none;
  2506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2507. font-weight:400;
  2508. font-style:normal;
  2509. font-size:18px;
  2510. color:#0089FE;
  2511. text-align:right;
  2512. line-height:30px;
  2513. }
  2514. #u225837 {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:540px;
  2518. top:488px;
  2519. width:37px;
  2520. height:30px;
  2521. display:flex;
  2522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2523. font-weight:400;
  2524. font-style:normal;
  2525. font-size:18px;
  2526. color:#0089FE;
  2527. text-align:right;
  2528. line-height:30px;
  2529. }
  2530. #u225837 .text {
  2531. position:absolute;
  2532. align-self:flex-start;
  2533. padding:0px 0px 0px 0px;
  2534. box-sizing:border-box;
  2535. width:100%;
  2536. }
  2537. #u225837_text {
  2538. border-width:0px;
  2539. white-space:nowrap;
  2540. text-transform:none;
  2541. }
  2542. #u225838_img {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:2px;
  2548. height:67px;
  2549. }
  2550. #u225838 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:640px;
  2554. top:470px;
  2555. width:1px;
  2556. height:66px;
  2557. display:flex;
  2558. }
  2559. #u225838 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:2px 2px 2px 2px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u225838_text {
  2567. border-width:0px;
  2568. word-wrap:break-word;
  2569. text-transform:none;
  2570. visibility:hidden;
  2571. }
  2572. #u225839_div {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:217px;
  2578. height:21px;
  2579. background:inherit;
  2580. background-color:rgba(255, 255, 255, 0);
  2581. border:none;
  2582. border-radius:0px;
  2583. -moz-box-shadow:none;
  2584. -webkit-box-shadow:none;
  2585. box-shadow:none;
  2586. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2587. font-weight:650;
  2588. font-style:normal;
  2589. font-size:18px;
  2590. color:#000000;
  2591. line-height:22px;
  2592. }
  2593. #u225839 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:535px;
  2597. top:388px;
  2598. width:217px;
  2599. height:21px;
  2600. display:flex;
  2601. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2602. font-weight:650;
  2603. font-style:normal;
  2604. font-size:18px;
  2605. color:#000000;
  2606. line-height:22px;
  2607. }
  2608. #u225839 .text {
  2609. position:absolute;
  2610. align-self:flex-start;
  2611. padding:0px 0px 0px 0px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u225839_text {
  2616. border-width:0px;
  2617. white-space:nowrap;
  2618. text-transform:none;
  2619. }
  2620. #u225840_img {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:33px;
  2626. height:39px;
  2627. }
  2628. #u225840 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:619px;
  2632. top:341px;
  2633. width:33px;
  2634. height:39px;
  2635. display:flex;
  2636. }
  2637. #u225840 .text {
  2638. position:absolute;
  2639. align-self:center;
  2640. padding:2px 2px 2px 2px;
  2641. box-sizing:border-box;
  2642. width:100%;
  2643. }
  2644. #u225840_text {
  2645. border-width:0px;
  2646. word-wrap:break-word;
  2647. text-transform:none;
  2648. visibility:hidden;
  2649. }
  2650. #u225841_div {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:152px;
  2656. height:30px;
  2657. background:inherit;
  2658. background-color:rgba(255, 255, 255, 0);
  2659. border:none;
  2660. border-radius:0px;
  2661. -moz-box-shadow:none;
  2662. -webkit-box-shadow:none;
  2663. box-shadow:none;
  2664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2665. font-weight:400;
  2666. font-style:normal;
  2667. font-size:14px;
  2668. color:#7F7F7F;
  2669. line-height:30px;
  2670. }
  2671. #u225841 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:559px;
  2675. top:416px;
  2676. width:152px;
  2677. height:30px;
  2678. display:flex;
  2679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2680. font-weight:400;
  2681. font-style:normal;
  2682. font-size:14px;
  2683. color:#7F7F7F;
  2684. line-height:30px;
  2685. }
  2686. #u225841 .text {
  2687. position:absolute;
  2688. align-self:flex-start;
  2689. padding:0px 0px 0px 0px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u225841_text {
  2694. border-width:0px;
  2695. white-space:nowrap;
  2696. text-transform:none;
  2697. }