styles.css 48 KB

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