styles.css 49 KB

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