styles.css 46 KB

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