styles.css 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1030px;
  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. #u50139 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u50140 {
  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. #u50140 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u50140_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u50140_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u50141_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. #u50141 {
  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. #u50141 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u50141_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u50142 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u50143_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. #u50143 {
  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. #u50143 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u50143_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u50144 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u50145 {
  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. #u50145 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u50145_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u50145_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u50146 {
  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. #u50146 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u50146_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u50146_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u50147 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u50148 {
  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. #u50148 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u50148_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u50148_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u50149 {
  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. #u50149 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u50149_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u50149_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u50150 {
  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. #u50150 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u50150_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u50150_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u50151 {
  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. #u50151 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u50151_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u50151_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u50152 {
  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. #u50152 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u50152_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u50152_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u50153_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. #u50153 {
  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. #u50153 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u50153_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u50154 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u50155 {
  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. #u50155 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u50155_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u50155_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u50156_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. #u50156 {
  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. #u50156 .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. #u50156_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u50157 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u50158 {
  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. #u50158 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u50158_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u50158_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u50159_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. #u50159 {
  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. #u50159 .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. #u50159_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u50160_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. #u50160 {
  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. #u50160 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u50160_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u50161 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u50162 {
  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. #u50162 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u50162_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u50162_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u50163_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. #u50163 {
  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. #u50163 .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. #u50163_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u50164 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u50165 {
  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. #u50165 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u50165_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u50165_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u50166_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. #u50166 {
  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. #u50166 .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. #u50166_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u50167_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. #u50167 {
  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. #u50167 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u50167_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u50168_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:375px;
  848. height:700px;
  849. background:inherit;
  850. background-color:rgba(255, 255, 255, 1);
  851. border-top:0px;
  852. border-radius:25px;
  853. border-top-left-radius:0px;
  854. border-top-right-radius:0px;
  855. filter:drop-shadow(none);
  856. transition:none;
  857. }
  858. #u50168 {
  859. border-width:0px;
  860. position:absolute;
  861. left:29px;
  862. top:145px;
  863. width:375px;
  864. height:700px;
  865. display:flex;
  866. transition:none;
  867. transform-origin:50% 50%;
  868. }
  869. #u50168 .text {
  870. position:absolute;
  871. align-self:center;
  872. padding:2px 2px 2px 2px;
  873. box-sizing:border-box;
  874. width:100%;
  875. }
  876. #u50168_text {
  877. border-width:0px;
  878. word-wrap:break-word;
  879. text-transform:none;
  880. visibility:hidden;
  881. }
  882. #u50169 {
  883. border-width:0px;
  884. position:absolute;
  885. left:0px;
  886. top:0px;
  887. width:0px;
  888. height:0px;
  889. }
  890. #u50170 {
  891. border-width:0px;
  892. position:absolute;
  893. left:40px;
  894. top:79px;
  895. width:11px;
  896. height:18px;
  897. display:flex;
  898. transition:none;
  899. }
  900. #u50170 .text {
  901. position:absolute;
  902. align-self:center;
  903. padding:2px 2px 2px 2px;
  904. box-sizing:border-box;
  905. width:100%;
  906. }
  907. #u50170_img {
  908. border-width:0px;
  909. position:absolute;
  910. left:0px;
  911. top:0px;
  912. width:11px;
  913. height:18px;
  914. }
  915. #u50170_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. visibility:hidden;
  920. }
  921. #u50171_div {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:65px;
  927. height:22px;
  928. background:inherit;
  929. background-color:rgba(255, 255, 255, 0);
  930. border-radius:0px;
  931. filter:drop-shadow(none);
  932. transition:none;
  933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  934. font-weight:400;
  935. font-style:normal;
  936. font-size:16px;
  937. color:#000000;
  938. }
  939. #u50171 {
  940. border-width:0px;
  941. position:absolute;
  942. left:184px;
  943. top:78px;
  944. width:65px;
  945. height:22px;
  946. display:flex;
  947. transition:none;
  948. transform-origin:50% 50%;
  949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  950. font-weight:400;
  951. font-style:normal;
  952. font-size:16px;
  953. color:#000000;
  954. }
  955. #u50171 .text {
  956. position:absolute;
  957. align-self:flex-start;
  958. padding:0px 0px 0px 0px;
  959. box-sizing:border-box;
  960. width:100%;
  961. }
  962. #u50171_text {
  963. border-width:0px;
  964. white-space:nowrap;
  965. text-transform:none;
  966. }
  967. #u50172_div {
  968. border-width:0px;
  969. position:absolute;
  970. left:0px;
  971. top:0px;
  972. width:329px;
  973. height:40px;
  974. background:inherit;
  975. background-color:rgba(170, 170, 170, 0);
  976. border-radius:19px;
  977. filter:drop-shadow(none);
  978. transition:none;
  979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  980. font-weight:400;
  981. font-style:normal;
  982. font-size:14px;
  983. color:#7F7F7F;
  984. text-align:center;
  985. line-height:30px;
  986. }
  987. #u50172 {
  988. border-width:0px;
  989. position:absolute;
  990. left:52px;
  991. top:795px;
  992. width:329px;
  993. height:40px;
  994. display:flex;
  995. transition:none;
  996. transform-origin:50% 50%;
  997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  998. font-weight:400;
  999. font-style:normal;
  1000. font-size:14px;
  1001. color:#7F7F7F;
  1002. text-align:center;
  1003. line-height:30px;
  1004. }
  1005. #u50172 .text {
  1006. position:absolute;
  1007. align-self:center;
  1008. padding:0px 0px 0px 0px;
  1009. box-sizing:border-box;
  1010. width:100%;
  1011. }
  1012. #u50172_text {
  1013. border-width:0px;
  1014. word-wrap:break-word;
  1015. text-transform:none;
  1016. }
  1017. #u50173 {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:0px;
  1023. height:0px;
  1024. }
  1025. #u50174_div {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:353px;
  1031. height:100px;
  1032. background:inherit;
  1033. background-color:rgba(255, 255, 255, 1);
  1034. border-radius:4px;
  1035. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  1036. transition:none;
  1037. }
  1038. #u50174 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:40px;
  1042. top:258px;
  1043. width:353px;
  1044. height:100px;
  1045. display:flex;
  1046. transition:none;
  1047. transform-origin:50% 50%;
  1048. }
  1049. #u50174 .text {
  1050. position:absolute;
  1051. align-self:center;
  1052. padding:2px 2px 2px 2px;
  1053. box-sizing:border-box;
  1054. width:100%;
  1055. }
  1056. #u50174_text {
  1057. border-width:0px;
  1058. word-wrap:break-word;
  1059. text-transform:none;
  1060. visibility:hidden;
  1061. }
  1062. #u50175_div {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:0px;
  1066. top:0px;
  1067. width:91px;
  1068. height:30px;
  1069. background:inherit;
  1070. background-color:rgba(255, 255, 255, 0);
  1071. border-left:0px;
  1072. border-top:0px;
  1073. border-right:0px;
  1074. border-radius:0px;
  1075. border-bottom-right-radius:0px;
  1076. border-bottom-left-radius:0px;
  1077. filter:drop-shadow(none);
  1078. transition:none;
  1079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1080. font-weight:400;
  1081. font-style:normal;
  1082. font-size:18px;
  1083. line-height:30px;
  1084. }
  1085. #u50175 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:155px;
  1089. top:268px;
  1090. width:91px;
  1091. height:30px;
  1092. display:flex;
  1093. transition:none;
  1094. transform-origin:50% 50%;
  1095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1096. font-weight:400;
  1097. font-style:normal;
  1098. font-size:18px;
  1099. line-height:30px;
  1100. }
  1101. #u50175 .text {
  1102. position:absolute;
  1103. align-self:flex-start;
  1104. padding:0px 0px 0px 0px;
  1105. box-sizing:border-box;
  1106. width:100%;
  1107. }
  1108. #u50175_text {
  1109. border-width:0px;
  1110. white-space:nowrap;
  1111. text-transform:none;
  1112. }
  1113. #u50176 {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:0px;
  1117. top:0px;
  1118. width:0px;
  1119. height:0px;
  1120. }
  1121. #u50177 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:155px;
  1125. top:332px;
  1126. width:7px;
  1127. height:11px;
  1128. display:flex;
  1129. transition:none;
  1130. }
  1131. #u50177 .text {
  1132. position:absolute;
  1133. align-self:center;
  1134. padding:2px 2px 2px 2px;
  1135. box-sizing:border-box;
  1136. width:100%;
  1137. }
  1138. #u50177_img {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:0px;
  1142. top:0px;
  1143. width:7px;
  1144. height:11px;
  1145. }
  1146. #u50177_text {
  1147. border-width:0px;
  1148. word-wrap:break-word;
  1149. text-transform:none;
  1150. visibility:hidden;
  1151. }
  1152. #u50178_div {
  1153. border-width:0px;
  1154. position:absolute;
  1155. left:0px;
  1156. top:0px;
  1157. width:157px;
  1158. height:17px;
  1159. background:inherit;
  1160. background-color:rgba(255, 255, 255, 0);
  1161. border-left:0px;
  1162. border-top:0px;
  1163. border-right:0px;
  1164. border-radius:0px;
  1165. border-bottom-right-radius:0px;
  1166. border-bottom-left-radius:0px;
  1167. filter:drop-shadow(none);
  1168. transition:none;
  1169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1170. font-weight:400;
  1171. font-style:normal;
  1172. font-size:12px;
  1173. color:#AAAAAA;
  1174. }
  1175. #u50178 {
  1176. border-width:0px;
  1177. position:absolute;
  1178. left:166px;
  1179. top:329px;
  1180. width:157px;
  1181. height:17px;
  1182. display:flex;
  1183. transition:none;
  1184. transform-origin:50% 50%;
  1185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1186. font-weight:400;
  1187. font-style:normal;
  1188. font-size:12px;
  1189. color:#AAAAAA;
  1190. }
  1191. #u50178 .text {
  1192. position:absolute;
  1193. align-self:flex-start;
  1194. padding:0px 0px 0px 0px;
  1195. box-sizing:border-box;
  1196. width:100%;
  1197. }
  1198. #u50178_text {
  1199. border-width:0px;
  1200. white-space:nowrap;
  1201. text-transform:none;
  1202. }
  1203. #u50179 {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:0px;
  1209. height:0px;
  1210. }
  1211. #u50180_div {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:0px;
  1215. top:0px;
  1216. width:73px;
  1217. height:30px;
  1218. background:inherit;
  1219. background-color:rgba(255, 255, 255, 0);
  1220. border-left:0px;
  1221. border-top:0px;
  1222. border-right:0px;
  1223. border-radius:0px;
  1224. border-bottom-right-radius:0px;
  1225. border-bottom-left-radius:0px;
  1226. filter:drop-shadow(none);
  1227. transition:none;
  1228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1229. font-weight:400;
  1230. font-style:normal;
  1231. font-size:12px;
  1232. line-height:30px;
  1233. }
  1234. #u50180 {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:155px;
  1238. top:299px;
  1239. width:73px;
  1240. height:30px;
  1241. display:flex;
  1242. transition:none;
  1243. transform-origin:50% 50%;
  1244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1245. font-weight:400;
  1246. font-style:normal;
  1247. font-size:12px;
  1248. line-height:30px;
  1249. }
  1250. #u50180 .text {
  1251. position:absolute;
  1252. align-self:flex-start;
  1253. padding:0px 0px 0px 0px;
  1254. box-sizing:border-box;
  1255. width:100%;
  1256. }
  1257. #u50180_text {
  1258. border-width:0px;
  1259. white-space:nowrap;
  1260. text-transform:none;
  1261. }
  1262. #u50181_div {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:0px;
  1266. top:0px;
  1267. width:37px;
  1268. height:17px;
  1269. background:inherit;
  1270. background-color:rgba(255, 255, 255, 0);
  1271. border-left:0px;
  1272. border-top:0px;
  1273. border-right:0px;
  1274. border-radius:0px;
  1275. border-bottom-right-radius:0px;
  1276. border-bottom-left-radius:0px;
  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:#F59A23;
  1284. }
  1285. #u50181 {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:346px;
  1289. top:268px;
  1290. width:37px;
  1291. height:17px;
  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:#F59A23;
  1300. }
  1301. #u50181 .text {
  1302. position:absolute;
  1303. align-self:flex-start;
  1304. padding:0px 0px 0px 0px;
  1305. box-sizing:border-box;
  1306. width:100%;
  1307. }
  1308. #u50181_text {
  1309. border-width:0px;
  1310. white-space:nowrap;
  1311. text-transform:none;
  1312. }
  1313. #u50182 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:50px;
  1317. top:268px;
  1318. width:82px;
  1319. height:80px;
  1320. display:flex;
  1321. transition:none;
  1322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1323. font-weight:400;
  1324. font-style:normal;
  1325. color:#AAAAAA;
  1326. }
  1327. #u50182 .text {
  1328. position:absolute;
  1329. align-self:center;
  1330. padding:2px 2px 2px 2px;
  1331. box-sizing:border-box;
  1332. width:100%;
  1333. }
  1334. #u50182_img {
  1335. border-width:0px;
  1336. position:absolute;
  1337. left:0px;
  1338. top:0px;
  1339. width:82px;
  1340. height:80px;
  1341. }
  1342. #u50182_text {
  1343. border-width:0px;
  1344. word-wrap:break-word;
  1345. text-transform:none;
  1346. }
  1347. #u50183 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:0px;
  1351. top:0px;
  1352. width:0px;
  1353. height:0px;
  1354. }
  1355. #u50184_div {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:353px;
  1361. height:100px;
  1362. background:inherit;
  1363. background-color:rgba(255, 255, 255, 1);
  1364. border-radius:4px;
  1365. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  1366. transition:none;
  1367. }
  1368. #u50184 {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:40px;
  1372. top:148px;
  1373. width:353px;
  1374. height:100px;
  1375. display:flex;
  1376. transition:none;
  1377. transform-origin:50% 50%;
  1378. }
  1379. #u50184 .text {
  1380. position:absolute;
  1381. align-self:center;
  1382. padding:2px 2px 2px 2px;
  1383. box-sizing:border-box;
  1384. width:100%;
  1385. }
  1386. #u50184_text {
  1387. border-width:0px;
  1388. word-wrap:break-word;
  1389. text-transform:none;
  1390. visibility:hidden;
  1391. }
  1392. #u50185_div {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:91px;
  1398. height:30px;
  1399. background:inherit;
  1400. background-color:rgba(255, 255, 255, 0);
  1401. border-left:0px;
  1402. border-top:0px;
  1403. border-right:0px;
  1404. border-radius:0px;
  1405. border-bottom-right-radius:0px;
  1406. border-bottom-left-radius:0px;
  1407. filter:drop-shadow(none);
  1408. transition:none;
  1409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1410. font-weight:400;
  1411. font-style:normal;
  1412. font-size:18px;
  1413. line-height:30px;
  1414. }
  1415. #u50185 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:155px;
  1419. top:158px;
  1420. width:91px;
  1421. height:30px;
  1422. display:flex;
  1423. transition:none;
  1424. transform-origin:50% 50%;
  1425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1426. font-weight:400;
  1427. font-style:normal;
  1428. font-size:18px;
  1429. line-height:30px;
  1430. }
  1431. #u50185 .text {
  1432. position:absolute;
  1433. align-self:flex-start;
  1434. padding:0px 0px 0px 0px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u50185_text {
  1439. border-width:0px;
  1440. white-space:nowrap;
  1441. text-transform:none;
  1442. }
  1443. #u50186 {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:0px;
  1449. height:0px;
  1450. }
  1451. #u50187 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:155px;
  1455. top:222px;
  1456. width:7px;
  1457. height:11px;
  1458. display:flex;
  1459. transition:none;
  1460. }
  1461. #u50187 .text {
  1462. position:absolute;
  1463. align-self:center;
  1464. padding:2px 2px 2px 2px;
  1465. box-sizing:border-box;
  1466. width:100%;
  1467. }
  1468. #u50187_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:7px;
  1474. height:11px;
  1475. }
  1476. #u50187_text {
  1477. border-width:0px;
  1478. word-wrap:break-word;
  1479. text-transform:none;
  1480. visibility:hidden;
  1481. }
  1482. #u50188_div {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:0px;
  1486. top:0px;
  1487. width:157px;
  1488. height:17px;
  1489. background:inherit;
  1490. background-color:rgba(255, 255, 255, 0);
  1491. border-left:0px;
  1492. border-top:0px;
  1493. border-right:0px;
  1494. border-radius:0px;
  1495. border-bottom-right-radius:0px;
  1496. border-bottom-left-radius:0px;
  1497. filter:drop-shadow(none);
  1498. transition:none;
  1499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1500. font-weight:400;
  1501. font-style:normal;
  1502. font-size:12px;
  1503. color:#AAAAAA;
  1504. }
  1505. #u50188 {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:166px;
  1509. top:219px;
  1510. width:157px;
  1511. height:17px;
  1512. display:flex;
  1513. transition:none;
  1514. transform-origin:50% 50%;
  1515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1516. font-weight:400;
  1517. font-style:normal;
  1518. font-size:12px;
  1519. color:#AAAAAA;
  1520. }
  1521. #u50188 .text {
  1522. position:absolute;
  1523. align-self:flex-start;
  1524. padding:0px 0px 0px 0px;
  1525. box-sizing:border-box;
  1526. width:100%;
  1527. }
  1528. #u50188_text {
  1529. border-width:0px;
  1530. white-space:nowrap;
  1531. text-transform:none;
  1532. }
  1533. #u50189 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:0px;
  1539. height:0px;
  1540. }
  1541. #u50190_div {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:0px;
  1545. top:0px;
  1546. width:73px;
  1547. height:30px;
  1548. background:inherit;
  1549. background-color:rgba(255, 255, 255, 0);
  1550. border-left:0px;
  1551. border-top:0px;
  1552. border-right:0px;
  1553. border-radius:0px;
  1554. border-bottom-right-radius:0px;
  1555. border-bottom-left-radius:0px;
  1556. filter:drop-shadow(none);
  1557. transition:none;
  1558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1559. font-weight:400;
  1560. font-style:normal;
  1561. font-size:12px;
  1562. line-height:30px;
  1563. }
  1564. #u50190 {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:155px;
  1568. top:189px;
  1569. width:73px;
  1570. height:30px;
  1571. display:flex;
  1572. transition:none;
  1573. transform-origin:50% 50%;
  1574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1575. font-weight:400;
  1576. font-style:normal;
  1577. font-size:12px;
  1578. line-height:30px;
  1579. }
  1580. #u50190 .text {
  1581. position:absolute;
  1582. align-self:flex-start;
  1583. padding:0px 0px 0px 0px;
  1584. box-sizing:border-box;
  1585. width:100%;
  1586. }
  1587. #u50190_text {
  1588. border-width:0px;
  1589. white-space:nowrap;
  1590. text-transform:none;
  1591. }
  1592. #u50191 {
  1593. border-width:0px;
  1594. position:absolute;
  1595. left:50px;
  1596. top:158px;
  1597. width:82px;
  1598. height:80px;
  1599. display:flex;
  1600. transition:none;
  1601. }
  1602. #u50191 .text {
  1603. position:absolute;
  1604. align-self:center;
  1605. padding:2px 2px 2px 2px;
  1606. box-sizing:border-box;
  1607. width:100%;
  1608. }
  1609. #u50191_img {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:0px;
  1613. top:0px;
  1614. width:82px;
  1615. height:80px;
  1616. }
  1617. #u50191_text {
  1618. border-width:0px;
  1619. word-wrap:break-word;
  1620. text-transform:none;
  1621. visibility:hidden;
  1622. }
  1623. #u50192 {
  1624. border-width:0px;
  1625. position:absolute;
  1626. left:0px;
  1627. top:0px;
  1628. width:0px;
  1629. height:0px;
  1630. }
  1631. #u50193_div {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:0px;
  1635. top:0px;
  1636. width:353px;
  1637. height:100px;
  1638. background:inherit;
  1639. background-color:rgba(255, 255, 255, 1);
  1640. border-radius:4px;
  1641. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  1642. transition:none;
  1643. }
  1644. #u50193 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:40px;
  1648. top:368px;
  1649. width:353px;
  1650. height:100px;
  1651. display:flex;
  1652. transition:none;
  1653. transform-origin:50% 50%;
  1654. }
  1655. #u50193 .text {
  1656. position:absolute;
  1657. align-self:center;
  1658. padding:2px 2px 2px 2px;
  1659. box-sizing:border-box;
  1660. width:100%;
  1661. }
  1662. #u50193_text {
  1663. border-width:0px;
  1664. word-wrap:break-word;
  1665. text-transform:none;
  1666. visibility:hidden;
  1667. }
  1668. #u50194_div {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:91px;
  1674. height:30px;
  1675. background:inherit;
  1676. background-color:rgba(255, 255, 255, 0);
  1677. border-left:0px;
  1678. border-top:0px;
  1679. border-right:0px;
  1680. border-radius:0px;
  1681. border-bottom-right-radius:0px;
  1682. border-bottom-left-radius:0px;
  1683. filter:drop-shadow(none);
  1684. transition:none;
  1685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1686. font-weight:400;
  1687. font-style:normal;
  1688. font-size:18px;
  1689. line-height:30px;
  1690. }
  1691. #u50194 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:155px;
  1695. top:378px;
  1696. width:91px;
  1697. height:30px;
  1698. display:flex;
  1699. transition:none;
  1700. transform-origin:50% 50%;
  1701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1702. font-weight:400;
  1703. font-style:normal;
  1704. font-size:18px;
  1705. line-height:30px;
  1706. }
  1707. #u50194 .text {
  1708. position:absolute;
  1709. align-self:flex-start;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u50194_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u50195 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:0px;
  1725. height:0px;
  1726. }
  1727. #u50196 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:155px;
  1731. top:442px;
  1732. width:7px;
  1733. height:11px;
  1734. display:flex;
  1735. transition:none;
  1736. }
  1737. #u50196 .text {
  1738. position:absolute;
  1739. align-self:center;
  1740. padding:2px 2px 2px 2px;
  1741. box-sizing:border-box;
  1742. width:100%;
  1743. }
  1744. #u50196_img {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:0px;
  1748. top:0px;
  1749. width:7px;
  1750. height:11px;
  1751. }
  1752. #u50196_text {
  1753. border-width:0px;
  1754. word-wrap:break-word;
  1755. text-transform:none;
  1756. visibility:hidden;
  1757. }
  1758. #u50197_div {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:157px;
  1764. height:17px;
  1765. background:inherit;
  1766. background-color:rgba(255, 255, 255, 0);
  1767. border-left:0px;
  1768. border-top:0px;
  1769. border-right:0px;
  1770. border-radius:0px;
  1771. border-bottom-right-radius:0px;
  1772. border-bottom-left-radius:0px;
  1773. filter:drop-shadow(none);
  1774. transition:none;
  1775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1776. font-weight:400;
  1777. font-style:normal;
  1778. font-size:12px;
  1779. color:#AAAAAA;
  1780. }
  1781. #u50197 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:166px;
  1785. top:439px;
  1786. width:157px;
  1787. height:17px;
  1788. display:flex;
  1789. transition:none;
  1790. transform-origin:50% 50%;
  1791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1792. font-weight:400;
  1793. font-style:normal;
  1794. font-size:12px;
  1795. color:#AAAAAA;
  1796. }
  1797. #u50197 .text {
  1798. position:absolute;
  1799. align-self:flex-start;
  1800. padding:0px 0px 0px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u50197_text {
  1805. border-width:0px;
  1806. white-space:nowrap;
  1807. text-transform:none;
  1808. }
  1809. #u50198 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:0px;
  1815. height:0px;
  1816. }
  1817. #u50199_div {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:73px;
  1823. height:30px;
  1824. background:inherit;
  1825. background-color:rgba(255, 255, 255, 0);
  1826. border-left:0px;
  1827. border-top:0px;
  1828. border-right:0px;
  1829. border-radius:0px;
  1830. border-bottom-right-radius:0px;
  1831. border-bottom-left-radius:0px;
  1832. filter:drop-shadow(none);
  1833. transition:none;
  1834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1835. font-weight:400;
  1836. font-style:normal;
  1837. font-size:12px;
  1838. line-height:30px;
  1839. }
  1840. #u50199 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:155px;
  1844. top:409px;
  1845. width:73px;
  1846. height:30px;
  1847. display:flex;
  1848. transition:none;
  1849. transform-origin:50% 50%;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:12px;
  1854. line-height:30px;
  1855. }
  1856. #u50199 .text {
  1857. position:absolute;
  1858. align-self:flex-start;
  1859. padding:0px 0px 0px 0px;
  1860. box-sizing:border-box;
  1861. width:100%;
  1862. }
  1863. #u50199_text {
  1864. border-width:0px;
  1865. white-space:nowrap;
  1866. text-transform:none;
  1867. }
  1868. #u50200_div {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:0px;
  1872. top:0px;
  1873. width:37px;
  1874. height:17px;
  1875. background:inherit;
  1876. background-color:rgba(255, 255, 255, 0);
  1877. border-left:0px;
  1878. border-top:0px;
  1879. border-right:0px;
  1880. border-radius:0px;
  1881. border-bottom-right-radius:0px;
  1882. border-bottom-left-radius:0px;
  1883. filter:drop-shadow(none);
  1884. transition:none;
  1885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1886. font-weight:400;
  1887. font-style:normal;
  1888. font-size:12px;
  1889. color:#D7D7D7;
  1890. }
  1891. #u50200 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:346px;
  1895. top:378px;
  1896. width:37px;
  1897. height:17px;
  1898. display:flex;
  1899. transition:none;
  1900. transform-origin:50% 50%;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:12px;
  1905. color:#D7D7D7;
  1906. }
  1907. #u50200 .text {
  1908. position:absolute;
  1909. align-self:flex-start;
  1910. padding:0px 0px 0px 0px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u50200_text {
  1915. border-width:0px;
  1916. white-space:nowrap;
  1917. text-transform:none;
  1918. }
  1919. #u50201 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:52px;
  1923. top:378px;
  1924. width:82px;
  1925. height:80px;
  1926. display:flex;
  1927. transition:none;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. color:#AAAAAA;
  1932. }
  1933. #u50201 .text {
  1934. position:absolute;
  1935. align-self:center;
  1936. padding:2px 2px 2px 2px;
  1937. box-sizing:border-box;
  1938. width:100%;
  1939. }
  1940. #u50201_img {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:82px;
  1946. height:80px;
  1947. }
  1948. #u50201_text {
  1949. border-width:0px;
  1950. word-wrap:break-word;
  1951. text-transform:none;
  1952. }
  1953. #u50202 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:0px;
  1959. height:0px;
  1960. }
  1961. #u50203_div {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:375px;
  1967. height:40px;
  1968. background:inherit;
  1969. background-color:rgba(129, 211, 248, 0.09803921568627451);
  1970. border-bottom:0px;
  1971. border-radius:3px;
  1972. border-bottom-right-radius:0px;
  1973. border-bottom-left-radius:0px;
  1974. filter:drop-shadow(none);
  1975. transition:none;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:12px;
  1980. text-align:left;
  1981. line-height:20px;
  1982. }
  1983. #u50203 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:29px;
  1987. top:105px;
  1988. width:375px;
  1989. height:40px;
  1990. display:flex;
  1991. transition:none;
  1992. transform-origin:50% 50%;
  1993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1994. font-weight:400;
  1995. font-style:normal;
  1996. font-size:12px;
  1997. text-align:left;
  1998. line-height:20px;
  1999. }
  2000. #u50203 .text {
  2001. position:absolute;
  2002. align-self:flex-start;
  2003. padding:10px 10px 10px 10px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u50203_text {
  2008. border-width:0px;
  2009. word-wrap:break-word;
  2010. text-transform:none;
  2011. }
  2012. #u50204 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:0px;
  2018. height:0px;
  2019. }
  2020. #u50205 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:385px;
  2024. top:119px;
  2025. width:6px;
  2026. height:10px;
  2027. display:flex;
  2028. -webkit-transform:rotate(180deg);
  2029. -moz-transform:rotate(180deg);
  2030. -ms-transform:rotate(180deg);
  2031. transform:rotate(180deg);
  2032. transition:none;
  2033. }
  2034. #u50205 .text {
  2035. position:absolute;
  2036. align-self:center;
  2037. padding:2px 2px 2px 2px;
  2038. box-sizing:border-box;
  2039. width:100%;
  2040. }
  2041. #u50205_img {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:6px;
  2047. height:10px;
  2048. }
  2049. #u50205_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. visibility:hidden;
  2054. }
  2055. #u50206 {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:0px;
  2059. top:0px;
  2060. width:0px;
  2061. height:0px;
  2062. }
  2063. #u50207_div {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:353px;
  2069. height:100px;
  2070. background:inherit;
  2071. background-color:rgba(255, 255, 255, 1);
  2072. border-radius:4px;
  2073. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  2074. transition:none;
  2075. }
  2076. #u50207 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:40px;
  2080. top:478px;
  2081. width:353px;
  2082. height:100px;
  2083. display:flex;
  2084. transition:none;
  2085. transform-origin:50% 50%;
  2086. }
  2087. #u50207 .text {
  2088. position:absolute;
  2089. align-self:center;
  2090. padding:2px 2px 2px 2px;
  2091. box-sizing:border-box;
  2092. width:100%;
  2093. }
  2094. #u50207_text {
  2095. border-width:0px;
  2096. word-wrap:break-word;
  2097. text-transform:none;
  2098. visibility:hidden;
  2099. }
  2100. #u50208_div {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:91px;
  2106. height:30px;
  2107. background:inherit;
  2108. background-color:rgba(255, 255, 255, 0);
  2109. border-left:0px;
  2110. border-top:0px;
  2111. border-right:0px;
  2112. border-radius:0px;
  2113. border-bottom-right-radius:0px;
  2114. border-bottom-left-radius:0px;
  2115. filter:drop-shadow(none);
  2116. transition:none;
  2117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2118. font-weight:400;
  2119. font-style:normal;
  2120. font-size:18px;
  2121. line-height:30px;
  2122. }
  2123. #u50208 {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:155px;
  2127. top:488px;
  2128. width:91px;
  2129. height:30px;
  2130. display:flex;
  2131. transition:none;
  2132. transform-origin:50% 50%;
  2133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2134. font-weight:400;
  2135. font-style:normal;
  2136. font-size:18px;
  2137. line-height:30px;
  2138. }
  2139. #u50208 .text {
  2140. position:absolute;
  2141. align-self:flex-start;
  2142. padding:0px 0px 0px 0px;
  2143. box-sizing:border-box;
  2144. width:100%;
  2145. }
  2146. #u50208_text {
  2147. border-width:0px;
  2148. white-space:nowrap;
  2149. text-transform:none;
  2150. }
  2151. #u50209 {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:0px;
  2157. height:0px;
  2158. }
  2159. #u50210 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:155px;
  2163. top:552px;
  2164. width:7px;
  2165. height:11px;
  2166. display:flex;
  2167. transition:none;
  2168. }
  2169. #u50210 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:2px 2px 2px 2px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u50210_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:7px;
  2182. height:11px;
  2183. }
  2184. #u50210_text {
  2185. border-width:0px;
  2186. word-wrap:break-word;
  2187. text-transform:none;
  2188. visibility:hidden;
  2189. }
  2190. #u50211_div {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:157px;
  2196. height:17px;
  2197. background:inherit;
  2198. background-color:rgba(255, 255, 255, 0);
  2199. border-left:0px;
  2200. border-top:0px;
  2201. border-right:0px;
  2202. border-radius:0px;
  2203. border-bottom-right-radius:0px;
  2204. border-bottom-left-radius:0px;
  2205. filter:drop-shadow(none);
  2206. transition:none;
  2207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2208. font-weight:400;
  2209. font-style:normal;
  2210. font-size:12px;
  2211. color:#AAAAAA;
  2212. }
  2213. #u50211 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:166px;
  2217. top:549px;
  2218. width:157px;
  2219. height:17px;
  2220. display:flex;
  2221. transition:none;
  2222. transform-origin:50% 50%;
  2223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2224. font-weight:400;
  2225. font-style:normal;
  2226. font-size:12px;
  2227. color:#AAAAAA;
  2228. }
  2229. #u50211 .text {
  2230. position:absolute;
  2231. align-self:flex-start;
  2232. padding:0px 0px 0px 0px;
  2233. box-sizing:border-box;
  2234. width:100%;
  2235. }
  2236. #u50211_text {
  2237. border-width:0px;
  2238. white-space:nowrap;
  2239. text-transform:none;
  2240. }
  2241. #u50212 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:0px;
  2247. height:0px;
  2248. }
  2249. #u50213_div {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:73px;
  2255. height:30px;
  2256. background:inherit;
  2257. background-color:rgba(255, 255, 255, 0);
  2258. border-left:0px;
  2259. border-top:0px;
  2260. border-right:0px;
  2261. border-radius:0px;
  2262. border-bottom-right-radius:0px;
  2263. border-bottom-left-radius:0px;
  2264. filter:drop-shadow(none);
  2265. transition:none;
  2266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2267. font-weight:400;
  2268. font-style:normal;
  2269. font-size:12px;
  2270. line-height:30px;
  2271. }
  2272. #u50213 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:155px;
  2276. top:519px;
  2277. width:73px;
  2278. height:30px;
  2279. display:flex;
  2280. transition:none;
  2281. transform-origin:50% 50%;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:12px;
  2286. line-height:30px;
  2287. }
  2288. #u50213 .text {
  2289. position:absolute;
  2290. align-self:flex-start;
  2291. padding:0px 0px 0px 0px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u50213_text {
  2296. border-width:0px;
  2297. white-space:nowrap;
  2298. text-transform:none;
  2299. }
  2300. #u50214_div {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:37px;
  2306. height:17px;
  2307. background:inherit;
  2308. background-color:rgba(255, 255, 255, 0);
  2309. border-left:0px;
  2310. border-top:0px;
  2311. border-right:0px;
  2312. border-radius:0px;
  2313. border-bottom-right-radius:0px;
  2314. border-bottom-left-radius:0px;
  2315. filter:drop-shadow(none);
  2316. transition:none;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. font-size:12px;
  2321. color:#D7D7D7;
  2322. }
  2323. #u50214 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:346px;
  2327. top:488px;
  2328. width:37px;
  2329. height:17px;
  2330. display:flex;
  2331. transition:none;
  2332. transform-origin:50% 50%;
  2333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. font-size:12px;
  2337. color:#D7D7D7;
  2338. }
  2339. #u50214 .text {
  2340. position:absolute;
  2341. align-self:flex-start;
  2342. padding:0px 0px 0px 0px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u50214_text {
  2347. border-width:0px;
  2348. white-space:nowrap;
  2349. text-transform:none;
  2350. }
  2351. #u50215 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:52px;
  2355. top:494px;
  2356. width:82px;
  2357. height:80px;
  2358. display:flex;
  2359. transition:none;
  2360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2361. font-weight:400;
  2362. font-style:normal;
  2363. color:#AAAAAA;
  2364. }
  2365. #u50215 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:2px 2px 2px 2px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u50215_img {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:0px;
  2376. top:0px;
  2377. width:82px;
  2378. height:80px;
  2379. }
  2380. #u50215_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. }
  2385. #u50216 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:0px;
  2391. height:0px;
  2392. }
  2393. #u50217_div {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:353px;
  2399. height:100px;
  2400. background:inherit;
  2401. background-color:rgba(255, 255, 255, 1);
  2402. border-radius:4px;
  2403. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  2404. transition:none;
  2405. }
  2406. #u50217 {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:40px;
  2410. top:588px;
  2411. width:353px;
  2412. height:100px;
  2413. display:flex;
  2414. transition:none;
  2415. transform-origin:50% 50%;
  2416. }
  2417. #u50217 .text {
  2418. position:absolute;
  2419. align-self:center;
  2420. padding:2px 2px 2px 2px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u50217_text {
  2425. border-width:0px;
  2426. word-wrap:break-word;
  2427. text-transform:none;
  2428. visibility:hidden;
  2429. }
  2430. #u50218_div {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:91px;
  2436. height:30px;
  2437. background:inherit;
  2438. background-color:rgba(255, 255, 255, 0);
  2439. border-left:0px;
  2440. border-top:0px;
  2441. border-right:0px;
  2442. border-radius:0px;
  2443. border-bottom-right-radius:0px;
  2444. border-bottom-left-radius:0px;
  2445. filter:drop-shadow(none);
  2446. transition:none;
  2447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2448. font-weight:400;
  2449. font-style:normal;
  2450. font-size:18px;
  2451. line-height:30px;
  2452. }
  2453. #u50218 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:155px;
  2457. top:598px;
  2458. width:91px;
  2459. height:30px;
  2460. display:flex;
  2461. transition:none;
  2462. transform-origin:50% 50%;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:18px;
  2467. line-height:30px;
  2468. }
  2469. #u50218 .text {
  2470. position:absolute;
  2471. align-self:flex-start;
  2472. padding:0px 0px 0px 0px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u50218_text {
  2477. border-width:0px;
  2478. white-space:nowrap;
  2479. text-transform:none;
  2480. }
  2481. #u50219 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:0px;
  2487. height:0px;
  2488. }
  2489. #u50220 {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:155px;
  2493. top:662px;
  2494. width:7px;
  2495. height:11px;
  2496. display:flex;
  2497. transition:none;
  2498. }
  2499. #u50220 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 2px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u50220_img {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:7px;
  2512. height:11px;
  2513. }
  2514. #u50220_text {
  2515. border-width:0px;
  2516. word-wrap:break-word;
  2517. text-transform:none;
  2518. visibility:hidden;
  2519. }
  2520. #u50221_div {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:157px;
  2526. height:17px;
  2527. background:inherit;
  2528. background-color:rgba(255, 255, 255, 0);
  2529. border-left:0px;
  2530. border-top:0px;
  2531. border-right:0px;
  2532. border-radius:0px;
  2533. border-bottom-right-radius:0px;
  2534. border-bottom-left-radius:0px;
  2535. filter:drop-shadow(none);
  2536. transition:none;
  2537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2538. font-weight:400;
  2539. font-style:normal;
  2540. font-size:12px;
  2541. color:#AAAAAA;
  2542. }
  2543. #u50221 {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:166px;
  2547. top:659px;
  2548. width:157px;
  2549. height:17px;
  2550. display:flex;
  2551. transition:none;
  2552. transform-origin:50% 50%;
  2553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2554. font-weight:400;
  2555. font-style:normal;
  2556. font-size:12px;
  2557. color:#AAAAAA;
  2558. }
  2559. #u50221 .text {
  2560. position:absolute;
  2561. align-self:flex-start;
  2562. padding:0px 0px 0px 0px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u50221_text {
  2567. border-width:0px;
  2568. white-space:nowrap;
  2569. text-transform:none;
  2570. }
  2571. #u50222 {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:0px;
  2577. height:0px;
  2578. }
  2579. #u50223_div {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:73px;
  2585. height:30px;
  2586. background:inherit;
  2587. background-color:rgba(255, 255, 255, 0);
  2588. border-left:0px;
  2589. border-top:0px;
  2590. border-right:0px;
  2591. border-radius:0px;
  2592. border-bottom-right-radius:0px;
  2593. border-bottom-left-radius:0px;
  2594. filter:drop-shadow(none);
  2595. transition:none;
  2596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:12px;
  2600. line-height:30px;
  2601. }
  2602. #u50223 {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:155px;
  2606. top:629px;
  2607. width:73px;
  2608. height:30px;
  2609. display:flex;
  2610. transition:none;
  2611. transform-origin:50% 50%;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. font-size:12px;
  2616. line-height:30px;
  2617. }
  2618. #u50223 .text {
  2619. position:absolute;
  2620. align-self:flex-start;
  2621. padding:0px 0px 0px 0px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u50223_text {
  2626. border-width:0px;
  2627. white-space:nowrap;
  2628. text-transform:none;
  2629. }
  2630. #u50224_div {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:37px;
  2636. height:17px;
  2637. background:inherit;
  2638. background-color:rgba(255, 255, 255, 0);
  2639. border-left:0px;
  2640. border-top:0px;
  2641. border-right:0px;
  2642. border-radius:0px;
  2643. border-bottom-right-radius:0px;
  2644. border-bottom-left-radius:0px;
  2645. filter:drop-shadow(none);
  2646. transition:none;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:12px;
  2651. color:#D9001B;
  2652. }
  2653. #u50224 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:346px;
  2657. top:598px;
  2658. width:37px;
  2659. height:17px;
  2660. display:flex;
  2661. transition:none;
  2662. transform-origin:50% 50%;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:12px;
  2667. color:#D9001B;
  2668. }
  2669. #u50224 .text {
  2670. position:absolute;
  2671. align-self:flex-start;
  2672. padding:0px 0px 0px 0px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u50224_text {
  2677. border-width:0px;
  2678. white-space:nowrap;
  2679. text-transform:none;
  2680. }
  2681. #u50225 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:52px;
  2685. top:598px;
  2686. width:82px;
  2687. height:80px;
  2688. display:flex;
  2689. transition:none;
  2690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2691. font-weight:400;
  2692. font-style:normal;
  2693. color:#AAAAAA;
  2694. }
  2695. #u50225 .text {
  2696. position:absolute;
  2697. align-self:center;
  2698. padding:2px 2px 2px 2px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u50225_img {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:82px;
  2708. height:80px;
  2709. }
  2710. #u50225_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. }
  2715. #u50226_div {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:353px;
  2721. height:24px;
  2722. background:inherit;
  2723. background-color:rgba(236, 128, 141, 0.2);
  2724. border-top:0px;
  2725. border-radius:9px;
  2726. border-top-left-radius:0px;
  2727. border-top-right-radius:0px;
  2728. filter:drop-shadow(none);
  2729. transition:none;
  2730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:11px;
  2734. color:#D9001B;
  2735. }
  2736. #u50226 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:40px;
  2740. top:688px;
  2741. width:353px;
  2742. height:24px;
  2743. display:flex;
  2744. transition:none;
  2745. transform-origin:50% 50%;
  2746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2747. font-weight:400;
  2748. font-style:normal;
  2749. font-size:11px;
  2750. color:#D9001B;
  2751. }
  2752. #u50226 .text {
  2753. position:absolute;
  2754. align-self:center;
  2755. padding:2px 2px 2px 2px;
  2756. box-sizing:border-box;
  2757. width:100%;
  2758. }
  2759. #u50226_text {
  2760. border-width:0px;
  2761. word-wrap:break-word;
  2762. text-transform:none;
  2763. }
  2764. #u50227_div {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:586px;
  2770. height:17px;
  2771. background:inherit;
  2772. background-color:rgba(255, 255, 255, 0);
  2773. border-left:0px;
  2774. border-top:0px;
  2775. border-right:0px;
  2776. border-radius:0px;
  2777. border-bottom-right-radius:0px;
  2778. border-bottom-left-radius:0px;
  2779. filter:drop-shadow(none);
  2780. transition:none;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. color:#D9001B;
  2786. }
  2787. #u50227 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:444px;
  2791. top:112px;
  2792. width:586px;
  2793. height:17px;
  2794. display:flex;
  2795. transition:none;
  2796. transform-origin:50% 50%;
  2797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2798. font-weight:400;
  2799. font-style:normal;
  2800. font-size:12px;
  2801. color:#D9001B;
  2802. }
  2803. #u50227 .text {
  2804. position:absolute;
  2805. align-self:flex-start;
  2806. padding:0px 0px 0px 0px;
  2807. box-sizing:border-box;
  2808. width:100%;
  2809. }
  2810. #u50227_text {
  2811. border-width:0px;
  2812. white-space:nowrap;
  2813. text-transform:none;
  2814. }