styles.css 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:433px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u143890_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u143890 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u143890 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u143890_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u143891_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. #u143891 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u143891 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u143891_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u143892 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u143893_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. #u143893 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u143893 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u143893_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u143894 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u143895_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u143895 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u143895 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u143895_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u143896_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u143896 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u143896 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u143896_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u143897 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u143898_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u143898 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u143898 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u143898_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u143899_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u143899 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u143899 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u143899_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u143900_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u143900 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u143900 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u143900_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u143901_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u143901 {
  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. #u143901 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u143901_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u143902_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u143902 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u143902 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u143902_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u143903_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. #u143903 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u143903 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u143903_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u143904 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u143905_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u143905 {
  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. #u143905 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u143905_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u143906_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. #u143906 {
  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. #u143906 .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. #u143906_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u143907 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u143908_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u143908 {
  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. #u143908 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u143908_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u143909_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. #u143909 {
  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. #u143909 .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. #u143909_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u143910_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. #u143910 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u143910 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u143910_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u143911 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u143912_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u143912 {
  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. #u143912 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u143912_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u143913_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. #u143913 {
  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. #u143913 .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. #u143913_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u143914 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u143915_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u143915 {
  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. #u143915 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u143915_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u143916_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. #u143916 {
  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. #u143916 .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. #u143916_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u143917_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:35px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. }
  800. #u143917 {
  801. border-width:0px;
  802. position:absolute;
  803. left:29px;
  804. top:106px;
  805. width:375px;
  806. height:735px;
  807. display:flex;
  808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  809. font-weight:400;
  810. font-style:normal;
  811. }
  812. #u143917 .text {
  813. position:absolute;
  814. align-self:center;
  815. padding:2px 2px 2px 2px;
  816. box-sizing:border-box;
  817. width:100%;
  818. }
  819. #u143917_text {
  820. border-width:0px;
  821. word-wrap:break-word;
  822. text-transform:none;
  823. visibility:hidden;
  824. }
  825. #u143918_div {
  826. border-width:0px;
  827. position:absolute;
  828. left:0px;
  829. top:0px;
  830. width:375px;
  831. height:344px;
  832. background:inherit;
  833. background-color:rgba(255, 255, 255, 0.996078431372549);
  834. border:none;
  835. border-top:0px;
  836. border-radius:0px;
  837. border-top-left-radius:0px;
  838. border-top-right-radius:0px;
  839. -moz-box-shadow:none;
  840. -webkit-box-shadow:none;
  841. box-shadow:none;
  842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  843. font-weight:400;
  844. font-style:normal;
  845. }
  846. #u143918 {
  847. border-width:0px;
  848. position:absolute;
  849. left:29px;
  850. top:448px;
  851. width:375px;
  852. height:344px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. }
  858. #u143918 .text {
  859. position:absolute;
  860. align-self:center;
  861. padding:2px 2px 2px 2px;
  862. box-sizing:border-box;
  863. width:100%;
  864. }
  865. #u143918_text {
  866. border-width:0px;
  867. word-wrap:break-word;
  868. text-transform:none;
  869. visibility:hidden;
  870. }
  871. #u143919_img {
  872. border-width:0px;
  873. position:absolute;
  874. left:0px;
  875. top:0px;
  876. width:375px;
  877. height:44px;
  878. }
  879. #u143919 {
  880. border-width:0px;
  881. position:absolute;
  882. left:29px;
  883. top:24px;
  884. width:375px;
  885. height:44px;
  886. display:flex;
  887. }
  888. #u143919 .text {
  889. position:absolute;
  890. align-self:center;
  891. padding:2px 2px 2px 2px;
  892. box-sizing:border-box;
  893. width:100%;
  894. }
  895. #u143919_text {
  896. border-width:0px;
  897. word-wrap:break-word;
  898. text-transform:none;
  899. visibility:hidden;
  900. }
  901. #u143920 {
  902. border-width:0px;
  903. position:absolute;
  904. left:0px;
  905. top:0px;
  906. width:0px;
  907. height:0px;
  908. }
  909. #u143921_div {
  910. border-width:0px;
  911. position:absolute;
  912. left:0px;
  913. top:0px;
  914. width:88px;
  915. height:32px;
  916. background:inherit;
  917. background-color:rgba(255, 255, 255, 1);
  918. box-sizing:border-box;
  919. border-width:1px;
  920. border-style:solid;
  921. border-color:rgba(242, 242, 242, 1);
  922. border-radius:33px;
  923. -moz-box-shadow:none;
  924. -webkit-box-shadow:none;
  925. box-shadow:none;
  926. }
  927. #u143921 {
  928. border-width:0px;
  929. position:absolute;
  930. left:309px;
  931. top:71px;
  932. width:88px;
  933. height:32px;
  934. display:flex;
  935. }
  936. #u143921 .text {
  937. position:absolute;
  938. align-self:center;
  939. padding:2px 2px 2px 2px;
  940. box-sizing:border-box;
  941. width:100%;
  942. }
  943. #u143921_text {
  944. border-width:0px;
  945. word-wrap:break-word;
  946. text-transform:none;
  947. visibility:hidden;
  948. }
  949. #u143922 {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:0px;
  955. height:0px;
  956. }
  957. #u143923_img {
  958. border-width:0px;
  959. position:absolute;
  960. left:0px;
  961. top:0px;
  962. width:18px;
  963. height:18px;
  964. }
  965. #u143923 {
  966. border-width:0px;
  967. position:absolute;
  968. left:372px;
  969. top:78px;
  970. width:18px;
  971. height:18px;
  972. display:flex;
  973. }
  974. #u143923 .text {
  975. position:absolute;
  976. align-self:center;
  977. padding:2px 2px 2px 2px;
  978. box-sizing:border-box;
  979. width:100%;
  980. }
  981. #u143923_text {
  982. border-width:0px;
  983. word-wrap:break-word;
  984. text-transform:none;
  985. visibility:hidden;
  986. }
  987. #u143924_img {
  988. border-width:0px;
  989. position:absolute;
  990. left:0px;
  991. top:0px;
  992. width:6px;
  993. height:6px;
  994. }
  995. #u143924 {
  996. border-width:0px;
  997. position:absolute;
  998. left:378px;
  999. top:84px;
  1000. width:6px;
  1001. height:6px;
  1002. display:flex;
  1003. }
  1004. #u143924 .text {
  1005. position:absolute;
  1006. align-self:center;
  1007. padding:2px 2px 2px 2px;
  1008. box-sizing:border-box;
  1009. width:100%;
  1010. }
  1011. #u143924_text {
  1012. border-width:0px;
  1013. word-wrap:break-word;
  1014. text-transform:none;
  1015. visibility:hidden;
  1016. }
  1017. #u143925 {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:0px;
  1023. height:0px;
  1024. }
  1025. #u143926_img {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:5px;
  1031. height:5px;
  1032. }
  1033. #u143926 {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:323px;
  1037. top:85px;
  1038. width:5px;
  1039. height:5px;
  1040. display:flex;
  1041. }
  1042. #u143926 .text {
  1043. position:absolute;
  1044. align-self:center;
  1045. padding:2px 2px 2px 2px;
  1046. box-sizing:border-box;
  1047. width:100%;
  1048. }
  1049. #u143926_text {
  1050. border-width:0px;
  1051. word-wrap:break-word;
  1052. text-transform:none;
  1053. visibility:hidden;
  1054. }
  1055. #u143927_img {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:5px;
  1061. height:5px;
  1062. }
  1063. #u143927 {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:339px;
  1067. top:85px;
  1068. width:5px;
  1069. height:5px;
  1070. display:flex;
  1071. }
  1072. #u143927 .text {
  1073. position:absolute;
  1074. align-self:center;
  1075. padding:2px 2px 2px 2px;
  1076. box-sizing:border-box;
  1077. width:100%;
  1078. }
  1079. #u143927_text {
  1080. border-width:0px;
  1081. word-wrap:break-word;
  1082. text-transform:none;
  1083. visibility:hidden;
  1084. }
  1085. #u143928_img {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:0px;
  1089. top:0px;
  1090. width:7px;
  1091. height:7px;
  1092. }
  1093. #u143928 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:330px;
  1097. top:84px;
  1098. width:7px;
  1099. height:7px;
  1100. display:flex;
  1101. }
  1102. #u143928 .text {
  1103. position:absolute;
  1104. align-self:center;
  1105. padding:2px 2px 2px 2px;
  1106. box-sizing:border-box;
  1107. width:100%;
  1108. }
  1109. #u143928_text {
  1110. border-width:0px;
  1111. word-wrap:break-word;
  1112. text-transform:none;
  1113. visibility:hidden;
  1114. }
  1115. #u143929_img {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:0px;
  1119. top:0px;
  1120. width:19px;
  1121. height:2px;
  1122. }
  1123. #u143929 {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:347px;
  1127. top:87px;
  1128. width:18px;
  1129. height:1px;
  1130. display:flex;
  1131. -webkit-transform:rotate(90deg);
  1132. -moz-transform:rotate(90deg);
  1133. -ms-transform:rotate(90deg);
  1134. transform:rotate(90deg);
  1135. }
  1136. #u143929 .text {
  1137. position:absolute;
  1138. align-self:center;
  1139. padding:2px 2px 2px 2px;
  1140. box-sizing:border-box;
  1141. width:100%;
  1142. }
  1143. #u143929_text {
  1144. border-width:0px;
  1145. word-wrap:break-word;
  1146. text-transform:none;
  1147. visibility:hidden;
  1148. }
  1149. #u143930_div {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:0px;
  1153. top:0px;
  1154. width:65px;
  1155. height:22px;
  1156. background:inherit;
  1157. background-color:rgba(255, 255, 255, 0);
  1158. border:none;
  1159. border-radius:0px;
  1160. -moz-box-shadow:none;
  1161. -webkit-box-shadow:none;
  1162. box-shadow:none;
  1163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1164. font-weight:400;
  1165. font-style:normal;
  1166. font-size:16px;
  1167. color:#000000;
  1168. }
  1169. #u143930 {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:174px;
  1173. top:78px;
  1174. width:65px;
  1175. height:22px;
  1176. display:flex;
  1177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1178. font-weight:400;
  1179. font-style:normal;
  1180. font-size:16px;
  1181. color:#000000;
  1182. }
  1183. #u143930 .text {
  1184. position:absolute;
  1185. align-self:flex-start;
  1186. padding:0px 0px 0px 0px;
  1187. box-sizing:border-box;
  1188. width:100%;
  1189. }
  1190. #u143930_text {
  1191. border-width:0px;
  1192. white-space:nowrap;
  1193. text-transform:none;
  1194. }
  1195. #u143931_div {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:0px;
  1199. top:0px;
  1200. width:12px;
  1201. height:12px;
  1202. background:inherit;
  1203. background-color:rgba(255, 255, 255, 0);
  1204. box-sizing:border-box;
  1205. border-width:2px;
  1206. border-style:solid;
  1207. border-color:rgba(51, 51, 51, 1);
  1208. border-right:0px;
  1209. border-bottom:0px;
  1210. border-radius:0px;
  1211. border-top-right-radius:0px;
  1212. border-bottom-left-radius:0px;
  1213. -moz-box-shadow:none;
  1214. -webkit-box-shadow:none;
  1215. box-shadow:none;
  1216. }
  1217. #u143931 {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:46px;
  1221. top:81px;
  1222. width:12px;
  1223. height:12px;
  1224. display:flex;
  1225. -webkit-transform:rotate(315deg);
  1226. -moz-transform:rotate(315deg);
  1227. -ms-transform:rotate(315deg);
  1228. transform:rotate(315deg);
  1229. }
  1230. #u143931 .text {
  1231. position:absolute;
  1232. align-self:center;
  1233. padding:2px 2px 2px 2px;
  1234. box-sizing:border-box;
  1235. width:100%;
  1236. }
  1237. #u143931_text {
  1238. border-width:0px;
  1239. word-wrap:break-word;
  1240. text-transform:none;
  1241. visibility:hidden;
  1242. }
  1243. #u143932_img {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:23px;
  1249. height:23px;
  1250. }
  1251. #u143932 {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:73px;
  1255. top:76px;
  1256. width:23px;
  1257. height:23px;
  1258. display:flex;
  1259. }
  1260. #u143932 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:2px 2px 2px 2px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u143932_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. visibility:hidden;
  1272. }
  1273. #u143933 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:0px;
  1277. top:0px;
  1278. width:0px;
  1279. height:0px;
  1280. }
  1281. #u143934_div {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:375px;
  1287. height:50px;
  1288. background:inherit;
  1289. background-color:rgba(255, 255, 255, 1);
  1290. box-sizing:border-box;
  1291. border-width:1px;
  1292. border-style:solid;
  1293. border-color:rgba(242, 242, 242, 1);
  1294. border-radius:26px;
  1295. border-top-left-radius:0px;
  1296. border-top-right-radius:0px;
  1297. -moz-box-shadow:none;
  1298. -webkit-box-shadow:none;
  1299. box-shadow:none;
  1300. }
  1301. #u143934 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:29px;
  1305. top:791px;
  1306. width:375px;
  1307. height:50px;
  1308. display:flex;
  1309. }
  1310. #u143934 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 2px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u143934_text {
  1318. border-width:0px;
  1319. word-wrap:break-word;
  1320. text-transform:none;
  1321. visibility:hidden;
  1322. }
  1323. #u143935 {
  1324. border-width:0px;
  1325. position:absolute;
  1326. left:0px;
  1327. top:0px;
  1328. width:0px;
  1329. height:0px;
  1330. }
  1331. #u143936_img {
  1332. border-width:0px;
  1333. position:absolute;
  1334. left:0px;
  1335. top:0px;
  1336. width:24px;
  1337. height:24px;
  1338. }
  1339. #u143936 {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:250px;
  1343. top:795px;
  1344. width:24px;
  1345. height:24px;
  1346. display:flex;
  1347. font-size:8px;
  1348. }
  1349. #u143936 .text {
  1350. position:absolute;
  1351. align-self:center;
  1352. padding:2px 2px 2px 2px;
  1353. box-sizing:border-box;
  1354. width:100%;
  1355. }
  1356. #u143936_text {
  1357. border-width:0px;
  1358. word-wrap:break-word;
  1359. text-transform:none;
  1360. }
  1361. #u143937_div {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:0px;
  1365. top:0px;
  1366. width:25px;
  1367. height:17px;
  1368. background:inherit;
  1369. background-color:rgba(255, 255, 255, 0);
  1370. border:none;
  1371. border-radius:0px;
  1372. -moz-box-shadow:none;
  1373. -webkit-box-shadow:none;
  1374. box-shadow:none;
  1375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1376. font-weight:400;
  1377. font-style:normal;
  1378. font-size:12px;
  1379. }
  1380. #u143937 {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:250px;
  1384. top:820px;
  1385. width:25px;
  1386. height:17px;
  1387. display:flex;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:12px;
  1392. }
  1393. #u143937 .text {
  1394. position:absolute;
  1395. align-self:flex-start;
  1396. padding:0px 0px 0px 0px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u143937_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u143938 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. }
  1413. #u143939_img {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:24px;
  1419. height:24px;
  1420. }
  1421. #u143939 {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:69px;
  1425. top:795px;
  1426. width:24px;
  1427. height:24px;
  1428. display:flex;
  1429. font-size:8px;
  1430. }
  1431. #u143939 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:2px 2px 2px 2px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u143939_text {
  1439. border-width:0px;
  1440. word-wrap:break-word;
  1441. text-transform:none;
  1442. }
  1443. #u143940_div {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:25px;
  1449. height:17px;
  1450. background:inherit;
  1451. background-color:rgba(255, 255, 255, 0);
  1452. border:none;
  1453. border-radius:0px;
  1454. -moz-box-shadow:none;
  1455. -webkit-box-shadow:none;
  1456. box-shadow:none;
  1457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1458. font-weight:400;
  1459. font-style:normal;
  1460. font-size:12px;
  1461. }
  1462. #u143940 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:69px;
  1466. top:820px;
  1467. width:25px;
  1468. height:17px;
  1469. display:flex;
  1470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1471. font-weight:400;
  1472. font-style:normal;
  1473. font-size:12px;
  1474. }
  1475. #u143940 .text {
  1476. position:absolute;
  1477. align-self:flex-start;
  1478. padding:0px 0px 0px 0px;
  1479. box-sizing:border-box;
  1480. width:100%;
  1481. }
  1482. #u143940_text {
  1483. border-width:0px;
  1484. white-space:nowrap;
  1485. text-transform:none;
  1486. }
  1487. #u143941 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:0px;
  1491. top:0px;
  1492. width:0px;
  1493. height:0px;
  1494. }
  1495. #u143942_div {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:0px;
  1499. top:0px;
  1500. width:25px;
  1501. height:17px;
  1502. background:inherit;
  1503. background-color:rgba(255, 255, 255, 0);
  1504. border:none;
  1505. border-radius:0px;
  1506. -moz-box-shadow:none;
  1507. -webkit-box-shadow:none;
  1508. box-shadow:none;
  1509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1510. font-weight:400;
  1511. font-style:normal;
  1512. font-size:12px;
  1513. }
  1514. #u143942 {
  1515. border-width:0px;
  1516. position:absolute;
  1517. left:340px;
  1518. top:820px;
  1519. width:25px;
  1520. height:17px;
  1521. display:flex;
  1522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1523. font-weight:400;
  1524. font-style:normal;
  1525. font-size:12px;
  1526. }
  1527. #u143942 .text {
  1528. position:absolute;
  1529. align-self:flex-start;
  1530. padding:0px 0px 0px 0px;
  1531. box-sizing:border-box;
  1532. width:100%;
  1533. }
  1534. #u143942_text {
  1535. border-width:0px;
  1536. white-space:nowrap;
  1537. text-transform:none;
  1538. }
  1539. #u143943_img {
  1540. border-width:0px;
  1541. position:absolute;
  1542. left:0px;
  1543. top:0px;
  1544. width:24px;
  1545. height:24px;
  1546. }
  1547. #u143943 {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:341px;
  1551. top:795px;
  1552. width:24px;
  1553. height:24px;
  1554. display:flex;
  1555. font-size:8px;
  1556. color:#FFFFFF;
  1557. }
  1558. #u143943 .text {
  1559. position:absolute;
  1560. align-self:center;
  1561. padding:2px 2px 2px 2px;
  1562. box-sizing:border-box;
  1563. width:100%;
  1564. }
  1565. #u143943_text {
  1566. border-width:0px;
  1567. word-wrap:break-word;
  1568. text-transform:none;
  1569. }
  1570. #u143944 {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:0px;
  1574. top:0px;
  1575. width:0px;
  1576. height:0px;
  1577. }
  1578. #u143945_img {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:24px;
  1584. height:24px;
  1585. }
  1586. #u143945 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:159px;
  1590. top:795px;
  1591. width:24px;
  1592. height:24px;
  1593. display:flex;
  1594. font-size:8px;
  1595. }
  1596. #u143945 .text {
  1597. position:absolute;
  1598. align-self:center;
  1599. padding:2px 2px 2px 2px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u143945_text {
  1604. border-width:0px;
  1605. word-wrap:break-word;
  1606. text-transform:none;
  1607. }
  1608. #u143946_div {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:25px;
  1614. height:17px;
  1615. background:inherit;
  1616. background-color:rgba(255, 255, 255, 0);
  1617. border:none;
  1618. border-radius:0px;
  1619. -moz-box-shadow:none;
  1620. -webkit-box-shadow:none;
  1621. box-shadow:none;
  1622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1623. font-weight:400;
  1624. font-style:normal;
  1625. font-size:12px;
  1626. }
  1627. #u143946 {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:159px;
  1631. top:820px;
  1632. width:25px;
  1633. height:17px;
  1634. display:flex;
  1635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1636. font-weight:400;
  1637. font-style:normal;
  1638. font-size:12px;
  1639. }
  1640. #u143946 .text {
  1641. position:absolute;
  1642. align-self:flex-start;
  1643. padding:0px 0px 0px 0px;
  1644. box-sizing:border-box;
  1645. width:100%;
  1646. }
  1647. #u143946_text {
  1648. border-width:0px;
  1649. white-space:nowrap;
  1650. text-transform:none;
  1651. }
  1652. #u143947_div {
  1653. border-width:0px;
  1654. position:absolute;
  1655. left:0px;
  1656. top:0px;
  1657. width:375px;
  1658. height:180px;
  1659. background:inherit;
  1660. background-color:rgba(255, 255, 255, 0.996078431372549);
  1661. border:none;
  1662. border-top:0px;
  1663. border-radius:0px;
  1664. border-top-left-radius:0px;
  1665. border-top-right-radius:0px;
  1666. -moz-box-shadow:none;
  1667. -webkit-box-shadow:none;
  1668. box-shadow:none;
  1669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1670. font-weight:400;
  1671. font-style:normal;
  1672. }
  1673. #u143947 {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:29px;
  1677. top:206px;
  1678. width:375px;
  1679. height:180px;
  1680. display:flex;
  1681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1682. font-weight:400;
  1683. font-style:normal;
  1684. }
  1685. #u143947 .text {
  1686. position:absolute;
  1687. align-self:center;
  1688. padding:2px 2px 2px 2px;
  1689. box-sizing:border-box;
  1690. width:100%;
  1691. }
  1692. #u143947_text {
  1693. border-width:0px;
  1694. word-wrap:break-word;
  1695. text-transform:none;
  1696. visibility:hidden;
  1697. }
  1698. #u143948_div {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:0px;
  1702. top:0px;
  1703. width:57px;
  1704. height:70px;
  1705. background:inherit;
  1706. background-color:rgba(255, 255, 255, 0);
  1707. border:none;
  1708. border-radius:0px;
  1709. -moz-box-shadow:none;
  1710. -webkit-box-shadow:none;
  1711. box-shadow:none;
  1712. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1713. font-style:normal;
  1714. line-height:35px;
  1715. }
  1716. #u143948 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:81px;
  1720. top:278px;
  1721. width:57px;
  1722. height:70px;
  1723. display:flex;
  1724. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1725. font-style:normal;
  1726. line-height:35px;
  1727. }
  1728. #u143948 .text {
  1729. position:absolute;
  1730. align-self:flex-start;
  1731. padding:0px 0px 0px 0px;
  1732. box-sizing:border-box;
  1733. width:100%;
  1734. }
  1735. #u143948_text {
  1736. border-width:0px;
  1737. white-space:nowrap;
  1738. text-transform:none;
  1739. }
  1740. #u143949_div {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:0px;
  1744. top:0px;
  1745. width:111px;
  1746. height:100px;
  1747. background:inherit;
  1748. background-color:rgba(255, 255, 255, 0);
  1749. border:none;
  1750. border-radius:0px;
  1751. -moz-box-shadow:none;
  1752. -webkit-box-shadow:none;
  1753. box-shadow:none;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:14px;
  1758. line-height:25px;
  1759. }
  1760. #u143949 {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:239px;
  1764. top:263px;
  1765. width:111px;
  1766. height:100px;
  1767. display:flex;
  1768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1769. font-weight:400;
  1770. font-style:normal;
  1771. font-size:14px;
  1772. line-height:25px;
  1773. }
  1774. #u143949 .text {
  1775. position:absolute;
  1776. align-self:flex-start;
  1777. padding:0px 0px 0px 0px;
  1778. box-sizing:border-box;
  1779. width:100%;
  1780. }
  1781. #u143949_text {
  1782. border-width:0px;
  1783. white-space:nowrap;
  1784. text-transform:none;
  1785. }
  1786. #u143950 {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:0px;
  1792. height:0px;
  1793. }
  1794. #u143951_div {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:24px;
  1800. height:180px;
  1801. background:inherit;
  1802. background-color:rgba(41, 143, 255, 1);
  1803. border:none;
  1804. border-radius:0px;
  1805. -moz-box-shadow:none;
  1806. -webkit-box-shadow:none;
  1807. box-shadow:none;
  1808. }
  1809. #u143951 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:49px;
  1813. top:506px;
  1814. width:24px;
  1815. height:180px;
  1816. display:flex;
  1817. }
  1818. #u143951 .text {
  1819. position:absolute;
  1820. align-self:center;
  1821. padding:2px 2px 2px 2px;
  1822. box-sizing:border-box;
  1823. width:100%;
  1824. }
  1825. #u143951_text {
  1826. border-width:0px;
  1827. word-wrap:break-word;
  1828. text-transform:none;
  1829. visibility:hidden;
  1830. }
  1831. #u143952_div {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:25px;
  1837. height:12px;
  1838. background:inherit;
  1839. background-color:rgba(255, 255, 255, 0);
  1840. border:none;
  1841. border-radius:0px;
  1842. -moz-box-shadow:none;
  1843. -webkit-box-shadow:none;
  1844. box-shadow:none;
  1845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1846. font-weight:400;
  1847. font-style:normal;
  1848. font-size:10px;
  1849. }
  1850. #u143952 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:356px;
  1854. top:466px;
  1855. width:25px;
  1856. height:12px;
  1857. display:flex;
  1858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:10px;
  1862. }
  1863. #u143952 .text {
  1864. position:absolute;
  1865. align-self:flex-start;
  1866. padding:0px 0px 0px 0px;
  1867. box-sizing:border-box;
  1868. width:100%;
  1869. }
  1870. #u143952_text {
  1871. border-width:0px;
  1872. word-wrap:break-word;
  1873. text-transform:none;
  1874. }
  1875. #u143953_div {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:11px;
  1881. height:9px;
  1882. background:inherit;
  1883. background-color:rgba(41, 143, 255, 1);
  1884. border:none;
  1885. border-radius:0px;
  1886. -moz-box-shadow:none;
  1887. -webkit-box-shadow:none;
  1888. box-shadow:none;
  1889. }
  1890. #u143953 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:339px;
  1894. top:469px;
  1895. width:11px;
  1896. height:9px;
  1897. display:flex;
  1898. }
  1899. #u143953 .text {
  1900. position:absolute;
  1901. align-self:center;
  1902. padding:2px 2px 2px 2px;
  1903. box-sizing:border-box;
  1904. width:100%;
  1905. }
  1906. #u143953_text {
  1907. border-width:0px;
  1908. word-wrap:break-word;
  1909. text-transform:none;
  1910. visibility:hidden;
  1911. }
  1912. #u143954_div {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:24px;
  1918. height:132px;
  1919. background:inherit;
  1920. background-color:rgba(41, 143, 255, 1);
  1921. border:none;
  1922. border-radius:0px;
  1923. -moz-box-shadow:none;
  1924. -webkit-box-shadow:none;
  1925. box-shadow:none;
  1926. }
  1927. #u143954 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:97px;
  1931. top:554px;
  1932. width:24px;
  1933. height:132px;
  1934. display:flex;
  1935. }
  1936. #u143954 .text {
  1937. position:absolute;
  1938. align-self:center;
  1939. padding:2px 2px 2px 2px;
  1940. box-sizing:border-box;
  1941. width:100%;
  1942. }
  1943. #u143954_text {
  1944. border-width:0px;
  1945. word-wrap:break-word;
  1946. text-transform:none;
  1947. visibility:hidden;
  1948. }
  1949. #u143955_div {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:26px;
  1955. height:73px;
  1956. background:inherit;
  1957. background-color:rgba(41, 143, 255, 1);
  1958. border:none;
  1959. border-radius:0px;
  1960. -moz-box-shadow:none;
  1961. -webkit-box-shadow:none;
  1962. box-shadow:none;
  1963. }
  1964. #u143955 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:147px;
  1968. top:613px;
  1969. width:26px;
  1970. height:73px;
  1971. display:flex;
  1972. }
  1973. #u143955 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u143955_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. visibility:hidden;
  1985. }
  1986. #u143956_div {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:26px;
  1992. height:132px;
  1993. background:inherit;
  1994. background-color:rgba(41, 143, 255, 1);
  1995. border:none;
  1996. border-radius:0px;
  1997. -moz-box-shadow:none;
  1998. -webkit-box-shadow:none;
  1999. box-shadow:none;
  2000. }
  2001. #u143956 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:198px;
  2005. top:554px;
  2006. width:26px;
  2007. height:132px;
  2008. display:flex;
  2009. }
  2010. #u143956 .text {
  2011. position:absolute;
  2012. align-self:center;
  2013. padding:2px 2px 2px 2px;
  2014. box-sizing:border-box;
  2015. width:100%;
  2016. }
  2017. #u143956_text {
  2018. border-width:0px;
  2019. word-wrap:break-word;
  2020. text-transform:none;
  2021. visibility:hidden;
  2022. }
  2023. #u143957_div {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:25px;
  2029. height:101px;
  2030. background:inherit;
  2031. background-color:rgba(41, 143, 255, 1);
  2032. border:none;
  2033. border-radius:0px;
  2034. -moz-box-shadow:none;
  2035. -webkit-box-shadow:none;
  2036. box-shadow:none;
  2037. }
  2038. #u143957 {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:249px;
  2042. top:585px;
  2043. width:25px;
  2044. height:101px;
  2045. display:flex;
  2046. }
  2047. #u143957 .text {
  2048. position:absolute;
  2049. align-self:center;
  2050. padding:2px 2px 2px 2px;
  2051. box-sizing:border-box;
  2052. width:100%;
  2053. }
  2054. #u143957_text {
  2055. border-width:0px;
  2056. word-wrap:break-word;
  2057. text-transform:none;
  2058. visibility:hidden;
  2059. }
  2060. #u143958_div {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:25px;
  2066. height:171px;
  2067. background:inherit;
  2068. background-color:rgba(41, 143, 255, 1);
  2069. border:none;
  2070. border-radius:0px;
  2071. -moz-box-shadow:none;
  2072. -webkit-box-shadow:none;
  2073. box-shadow:none;
  2074. }
  2075. #u143958 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:298px;
  2079. top:515px;
  2080. width:25px;
  2081. height:171px;
  2082. display:flex;
  2083. }
  2084. #u143958 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 2px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u143958_text {
  2092. border-width:0px;
  2093. word-wrap:break-word;
  2094. text-transform:none;
  2095. visibility:hidden;
  2096. }
  2097. #u143959_div {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:24px;
  2103. height:136px;
  2104. background:inherit;
  2105. background-color:rgba(41, 143, 255, 1);
  2106. border:none;
  2107. border-radius:0px;
  2108. -moz-box-shadow:none;
  2109. -webkit-box-shadow:none;
  2110. box-shadow:none;
  2111. }
  2112. #u143959 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:351px;
  2116. top:550px;
  2117. width:24px;
  2118. height:136px;
  2119. display:flex;
  2120. }
  2121. #u143959 .text {
  2122. position:absolute;
  2123. align-self:center;
  2124. padding:2px 2px 2px 2px;
  2125. box-sizing:border-box;
  2126. width:100%;
  2127. }
  2128. #u143959_text {
  2129. border-width:0px;
  2130. word-wrap:break-word;
  2131. text-transform:none;
  2132. visibility:hidden;
  2133. }
  2134. #u143960_div {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:0px;
  2139. width:33px;
  2140. height:15px;
  2141. background:inherit;
  2142. background-color:rgba(255, 255, 255, 0);
  2143. border:none;
  2144. border-radius:0px;
  2145. -moz-box-shadow:none;
  2146. -webkit-box-shadow:none;
  2147. box-shadow:none;
  2148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2149. font-weight:400;
  2150. font-style:normal;
  2151. font-size:11px;
  2152. }
  2153. #u143960 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:44px;
  2157. top:691px;
  2158. width:33px;
  2159. height:15px;
  2160. display:flex;
  2161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2162. font-weight:400;
  2163. font-style:normal;
  2164. font-size:11px;
  2165. }
  2166. #u143960 .text {
  2167. position:absolute;
  2168. align-self:flex-start;
  2169. padding:0px 0px 0px 0px;
  2170. box-sizing:border-box;
  2171. width:100%;
  2172. }
  2173. #u143960_text {
  2174. border-width:0px;
  2175. word-wrap:break-word;
  2176. text-transform:none;
  2177. }
  2178. #u143961_div {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:36px;
  2184. height:15px;
  2185. background:inherit;
  2186. background-color:rgba(255, 255, 255, 0);
  2187. border:none;
  2188. border-radius:0px;
  2189. -moz-box-shadow:none;
  2190. -webkit-box-shadow:none;
  2191. box-shadow:none;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:11px;
  2196. }
  2197. #u143961 {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:91px;
  2201. top:691px;
  2202. width:36px;
  2203. height:15px;
  2204. display:flex;
  2205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:11px;
  2209. }
  2210. #u143961 .text {
  2211. position:absolute;
  2212. align-self:flex-start;
  2213. padding:0px 0px 0px 0px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u143961_text {
  2218. border-width:0px;
  2219. word-wrap:break-word;
  2220. text-transform:none;
  2221. }
  2222. #u143962_div {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:0px;
  2226. top:0px;
  2227. width:36px;
  2228. height:15px;
  2229. background:inherit;
  2230. background-color:rgba(255, 255, 255, 0);
  2231. border:none;
  2232. border-radius:0px;
  2233. -moz-box-shadow:none;
  2234. -webkit-box-shadow:none;
  2235. box-shadow:none;
  2236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2237. font-weight:400;
  2238. font-style:normal;
  2239. font-size:11px;
  2240. }
  2241. #u143962 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:143px;
  2245. top:691px;
  2246. width:36px;
  2247. height:15px;
  2248. display:flex;
  2249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2250. font-weight:400;
  2251. font-style:normal;
  2252. font-size:11px;
  2253. }
  2254. #u143962 .text {
  2255. position:absolute;
  2256. align-self:flex-start;
  2257. padding:0px 0px 0px 0px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u143962_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. }
  2266. #u143963_div {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:36px;
  2272. height:15px;
  2273. background:inherit;
  2274. background-color:rgba(255, 255, 255, 0);
  2275. border:none;
  2276. border-radius:0px;
  2277. -moz-box-shadow:none;
  2278. -webkit-box-shadow:none;
  2279. box-shadow:none;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:11px;
  2284. }
  2285. #u143963 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:192px;
  2289. top:691px;
  2290. width:36px;
  2291. height:15px;
  2292. display:flex;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:11px;
  2297. }
  2298. #u143963 .text {
  2299. position:absolute;
  2300. align-self:flex-start;
  2301. padding:0px 0px 0px 0px;
  2302. box-sizing:border-box;
  2303. width:100%;
  2304. }
  2305. #u143963_text {
  2306. border-width:0px;
  2307. word-wrap:break-word;
  2308. text-transform:none;
  2309. }
  2310. #u143964_div {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:0px;
  2314. top:0px;
  2315. width:36px;
  2316. height:15px;
  2317. background:inherit;
  2318. background-color:rgba(255, 255, 255, 0);
  2319. border:none;
  2320. border-radius:0px;
  2321. -moz-box-shadow:none;
  2322. -webkit-box-shadow:none;
  2323. box-shadow:none;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:11px;
  2328. }
  2329. #u143964 {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:244px;
  2333. top:691px;
  2334. width:36px;
  2335. height:15px;
  2336. display:flex;
  2337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2338. font-weight:400;
  2339. font-style:normal;
  2340. font-size:11px;
  2341. }
  2342. #u143964 .text {
  2343. position:absolute;
  2344. align-self:flex-start;
  2345. padding:0px 0px 0px 0px;
  2346. box-sizing:border-box;
  2347. width:100%;
  2348. }
  2349. #u143964_text {
  2350. border-width:0px;
  2351. word-wrap:break-word;
  2352. text-transform:none;
  2353. }
  2354. #u143965_div {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:36px;
  2360. height:15px;
  2361. background:inherit;
  2362. background-color:rgba(255, 255, 255, 0);
  2363. border:none;
  2364. border-radius:0px;
  2365. -moz-box-shadow:none;
  2366. -webkit-box-shadow:none;
  2367. box-shadow:none;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:11px;
  2372. }
  2373. #u143965 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:293px;
  2377. top:691px;
  2378. width:36px;
  2379. height:15px;
  2380. display:flex;
  2381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2382. font-weight:400;
  2383. font-style:normal;
  2384. font-size:11px;
  2385. }
  2386. #u143965 .text {
  2387. position:absolute;
  2388. align-self:flex-start;
  2389. padding:0px 0px 0px 0px;
  2390. box-sizing:border-box;
  2391. width:100%;
  2392. }
  2393. #u143965_text {
  2394. border-width:0px;
  2395. word-wrap:break-word;
  2396. text-transform:none;
  2397. }
  2398. #u143966_div {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:36px;
  2404. height:15px;
  2405. background:inherit;
  2406. background-color:rgba(255, 255, 255, 0);
  2407. border:none;
  2408. border-radius:0px;
  2409. -moz-box-shadow:none;
  2410. -webkit-box-shadow:none;
  2411. box-shadow:none;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:11px;
  2416. }
  2417. #u143966 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:345px;
  2421. top:691px;
  2422. width:36px;
  2423. height:15px;
  2424. display:flex;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:11px;
  2429. }
  2430. #u143966 .text {
  2431. position:absolute;
  2432. align-self:flex-start;
  2433. padding:0px 0px 0px 0px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u143966_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. }
  2442. #u143967 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:0px;
  2448. height:0px;
  2449. }
  2450. #u143968_div {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:375px;
  2456. height:50px;
  2457. background:inherit;
  2458. background-color:rgba(255, 255, 255, 1);
  2459. border:none;
  2460. border-radius:0px;
  2461. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  2462. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  2463. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  2464. }
  2465. #u143968 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:29px;
  2469. top:396px;
  2470. width:375px;
  2471. height:50px;
  2472. display:flex;
  2473. }
  2474. #u143968 .text {
  2475. position:absolute;
  2476. align-self:center;
  2477. padding:2px 2px 2px 2px;
  2478. box-sizing:border-box;
  2479. width:100%;
  2480. }
  2481. #u143968_text {
  2482. border-width:0px;
  2483. word-wrap:break-word;
  2484. text-transform:none;
  2485. visibility:hidden;
  2486. }
  2487. #u143969_div {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:73px;
  2493. height:17px;
  2494. background:inherit;
  2495. background-color:rgba(255, 255, 255, 0);
  2496. border:none;
  2497. border-radius:0px;
  2498. -moz-box-shadow:none;
  2499. -webkit-box-shadow:none;
  2500. box-shadow:none;
  2501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:12px;
  2505. color:#000000;
  2506. }
  2507. #u143969 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:44px;
  2511. top:411px;
  2512. width:73px;
  2513. height:17px;
  2514. display:flex;
  2515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2516. font-weight:400;
  2517. font-style:normal;
  2518. font-size:12px;
  2519. color:#000000;
  2520. }
  2521. #u143969 .text {
  2522. position:absolute;
  2523. align-self:flex-start;
  2524. padding:0px 0px 0px 0px;
  2525. box-sizing:border-box;
  2526. width:100%;
  2527. }
  2528. #u143969_text {
  2529. border-width:0px;
  2530. white-space:nowrap;
  2531. text-transform:none;
  2532. }
  2533. #u143970_div {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:25px;
  2539. height:17px;
  2540. background:inherit;
  2541. background-color:rgba(24, 144, 255, 1);
  2542. border:none;
  2543. border-radius:0px;
  2544. -moz-box-shadow:none;
  2545. -webkit-box-shadow:none;
  2546. box-shadow:none;
  2547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:12px;
  2551. color:#FFFFFF;
  2552. }
  2553. #u143970 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:213px;
  2557. top:412px;
  2558. width:25px;
  2559. height:17px;
  2560. display:flex;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:12px;
  2565. color:#FFFFFF;
  2566. }
  2567. #u143970 .text {
  2568. position:absolute;
  2569. align-self:flex-start;
  2570. padding:0px 0px 0px 0px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u143970_text {
  2575. border-width:0px;
  2576. white-space:nowrap;
  2577. text-transform:none;
  2578. }
  2579. #u143971_div {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:25px;
  2585. height:17px;
  2586. background:inherit;
  2587. background-color:rgba(255, 255, 255, 0);
  2588. border:none;
  2589. border-radius:0px;
  2590. -moz-box-shadow:none;
  2591. -webkit-box-shadow:none;
  2592. box-shadow:none;
  2593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:12px;
  2597. color:#000000;
  2598. }
  2599. #u143971 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:247px;
  2603. top:412px;
  2604. width:25px;
  2605. height:17px;
  2606. display:flex;
  2607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2608. font-weight:400;
  2609. font-style:normal;
  2610. font-size:12px;
  2611. color:#000000;
  2612. }
  2613. #u143971 .text {
  2614. position:absolute;
  2615. align-self:flex-start;
  2616. padding:0px 0px 0px 0px;
  2617. box-sizing:border-box;
  2618. width:100%;
  2619. }
  2620. #u143971_text {
  2621. border-width:0px;
  2622. white-space:nowrap;
  2623. text-transform:none;
  2624. }
  2625. #u143972_div {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:0px;
  2629. top:0px;
  2630. width:25px;
  2631. height:17px;
  2632. background:inherit;
  2633. background-color:rgba(255, 255, 255, 0);
  2634. border:none;
  2635. border-radius:0px;
  2636. -moz-box-shadow:none;
  2637. -webkit-box-shadow:none;
  2638. box-shadow:none;
  2639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2640. font-weight:400;
  2641. font-style:normal;
  2642. font-size:12px;
  2643. color:#000000;
  2644. }
  2645. #u143972 {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:282px;
  2649. top:412px;
  2650. width:25px;
  2651. height:17px;
  2652. display:flex;
  2653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2654. font-weight:400;
  2655. font-style:normal;
  2656. font-size:12px;
  2657. color:#000000;
  2658. }
  2659. #u143972 .text {
  2660. position:absolute;
  2661. align-self:flex-start;
  2662. padding:0px 0px 0px 0px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u143972_text {
  2667. border-width:0px;
  2668. white-space:nowrap;
  2669. text-transform:none;
  2670. }
  2671. #u143973_div {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:25px;
  2677. height:17px;
  2678. background:inherit;
  2679. background-color:rgba(255, 255, 255, 0);
  2680. border:none;
  2681. border-radius:0px;
  2682. -moz-box-shadow:none;
  2683. -webkit-box-shadow:none;
  2684. box-shadow:none;
  2685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:12px;
  2689. color:#000000;
  2690. }
  2691. #u143973 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:316px;
  2695. top:412px;
  2696. width:25px;
  2697. height:17px;
  2698. display:flex;
  2699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2700. font-weight:400;
  2701. font-style:normal;
  2702. font-size:12px;
  2703. color:#000000;
  2704. }
  2705. #u143973 .text {
  2706. position:absolute;
  2707. align-self:flex-start;
  2708. padding:0px 0px 0px 0px;
  2709. box-sizing:border-box;
  2710. width:100%;
  2711. }
  2712. #u143973_text {
  2713. border-width:0px;
  2714. white-space:nowrap;
  2715. text-transform:none;
  2716. }
  2717. #u143974 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:0px;
  2723. height:0px;
  2724. }
  2725. #u143975_div {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:34px;
  2731. height:14px;
  2732. background:inherit;
  2733. background-color:rgba(255, 255, 255, 0);
  2734. border:none;
  2735. border-radius:0px;
  2736. -moz-box-shadow:none;
  2737. -webkit-box-shadow:none;
  2738. box-shadow:none;
  2739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2740. font-weight:400;
  2741. font-style:normal;
  2742. font-size:10px;
  2743. color:#000000;
  2744. }
  2745. #u143975 {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:360px;
  2749. top:413px;
  2750. width:34px;
  2751. height:14px;
  2752. display:flex;
  2753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2754. font-weight:400;
  2755. font-style:normal;
  2756. font-size:10px;
  2757. color:#000000;
  2758. }
  2759. #u143975 .text {
  2760. position:absolute;
  2761. align-self:flex-start;
  2762. padding:0px 0px 0px 0px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u143975_text {
  2767. border-width:0px;
  2768. white-space:nowrap;
  2769. text-transform:none;
  2770. }
  2771. #u143976_img {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:8px;
  2777. height:8px;
  2778. }
  2779. #u143976 {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:350px;
  2783. top:417px;
  2784. width:8px;
  2785. height:8px;
  2786. display:flex;
  2787. }
  2788. #u143976 .text {
  2789. position:absolute;
  2790. align-self:center;
  2791. padding:2px 2px 2px 2px;
  2792. box-sizing:border-box;
  2793. width:100%;
  2794. }
  2795. #u143976_text {
  2796. border-width:0px;
  2797. word-wrap:break-word;
  2798. text-transform:none;
  2799. visibility:hidden;
  2800. }
  2801. #u143977_div {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:175px;
  2807. height:80px;
  2808. background:inherit;
  2809. background-color:rgba(255, 255, 255, 1);
  2810. border:none;
  2811. border-radius:4px;
  2812. -moz-box-shadow:none;
  2813. -webkit-box-shadow:none;
  2814. box-shadow:none;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-style:normal;
  2817. text-align:center;
  2818. line-height:35px;
  2819. }
  2820. #u143977 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:39px;
  2824. top:116px;
  2825. width:175px;
  2826. height:80px;
  2827. display:flex;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-style:normal;
  2830. text-align:center;
  2831. line-height:35px;
  2832. }
  2833. #u143977 .text {
  2834. position:absolute;
  2835. align-self:center;
  2836. padding:0px 0px 0px 0px;
  2837. box-sizing:border-box;
  2838. width:100%;
  2839. }
  2840. #u143977_text {
  2841. border-width:0px;
  2842. word-wrap:break-word;
  2843. text-transform:none;
  2844. }
  2845. #u143978_div {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:175px;
  2851. height:80px;
  2852. background:inherit;
  2853. background-color:rgba(255, 255, 255, 1);
  2854. border:none;
  2855. border-radius:4px;
  2856. -moz-box-shadow:none;
  2857. -webkit-box-shadow:none;
  2858. box-shadow:none;
  2859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2860. font-style:normal;
  2861. text-align:center;
  2862. line-height:35px;
  2863. }
  2864. #u143978 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:219px;
  2868. top:116px;
  2869. width:175px;
  2870. height:80px;
  2871. display:flex;
  2872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2873. font-style:normal;
  2874. text-align:center;
  2875. line-height:35px;
  2876. }
  2877. #u143978 .text {
  2878. position:absolute;
  2879. align-self:center;
  2880. padding:0px 0px 0px 0px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u143978_text {
  2885. border-width:0px;
  2886. word-wrap:break-word;
  2887. text-transform:none;
  2888. }
  2889. #u143979_div {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:65px;
  2895. height:22px;
  2896. background:inherit;
  2897. background-color:rgba(255, 255, 255, 0);
  2898. border:none;
  2899. border-radius:0px;
  2900. -moz-box-shadow:none;
  2901. -webkit-box-shadow:none;
  2902. box-shadow:none;
  2903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2904. font-weight:400;
  2905. font-style:normal;
  2906. font-size:16px;
  2907. color:#000000;
  2908. }
  2909. #u143979 {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:44px;
  2913. top:220px;
  2914. width:65px;
  2915. height:22px;
  2916. display:flex;
  2917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:16px;
  2921. color:#000000;
  2922. }
  2923. #u143979 .text {
  2924. position:absolute;
  2925. align-self:flex-start;
  2926. padding:0px 0px 0px 0px;
  2927. box-sizing:border-box;
  2928. width:100%;
  2929. }
  2930. #u143979_text {
  2931. border-width:0px;
  2932. white-space:nowrap;
  2933. text-transform:none;
  2934. }