styles.css 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1353px;
  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. #u161941_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u161941 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u161941 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u161941_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u161942_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. #u161942 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u161942 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u161942_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u161943 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u161944_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. #u161944 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u161944 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u161944_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u161945 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u161946_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u161946 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u161946 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u161946_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u161947_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u161947 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u161947 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u161947_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u161948 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u161949_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u161949 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u161949 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u161949_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u161950_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u161950 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u161950 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u161950_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u161951_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u161951 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u161951 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u161951_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u161952_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u161952 {
  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. #u161952 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u161952_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u161953_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u161953 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u161953 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u161953_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u161954_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. #u161954 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u161954 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u161954_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u161955 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u161956_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u161956 {
  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. #u161956 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u161956_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u161957_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. #u161957 {
  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. #u161957 .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. #u161957_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u161958 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u161959_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u161959 {
  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. #u161959 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u161959_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u161960_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. #u161960 {
  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. #u161960 .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. #u161960_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u161961_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. #u161961 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u161961 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u161961_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u161962 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u161963_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u161963 {
  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. #u161963 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u161963_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u161964_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. #u161964 {
  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. #u161964 .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. #u161964_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u161965 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u161966_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u161966 {
  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. #u161966 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u161966_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u161967_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. #u161967 {
  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. #u161967 .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. #u161967_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u161968_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:774px;
  786. background:inherit;
  787. background-color:rgba(255, 255, 255, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(242, 242, 242, 1);
  792. border-radius:26px;
  793. border-top-left-radius:0px;
  794. border-top-right-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. }
  799. #u161968 {
  800. border-width:0px;
  801. position:absolute;
  802. left:29px;
  803. top:66px;
  804. width:375px;
  805. height:774px;
  806. display:flex;
  807. }
  808. #u161968 .text {
  809. position:absolute;
  810. align-self:center;
  811. padding:2px 2px 2px 2px;
  812. box-sizing:border-box;
  813. width:100%;
  814. }
  815. #u161968_text {
  816. border-width:0px;
  817. word-wrap:break-word;
  818. text-transform:none;
  819. visibility:hidden;
  820. }
  821. #u161969 {
  822. border-width:0px;
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:0px;
  827. height:0px;
  828. }
  829. #u161970_div {
  830. border-width:0px;
  831. position:absolute;
  832. left:0px;
  833. top:0px;
  834. width:88px;
  835. height:32px;
  836. background:inherit;
  837. background-color:rgba(255, 255, 255, 1);
  838. box-sizing:border-box;
  839. border-width:1px;
  840. border-style:solid;
  841. border-color:rgba(242, 242, 242, 1);
  842. border-radius:33px;
  843. -moz-box-shadow:none;
  844. -webkit-box-shadow:none;
  845. box-shadow:none;
  846. }
  847. #u161970 {
  848. border-width:0px;
  849. position:absolute;
  850. left:306px;
  851. top:69px;
  852. width:88px;
  853. height:32px;
  854. display:flex;
  855. }
  856. #u161970 .text {
  857. position:absolute;
  858. align-self:center;
  859. padding:2px 2px 2px 2px;
  860. box-sizing:border-box;
  861. width:100%;
  862. }
  863. #u161970_text {
  864. border-width:0px;
  865. word-wrap:break-word;
  866. text-transform:none;
  867. visibility:hidden;
  868. }
  869. #u161971 {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:0px;
  875. height:0px;
  876. }
  877. #u161972_img {
  878. border-width:0px;
  879. position:absolute;
  880. left:0px;
  881. top:0px;
  882. width:18px;
  883. height:18px;
  884. }
  885. #u161972 {
  886. border-width:0px;
  887. position:absolute;
  888. left:369px;
  889. top:76px;
  890. width:18px;
  891. height:18px;
  892. display:flex;
  893. }
  894. #u161972 .text {
  895. position:absolute;
  896. align-self:center;
  897. padding:2px 2px 2px 2px;
  898. box-sizing:border-box;
  899. width:100%;
  900. }
  901. #u161972_text {
  902. border-width:0px;
  903. word-wrap:break-word;
  904. text-transform:none;
  905. visibility:hidden;
  906. }
  907. #u161973_img {
  908. border-width:0px;
  909. position:absolute;
  910. left:0px;
  911. top:0px;
  912. width:6px;
  913. height:6px;
  914. }
  915. #u161973 {
  916. border-width:0px;
  917. position:absolute;
  918. left:375px;
  919. top:82px;
  920. width:6px;
  921. height:6px;
  922. display:flex;
  923. }
  924. #u161973 .text {
  925. position:absolute;
  926. align-self:center;
  927. padding:2px 2px 2px 2px;
  928. box-sizing:border-box;
  929. width:100%;
  930. }
  931. #u161973_text {
  932. border-width:0px;
  933. word-wrap:break-word;
  934. text-transform:none;
  935. visibility:hidden;
  936. }
  937. #u161974 {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:0px;
  943. height:0px;
  944. }
  945. #u161975_img {
  946. border-width:0px;
  947. position:absolute;
  948. left:0px;
  949. top:0px;
  950. width:5px;
  951. height:5px;
  952. }
  953. #u161975 {
  954. border-width:0px;
  955. position:absolute;
  956. left:320px;
  957. top:83px;
  958. width:5px;
  959. height:5px;
  960. display:flex;
  961. }
  962. #u161975 .text {
  963. position:absolute;
  964. align-self:center;
  965. padding:2px 2px 2px 2px;
  966. box-sizing:border-box;
  967. width:100%;
  968. }
  969. #u161975_text {
  970. border-width:0px;
  971. word-wrap:break-word;
  972. text-transform:none;
  973. visibility:hidden;
  974. }
  975. #u161976_img {
  976. border-width:0px;
  977. position:absolute;
  978. left:0px;
  979. top:0px;
  980. width:5px;
  981. height:5px;
  982. }
  983. #u161976 {
  984. border-width:0px;
  985. position:absolute;
  986. left:336px;
  987. top:83px;
  988. width:5px;
  989. height:5px;
  990. display:flex;
  991. }
  992. #u161976 .text {
  993. position:absolute;
  994. align-self:center;
  995. padding:2px 2px 2px 2px;
  996. box-sizing:border-box;
  997. width:100%;
  998. }
  999. #u161976_text {
  1000. border-width:0px;
  1001. word-wrap:break-word;
  1002. text-transform:none;
  1003. visibility:hidden;
  1004. }
  1005. #u161977_img {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:0px;
  1009. top:0px;
  1010. width:7px;
  1011. height:7px;
  1012. }
  1013. #u161977 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:327px;
  1017. top:82px;
  1018. width:7px;
  1019. height:7px;
  1020. display:flex;
  1021. }
  1022. #u161977 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 2px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u161977_text {
  1030. border-width:0px;
  1031. word-wrap:break-word;
  1032. text-transform:none;
  1033. visibility:hidden;
  1034. }
  1035. #u161978_img {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:19px;
  1041. height:2px;
  1042. }
  1043. #u161978 {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:344px;
  1047. top:85px;
  1048. width:18px;
  1049. height:1px;
  1050. display:flex;
  1051. -webkit-transform:rotate(90deg);
  1052. -moz-transform:rotate(90deg);
  1053. -ms-transform:rotate(90deg);
  1054. transform:rotate(90deg);
  1055. }
  1056. #u161978 .text {
  1057. position:absolute;
  1058. align-self:center;
  1059. padding:2px 2px 2px 2px;
  1060. box-sizing:border-box;
  1061. width:100%;
  1062. }
  1063. #u161978_text {
  1064. border-width:0px;
  1065. word-wrap:break-word;
  1066. text-transform:none;
  1067. visibility:hidden;
  1068. }
  1069. #u161979_div {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:12px;
  1075. height:12px;
  1076. background:inherit;
  1077. background-color:rgba(255, 255, 255, 0);
  1078. box-sizing:border-box;
  1079. border-width:2px;
  1080. border-style:solid;
  1081. border-color:rgba(51, 51, 51, 1);
  1082. border-right:0px;
  1083. border-bottom:0px;
  1084. border-radius:0px;
  1085. border-top-right-radius:0px;
  1086. border-bottom-left-radius:0px;
  1087. -moz-box-shadow:none;
  1088. -webkit-box-shadow:none;
  1089. box-shadow:none;
  1090. }
  1091. #u161979 {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:45px;
  1095. top:79px;
  1096. width:12px;
  1097. height:12px;
  1098. display:flex;
  1099. -webkit-transform:rotate(315deg);
  1100. -moz-transform:rotate(315deg);
  1101. -ms-transform:rotate(315deg);
  1102. transform:rotate(315deg);
  1103. }
  1104. #u161979 .text {
  1105. position:absolute;
  1106. align-self:center;
  1107. padding:2px 2px 2px 2px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u161979_text {
  1112. border-width:0px;
  1113. word-wrap:break-word;
  1114. text-transform:none;
  1115. visibility:hidden;
  1116. }
  1117. #u161980_div {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:0px;
  1121. top:0px;
  1122. width:57px;
  1123. height:20px;
  1124. background:inherit;
  1125. background-color:rgba(255, 255, 255, 0);
  1126. border:none;
  1127. border-radius:0px;
  1128. -moz-box-shadow:none;
  1129. -webkit-box-shadow:none;
  1130. box-shadow:none;
  1131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1132. font-weight:400;
  1133. font-style:normal;
  1134. }
  1135. #u161980 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:62px;
  1139. top:75px;
  1140. width:57px;
  1141. height:20px;
  1142. display:flex;
  1143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1144. font-weight:400;
  1145. font-style:normal;
  1146. }
  1147. #u161980 .text {
  1148. position:absolute;
  1149. align-self:flex-start;
  1150. padding:0px 0px 0px 0px;
  1151. box-sizing:border-box;
  1152. width:100%;
  1153. }
  1154. #u161980_text {
  1155. border-width:0px;
  1156. white-space:nowrap;
  1157. text-transform:none;
  1158. }
  1159. #u161981 {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:0px;
  1163. top:0px;
  1164. width:0px;
  1165. height:0px;
  1166. }
  1167. #u161982_div {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:0px;
  1171. top:0px;
  1172. width:341px;
  1173. height:80px;
  1174. background:inherit;
  1175. background-color:rgba(242, 242, 242, 1);
  1176. border:none;
  1177. border-radius:4px;
  1178. -moz-box-shadow:none;
  1179. -webkit-box-shadow:none;
  1180. box-shadow:none;
  1181. }
  1182. #u161982 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:46px;
  1186. top:152px;
  1187. width:341px;
  1188. height:80px;
  1189. display:flex;
  1190. }
  1191. #u161982 .text {
  1192. position:absolute;
  1193. align-self:center;
  1194. padding:2px 2px 2px 2px;
  1195. box-sizing:border-box;
  1196. width:100%;
  1197. }
  1198. #u161982_text {
  1199. border-width:0px;
  1200. word-wrap:break-word;
  1201. text-transform:none;
  1202. visibility:hidden;
  1203. }
  1204. #u161983_div {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:288px;
  1210. height:20px;
  1211. background:inherit;
  1212. background-color:rgba(255, 255, 255, 0);
  1213. border:none;
  1214. border-left:0px;
  1215. border-top:0px;
  1216. border-right:0px;
  1217. border-radius:0px;
  1218. border-bottom-right-radius:0px;
  1219. border-bottom-left-radius:0px;
  1220. -moz-box-shadow:none;
  1221. -webkit-box-shadow:none;
  1222. box-shadow:none;
  1223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1224. font-weight:400;
  1225. font-style:normal;
  1226. font-size:14px;
  1227. }
  1228. #u161983 {
  1229. border-width:0px;
  1230. position:absolute;
  1231. left:73px;
  1232. top:182px;
  1233. width:288px;
  1234. height:20px;
  1235. display:flex;
  1236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1237. font-weight:400;
  1238. font-style:normal;
  1239. font-size:14px;
  1240. }
  1241. #u161983 .text {
  1242. position:absolute;
  1243. align-self:flex-start;
  1244. padding:0px 0px 0px 0px;
  1245. box-sizing:border-box;
  1246. width:100%;
  1247. }
  1248. #u161983_text {
  1249. border-width:0px;
  1250. white-space:nowrap;
  1251. text-transform:none;
  1252. }
  1253. #u161984 {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:0px;
  1259. height:0px;
  1260. }
  1261. #u161985_div {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:0px;
  1265. top:0px;
  1266. width:160px;
  1267. height:100px;
  1268. background:inherit;
  1269. background-color:rgba(51, 51, 51, 1);
  1270. border:none;
  1271. border-radius:10px;
  1272. -moz-box-shadow:none;
  1273. -webkit-box-shadow:none;
  1274. box-shadow:none;
  1275. }
  1276. #u161985 {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:46px;
  1280. top:243px;
  1281. width:160px;
  1282. height:100px;
  1283. display:flex;
  1284. }
  1285. #u161985 .text {
  1286. position:absolute;
  1287. align-self:center;
  1288. padding:2px 2px 2px 2px;
  1289. box-sizing:border-box;
  1290. width:100%;
  1291. }
  1292. #u161985_text {
  1293. border-width:0px;
  1294. word-wrap:break-word;
  1295. text-transform:none;
  1296. visibility:hidden;
  1297. }
  1298. #u161986_img {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:0px;
  1302. top:0px;
  1303. width:31px;
  1304. height:22px;
  1305. }
  1306. #u161986 {
  1307. border-width:0px;
  1308. position:absolute;
  1309. left:111px;
  1310. top:295px;
  1311. width:31px;
  1312. height:22px;
  1313. display:flex;
  1314. color:#FFFFFF;
  1315. }
  1316. #u161986 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u161986_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u161987_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:57px;
  1335. height:20px;
  1336. background:inherit;
  1337. background-color:rgba(255, 255, 255, 0);
  1338. border:none;
  1339. border-left:0px;
  1340. border-top:0px;
  1341. border-right:0px;
  1342. border-radius:0px;
  1343. border-bottom-right-radius:0px;
  1344. border-bottom-left-radius:0px;
  1345. -moz-box-shadow:none;
  1346. -webkit-box-shadow:none;
  1347. box-shadow:none;
  1348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1349. font-weight:400;
  1350. font-style:normal;
  1351. font-size:14px;
  1352. color:#FFFFFF;
  1353. }
  1354. #u161987 {
  1355. border-width:0px;
  1356. position:absolute;
  1357. left:53px;
  1358. top:249px;
  1359. width:57px;
  1360. height:20px;
  1361. display:flex;
  1362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1363. font-weight:400;
  1364. font-style:normal;
  1365. font-size:14px;
  1366. color:#FFFFFF;
  1367. }
  1368. #u161987 .text {
  1369. position:absolute;
  1370. align-self:flex-start;
  1371. padding:0px 0px 0px 0px;
  1372. box-sizing:border-box;
  1373. width:100%;
  1374. }
  1375. #u161987_text {
  1376. border-width:0px;
  1377. white-space:nowrap;
  1378. text-transform:none;
  1379. }
  1380. #u161988_div {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:0px;
  1384. top:0px;
  1385. width:21px;
  1386. height:14px;
  1387. background:inherit;
  1388. background-color:rgba(255, 255, 255, 0);
  1389. border:none;
  1390. border-left:0px;
  1391. border-top:0px;
  1392. border-right:0px;
  1393. border-radius:0px;
  1394. border-bottom-right-radius:0px;
  1395. border-bottom-left-radius:0px;
  1396. -moz-box-shadow:none;
  1397. -webkit-box-shadow:none;
  1398. box-shadow:none;
  1399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1400. font-weight:400;
  1401. font-style:normal;
  1402. font-size:10px;
  1403. color:#FFFFFF;
  1404. }
  1405. #u161988 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:180px;
  1409. top:243px;
  1410. width:21px;
  1411. height:14px;
  1412. display:flex;
  1413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1414. font-weight:400;
  1415. font-style:normal;
  1416. font-size:10px;
  1417. color:#FFFFFF;
  1418. }
  1419. #u161988 .text {
  1420. position:absolute;
  1421. align-self:flex-start;
  1422. padding:0px 0px 0px 0px;
  1423. box-sizing:border-box;
  1424. width:100%;
  1425. }
  1426. #u161988_text {
  1427. border-width:0px;
  1428. white-space:nowrap;
  1429. text-transform:none;
  1430. }
  1431. #u161989 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:0px;
  1437. height:0px;
  1438. }
  1439. #u161990_div {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:0px;
  1443. top:0px;
  1444. width:160px;
  1445. height:100px;
  1446. background:inherit;
  1447. background-color:rgba(51, 51, 51, 1);
  1448. border:none;
  1449. border-radius:10px;
  1450. -moz-box-shadow:none;
  1451. -webkit-box-shadow:none;
  1452. box-shadow:none;
  1453. }
  1454. #u161990 {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:227px;
  1458. top:243px;
  1459. width:160px;
  1460. height:100px;
  1461. display:flex;
  1462. }
  1463. #u161990 .text {
  1464. position:absolute;
  1465. align-self:center;
  1466. padding:2px 2px 2px 2px;
  1467. box-sizing:border-box;
  1468. width:100%;
  1469. }
  1470. #u161990_text {
  1471. border-width:0px;
  1472. word-wrap:break-word;
  1473. text-transform:none;
  1474. visibility:hidden;
  1475. }
  1476. #u161991_img {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:31px;
  1482. height:22px;
  1483. }
  1484. #u161991 {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:292px;
  1488. top:295px;
  1489. width:31px;
  1490. height:22px;
  1491. display:flex;
  1492. color:#FFFFFF;
  1493. }
  1494. #u161991 .text {
  1495. position:absolute;
  1496. align-self:center;
  1497. padding:2px 2px 2px 2px;
  1498. box-sizing:border-box;
  1499. width:100%;
  1500. }
  1501. #u161991_text {
  1502. border-width:0px;
  1503. word-wrap:break-word;
  1504. text-transform:none;
  1505. visibility:hidden;
  1506. }
  1507. #u161992_div {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:57px;
  1513. height:20px;
  1514. background:inherit;
  1515. background-color:rgba(255, 255, 255, 0);
  1516. border:none;
  1517. border-left:0px;
  1518. border-top:0px;
  1519. border-right:0px;
  1520. border-radius:0px;
  1521. border-bottom-right-radius:0px;
  1522. border-bottom-left-radius:0px;
  1523. -moz-box-shadow:none;
  1524. -webkit-box-shadow:none;
  1525. box-shadow:none;
  1526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1527. font-weight:400;
  1528. font-style:normal;
  1529. font-size:14px;
  1530. color:#FFFFFF;
  1531. }
  1532. #u161992 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:234px;
  1536. top:249px;
  1537. width:57px;
  1538. height:20px;
  1539. display:flex;
  1540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1541. font-weight:400;
  1542. font-style:normal;
  1543. font-size:14px;
  1544. color:#FFFFFF;
  1545. }
  1546. #u161992 .text {
  1547. position:absolute;
  1548. align-self:flex-start;
  1549. padding:0px 0px 0px 0px;
  1550. box-sizing:border-box;
  1551. width:100%;
  1552. }
  1553. #u161992_text {
  1554. border-width:0px;
  1555. white-space:nowrap;
  1556. text-transform:none;
  1557. }
  1558. #u161993_div {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:21px;
  1564. height:14px;
  1565. background:inherit;
  1566. background-color:rgba(255, 255, 255, 0);
  1567. border:none;
  1568. border-left:0px;
  1569. border-top:0px;
  1570. border-right:0px;
  1571. border-radius:0px;
  1572. border-bottom-right-radius:0px;
  1573. border-bottom-left-radius:0px;
  1574. -moz-box-shadow:none;
  1575. -webkit-box-shadow:none;
  1576. box-shadow:none;
  1577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1578. font-weight:400;
  1579. font-style:normal;
  1580. font-size:10px;
  1581. color:#FFFFFF;
  1582. }
  1583. #u161993 {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:361px;
  1587. top:243px;
  1588. width:21px;
  1589. height:14px;
  1590. display:flex;
  1591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1592. font-weight:400;
  1593. font-style:normal;
  1594. font-size:10px;
  1595. color:#FFFFFF;
  1596. }
  1597. #u161993 .text {
  1598. position:absolute;
  1599. align-self:flex-start;
  1600. padding:0px 0px 0px 0px;
  1601. box-sizing:border-box;
  1602. width:100%;
  1603. }
  1604. #u161993_text {
  1605. border-width:0px;
  1606. white-space:nowrap;
  1607. text-transform:none;
  1608. }
  1609. #u161994 {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:0px;
  1613. top:0px;
  1614. width:0px;
  1615. height:0px;
  1616. }
  1617. #u161995_div {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:160px;
  1623. height:100px;
  1624. background:inherit;
  1625. background-color:rgba(51, 51, 51, 1);
  1626. border:none;
  1627. border-radius:10px;
  1628. -moz-box-shadow:none;
  1629. -webkit-box-shadow:none;
  1630. box-shadow:none;
  1631. }
  1632. #u161995 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:46px;
  1636. top:353px;
  1637. width:160px;
  1638. height:100px;
  1639. display:flex;
  1640. }
  1641. #u161995 .text {
  1642. position:absolute;
  1643. align-self:center;
  1644. padding:2px 2px 2px 2px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u161995_text {
  1649. border-width:0px;
  1650. word-wrap:break-word;
  1651. text-transform:none;
  1652. visibility:hidden;
  1653. }
  1654. #u161996_img {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:31px;
  1660. height:22px;
  1661. }
  1662. #u161996 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:111px;
  1666. top:405px;
  1667. width:31px;
  1668. height:22px;
  1669. display:flex;
  1670. color:#FFFFFF;
  1671. }
  1672. #u161996 .text {
  1673. position:absolute;
  1674. align-self:center;
  1675. padding:2px 2px 2px 2px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u161996_text {
  1680. border-width:0px;
  1681. word-wrap:break-word;
  1682. text-transform:none;
  1683. visibility:hidden;
  1684. }
  1685. #u161997_div {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:57px;
  1691. height:20px;
  1692. background:inherit;
  1693. background-color:rgba(255, 255, 255, 0);
  1694. border:none;
  1695. border-left:0px;
  1696. border-top:0px;
  1697. border-right:0px;
  1698. border-radius:0px;
  1699. border-bottom-right-radius:0px;
  1700. border-bottom-left-radius:0px;
  1701. -moz-box-shadow:none;
  1702. -webkit-box-shadow:none;
  1703. box-shadow:none;
  1704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. font-size:14px;
  1708. color:#FFFFFF;
  1709. }
  1710. #u161997 {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:53px;
  1714. top:359px;
  1715. width:57px;
  1716. height:20px;
  1717. display:flex;
  1718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1719. font-weight:400;
  1720. font-style:normal;
  1721. font-size:14px;
  1722. color:#FFFFFF;
  1723. }
  1724. #u161997 .text {
  1725. position:absolute;
  1726. align-self:flex-start;
  1727. padding:0px 0px 0px 0px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u161997_text {
  1732. border-width:0px;
  1733. white-space:nowrap;
  1734. text-transform:none;
  1735. }
  1736. #u161998_div {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:21px;
  1742. height:14px;
  1743. background:inherit;
  1744. background-color:rgba(255, 255, 255, 0);
  1745. border:none;
  1746. border-left:0px;
  1747. border-top:0px;
  1748. border-right:0px;
  1749. border-radius:0px;
  1750. border-bottom-right-radius:0px;
  1751. border-bottom-left-radius:0px;
  1752. -moz-box-shadow:none;
  1753. -webkit-box-shadow:none;
  1754. box-shadow:none;
  1755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1756. font-weight:400;
  1757. font-style:normal;
  1758. font-size:10px;
  1759. color:#FFFFFF;
  1760. }
  1761. #u161998 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:180px;
  1765. top:353px;
  1766. width:21px;
  1767. height:14px;
  1768. display:flex;
  1769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1770. font-weight:400;
  1771. font-style:normal;
  1772. font-size:10px;
  1773. color:#FFFFFF;
  1774. }
  1775. #u161998 .text {
  1776. position:absolute;
  1777. align-self:flex-start;
  1778. padding:0px 0px 0px 0px;
  1779. box-sizing:border-box;
  1780. width:100%;
  1781. }
  1782. #u161998_text {
  1783. border-width:0px;
  1784. white-space:nowrap;
  1785. text-transform:none;
  1786. }
  1787. #u161999 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:0px;
  1793. height:0px;
  1794. }
  1795. #u162000_div {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:160px;
  1801. height:100px;
  1802. background:inherit;
  1803. background-color:rgba(51, 51, 51, 1);
  1804. border:none;
  1805. border-radius:10px;
  1806. -moz-box-shadow:none;
  1807. -webkit-box-shadow:none;
  1808. box-shadow:none;
  1809. }
  1810. #u162000 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:227px;
  1814. top:353px;
  1815. width:160px;
  1816. height:100px;
  1817. display:flex;
  1818. }
  1819. #u162000 .text {
  1820. position:absolute;
  1821. align-self:center;
  1822. padding:2px 2px 2px 2px;
  1823. box-sizing:border-box;
  1824. width:100%;
  1825. }
  1826. #u162000_text {
  1827. border-width:0px;
  1828. word-wrap:break-word;
  1829. text-transform:none;
  1830. visibility:hidden;
  1831. }
  1832. #u162001_img {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:31px;
  1838. height:22px;
  1839. }
  1840. #u162001 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:292px;
  1844. top:405px;
  1845. width:31px;
  1846. height:22px;
  1847. display:flex;
  1848. color:#FFFFFF;
  1849. }
  1850. #u162001 .text {
  1851. position:absolute;
  1852. align-self:center;
  1853. padding:2px 2px 2px 2px;
  1854. box-sizing:border-box;
  1855. width:100%;
  1856. }
  1857. #u162001_text {
  1858. border-width:0px;
  1859. word-wrap:break-word;
  1860. text-transform:none;
  1861. visibility:hidden;
  1862. }
  1863. #u162002_div {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:57px;
  1869. height:20px;
  1870. background:inherit;
  1871. background-color:rgba(255, 255, 255, 0);
  1872. border:none;
  1873. border-left:0px;
  1874. border-top:0px;
  1875. border-right:0px;
  1876. border-radius:0px;
  1877. border-bottom-right-radius:0px;
  1878. border-bottom-left-radius:0px;
  1879. -moz-box-shadow:none;
  1880. -webkit-box-shadow:none;
  1881. box-shadow:none;
  1882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1883. font-weight:400;
  1884. font-style:normal;
  1885. font-size:14px;
  1886. color:#FFFFFF;
  1887. }
  1888. #u162002 {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:234px;
  1892. top:359px;
  1893. width:57px;
  1894. height:20px;
  1895. display:flex;
  1896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:14px;
  1900. color:#FFFFFF;
  1901. }
  1902. #u162002 .text {
  1903. position:absolute;
  1904. align-self:flex-start;
  1905. padding:0px 0px 0px 0px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u162002_text {
  1910. border-width:0px;
  1911. white-space:nowrap;
  1912. text-transform:none;
  1913. }
  1914. #u162003_div {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:21px;
  1920. height:14px;
  1921. background:inherit;
  1922. background-color:rgba(255, 255, 255, 0);
  1923. border:none;
  1924. border-left:0px;
  1925. border-top:0px;
  1926. border-right:0px;
  1927. border-radius:0px;
  1928. border-bottom-right-radius:0px;
  1929. border-bottom-left-radius:0px;
  1930. -moz-box-shadow:none;
  1931. -webkit-box-shadow:none;
  1932. box-shadow:none;
  1933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:10px;
  1937. color:#FFFFFF;
  1938. }
  1939. #u162003 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:361px;
  1943. top:353px;
  1944. width:21px;
  1945. height:14px;
  1946. display:flex;
  1947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1948. font-weight:400;
  1949. font-style:normal;
  1950. font-size:10px;
  1951. color:#FFFFFF;
  1952. }
  1953. #u162003 .text {
  1954. position:absolute;
  1955. align-self:flex-start;
  1956. padding:0px 0px 0px 0px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u162003_text {
  1961. border-width:0px;
  1962. white-space:nowrap;
  1963. text-transform:none;
  1964. }
  1965. #u162004_div {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:109px;
  1971. height:25px;
  1972. background:inherit;
  1973. background-color:rgba(255, 255, 255, 0);
  1974. border:none;
  1975. border-radius:0px;
  1976. -moz-box-shadow:none;
  1977. -webkit-box-shadow:none;
  1978. box-shadow:none;
  1979. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1980. font-weight:500;
  1981. font-style:normal;
  1982. font-size:18px;
  1983. }
  1984. #u162004 {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:66px;
  1988. top:114px;
  1989. width:109px;
  1990. height:25px;
  1991. display:flex;
  1992. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1993. font-weight:500;
  1994. font-style:normal;
  1995. font-size:18px;
  1996. }
  1997. #u162004 .text {
  1998. position:absolute;
  1999. align-self:flex-start;
  2000. padding:0px 0px 0px 0px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u162004_text {
  2005. border-width:0px;
  2006. white-space:nowrap;
  2007. text-transform:none;
  2008. }
  2009. #u162005_img {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:13px;
  2015. height:19px;
  2016. }
  2017. #u162005 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:44px;
  2021. top:117px;
  2022. width:13px;
  2023. height:19px;
  2024. display:flex;
  2025. }
  2026. #u162005 .text {
  2027. position:absolute;
  2028. align-self:center;
  2029. padding:2px 2px 2px 2px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u162005_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. visibility:hidden;
  2038. }
  2039. #u162006_div {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:358px;
  2045. height:204px;
  2046. background:inherit;
  2047. background-color:rgba(255, 255, 255, 0);
  2048. border:none;
  2049. border-radius:0px;
  2050. -moz-box-shadow:none;
  2051. -webkit-box-shadow:none;
  2052. box-shadow:none;
  2053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2054. font-weight:400;
  2055. font-style:normal;
  2056. color:#D9001B;
  2057. }
  2058. #u162006 {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:46px;
  2062. top:496px;
  2063. width:358px;
  2064. height:204px;
  2065. display:flex;
  2066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2067. font-weight:400;
  2068. font-style:normal;
  2069. color:#D9001B;
  2070. }
  2071. #u162006 .text {
  2072. position:absolute;
  2073. align-self:flex-start;
  2074. padding:0px 0px 0px 0px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u162006_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. }
  2083. #u162007_img {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:433px;
  2089. height:865px;
  2090. }
  2091. #u162007 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:704px;
  2095. top:-133px;
  2096. width:433px;
  2097. height:865px;
  2098. display:flex;
  2099. -webkit-transform:rotate(90deg);
  2100. -moz-transform:rotate(90deg);
  2101. -ms-transform:rotate(90deg);
  2102. transform:rotate(90deg);
  2103. }
  2104. #u162007 .text {
  2105. position:absolute;
  2106. align-self:center;
  2107. padding:2px 2px 2px 2px;
  2108. box-sizing:border-box;
  2109. width:100%;
  2110. }
  2111. #u162007_text {
  2112. border-width:0px;
  2113. word-wrap:break-word;
  2114. text-transform:none;
  2115. visibility:hidden;
  2116. }
  2117. #u162008_img {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:809px;
  2123. height:388px;
  2124. }
  2125. #u162008 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:511px;
  2129. top:111px;
  2130. width:809px;
  2131. height:388px;
  2132. display:flex;
  2133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2134. font-weight:400;
  2135. font-style:normal;
  2136. color:#FFFFFF;
  2137. }
  2138. #u162008 .text {
  2139. position:absolute;
  2140. align-self:center;
  2141. padding:2px 2px 2px 2px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u162008_text {
  2146. border-width:0px;
  2147. word-wrap:break-word;
  2148. text-transform:none;
  2149. }
  2150. #u162009_div {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:809px;
  2156. height:50px;
  2157. background:inherit;
  2158. background-color:rgba(0, 0, 0, 1);
  2159. border:none;
  2160. border-radius:0px;
  2161. -moz-box-shadow:none;
  2162. -webkit-box-shadow:none;
  2163. box-shadow:none;
  2164. }
  2165. #u162009 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:511px;
  2169. top:449px;
  2170. width:809px;
  2171. height:50px;
  2172. display:flex;
  2173. }
  2174. #u162009 .text {
  2175. position:absolute;
  2176. align-self:center;
  2177. padding:2px 2px 2px 2px;
  2178. box-sizing:border-box;
  2179. width:100%;
  2180. }
  2181. #u162009_text {
  2182. border-width:0px;
  2183. word-wrap:break-word;
  2184. text-transform:none;
  2185. visibility:hidden;
  2186. }
  2187. #u162010 {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:0px;
  2191. top:0px;
  2192. width:0px;
  2193. height:0px;
  2194. }
  2195. #u162011_div {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:7px;
  2201. height:22px;
  2202. background:inherit;
  2203. background-color:rgba(242, 242, 242, 1);
  2204. border:none;
  2205. border-radius:0px;
  2206. -moz-box-shadow:none;
  2207. -webkit-box-shadow:none;
  2208. box-shadow:none;
  2209. }
  2210. #u162011 {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:534px;
  2214. top:463px;
  2215. width:7px;
  2216. height:22px;
  2217. display:flex;
  2218. }
  2219. #u162011 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 2px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u162011_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. visibility:hidden;
  2231. }
  2232. #u162012_div {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:7px;
  2238. height:22px;
  2239. background:inherit;
  2240. background-color:rgba(242, 242, 242, 1);
  2241. border:none;
  2242. border-radius:0px;
  2243. -moz-box-shadow:none;
  2244. -webkit-box-shadow:none;
  2245. box-shadow:none;
  2246. }
  2247. #u162012 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:545px;
  2251. top:463px;
  2252. width:7px;
  2253. height:22px;
  2254. display:flex;
  2255. }
  2256. #u162012 .text {
  2257. position:absolute;
  2258. align-self:center;
  2259. padding:2px 2px 2px 2px;
  2260. box-sizing:border-box;
  2261. width:100%;
  2262. }
  2263. #u162012_text {
  2264. border-width:0px;
  2265. word-wrap:break-word;
  2266. text-transform:none;
  2267. visibility:hidden;
  2268. }
  2269. #u162013_div {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:40px;
  2275. height:24px;
  2276. background:inherit;
  2277. background-color:rgba(255, 255, 255, 0);
  2278. box-sizing:border-box;
  2279. border-width:1px;
  2280. border-style:solid;
  2281. border-color:rgba(255, 255, 255, 1);
  2282. border-radius:4px;
  2283. -moz-box-shadow:none;
  2284. -webkit-box-shadow:none;
  2285. box-shadow:none;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:12px;
  2290. color:#FFFFFF;
  2291. text-align:center;
  2292. }
  2293. #u162013 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:597px;
  2297. top:463px;
  2298. width:40px;
  2299. height:24px;
  2300. display:flex;
  2301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2302. font-weight:400;
  2303. font-style:normal;
  2304. font-size:12px;
  2305. color:#FFFFFF;
  2306. text-align:center;
  2307. }
  2308. #u162013 .text {
  2309. position:absolute;
  2310. align-self:center;
  2311. padding:0px 0px 0px 0px;
  2312. box-sizing:border-box;
  2313. width:100%;
  2314. }
  2315. #u162013_text {
  2316. border-width:0px;
  2317. word-wrap:break-word;
  2318. text-transform:none;
  2319. }
  2320. #u162014_img {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:0px;
  2324. top:0px;
  2325. width:44px;
  2326. height:33px;
  2327. }
  2328. #u162014 {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:1183px;
  2332. top:458px;
  2333. width:44px;
  2334. height:33px;
  2335. display:flex;
  2336. }
  2337. #u162014 .text {
  2338. position:absolute;
  2339. align-self:center;
  2340. padding:2px 2px 2px 2px;
  2341. box-sizing:border-box;
  2342. width:100%;
  2343. }
  2344. #u162014_text {
  2345. border-width:0px;
  2346. word-wrap:break-word;
  2347. text-transform:none;
  2348. visibility:hidden;
  2349. }
  2350. #u162015_img {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:0px;
  2354. top:0px;
  2355. width:28px;
  2356. height:26px;
  2357. }
  2358. #u162015 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:1272px;
  2362. top:461px;
  2363. width:28px;
  2364. height:26px;
  2365. display:flex;
  2366. }
  2367. #u162015 .text {
  2368. position:absolute;
  2369. align-self:center;
  2370. padding:2px 2px 2px 2px;
  2371. box-sizing:border-box;
  2372. width:100%;
  2373. }
  2374. #u162015_text {
  2375. border-width:0px;
  2376. word-wrap:break-word;
  2377. text-transform:none;
  2378. visibility:hidden;
  2379. }
  2380. #u162016 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:0px;
  2386. height:0px;
  2387. }
  2388. #u162017_div {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:11px;
  2394. height:10px;
  2395. background:inherit;
  2396. background-color:rgba(242, 242, 242, 1);
  2397. border:none;
  2398. border-radius:0px;
  2399. -moz-box-shadow:none;
  2400. -webkit-box-shadow:none;
  2401. box-shadow:none;
  2402. }
  2403. #u162017 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:1117px;
  2407. top:469px;
  2408. width:11px;
  2409. height:10px;
  2410. display:flex;
  2411. }
  2412. #u162017 .text {
  2413. position:absolute;
  2414. align-self:center;
  2415. padding:2px 2px 2px 2px;
  2416. box-sizing:border-box;
  2417. width:100%;
  2418. }
  2419. #u162017_text {
  2420. border-width:0px;
  2421. word-wrap:break-word;
  2422. text-transform:none;
  2423. visibility:hidden;
  2424. }
  2425. #u162018_div {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:11px;
  2431. height:10px;
  2432. background:inherit;
  2433. background-color:rgba(242, 242, 242, 1);
  2434. border:none;
  2435. border-radius:0px;
  2436. -moz-box-shadow:none;
  2437. -webkit-box-shadow:none;
  2438. box-shadow:none;
  2439. }
  2440. #u162018 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:1130px;
  2444. top:469px;
  2445. width:11px;
  2446. height:10px;
  2447. display:flex;
  2448. }
  2449. #u162018 .text {
  2450. position:absolute;
  2451. align-self:center;
  2452. padding:2px 2px 2px 2px;
  2453. box-sizing:border-box;
  2454. width:100%;
  2455. }
  2456. #u162018_text {
  2457. border-width:0px;
  2458. word-wrap:break-word;
  2459. text-transform:none;
  2460. visibility:hidden;
  2461. }
  2462. #u162019_div {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:11px;
  2468. height:10px;
  2469. background:inherit;
  2470. background-color:rgba(242, 242, 242, 1);
  2471. border:none;
  2472. border-radius:0px;
  2473. -moz-box-shadow:none;
  2474. -webkit-box-shadow:none;
  2475. box-shadow:none;
  2476. }
  2477. #u162019 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:1117px;
  2481. top:481px;
  2482. width:11px;
  2483. height:10px;
  2484. display:flex;
  2485. }
  2486. #u162019 .text {
  2487. position:absolute;
  2488. align-self:center;
  2489. padding:2px 2px 2px 2px;
  2490. box-sizing:border-box;
  2491. width:100%;
  2492. }
  2493. #u162019_text {
  2494. border-width:0px;
  2495. word-wrap:break-word;
  2496. text-transform:none;
  2497. visibility:hidden;
  2498. }
  2499. #u162020_div {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:0px;
  2503. top:0px;
  2504. width:11px;
  2505. height:10px;
  2506. background:inherit;
  2507. background-color:rgba(242, 242, 242, 1);
  2508. border:none;
  2509. border-radius:0px;
  2510. -moz-box-shadow:none;
  2511. -webkit-box-shadow:none;
  2512. box-shadow:none;
  2513. }
  2514. #u162020 {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:1130px;
  2518. top:481px;
  2519. width:11px;
  2520. height:10px;
  2521. display:flex;
  2522. }
  2523. #u162020 .text {
  2524. position:absolute;
  2525. align-self:center;
  2526. padding:2px 2px 2px 2px;
  2527. box-sizing:border-box;
  2528. width:100%;
  2529. }
  2530. #u162020_text {
  2531. border-width:0px;
  2532. word-wrap:break-word;
  2533. text-transform:none;
  2534. visibility:hidden;
  2535. }