styles.css 51 KB

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