styles.css 51 KB

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