styles.css 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936
  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. #u2708 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1510px;
  25. height:858px;
  26. display:flex;
  27. transition:none;
  28. }
  29. #u2708 .text {
  30. position:absolute;
  31. align-self:center;
  32. padding:2px 2px 2px 2px;
  33. box-sizing:border-box;
  34. width:100%;
  35. }
  36. #u2708_img {
  37. border-width:0px;
  38. position:absolute;
  39. left:0px;
  40. top:0px;
  41. width:1510px;
  42. height:858px;
  43. }
  44. #u2708_text {
  45. border-width:0px;
  46. word-wrap:break-word;
  47. text-transform:none;
  48. visibility:hidden;
  49. }
  50. #u2709_div {
  51. border-width:0px;
  52. position:absolute;
  53. left:0px;
  54. top:0px;
  55. width:240px;
  56. height:40px;
  57. background:inherit;
  58. background-color:rgba(245, 154, 35, 0.2);
  59. box-sizing:border-box;
  60. border-width:2px;
  61. border-style:solid;
  62. border-color:rgba(245, 154, 35, 1);
  63. border-left:0px;
  64. border-top:0px;
  65. border-right:0px;
  66. border-radius:0px;
  67. border-bottom-right-radius:0px;
  68. border-bottom-left-radius:0px;
  69. filter:drop-shadow(none);
  70. transition:none;
  71. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  72. font-weight:400;
  73. font-style:normal;
  74. font-size:18px;
  75. color:#FFFFFF;
  76. text-align:left;
  77. }
  78. #u2709 {
  79. border-width:0px;
  80. position:absolute;
  81. left:31px;
  82. top:107px;
  83. width:240px;
  84. height:40px;
  85. display:flex;
  86. transition:none;
  87. transform-origin:50% 50%;
  88. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  89. font-weight:400;
  90. font-style:normal;
  91. font-size:18px;
  92. color:#FFFFFF;
  93. text-align:left;
  94. }
  95. #u2709 .text {
  96. position:absolute;
  97. align-self:center;
  98. padding:2px 2px 2px 10px;
  99. box-sizing:border-box;
  100. width:100%;
  101. }
  102. #u2709_text {
  103. border-width:0px;
  104. word-wrap:break-word;
  105. text-transform:none;
  106. }
  107. #u2710_div {
  108. border-width:0px;
  109. position:absolute;
  110. left:0px;
  111. top:0px;
  112. width:61px;
  113. height:52px;
  114. background:inherit;
  115. background-color:rgba(255, 255, 255, 0);
  116. border-radius:0px;
  117. filter:drop-shadow(none);
  118. transition:none;
  119. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  120. font-style:normal;
  121. color:rgba(255, 255, 255, 0.6980392156862745);
  122. }
  123. #u2710 {
  124. border-width:0px;
  125. position:absolute;
  126. left:41px;
  127. top:176px;
  128. width:61px;
  129. height:52px;
  130. display:flex;
  131. transition:none;
  132. transform-origin:50% 50%;
  133. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  134. font-style:normal;
  135. color:rgba(255, 255, 255, 0.6980392156862745);
  136. }
  137. #u2710 .text {
  138. position:absolute;
  139. align-self:center;
  140. padding:2px 2px 2px 2px;
  141. box-sizing:border-box;
  142. width:100%;
  143. }
  144. #u2710_text {
  145. border-width:0px;
  146. white-space:nowrap;
  147. text-transform:none;
  148. }
  149. #u2711_div {
  150. border-width:0px;
  151. position:absolute;
  152. left:0px;
  153. top:0px;
  154. width:79px;
  155. height:94px;
  156. background:inherit;
  157. background-color:rgba(255, 255, 255, 0);
  158. border-radius:0px;
  159. filter:drop-shadow(none);
  160. transition:none;
  161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  162. font-weight:400;
  163. font-style:normal;
  164. font-size:12px;
  165. color:rgba(255, 255, 255, 0.6980392156862745);
  166. text-align:left;
  167. line-height:30px;
  168. }
  169. #u2711 {
  170. border-width:0px;
  171. position:absolute;
  172. left:166px;
  173. top:499px;
  174. width:79px;
  175. height:94px;
  176. display:flex;
  177. transition:none;
  178. transform-origin:50% 50%;
  179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  180. font-weight:400;
  181. font-style:normal;
  182. font-size:12px;
  183. color:rgba(255, 255, 255, 0.6980392156862745);
  184. text-align:left;
  185. line-height:30px;
  186. }
  187. #u2711 .text {
  188. position:absolute;
  189. align-self:center;
  190. padding:2px 2px 2px 2px;
  191. box-sizing:border-box;
  192. width:100%;
  193. }
  194. #u2711_text {
  195. border-width:0px;
  196. white-space:nowrap;
  197. text-transform:none;
  198. }
  199. #u2712 {
  200. border-width:0px;
  201. position:absolute;
  202. left:45px;
  203. top:508px;
  204. width:75px;
  205. height:75px;
  206. display:flex;
  207. transition:none;
  208. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  209. font-style:normal;
  210. color:#FFFFFF;
  211. }
  212. #u2712 .text {
  213. position:absolute;
  214. align-self:center;
  215. padding:2px 2px 2px 2px;
  216. box-sizing:border-box;
  217. width:100%;
  218. }
  219. #u2712_img {
  220. border-width:0px;
  221. position:absolute;
  222. left:0px;
  223. top:0px;
  224. width:75px;
  225. height:75px;
  226. }
  227. #u2712_text {
  228. border-width:0px;
  229. word-wrap:break-word;
  230. text-transform:none;
  231. }
  232. #u2713_div {
  233. border-width:0px;
  234. position:absolute;
  235. left:0px;
  236. top:0px;
  237. width:82px;
  238. height:52px;
  239. background:inherit;
  240. background-color:rgba(255, 255, 255, 0);
  241. border-radius:0px;
  242. filter:drop-shadow(none);
  243. transition:none;
  244. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  245. font-style:normal;
  246. color:rgba(255, 255, 255, 0.6980392156862745);
  247. }
  248. #u2713 {
  249. border-width:0px;
  250. position:absolute;
  251. left:119px;
  252. top:176px;
  253. width:82px;
  254. height:52px;
  255. display:flex;
  256. transition:none;
  257. transform-origin:50% 50%;
  258. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  259. font-style:normal;
  260. color:rgba(255, 255, 255, 0.6980392156862745);
  261. }
  262. #u2713 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u2713_text {
  270. border-width:0px;
  271. white-space:nowrap;
  272. text-transform:none;
  273. }
  274. #u2714_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:47px;
  280. height:52px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  287. font-style:normal;
  288. color:rgba(255, 255, 255, 0.6980392156862745);
  289. }
  290. #u2714 {
  291. border-width:0px;
  292. position:absolute;
  293. left:221px;
  294. top:176px;
  295. width:47px;
  296. height:52px;
  297. display:flex;
  298. transition:none;
  299. transform-origin:50% 50%;
  300. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  301. font-style:normal;
  302. color:rgba(255, 255, 255, 0.6980392156862745);
  303. }
  304. #u2714 .text {
  305. position:absolute;
  306. align-self:center;
  307. padding:2px 2px 2px 2px;
  308. box-sizing:border-box;
  309. width:100%;
  310. }
  311. #u2714_text {
  312. border-width:0px;
  313. white-space:nowrap;
  314. text-transform:none;
  315. }
  316. #u2715_div {
  317. border-width:0px;
  318. position:absolute;
  319. left:0px;
  320. top:0px;
  321. width:240px;
  322. height:30px;
  323. background:inherit;
  324. background-color:rgba(245, 154, 35, 0.2);
  325. box-sizing:border-box;
  326. border-width:1px;
  327. border-style:solid;
  328. border-color:rgba(245, 154, 35, 0.4);
  329. border-radius:0px;
  330. filter:drop-shadow(none);
  331. transition:none;
  332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  333. font-weight:400;
  334. font-style:normal;
  335. font-size:12px;
  336. color:#FFFFFF;
  337. text-align:left;
  338. }
  339. #u2715 {
  340. border-width:0px;
  341. position:absolute;
  342. left:31px;
  343. top:247px;
  344. width:240px;
  345. height:30px;
  346. display:flex;
  347. transition:none;
  348. transform-origin:50% 50%;
  349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  350. font-weight:400;
  351. font-style:normal;
  352. font-size:12px;
  353. color:#FFFFFF;
  354. text-align:left;
  355. }
  356. #u2715 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 10px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u2715_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u2716_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:240px;
  375. height:30px;
  376. background:inherit;
  377. background-color:rgba(245, 154, 35, 0.2);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(245, 154, 35, 0.4);
  382. border-radius:0px;
  383. filter:drop-shadow(none);
  384. transition:none;
  385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  386. font-weight:400;
  387. font-style:normal;
  388. font-size:12px;
  389. color:#FFFFFF;
  390. text-align:left;
  391. }
  392. #u2716 {
  393. border-width:0px;
  394. position:absolute;
  395. left:31px;
  396. top:283px;
  397. width:240px;
  398. height:30px;
  399. display:flex;
  400. transition:none;
  401. transform-origin:50% 50%;
  402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  403. font-weight:400;
  404. font-style:normal;
  405. font-size:12px;
  406. color:#FFFFFF;
  407. text-align:left;
  408. }
  409. #u2716 .text {
  410. position:absolute;
  411. align-self:center;
  412. padding:2px 2px 2px 10px;
  413. box-sizing:border-box;
  414. width:100%;
  415. }
  416. #u2716_text {
  417. border-width:0px;
  418. word-wrap:break-word;
  419. text-transform:none;
  420. visibility:hidden;
  421. }
  422. #u2717_div {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:240px;
  428. height:30px;
  429. background:inherit;
  430. background-color:rgba(245, 154, 35, 0.2);
  431. box-sizing:border-box;
  432. border-width:1px;
  433. border-style:solid;
  434. border-color:rgba(245, 154, 35, 0.4);
  435. border-radius:0px;
  436. filter:drop-shadow(none);
  437. transition:none;
  438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  439. font-weight:400;
  440. font-style:normal;
  441. font-size:12px;
  442. color:#FFFFFF;
  443. text-align:left;
  444. }
  445. #u2717 {
  446. border-width:0px;
  447. position:absolute;
  448. left:31px;
  449. top:319px;
  450. width:240px;
  451. height:30px;
  452. display:flex;
  453. transition:none;
  454. transform-origin:50% 50%;
  455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  456. font-weight:400;
  457. font-style:normal;
  458. font-size:12px;
  459. color:#FFFFFF;
  460. text-align:left;
  461. }
  462. #u2717 .text {
  463. position:absolute;
  464. align-self:center;
  465. padding:2px 2px 2px 10px;
  466. box-sizing:border-box;
  467. width:100%;
  468. }
  469. #u2717_text {
  470. border-width:0px;
  471. word-wrap:break-word;
  472. text-transform:none;
  473. visibility:hidden;
  474. }
  475. #u2718_div {
  476. border-width:0px;
  477. position:absolute;
  478. left:0px;
  479. top:0px;
  480. width:240px;
  481. height:30px;
  482. background:inherit;
  483. background-color:rgba(245, 154, 35, 0.2);
  484. box-sizing:border-box;
  485. border-width:1px;
  486. border-style:solid;
  487. border-color:rgba(245, 154, 35, 0.4);
  488. border-radius:0px;
  489. filter:drop-shadow(none);
  490. transition:none;
  491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  492. font-weight:400;
  493. font-style:normal;
  494. font-size:12px;
  495. color:#FFFFFF;
  496. text-align:left;
  497. }
  498. #u2718 {
  499. border-width:0px;
  500. position:absolute;
  501. left:31px;
  502. top:354px;
  503. width:240px;
  504. height:30px;
  505. display:flex;
  506. transition:none;
  507. transform-origin:50% 50%;
  508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  509. font-weight:400;
  510. font-style:normal;
  511. font-size:12px;
  512. color:#FFFFFF;
  513. text-align:left;
  514. }
  515. #u2718 .text {
  516. position:absolute;
  517. align-self:center;
  518. padding:2px 2px 2px 10px;
  519. box-sizing:border-box;
  520. width:100%;
  521. }
  522. #u2718_text {
  523. border-width:0px;
  524. word-wrap:break-word;
  525. text-transform:none;
  526. visibility:hidden;
  527. }
  528. #u2719_div {
  529. border-width:0px;
  530. position:absolute;
  531. left:0px;
  532. top:0px;
  533. width:240px;
  534. height:40px;
  535. background:inherit;
  536. background-color:rgba(245, 154, 35, 0.2);
  537. box-sizing:border-box;
  538. border-width:2px;
  539. border-style:solid;
  540. border-color:rgba(245, 154, 35, 1);
  541. border-left:0px;
  542. border-top:0px;
  543. border-right:0px;
  544. border-radius:0px;
  545. border-bottom-right-radius:0px;
  546. border-bottom-left-radius:0px;
  547. filter:drop-shadow(none);
  548. transition:none;
  549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  550. font-weight:400;
  551. font-style:normal;
  552. font-size:18px;
  553. color:#FFFFFF;
  554. text-align:left;
  555. }
  556. #u2719 {
  557. border-width:0px;
  558. position:absolute;
  559. left:31px;
  560. top:414px;
  561. width:240px;
  562. height:40px;
  563. display:flex;
  564. transition:none;
  565. transform-origin:50% 50%;
  566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  567. font-weight:400;
  568. font-style:normal;
  569. font-size:18px;
  570. color:#FFFFFF;
  571. text-align:left;
  572. }
  573. #u2719 .text {
  574. position:absolute;
  575. align-self:center;
  576. padding:2px 2px 2px 10px;
  577. box-sizing:border-box;
  578. width:100%;
  579. }
  580. #u2719_text {
  581. border-width:0px;
  582. word-wrap:break-word;
  583. text-transform:none;
  584. }
  585. #u2720_div {
  586. border-width:0px;
  587. position:absolute;
  588. left:0px;
  589. top:0px;
  590. width:49px;
  591. height:17px;
  592. background:inherit;
  593. background-color:rgba(255, 255, 255, 0);
  594. border-radius:0px;
  595. filter:drop-shadow(none);
  596. transition:none;
  597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  598. font-weight:400;
  599. font-style:normal;
  600. font-size:12px;
  601. color:#FFFFFF;
  602. }
  603. #u2720 {
  604. border-width:0px;
  605. position:absolute;
  606. left:45px;
  607. top:360px;
  608. width:49px;
  609. height:17px;
  610. display:flex;
  611. transition:none;
  612. transform-origin:50% 50%;
  613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  614. font-weight:400;
  615. font-style:normal;
  616. font-size:12px;
  617. color:#FFFFFF;
  618. }
  619. #u2720 .text {
  620. position:absolute;
  621. align-self:flex-start;
  622. padding:0px 0px 0px 0px;
  623. box-sizing:border-box;
  624. width:100%;
  625. }
  626. #u2720_text {
  627. border-width:0px;
  628. white-space:nowrap;
  629. text-transform:none;
  630. }
  631. #u2721_div {
  632. border-width:0px;
  633. position:absolute;
  634. left:0px;
  635. top:0px;
  636. width:49px;
  637. height:17px;
  638. background:inherit;
  639. background-color:rgba(255, 255, 255, 0);
  640. border-radius:0px;
  641. filter:drop-shadow(none);
  642. transition:none;
  643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  644. font-weight:400;
  645. font-style:normal;
  646. font-size:12px;
  647. color:#FFFFFF;
  648. }
  649. #u2721 {
  650. border-width:0px;
  651. position:absolute;
  652. left:45px;
  653. top:325px;
  654. width:49px;
  655. height:17px;
  656. display:flex;
  657. transition:none;
  658. transform-origin:50% 50%;
  659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  660. font-weight:400;
  661. font-style:normal;
  662. font-size:12px;
  663. color:#FFFFFF;
  664. }
  665. #u2721 .text {
  666. position:absolute;
  667. align-self:flex-start;
  668. padding:0px 0px 0px 0px;
  669. box-sizing:border-box;
  670. width:100%;
  671. }
  672. #u2721_text {
  673. border-width:0px;
  674. white-space:nowrap;
  675. text-transform:none;
  676. }
  677. #u2722_div {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:49px;
  683. height:17px;
  684. background:inherit;
  685. background-color:rgba(255, 255, 255, 0);
  686. border-radius:0px;
  687. filter:drop-shadow(none);
  688. transition:none;
  689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  690. font-weight:400;
  691. font-style:normal;
  692. font-size:12px;
  693. color:#FFFFFF;
  694. }
  695. #u2722 {
  696. border-width:0px;
  697. position:absolute;
  698. left:45px;
  699. top:290px;
  700. width:49px;
  701. height:17px;
  702. display:flex;
  703. transition:none;
  704. transform-origin:50% 50%;
  705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  706. font-weight:400;
  707. font-style:normal;
  708. font-size:12px;
  709. color:#FFFFFF;
  710. }
  711. #u2722 .text {
  712. position:absolute;
  713. align-self:flex-start;
  714. padding:0px 0px 0px 0px;
  715. box-sizing:border-box;
  716. width:100%;
  717. }
  718. #u2722_text {
  719. border-width:0px;
  720. white-space:nowrap;
  721. text-transform:none;
  722. }
  723. #u2723_div {
  724. border-width:0px;
  725. position:absolute;
  726. left:0px;
  727. top:0px;
  728. width:49px;
  729. height:17px;
  730. background:inherit;
  731. background-color:rgba(255, 255, 255, 0);
  732. border-radius:0px;
  733. filter:drop-shadow(none);
  734. transition:none;
  735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  736. font-weight:400;
  737. font-style:normal;
  738. font-size:12px;
  739. color:#FFFFFF;
  740. }
  741. #u2723 {
  742. border-width:0px;
  743. position:absolute;
  744. left:45px;
  745. top:254px;
  746. width:49px;
  747. height:17px;
  748. display:flex;
  749. transition:none;
  750. transform-origin:50% 50%;
  751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  752. font-weight:400;
  753. font-style:normal;
  754. font-size:12px;
  755. color:#FFFFFF;
  756. }
  757. #u2723 .text {
  758. position:absolute;
  759. align-self:flex-start;
  760. padding:0px 0px 0px 0px;
  761. box-sizing:border-box;
  762. width:100%;
  763. }
  764. #u2723_text {
  765. border-width:0px;
  766. white-space:nowrap;
  767. text-transform:none;
  768. }
  769. #u2724_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:30px;
  775. height:20px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border-radius:0px;
  779. filter:drop-shadow(none);
  780. transition:none;
  781. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  782. font-style:normal;
  783. color:#FFFFFF;
  784. text-align:right;
  785. }
  786. #u2724 {
  787. border-width:0px;
  788. position:absolute;
  789. left:230px;
  790. top:252px;
  791. width:30px;
  792. height:20px;
  793. display:flex;
  794. transition:none;
  795. transform-origin:50% 50%;
  796. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  797. font-style:normal;
  798. color:#FFFFFF;
  799. text-align:right;
  800. }
  801. #u2724 .text {
  802. position:absolute;
  803. align-self:flex-start;
  804. padding:0px 0px 0px 0px;
  805. box-sizing:border-box;
  806. width:100%;
  807. }
  808. #u2724_text {
  809. border-width:0px;
  810. white-space:nowrap;
  811. text-transform:none;
  812. }
  813. #u2725_div {
  814. border-width:0px;
  815. position:absolute;
  816. left:0px;
  817. top:0px;
  818. width:44px;
  819. height:20px;
  820. background:inherit;
  821. background-color:rgba(255, 255, 255, 0);
  822. border-radius:0px;
  823. filter:drop-shadow(none);
  824. transition:none;
  825. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  826. font-style:normal;
  827. color:#FFFFFF;
  828. text-align:right;
  829. }
  830. #u2725 {
  831. border-width:0px;
  832. position:absolute;
  833. left:216px;
  834. top:288px;
  835. width:44px;
  836. height:20px;
  837. display:flex;
  838. transition:none;
  839. transform-origin:50% 50%;
  840. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  841. font-style:normal;
  842. color:#FFFFFF;
  843. text-align:right;
  844. }
  845. #u2725 .text {
  846. position:absolute;
  847. align-self:flex-start;
  848. padding:0px 0px 0px 0px;
  849. box-sizing:border-box;
  850. width:100%;
  851. }
  852. #u2725_text {
  853. border-width:0px;
  854. white-space:nowrap;
  855. text-transform:none;
  856. }
  857. #u2726_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:36px;
  863. height:20px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 0);
  866. border-radius:0px;
  867. filter:drop-shadow(none);
  868. transition:none;
  869. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  870. font-style:normal;
  871. color:#FFFFFF;
  872. text-align:right;
  873. }
  874. #u2726 {
  875. border-width:0px;
  876. position:absolute;
  877. left:224px;
  878. top:325px;
  879. width:36px;
  880. height:20px;
  881. display:flex;
  882. transition:none;
  883. transform-origin:50% 50%;
  884. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  885. font-style:normal;
  886. color:#FFFFFF;
  887. text-align:right;
  888. }
  889. #u2726 .text {
  890. position:absolute;
  891. align-self:flex-start;
  892. padding:0px 0px 0px 0px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u2726_text {
  897. border-width:0px;
  898. white-space:nowrap;
  899. text-transform:none;
  900. }
  901. #u2727_div {
  902. border-width:0px;
  903. position:absolute;
  904. left:0px;
  905. top:0px;
  906. width:47px;
  907. height:20px;
  908. background:inherit;
  909. background-color:rgba(255, 255, 255, 0);
  910. border-radius:0px;
  911. filter:drop-shadow(none);
  912. transition:none;
  913. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  914. font-style:normal;
  915. color:#FFFFFF;
  916. text-align:right;
  917. }
  918. #u2727 {
  919. border-width:0px;
  920. position:absolute;
  921. left:213px;
  922. top:360px;
  923. width:47px;
  924. height:20px;
  925. display:flex;
  926. transition:none;
  927. transform-origin:50% 50%;
  928. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  929. font-style:normal;
  930. color:#FFFFFF;
  931. text-align:right;
  932. }
  933. #u2727 .text {
  934. position:absolute;
  935. align-self:flex-start;
  936. padding:0px 0px 0px 0px;
  937. box-sizing:border-box;
  938. width:100%;
  939. }
  940. #u2727_text {
  941. border-width:0px;
  942. white-space:nowrap;
  943. text-transform:none;
  944. }
  945. #u2728_div {
  946. border-width:0px;
  947. position:absolute;
  948. left:0px;
  949. top:0px;
  950. width:3px;
  951. height:1px;
  952. background:inherit;
  953. background-color:rgba(255, 255, 255, 0);
  954. border-radius:0px;
  955. filter:drop-shadow(none);
  956. transition:none;
  957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  958. font-weight:400;
  959. font-style:normal;
  960. font-size:1px;
  961. color:#FFFFFF;
  962. }
  963. #u2728 {
  964. border-width:0px;
  965. position:absolute;
  966. left:110px;
  967. top:501px;
  968. width:3px;
  969. height:1px;
  970. display:flex;
  971. transition:none;
  972. transform-origin:50% 50%;
  973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  974. font-weight:400;
  975. font-style:normal;
  976. font-size:1px;
  977. color:#FFFFFF;
  978. }
  979. #u2728 .text {
  980. position:absolute;
  981. align-self:flex-start;
  982. padding:0px 0px 0px 0px;
  983. box-sizing:border-box;
  984. width:100%;
  985. }
  986. #u2728_text {
  987. border-width:0px;
  988. white-space:nowrap;
  989. text-transform:none;
  990. }
  991. #u2729 {
  992. border-width:0px;
  993. position:absolute;
  994. left:0px;
  995. top:0px;
  996. width:0px;
  997. height:0px;
  998. }
  999. #u2730_div {
  1000. border-width:0px;
  1001. position:absolute;
  1002. left:0px;
  1003. top:0px;
  1004. width:240px;
  1005. height:30px;
  1006. background:inherit;
  1007. background-color:rgba(245, 154, 35, 0.2);
  1008. box-sizing:border-box;
  1009. border-width:1px;
  1010. border-style:solid;
  1011. border-color:rgba(245, 154, 35, 0.4);
  1012. border-radius:0px;
  1013. filter:drop-shadow(none);
  1014. transition:none;
  1015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1016. font-weight:400;
  1017. font-style:normal;
  1018. font-size:12px;
  1019. color:#FFFFFF;
  1020. text-align:left;
  1021. }
  1022. #u2730 {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:31px;
  1026. top:463px;
  1027. width:240px;
  1028. height:30px;
  1029. display:flex;
  1030. transition:none;
  1031. transform-origin:50% 50%;
  1032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1033. font-weight:400;
  1034. font-style:normal;
  1035. font-size:12px;
  1036. color:#FFFFFF;
  1037. text-align:left;
  1038. }
  1039. #u2730 .text {
  1040. position:absolute;
  1041. align-self:center;
  1042. padding:2px 2px 2px 10px;
  1043. box-sizing:border-box;
  1044. width:100%;
  1045. }
  1046. #u2730_text {
  1047. border-width:0px;
  1048. word-wrap:break-word;
  1049. text-transform:none;
  1050. visibility:hidden;
  1051. }
  1052. #u2731_div {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:0px;
  1056. top:0px;
  1057. width:49px;
  1058. height:17px;
  1059. background:inherit;
  1060. background-color:rgba(255, 255, 255, 0);
  1061. border-radius:0px;
  1062. filter:drop-shadow(none);
  1063. transition:none;
  1064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. font-size:12px;
  1068. color:#FFFFFF;
  1069. }
  1070. #u2731 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:45px;
  1074. top:470px;
  1075. width:49px;
  1076. height:17px;
  1077. display:flex;
  1078. transition:none;
  1079. transform-origin:50% 50%;
  1080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1081. font-weight:400;
  1082. font-style:normal;
  1083. font-size:12px;
  1084. color:#FFFFFF;
  1085. }
  1086. #u2731 .text {
  1087. position:absolute;
  1088. align-self:flex-start;
  1089. padding:0px 0px 0px 0px;
  1090. box-sizing:border-box;
  1091. width:100%;
  1092. }
  1093. #u2731_text {
  1094. border-width:0px;
  1095. white-space:nowrap;
  1096. text-transform:none;
  1097. }
  1098. #u2732_div {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:44px;
  1104. height:20px;
  1105. background:inherit;
  1106. background-color:rgba(255, 255, 255, 0);
  1107. border-radius:0px;
  1108. filter:drop-shadow(none);
  1109. transition:none;
  1110. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1111. font-style:normal;
  1112. color:#FFFFFF;
  1113. text-align:right;
  1114. }
  1115. #u2732 {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:101px;
  1119. top:468px;
  1120. width:44px;
  1121. height:20px;
  1122. display:flex;
  1123. transition:none;
  1124. transform-origin:50% 50%;
  1125. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1126. font-style:normal;
  1127. color:#FFFFFF;
  1128. text-align:right;
  1129. }
  1130. #u2732 .text {
  1131. position:absolute;
  1132. align-self:flex-start;
  1133. padding:0px 0px 0px 0px;
  1134. box-sizing:border-box;
  1135. width:100%;
  1136. }
  1137. #u2732_text {
  1138. border-width:0px;
  1139. white-space:nowrap;
  1140. text-transform:none;
  1141. }
  1142. #u2733_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:37px;
  1148. height:17px;
  1149. background:inherit;
  1150. background-color:rgba(255, 255, 255, 0);
  1151. border-radius:0px;
  1152. filter:drop-shadow(none);
  1153. transition:none;
  1154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1155. font-weight:400;
  1156. font-style:normal;
  1157. font-size:12px;
  1158. color:#FFFFFF;
  1159. }
  1160. #u2733 {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:166px;
  1164. top:470px;
  1165. width:37px;
  1166. height:17px;
  1167. display:flex;
  1168. transition:none;
  1169. transform-origin:50% 50%;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. font-size:12px;
  1174. color:#FFFFFF;
  1175. }
  1176. #u2733 .text {
  1177. position:absolute;
  1178. align-self:flex-start;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u2733_text {
  1184. border-width:0px;
  1185. white-space:nowrap;
  1186. text-transform:none;
  1187. }
  1188. #u2734_div {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:41px;
  1194. height:20px;
  1195. background:inherit;
  1196. background-color:rgba(255, 255, 255, 0);
  1197. border-radius:0px;
  1198. filter:drop-shadow(none);
  1199. transition:none;
  1200. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1201. font-weight:500;
  1202. font-style:normal;
  1203. font-size:14px;
  1204. color:#FFFFFF;
  1205. text-align:right;
  1206. }
  1207. #u2734 {
  1208. border-width:0px;
  1209. position:absolute;
  1210. left:212px;
  1211. top:468px;
  1212. width:41px;
  1213. height:20px;
  1214. display:flex;
  1215. transition:none;
  1216. transform-origin:50% 50%;
  1217. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1218. font-weight:500;
  1219. font-style:normal;
  1220. font-size:14px;
  1221. color:#FFFFFF;
  1222. text-align:right;
  1223. }
  1224. #u2734 .text {
  1225. position:absolute;
  1226. align-self:flex-start;
  1227. padding:0px 0px 0px 0px;
  1228. box-sizing:border-box;
  1229. width:100%;
  1230. }
  1231. #u2734_text {
  1232. border-width:0px;
  1233. white-space:nowrap;
  1234. text-transform:none;
  1235. }
  1236. #u2735_div {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:0px;
  1240. top:0px;
  1241. width:79px;
  1242. height:94px;
  1243. background:inherit;
  1244. background-color:rgba(255, 255, 255, 0);
  1245. border-radius:0px;
  1246. filter:drop-shadow(none);
  1247. transition:none;
  1248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1249. font-weight:400;
  1250. font-style:normal;
  1251. font-size:12px;
  1252. color:rgba(255, 255, 255, 0.6980392156862745);
  1253. text-align:left;
  1254. line-height:30px;
  1255. }
  1256. #u2735 {
  1257. border-width:0px;
  1258. position:absolute;
  1259. left:166px;
  1260. top:649px;
  1261. width:79px;
  1262. height:94px;
  1263. display:flex;
  1264. transition:none;
  1265. transform-origin:50% 50%;
  1266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1267. font-weight:400;
  1268. font-style:normal;
  1269. font-size:12px;
  1270. color:rgba(255, 255, 255, 0.6980392156862745);
  1271. text-align:left;
  1272. line-height:30px;
  1273. }
  1274. #u2735 .text {
  1275. position:absolute;
  1276. align-self:center;
  1277. padding:2px 2px 2px 2px;
  1278. box-sizing:border-box;
  1279. width:100%;
  1280. }
  1281. #u2735_text {
  1282. border-width:0px;
  1283. white-space:nowrap;
  1284. text-transform:none;
  1285. }
  1286. #u2736 {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:45px;
  1290. top:658px;
  1291. width:75px;
  1292. height:75px;
  1293. display:flex;
  1294. transition:none;
  1295. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1296. font-style:normal;
  1297. color:#FFFFFF;
  1298. }
  1299. #u2736 .text {
  1300. position:absolute;
  1301. align-self:center;
  1302. padding:2px 2px 2px 2px;
  1303. box-sizing:border-box;
  1304. width:100%;
  1305. }
  1306. #u2736_img {
  1307. border-width:0px;
  1308. position:absolute;
  1309. left:0px;
  1310. top:0px;
  1311. width:75px;
  1312. height:75px;
  1313. }
  1314. #u2736_text {
  1315. border-width:0px;
  1316. word-wrap:break-word;
  1317. text-transform:none;
  1318. }
  1319. #u2737 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:0px;
  1325. height:0px;
  1326. }
  1327. #u2738_div {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:0px;
  1331. top:0px;
  1332. width:240px;
  1333. height:30px;
  1334. background:inherit;
  1335. background-color:rgba(245, 154, 35, 0.2);
  1336. box-sizing:border-box;
  1337. border-width:1px;
  1338. border-style:solid;
  1339. border-color:rgba(245, 154, 35, 0.4);
  1340. border-radius:0px;
  1341. filter:drop-shadow(none);
  1342. transition:none;
  1343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1344. font-weight:400;
  1345. font-style:normal;
  1346. font-size:12px;
  1347. color:#FFFFFF;
  1348. text-align:left;
  1349. }
  1350. #u2738 {
  1351. border-width:0px;
  1352. position:absolute;
  1353. left:31px;
  1354. top:613px;
  1355. width:240px;
  1356. height:30px;
  1357. display:flex;
  1358. transition:none;
  1359. transform-origin:50% 50%;
  1360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1361. font-weight:400;
  1362. font-style:normal;
  1363. font-size:12px;
  1364. color:#FFFFFF;
  1365. text-align:left;
  1366. }
  1367. #u2738 .text {
  1368. position:absolute;
  1369. align-self:center;
  1370. padding:2px 2px 2px 10px;
  1371. box-sizing:border-box;
  1372. width:100%;
  1373. }
  1374. #u2738_text {
  1375. border-width:0px;
  1376. word-wrap:break-word;
  1377. text-transform:none;
  1378. visibility:hidden;
  1379. }
  1380. #u2739_div {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:0px;
  1384. top:0px;
  1385. width:49px;
  1386. height:17px;
  1387. background:inherit;
  1388. background-color:rgba(255, 255, 255, 0);
  1389. border-radius:0px;
  1390. filter:drop-shadow(none);
  1391. transition:none;
  1392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1393. font-weight:400;
  1394. font-style:normal;
  1395. font-size:12px;
  1396. color:#FFFFFF;
  1397. }
  1398. #u2739 {
  1399. border-width:0px;
  1400. position:absolute;
  1401. left:45px;
  1402. top:620px;
  1403. width:49px;
  1404. height:17px;
  1405. display:flex;
  1406. transition:none;
  1407. transform-origin:50% 50%;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:12px;
  1412. color:#FFFFFF;
  1413. }
  1414. #u2739 .text {
  1415. position:absolute;
  1416. align-self:flex-start;
  1417. padding:0px 0px 0px 0px;
  1418. box-sizing:border-box;
  1419. width:100%;
  1420. }
  1421. #u2739_text {
  1422. border-width:0px;
  1423. white-space:nowrap;
  1424. text-transform:none;
  1425. }
  1426. #u2740_div {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:0px;
  1431. width:32px;
  1432. height:20px;
  1433. background:inherit;
  1434. background-color:rgba(255, 255, 255, 0);
  1435. border-radius:0px;
  1436. filter:drop-shadow(none);
  1437. transition:none;
  1438. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1439. font-style:normal;
  1440. color:#FFFFFF;
  1441. text-align:right;
  1442. }
  1443. #u2740 {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:113px;
  1447. top:618px;
  1448. width:32px;
  1449. height:20px;
  1450. display:flex;
  1451. transition:none;
  1452. transform-origin:50% 50%;
  1453. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1454. font-style:normal;
  1455. color:#FFFFFF;
  1456. text-align:right;
  1457. }
  1458. #u2740 .text {
  1459. position:absolute;
  1460. align-self:flex-start;
  1461. padding:0px 0px 0px 0px;
  1462. box-sizing:border-box;
  1463. width:100%;
  1464. }
  1465. #u2740_text {
  1466. border-width:0px;
  1467. white-space:nowrap;
  1468. text-transform:none;
  1469. }
  1470. #u2741_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:37px;
  1476. height:17px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border-radius:0px;
  1480. filter:drop-shadow(none);
  1481. transition:none;
  1482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1483. font-weight:400;
  1484. font-style:normal;
  1485. font-size:12px;
  1486. color:#FFFFFF;
  1487. }
  1488. #u2741 {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:166px;
  1492. top:620px;
  1493. width:37px;
  1494. height:17px;
  1495. display:flex;
  1496. transition:none;
  1497. transform-origin:50% 50%;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:12px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u2741 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u2741_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u2742_div {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:41px;
  1522. height:20px;
  1523. background:inherit;
  1524. background-color:rgba(255, 255, 255, 0);
  1525. border-radius:0px;
  1526. filter:drop-shadow(none);
  1527. transition:none;
  1528. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1529. font-weight:500;
  1530. font-style:normal;
  1531. font-size:14px;
  1532. color:#FFFFFF;
  1533. text-align:right;
  1534. }
  1535. #u2742 {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:212px;
  1539. top:618px;
  1540. width:41px;
  1541. height:20px;
  1542. display:flex;
  1543. transition:none;
  1544. transform-origin:50% 50%;
  1545. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1546. font-weight:500;
  1547. font-style:normal;
  1548. font-size:14px;
  1549. color:#FFFFFF;
  1550. text-align:right;
  1551. }
  1552. #u2742 .text {
  1553. position:absolute;
  1554. align-self:flex-start;
  1555. padding:0px 0px 0px 0px;
  1556. box-sizing:border-box;
  1557. width:100%;
  1558. }
  1559. #u2742_text {
  1560. border-width:0px;
  1561. white-space:nowrap;
  1562. text-transform:none;
  1563. }
  1564. #u2743_div {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:0px;
  1568. top:0px;
  1569. width:240px;
  1570. height:40px;
  1571. background:inherit;
  1572. background-color:rgba(245, 154, 35, 0.2);
  1573. box-sizing:border-box;
  1574. border-width:2px;
  1575. border-style:solid;
  1576. border-color:rgba(245, 154, 35, 1);
  1577. border-left:0px;
  1578. border-top:0px;
  1579. border-right:0px;
  1580. border-radius:0px;
  1581. border-bottom-right-radius:0px;
  1582. border-bottom-left-radius:0px;
  1583. filter:drop-shadow(none);
  1584. transition:none;
  1585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1586. font-weight:400;
  1587. font-style:normal;
  1588. font-size:18px;
  1589. color:#FFFFFF;
  1590. text-align:left;
  1591. }
  1592. #u2743 {
  1593. border-width:0px;
  1594. position:absolute;
  1595. left:1240px;
  1596. top:107px;
  1597. width:240px;
  1598. height:40px;
  1599. display:flex;
  1600. transition:none;
  1601. transform-origin:50% 50%;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:18px;
  1606. color:#FFFFFF;
  1607. text-align:left;
  1608. }
  1609. #u2743 .text {
  1610. position:absolute;
  1611. align-self:center;
  1612. padding:2px 2px 2px 10px;
  1613. box-sizing:border-box;
  1614. width:100%;
  1615. }
  1616. #u2743_text {
  1617. border-width:0px;
  1618. word-wrap:break-word;
  1619. text-transform:none;
  1620. }
  1621. #u2744_div {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:91px;
  1627. height:94px;
  1628. background:inherit;
  1629. background-color:rgba(255, 255, 255, 0);
  1630. border-radius:0px;
  1631. filter:drop-shadow(none);
  1632. transition:none;
  1633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1634. font-weight:400;
  1635. font-style:normal;
  1636. font-size:12px;
  1637. color:rgba(255, 255, 255, 0.6980392156862745);
  1638. text-align:left;
  1639. line-height:30px;
  1640. }
  1641. #u2744 {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:1375px;
  1645. top:157px;
  1646. width:91px;
  1647. height:94px;
  1648. display:flex;
  1649. transition:none;
  1650. transform-origin:50% 50%;
  1651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1652. font-weight:400;
  1653. font-style:normal;
  1654. font-size:12px;
  1655. color:rgba(255, 255, 255, 0.6980392156862745);
  1656. text-align:left;
  1657. line-height:30px;
  1658. }
  1659. #u2744 .text {
  1660. position:absolute;
  1661. align-self:center;
  1662. padding:2px 2px 2px 2px;
  1663. box-sizing:border-box;
  1664. width:100%;
  1665. }
  1666. #u2744_text {
  1667. border-width:0px;
  1668. white-space:nowrap;
  1669. text-transform:none;
  1670. }
  1671. #u2745 {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:1269px;
  1675. top:167px;
  1676. width:75px;
  1677. height:75px;
  1678. display:flex;
  1679. transition:none;
  1680. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1681. font-style:normal;
  1682. color:#FFFFFF;
  1683. }
  1684. #u2745 .text {
  1685. position:absolute;
  1686. align-self:center;
  1687. padding:2px 2px 2px 2px;
  1688. box-sizing:border-box;
  1689. width:100%;
  1690. }
  1691. #u2745_img {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:75px;
  1697. height:75px;
  1698. }
  1699. #u2745_text {
  1700. border-width:0px;
  1701. word-wrap:break-word;
  1702. text-transform:none;
  1703. }
  1704. #u2746_div {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:91px;
  1710. height:64px;
  1711. background:inherit;
  1712. background-color:rgba(255, 255, 255, 0);
  1713. border-radius:0px;
  1714. filter:drop-shadow(none);
  1715. transition:none;
  1716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:12px;
  1720. color:rgba(255, 255, 255, 0.6980392156862745);
  1721. text-align:left;
  1722. line-height:30px;
  1723. }
  1724. #u2746 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:1261px;
  1728. top:270px;
  1729. width:91px;
  1730. height:64px;
  1731. display:flex;
  1732. transition:none;
  1733. transform-origin:50% 50%;
  1734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1735. font-weight:400;
  1736. font-style:normal;
  1737. font-size:12px;
  1738. color:rgba(255, 255, 255, 0.6980392156862745);
  1739. text-align:left;
  1740. line-height:30px;
  1741. }
  1742. #u2746 .text {
  1743. position:absolute;
  1744. align-self:center;
  1745. padding:2px 2px 2px 2px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u2746_text {
  1750. border-width:0px;
  1751. white-space:nowrap;
  1752. text-transform:none;
  1753. }
  1754. #u2747 {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:1396px;
  1758. top:265px;
  1759. width:75px;
  1760. height:75px;
  1761. display:flex;
  1762. transition:none;
  1763. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1764. font-style:normal;
  1765. color:#FFFFFF;
  1766. }
  1767. #u2747 .text {
  1768. position:absolute;
  1769. align-self:center;
  1770. padding:2px 2px 2px 2px;
  1771. box-sizing:border-box;
  1772. width:100%;
  1773. }
  1774. #u2747_img {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:0px;
  1778. top:0px;
  1779. width:75px;
  1780. height:75px;
  1781. }
  1782. #u2747_text {
  1783. border-width:0px;
  1784. word-wrap:break-word;
  1785. text-transform:none;
  1786. }
  1787. #u2748_div {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:77px;
  1793. height:64px;
  1794. background:inherit;
  1795. background-color:rgba(255, 255, 255, 0);
  1796. border-radius:0px;
  1797. filter:drop-shadow(none);
  1798. transition:none;
  1799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1800. font-weight:400;
  1801. font-style:normal;
  1802. font-size:12px;
  1803. color:rgba(255, 255, 255, 0.6980392156862745);
  1804. text-align:left;
  1805. line-height:30px;
  1806. }
  1807. #u2748 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:1375px;
  1811. top:361px;
  1812. width:77px;
  1813. height:64px;
  1814. display:flex;
  1815. transition:none;
  1816. transform-origin:50% 50%;
  1817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1818. font-weight:400;
  1819. font-style:normal;
  1820. font-size:12px;
  1821. color:rgba(255, 255, 255, 0.6980392156862745);
  1822. text-align:left;
  1823. line-height:30px;
  1824. }
  1825. #u2748 .text {
  1826. position:absolute;
  1827. align-self:center;
  1828. padding:2px 2px 2px 2px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u2748_text {
  1833. border-width:0px;
  1834. white-space:nowrap;
  1835. text-transform:none;
  1836. }
  1837. #u2749 {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:1269px;
  1841. top:350px;
  1842. width:75px;
  1843. height:75px;
  1844. display:flex;
  1845. transition:none;
  1846. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1847. font-style:normal;
  1848. color:#FFFFFF;
  1849. }
  1850. #u2749 .text {
  1851. position:absolute;
  1852. align-self:center;
  1853. padding:2px 2px 2px 2px;
  1854. box-sizing:border-box;
  1855. width:100%;
  1856. }
  1857. #u2749_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:75px;
  1863. height:75px;
  1864. }
  1865. #u2749_text {
  1866. border-width:0px;
  1867. word-wrap:break-word;
  1868. text-transform:none;
  1869. }
  1870. #u2750_div {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:0px;
  1874. top:0px;
  1875. width:240px;
  1876. height:40px;
  1877. background:inherit;
  1878. background-color:rgba(245, 154, 35, 0.2);
  1879. box-sizing:border-box;
  1880. border-width:2px;
  1881. border-style:solid;
  1882. border-color:rgba(245, 154, 35, 1);
  1883. border-left:0px;
  1884. border-top:0px;
  1885. border-right:0px;
  1886. border-radius:0px;
  1887. border-bottom-right-radius:0px;
  1888. border-bottom-left-radius:0px;
  1889. filter:drop-shadow(none);
  1890. transition:none;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:18px;
  1895. color:#FFFFFF;
  1896. text-align:left;
  1897. }
  1898. #u2750 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:1240px;
  1902. top:475px;
  1903. width:240px;
  1904. height:40px;
  1905. display:flex;
  1906. transition:none;
  1907. transform-origin:50% 50%;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:18px;
  1912. color:#FFFFFF;
  1913. text-align:left;
  1914. }
  1915. #u2750 .text {
  1916. position:absolute;
  1917. align-self:center;
  1918. padding:2px 2px 2px 10px;
  1919. box-sizing:border-box;
  1920. width:100%;
  1921. }
  1922. #u2750_text {
  1923. border-width:0px;
  1924. word-wrap:break-word;
  1925. text-transform:none;
  1926. }
  1927. #u2751 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:1250px;
  1931. top:535px;
  1932. width:80px;
  1933. height:80px;
  1934. display:flex;
  1935. transition:none;
  1936. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1937. font-style:normal;
  1938. color:#FFFFFF;
  1939. }
  1940. #u2751 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 2px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u2751_img {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:80px;
  1953. height:80px;
  1954. }
  1955. #u2751_text {
  1956. border-width:0px;
  1957. word-wrap:break-word;
  1958. text-transform:none;
  1959. }
  1960. #u2752 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:1380px;
  1964. top:535px;
  1965. width:80px;
  1966. height:80px;
  1967. display:flex;
  1968. transition:none;
  1969. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1970. font-style:normal;
  1971. color:#FFFFFF;
  1972. }
  1973. #u2752 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u2752_img {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:80px;
  1986. height:80px;
  1987. }
  1988. #u2752_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. }
  1993. #u2753_div {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:45px;
  1999. height:17px;
  2000. background:inherit;
  2001. background-color:rgba(255, 255, 255, 0);
  2002. border-radius:0px;
  2003. filter:drop-shadow(none);
  2004. transition:none;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:12px;
  2009. color:#FFFFFF;
  2010. }
  2011. #u2753 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:1328px;
  2015. top:535px;
  2016. width:45px;
  2017. height:17px;
  2018. display:flex;
  2019. transition:none;
  2020. transform-origin:50% 50%;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:12px;
  2025. color:#FFFFFF;
  2026. }
  2027. #u2753 .text {
  2028. position:absolute;
  2029. align-self:flex-start;
  2030. padding:0px 0px 0px 0px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u2753_text {
  2035. border-width:0px;
  2036. white-space:nowrap;
  2037. text-transform:none;
  2038. }
  2039. #u2754 {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:0px;
  2045. height:0px;
  2046. }
  2047. #u2755_div {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:240px;
  2053. height:30px;
  2054. background:inherit;
  2055. background-color:rgba(245, 154, 35, 0.2);
  2056. box-sizing:border-box;
  2057. border-width:1px;
  2058. border-style:solid;
  2059. border-color:rgba(245, 154, 35, 0.4);
  2060. border-radius:0px;
  2061. filter:drop-shadow(none);
  2062. transition:none;
  2063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:12px;
  2067. color:#FFFFFF;
  2068. text-align:left;
  2069. }
  2070. #u2755 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:1240px;
  2074. top:671px;
  2075. width:240px;
  2076. height:30px;
  2077. display:flex;
  2078. transition:none;
  2079. transform-origin:50% 50%;
  2080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2081. font-weight:400;
  2082. font-style:normal;
  2083. font-size:12px;
  2084. color:#FFFFFF;
  2085. text-align:left;
  2086. }
  2087. #u2755 .text {
  2088. position:absolute;
  2089. align-self:center;
  2090. padding:2px 2px 2px 10px;
  2091. box-sizing:border-box;
  2092. width:100%;
  2093. }
  2094. #u2755_text {
  2095. border-width:0px;
  2096. word-wrap:break-word;
  2097. text-transform:none;
  2098. visibility:hidden;
  2099. }
  2100. #u2756_div {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:37px;
  2106. height:17px;
  2107. background:inherit;
  2108. background-color:rgba(255, 255, 255, 0);
  2109. border-radius:0px;
  2110. filter:drop-shadow(none);
  2111. transition:none;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:12px;
  2116. color:#FFFFFF;
  2117. }
  2118. #u2756 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:1376px;
  2122. top:678px;
  2123. width:37px;
  2124. height:17px;
  2125. display:flex;
  2126. transition:none;
  2127. transform-origin:50% 50%;
  2128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2129. font-weight:400;
  2130. font-style:normal;
  2131. font-size:12px;
  2132. color:#FFFFFF;
  2133. }
  2134. #u2756 .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. #u2756_text {
  2142. border-width:0px;
  2143. white-space:nowrap;
  2144. text-transform:none;
  2145. }
  2146. #u2757_div {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:49px;
  2152. height:20px;
  2153. background:inherit;
  2154. background-color:rgba(255, 255, 255, 0);
  2155. border-radius:0px;
  2156. filter:drop-shadow(none);
  2157. transition:none;
  2158. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2159. font-style:normal;
  2160. color:#FFFFFF;
  2161. text-align:right;
  2162. }
  2163. #u2757 {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:1420px;
  2167. top:676px;
  2168. width:49px;
  2169. height:20px;
  2170. display:flex;
  2171. transition:none;
  2172. transform-origin:50% 50%;
  2173. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2174. font-style:normal;
  2175. color:#FFFFFF;
  2176. text-align:right;
  2177. }
  2178. #u2757 .text {
  2179. position:absolute;
  2180. align-self:flex-start;
  2181. padding:0px 0px 0px 0px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u2757_text {
  2186. border-width:0px;
  2187. white-space:nowrap;
  2188. text-transform:none;
  2189. }
  2190. #u2758_div {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:49px;
  2196. height:17px;
  2197. background:inherit;
  2198. background-color:rgba(255, 255, 255, 0);
  2199. border-radius:0px;
  2200. filter:drop-shadow(none);
  2201. transition:none;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:12px;
  2206. color:#FFFFFF;
  2207. }
  2208. #u2758 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:1250px;
  2212. top:678px;
  2213. width:49px;
  2214. height:17px;
  2215. display:flex;
  2216. transition:none;
  2217. transform-origin:50% 50%;
  2218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2219. font-weight:400;
  2220. font-style:normal;
  2221. font-size:12px;
  2222. color:#FFFFFF;
  2223. }
  2224. #u2758 .text {
  2225. position:absolute;
  2226. align-self:flex-start;
  2227. padding:0px 0px 0px 0px;
  2228. box-sizing:border-box;
  2229. width:100%;
  2230. }
  2231. #u2758_text {
  2232. border-width:0px;
  2233. white-space:nowrap;
  2234. text-transform:none;
  2235. }
  2236. #u2759_div {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:0px;
  2240. top:0px;
  2241. width:43px;
  2242. height:20px;
  2243. background:inherit;
  2244. background-color:rgba(255, 255, 255, 0);
  2245. border-radius:0px;
  2246. filter:drop-shadow(none);
  2247. transition:none;
  2248. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2249. font-weight:500;
  2250. font-style:normal;
  2251. font-size:14px;
  2252. color:#FFFFFF;
  2253. }
  2254. #u2759 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:1307px;
  2258. top:676px;
  2259. width:43px;
  2260. height:20px;
  2261. display:flex;
  2262. transition:none;
  2263. transform-origin:50% 50%;
  2264. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2265. font-weight:500;
  2266. font-style:normal;
  2267. font-size:14px;
  2268. color:#FFFFFF;
  2269. }
  2270. #u2759 .text {
  2271. position:absolute;
  2272. align-self:flex-start;
  2273. padding:0px 0px 0px 0px;
  2274. box-sizing:border-box;
  2275. width:100%;
  2276. }
  2277. #u2759_text {
  2278. border-width:0px;
  2279. white-space:nowrap;
  2280. text-transform:none;
  2281. }
  2282. #u2760_div {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:83px;
  2288. height:34px;
  2289. background:inherit;
  2290. background-color:rgba(255, 255, 255, 0);
  2291. border-radius:0px;
  2292. filter:drop-shadow(none);
  2293. transition:none;
  2294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2295. font-weight:400;
  2296. font-style:normal;
  2297. font-size:12px;
  2298. color:#FFFFFF;
  2299. }
  2300. #u2760 {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:1257px;
  2304. top:627px;
  2305. width:83px;
  2306. height:34px;
  2307. display:flex;
  2308. transition:none;
  2309. transform-origin:50% 50%;
  2310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2311. font-weight:400;
  2312. font-style:normal;
  2313. font-size:12px;
  2314. color:#FFFFFF;
  2315. }
  2316. #u2760 .text {
  2317. position:absolute;
  2318. align-self:flex-start;
  2319. padding:0px 0px 0px 0px;
  2320. box-sizing:border-box;
  2321. width:100%;
  2322. }
  2323. #u2760_text {
  2324. border-width:0px;
  2325. white-space:nowrap;
  2326. text-transform:none;
  2327. }
  2328. #u2761_div {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:0px;
  2332. top:0px;
  2333. width:45px;
  2334. height:17px;
  2335. background:inherit;
  2336. background-color:rgba(255, 255, 255, 0);
  2337. border-radius:0px;
  2338. filter:drop-shadow(none);
  2339. transition:none;
  2340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2341. font-weight:400;
  2342. font-style:normal;
  2343. font-size:12px;
  2344. color:#FFFFFF;
  2345. }
  2346. #u2761 {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:1460px;
  2350. top:535px;
  2351. width:45px;
  2352. height:17px;
  2353. display:flex;
  2354. transition:none;
  2355. transform-origin:50% 50%;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:12px;
  2360. color:#FFFFFF;
  2361. }
  2362. #u2761 .text {
  2363. position:absolute;
  2364. align-self:flex-start;
  2365. padding:0px 0px 0px 0px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u2761_text {
  2370. border-width:0px;
  2371. white-space:nowrap;
  2372. text-transform:none;
  2373. }
  2374. #u2762_div {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:0px;
  2378. top:0px;
  2379. width:83px;
  2380. height:34px;
  2381. background:inherit;
  2382. background-color:rgba(255, 255, 255, 0);
  2383. border-radius:0px;
  2384. filter:drop-shadow(none);
  2385. transition:none;
  2386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2387. font-weight:400;
  2388. font-style:normal;
  2389. font-size:12px;
  2390. color:#FFFFFF;
  2391. }
  2392. #u2762 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:1387px;
  2396. top:627px;
  2397. width:83px;
  2398. height:34px;
  2399. display:flex;
  2400. transition:none;
  2401. transform-origin:50% 50%;
  2402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:12px;
  2406. color:#FFFFFF;
  2407. }
  2408. #u2762 .text {
  2409. position:absolute;
  2410. align-self:flex-start;
  2411. padding:0px 0px 0px 0px;
  2412. box-sizing:border-box;
  2413. width:100%;
  2414. }
  2415. #u2762_text {
  2416. border-width:0px;
  2417. white-space:nowrap;
  2418. text-transform:none;
  2419. }
  2420. #u2763_div {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:1283px;
  2426. height:184px;
  2427. background:inherit;
  2428. background-color:rgba(245, 154, 35, 0);
  2429. border-left:0px;
  2430. border-top:0px;
  2431. border-right:0px;
  2432. border-radius:0px;
  2433. border-bottom-right-radius:0px;
  2434. border-bottom-left-radius:0px;
  2435. filter:drop-shadow(none);
  2436. transition:none;
  2437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2438. font-weight:400;
  2439. font-style:normal;
  2440. font-size:18px;
  2441. color:#D9001B;
  2442. text-align:left;
  2443. line-height:30px;
  2444. }
  2445. #u2763 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:38px;
  2449. top:892px;
  2450. width:1283px;
  2451. height:184px;
  2452. display:flex;
  2453. transition:none;
  2454. transform-origin:50% 50%;
  2455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2456. font-weight:400;
  2457. font-style:normal;
  2458. font-size:18px;
  2459. color:#D9001B;
  2460. text-align:left;
  2461. line-height:30px;
  2462. }
  2463. #u2763 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 2px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u2763_text {
  2471. border-width:0px;
  2472. white-space:nowrap;
  2473. text-transform:none;
  2474. }
  2475. #u2764_div {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:49px;
  2481. height:22px;
  2482. background:inherit;
  2483. background-color:rgba(28, 33, 30, 1);
  2484. border-radius:0px;
  2485. filter:drop-shadow(none);
  2486. transition:none;
  2487. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2488. font-weight:500;
  2489. font-style:normal;
  2490. font-size:8px;
  2491. color:#FFFFFF;
  2492. line-height:22px;
  2493. }
  2494. #u2764 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:678px;
  2498. top:540px;
  2499. width:49px;
  2500. height:22px;
  2501. display:flex;
  2502. transition:none;
  2503. transform-origin:50% 50%;
  2504. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2505. font-weight:500;
  2506. font-style:normal;
  2507. font-size:8px;
  2508. color:#FFFFFF;
  2509. line-height:22px;
  2510. }
  2511. #u2764 .text {
  2512. position:absolute;
  2513. align-self:flex-start;
  2514. padding:0px 0px 0px 0px;
  2515. box-sizing:border-box;
  2516. width:100%;
  2517. }
  2518. #u2764_text {
  2519. border-width:0px;
  2520. white-space:nowrap;
  2521. text-transform:none;
  2522. }
  2523. #u2765 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:0px;
  2529. height:0px;
  2530. }
  2531. #u2766 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:308px;
  2535. top:551px;
  2536. width:895px;
  2537. height:218px;
  2538. display:flex;
  2539. transition:none;
  2540. }
  2541. #u2766 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:2px 2px 2px 2px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u2766_img {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:895px;
  2554. height:218px;
  2555. }
  2556. #u2766_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. visibility:hidden;
  2561. }
  2562. #u2767_div {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:49px;
  2568. height:11px;
  2569. background:inherit;
  2570. background-color:rgba(28, 33, 30, 1);
  2571. border-radius:0px;
  2572. filter:drop-shadow(none);
  2573. transition:none;
  2574. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2575. font-weight:500;
  2576. font-style:normal;
  2577. font-size:8px;
  2578. color:#FFFFFF;
  2579. }
  2580. #u2767 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:665px;
  2584. top:705px;
  2585. width:49px;
  2586. height:11px;
  2587. display:flex;
  2588. transition:none;
  2589. transform-origin:50% 50%;
  2590. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2591. font-weight:500;
  2592. font-style:normal;
  2593. font-size:8px;
  2594. color:#FFFFFF;
  2595. }
  2596. #u2767 .text {
  2597. position:absolute;
  2598. align-self:flex-start;
  2599. padding:0px 0px 0px 0px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u2767_text {
  2604. border-width:0px;
  2605. white-space:nowrap;
  2606. text-transform:none;
  2607. }
  2608. #u2768_div {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:33px;
  2614. height:88px;
  2615. background:inherit;
  2616. background-color:rgba(28, 33, 30, 1);
  2617. border-radius:0px;
  2618. filter:drop-shadow(none);
  2619. transition:none;
  2620. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2621. font-weight:500;
  2622. font-style:normal;
  2623. font-size:8px;
  2624. color:#FFFFFF;
  2625. line-height:22px;
  2626. }
  2627. #u2768 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:797px;
  2631. top:658px;
  2632. width:33px;
  2633. height:88px;
  2634. display:flex;
  2635. transition:none;
  2636. transform-origin:50% 50%;
  2637. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2638. font-weight:500;
  2639. font-style:normal;
  2640. font-size:8px;
  2641. color:#FFFFFF;
  2642. line-height:22px;
  2643. }
  2644. #u2768 .text {
  2645. position:absolute;
  2646. align-self:flex-start;
  2647. padding:0px 0px 0px 0px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u2768_text {
  2652. border-width:0px;
  2653. white-space:nowrap;
  2654. text-transform:none;
  2655. }
  2656. #u2769_div {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:40px;
  2662. height:90px;
  2663. background:inherit;
  2664. background-color:rgba(28, 33, 30, 1);
  2665. border-radius:0px;
  2666. filter:drop-shadow(none);
  2667. transition:none;
  2668. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2669. font-weight:500;
  2670. font-style:normal;
  2671. font-size:8px;
  2672. color:#FFFFFF;
  2673. line-height:30px;
  2674. }
  2675. #u2769 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:1098px;
  2679. top:645px;
  2680. width:40px;
  2681. height:90px;
  2682. display:flex;
  2683. transition:none;
  2684. transform-origin:50% 50%;
  2685. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2686. font-weight:500;
  2687. font-style:normal;
  2688. font-size:8px;
  2689. color:#FFFFFF;
  2690. line-height:30px;
  2691. }
  2692. #u2769 .text {
  2693. position:absolute;
  2694. align-self:flex-start;
  2695. padding:0px 0px 0px 0px;
  2696. box-sizing:border-box;
  2697. width:100%;
  2698. }
  2699. #u2769_text {
  2700. border-width:0px;
  2701. white-space:nowrap;
  2702. text-transform:none;
  2703. }
  2704. #u2770_div {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:0px;
  2708. top:0px;
  2709. width:44px;
  2710. height:11px;
  2711. background:inherit;
  2712. background-color:rgba(28, 33, 30, 1);
  2713. border-radius:0px;
  2714. filter:drop-shadow(none);
  2715. transition:none;
  2716. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2717. font-weight:500;
  2718. font-style:normal;
  2719. font-size:8px;
  2720. color:#FFFFFF;
  2721. }
  2722. #u2770 {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:974px;
  2726. top:706px;
  2727. width:44px;
  2728. height:11px;
  2729. display:flex;
  2730. transition:none;
  2731. transform-origin:50% 50%;
  2732. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2733. font-weight:500;
  2734. font-style:normal;
  2735. font-size:8px;
  2736. color:#FFFFFF;
  2737. }
  2738. #u2770 .text {
  2739. position:absolute;
  2740. align-self:flex-start;
  2741. padding:0px 0px 0px 0px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u2770_text {
  2746. border-width:0px;
  2747. white-space:nowrap;
  2748. text-transform:none;
  2749. }
  2750. #u2771_div {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:60px;
  2756. height:11px;
  2757. background:inherit;
  2758. background-color:rgba(28, 33, 30, 1);
  2759. border-radius:0px;
  2760. filter:drop-shadow(none);
  2761. transition:none;
  2762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2763. font-weight:400;
  2764. font-style:normal;
  2765. font-size:8px;
  2766. color:#D9001B;
  2767. }
  2768. #u2771 {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:690px;
  2772. top:571px;
  2773. width:60px;
  2774. height:11px;
  2775. display:flex;
  2776. transition:none;
  2777. transform-origin:50% 50%;
  2778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2779. font-weight:400;
  2780. font-style:normal;
  2781. font-size:8px;
  2782. color:#D9001B;
  2783. }
  2784. #u2771 .text {
  2785. position:absolute;
  2786. align-self:flex-start;
  2787. padding:0px 0px 0px 0px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u2771_text {
  2792. border-width:0px;
  2793. white-space:nowrap;
  2794. text-transform:none;
  2795. }
  2796. #u2772_div {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:148px;
  2802. height:11px;
  2803. background:inherit;
  2804. background-color:rgba(28, 33, 30, 1);
  2805. border-radius:0px;
  2806. filter:drop-shadow(none);
  2807. transition:none;
  2808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2809. font-weight:400;
  2810. font-style:normal;
  2811. font-size:8px;
  2812. color:#D9001B;
  2813. }
  2814. #u2772 {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:722px;
  2818. top:645px;
  2819. width:148px;
  2820. height:11px;
  2821. display:flex;
  2822. transition:none;
  2823. transform-origin:50% 50%;
  2824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2825. font-weight:400;
  2826. font-style:normal;
  2827. font-size:8px;
  2828. color:#D9001B;
  2829. }
  2830. #u2772 .text {
  2831. position:absolute;
  2832. align-self:flex-start;
  2833. padding:0px 0px 0px 0px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u2772_text {
  2838. border-width:0px;
  2839. white-space:nowrap;
  2840. text-transform:none;
  2841. }
  2842. #u2773_div {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:210px;
  2848. height:11px;
  2849. background:inherit;
  2850. background-color:rgba(28, 33, 30, 1);
  2851. border-radius:0px;
  2852. filter:drop-shadow(none);
  2853. transition:none;
  2854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2855. font-weight:400;
  2856. font-style:normal;
  2857. font-size:8px;
  2858. color:#D9001B;
  2859. }
  2860. #u2773 {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:974px;
  2864. top:571px;
  2865. width:210px;
  2866. height:11px;
  2867. display:flex;
  2868. transition:none;
  2869. transform-origin:50% 50%;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:8px;
  2874. color:#D9001B;
  2875. }
  2876. #u2773 .text {
  2877. position:absolute;
  2878. align-self:flex-start;
  2879. padding:0px 0px 0px 0px;
  2880. box-sizing:border-box;
  2881. width:100%;
  2882. }
  2883. #u2773_text {
  2884. border-width:0px;
  2885. white-space:nowrap;
  2886. text-transform:none;
  2887. }
  2888. #u2774_div {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:236px;
  2894. height:11px;
  2895. background:inherit;
  2896. background-color:rgba(28, 33, 30, 1);
  2897. border-radius:0px;
  2898. filter:drop-shadow(none);
  2899. transition:none;
  2900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2901. font-weight:400;
  2902. font-style:normal;
  2903. font-size:8px;
  2904. color:#D9001B;
  2905. }
  2906. #u2774 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:956px;
  2910. top:640px;
  2911. width:236px;
  2912. height:11px;
  2913. display:flex;
  2914. transition:none;
  2915. transform-origin:50% 50%;
  2916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2917. font-weight:400;
  2918. font-style:normal;
  2919. font-size:8px;
  2920. color:#D9001B;
  2921. }
  2922. #u2774 .text {
  2923. position:absolute;
  2924. align-self:flex-start;
  2925. padding:0px 0px 0px 0px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u2774_text {
  2930. border-width:0px;
  2931. white-space:nowrap;
  2932. text-transform:none;
  2933. }
  2934. #u2775 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:335px;
  2938. top:783px;
  2939. width:840px;
  2940. height:61px;
  2941. }
  2942. #u2776 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:0px;
  2946. top:0px;
  2947. width:0px;
  2948. height:0px;
  2949. }
  2950. #u2777 {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:0px;
  2956. height:0px;
  2957. }
  2958. #u2778_div {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:0px;
  2962. top:0px;
  2963. width:57px;
  2964. height:20px;
  2965. background:inherit;
  2966. background-color:rgba(28, 33, 30, 1);
  2967. border-radius:0px;
  2968. filter:drop-shadow(none);
  2969. transition:none;
  2970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2971. font-weight:500;
  2972. font-style:normal;
  2973. font-size:14px;
  2974. color:#FFFFFF;
  2975. }
  2976. #u2778 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:77px;
  2980. top:41px;
  2981. width:57px;
  2982. height:20px;
  2983. display:flex;
  2984. transition:none;
  2985. transform-origin:50% 50%;
  2986. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2987. font-weight:500;
  2988. font-style:normal;
  2989. font-size:14px;
  2990. color:#FFFFFF;
  2991. }
  2992. #u2778 .text {
  2993. position:absolute;
  2994. align-self:flex-start;
  2995. padding:0px 0px 0px 0px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u2778_text {
  3000. border-width:0px;
  3001. white-space:nowrap;
  3002. text-transform:none;
  3003. }
  3004. #u2779 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:89px;
  3008. top:0px;
  3009. width:33px;
  3010. height:39px;
  3011. display:flex;
  3012. transition:none;
  3013. color:#FFFFFF;
  3014. }
  3015. #u2779 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 2px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u2779_img {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:33px;
  3028. height:39px;
  3029. }
  3030. #u2779_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. }
  3035. #u2780 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:0px;
  3041. height:0px;
  3042. }
  3043. #u2781_div {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:57px;
  3049. height:20px;
  3050. background:inherit;
  3051. background-color:rgba(28, 33, 30, 1);
  3052. border-radius:0px;
  3053. filter:drop-shadow(none);
  3054. transition:none;
  3055. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3056. font-weight:500;
  3057. font-style:normal;
  3058. font-size:14px;
  3059. color:#FFFFFF;
  3060. }
  3061. #u2781 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:151px;
  3065. top:41px;
  3066. width:57px;
  3067. height:20px;
  3068. display:flex;
  3069. transition:none;
  3070. transform-origin:50% 50%;
  3071. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3072. font-weight:500;
  3073. font-style:normal;
  3074. font-size:14px;
  3075. color:#FFFFFF;
  3076. }
  3077. #u2781 .text {
  3078. position:absolute;
  3079. align-self:flex-start;
  3080. padding:0px 0px 0px 0px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u2781_text {
  3085. border-width:0px;
  3086. white-space:nowrap;
  3087. text-transform:none;
  3088. }
  3089. #u2782 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:163px;
  3093. top:0px;
  3094. width:33px;
  3095. height:39px;
  3096. display:flex;
  3097. transition:none;
  3098. color:#FFFFFF;
  3099. }
  3100. #u2782 .text {
  3101. position:absolute;
  3102. align-self:center;
  3103. padding:2px 2px 2px 2px;
  3104. box-sizing:border-box;
  3105. width:100%;
  3106. }
  3107. #u2782_img {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:33px;
  3113. height:39px;
  3114. }
  3115. #u2782_text {
  3116. border-width:0px;
  3117. word-wrap:break-word;
  3118. text-transform:none;
  3119. }
  3120. #u2783 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:0px;
  3126. height:0px;
  3127. }
  3128. #u2784_div {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:0px;
  3132. top:0px;
  3133. width:57px;
  3134. height:20px;
  3135. background:inherit;
  3136. background-color:rgba(28, 33, 30, 1);
  3137. border-radius:0px;
  3138. filter:drop-shadow(none);
  3139. transition:none;
  3140. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3141. font-weight:500;
  3142. font-style:normal;
  3143. font-size:14px;
  3144. color:#FFFFFF;
  3145. }
  3146. #u2784 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:41px;
  3151. width:57px;
  3152. height:20px;
  3153. display:flex;
  3154. transition:none;
  3155. transform-origin:50% 50%;
  3156. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3157. font-weight:500;
  3158. font-style:normal;
  3159. font-size:14px;
  3160. color:#FFFFFF;
  3161. }
  3162. #u2784 .text {
  3163. position:absolute;
  3164. align-self:flex-start;
  3165. padding:0px 0px 0px 0px;
  3166. box-sizing:border-box;
  3167. width:100%;
  3168. }
  3169. #u2784_text {
  3170. border-width:0px;
  3171. white-space:nowrap;
  3172. text-transform:none;
  3173. }
  3174. #u2785 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:12px;
  3178. top:0px;
  3179. width:33px;
  3180. height:39px;
  3181. display:flex;
  3182. transition:none;
  3183. color:#FFFFFF;
  3184. }
  3185. #u2785 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 2px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u2785_img {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:33px;
  3198. height:39px;
  3199. }
  3200. #u2785_text {
  3201. border-width:0px;
  3202. word-wrap:break-word;
  3203. text-transform:none;
  3204. }
  3205. #u2786_div {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:59px;
  3211. height:20px;
  3212. background:inherit;
  3213. background-color:rgba(28, 33, 30, 1);
  3214. border-radius:0px;
  3215. filter:drop-shadow(none);
  3216. transition:none;
  3217. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3218. font-weight:500;
  3219. font-style:normal;
  3220. font-size:14px;
  3221. color:#FFFFFF;
  3222. }
  3223. #u2786 {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:41px;
  3228. width:59px;
  3229. height:20px;
  3230. display:flex;
  3231. transition:none;
  3232. transform-origin:50% 50%;
  3233. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3234. font-weight:500;
  3235. font-style:normal;
  3236. font-size:14px;
  3237. color:#FFFFFF;
  3238. }
  3239. #u2786 .text {
  3240. position:absolute;
  3241. align-self:flex-start;
  3242. padding:0px 0px 0px 0px;
  3243. box-sizing:border-box;
  3244. width:100%;
  3245. }
  3246. #u2786_text {
  3247. border-width:0px;
  3248. word-wrap:break-word;
  3249. text-transform:none;
  3250. }
  3251. #u2787 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:0px;
  3257. height:0px;
  3258. }
  3259. #u2788_div {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:57px;
  3265. height:20px;
  3266. background:inherit;
  3267. background-color:rgba(28, 33, 30, 1);
  3268. border-radius:0px;
  3269. filter:drop-shadow(none);
  3270. transition:none;
  3271. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3272. font-weight:500;
  3273. font-style:normal;
  3274. font-size:14px;
  3275. color:#FFFFFF;
  3276. }
  3277. #u2788 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:226px;
  3281. top:41px;
  3282. width:57px;
  3283. height:20px;
  3284. display:flex;
  3285. transition:none;
  3286. transform-origin:50% 50%;
  3287. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3288. font-weight:500;
  3289. font-style:normal;
  3290. font-size:14px;
  3291. color:#FFFFFF;
  3292. }
  3293. #u2788 .text {
  3294. position:absolute;
  3295. align-self:flex-start;
  3296. padding:0px 0px 0px 0px;
  3297. box-sizing:border-box;
  3298. width:100%;
  3299. }
  3300. #u2788_text {
  3301. border-width:0px;
  3302. white-space:nowrap;
  3303. text-transform:none;
  3304. }
  3305. #u2789 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:238px;
  3309. top:0px;
  3310. width:33px;
  3311. height:39px;
  3312. display:flex;
  3313. transition:none;
  3314. color:#FFFFFF;
  3315. }
  3316. #u2789 .text {
  3317. position:absolute;
  3318. align-self:center;
  3319. padding:2px 2px 2px 2px;
  3320. box-sizing:border-box;
  3321. width:100%;
  3322. }
  3323. #u2789_img {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:33px;
  3329. height:39px;
  3330. }
  3331. #u2789_text {
  3332. border-width:0px;
  3333. word-wrap:break-word;
  3334. text-transform:none;
  3335. }
  3336. #u2790 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:0px;
  3342. height:0px;
  3343. }
  3344. #u2791_div {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:57px;
  3350. height:20px;
  3351. background:inherit;
  3352. background-color:rgba(28, 33, 30, 1);
  3353. border-radius:0px;
  3354. filter:drop-shadow(none);
  3355. transition:none;
  3356. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3357. font-weight:500;
  3358. font-style:normal;
  3359. font-size:14px;
  3360. color:#FFFFFF;
  3361. }
  3362. #u2791 {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:301px;
  3366. top:41px;
  3367. width:57px;
  3368. height:20px;
  3369. display:flex;
  3370. transition:none;
  3371. transform-origin:50% 50%;
  3372. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3373. font-weight:500;
  3374. font-style:normal;
  3375. font-size:14px;
  3376. color:#FFFFFF;
  3377. }
  3378. #u2791 .text {
  3379. position:absolute;
  3380. align-self:flex-start;
  3381. padding:0px 0px 0px 0px;
  3382. box-sizing:border-box;
  3383. width:100%;
  3384. }
  3385. #u2791_text {
  3386. border-width:0px;
  3387. white-space:nowrap;
  3388. text-transform:none;
  3389. }
  3390. #u2792 {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:313px;
  3394. top:0px;
  3395. width:33px;
  3396. height:39px;
  3397. display:flex;
  3398. transition:none;
  3399. color:#FFFFFF;
  3400. }
  3401. #u2792 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:2px 2px 2px 2px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u2792_img {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:33px;
  3414. height:39px;
  3415. }
  3416. #u2792_text {
  3417. border-width:0px;
  3418. word-wrap:break-word;
  3419. text-transform:none;
  3420. }
  3421. #u2793 {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:0px;
  3427. height:0px;
  3428. }
  3429. #u2794_div {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:0px;
  3433. top:0px;
  3434. width:56px;
  3435. height:20px;
  3436. background:inherit;
  3437. background-color:rgba(28, 33, 30, 1);
  3438. border-radius:0px;
  3439. filter:drop-shadow(none);
  3440. transition:none;
  3441. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3442. font-weight:500;
  3443. font-style:normal;
  3444. font-size:14px;
  3445. color:#FFFFFF;
  3446. }
  3447. #u2794 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:452px;
  3451. top:41px;
  3452. width:56px;
  3453. height:20px;
  3454. display:flex;
  3455. transition:none;
  3456. transform-origin:50% 50%;
  3457. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3458. font-weight:500;
  3459. font-style:normal;
  3460. font-size:14px;
  3461. color:#FFFFFF;
  3462. }
  3463. #u2794 .text {
  3464. position:absolute;
  3465. align-self:flex-start;
  3466. padding:0px 0px 0px 0px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u2794_text {
  3471. border-width:0px;
  3472. white-space:nowrap;
  3473. text-transform:none;
  3474. }
  3475. #u2795 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:464px;
  3479. top:0px;
  3480. width:33px;
  3481. height:39px;
  3482. display:flex;
  3483. transition:none;
  3484. color:#FFFFFF;
  3485. }
  3486. #u2795 .text {
  3487. position:absolute;
  3488. align-self:center;
  3489. padding:2px 2px 2px 2px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u2795_img {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:33px;
  3499. height:39px;
  3500. }
  3501. #u2795_text {
  3502. border-width:0px;
  3503. word-wrap:break-word;
  3504. text-transform:none;
  3505. }
  3506. #u2796 {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:0px;
  3512. height:0px;
  3513. }
  3514. #u2797_div {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:0px;
  3518. top:0px;
  3519. width:59px;
  3520. height:20px;
  3521. background:inherit;
  3522. background-color:rgba(28, 33, 30, 1);
  3523. border-radius:0px;
  3524. filter:drop-shadow(none);
  3525. transition:none;
  3526. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3527. font-weight:500;
  3528. font-style:normal;
  3529. font-size:14px;
  3530. color:#FFFFFF;
  3531. }
  3532. #u2797 {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:376px;
  3536. top:41px;
  3537. width:59px;
  3538. height:20px;
  3539. display:flex;
  3540. transition:none;
  3541. transform-origin:50% 50%;
  3542. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3543. font-weight:500;
  3544. font-style:normal;
  3545. font-size:14px;
  3546. color:#FFFFFF;
  3547. }
  3548. #u2797 .text {
  3549. position:absolute;
  3550. align-self:flex-start;
  3551. padding:0px 0px 0px 0px;
  3552. box-sizing:border-box;
  3553. width:100%;
  3554. }
  3555. #u2797_text {
  3556. border-width:0px;
  3557. word-wrap:break-word;
  3558. text-transform:none;
  3559. }
  3560. #u2798 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:387px;
  3564. top:0px;
  3565. width:33px;
  3566. height:39px;
  3567. display:flex;
  3568. transition:none;
  3569. color:#FFFFFF;
  3570. }
  3571. #u2798 .text {
  3572. position:absolute;
  3573. align-self:center;
  3574. padding:2px 2px 2px 2px;
  3575. box-sizing:border-box;
  3576. width:100%;
  3577. }
  3578. #u2798_img {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:33px;
  3584. height:39px;
  3585. }
  3586. #u2798_text {
  3587. border-width:0px;
  3588. word-wrap:break-word;
  3589. text-transform:none;
  3590. }
  3591. #u2799 {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:0px;
  3597. height:0px;
  3598. }
  3599. #u2800_div {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:0px;
  3603. top:0px;
  3604. width:57px;
  3605. height:20px;
  3606. background:inherit;
  3607. background-color:rgba(28, 33, 30, 1);
  3608. border-radius:0px;
  3609. filter:drop-shadow(none);
  3610. transition:none;
  3611. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3612. font-weight:500;
  3613. font-style:normal;
  3614. font-size:14px;
  3615. color:#FFFFFF;
  3616. }
  3617. #u2800 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:526px;
  3621. top:41px;
  3622. width:57px;
  3623. height:20px;
  3624. display:flex;
  3625. transition:none;
  3626. transform-origin:50% 50%;
  3627. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3628. font-weight:500;
  3629. font-style:normal;
  3630. font-size:14px;
  3631. color:#FFFFFF;
  3632. }
  3633. #u2800 .text {
  3634. position:absolute;
  3635. align-self:flex-start;
  3636. padding:0px 0px 0px 0px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u2800_text {
  3641. border-width:0px;
  3642. white-space:nowrap;
  3643. text-transform:none;
  3644. }
  3645. #u2801 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:539px;
  3649. top:0px;
  3650. width:33px;
  3651. height:39px;
  3652. display:flex;
  3653. transition:none;
  3654. color:#FFFFFF;
  3655. }
  3656. #u2801 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:2px 2px 2px 2px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u2801_img {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:0px;
  3667. top:0px;
  3668. width:33px;
  3669. height:39px;
  3670. }
  3671. #u2801_text {
  3672. border-width:0px;
  3673. word-wrap:break-word;
  3674. text-transform:none;
  3675. }
  3676. #u2802 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:0px;
  3680. top:0px;
  3681. width:0px;
  3682. height:0px;
  3683. }
  3684. #u2803_div {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:0px;
  3689. width:68px;
  3690. height:20px;
  3691. background:inherit;
  3692. background-color:rgba(28, 33, 30, 1);
  3693. border-radius:0px;
  3694. filter:drop-shadow(none);
  3695. transition:none;
  3696. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3697. font-weight:500;
  3698. font-style:normal;
  3699. font-size:14px;
  3700. color:#FFFFFF;
  3701. text-align:center;
  3702. }
  3703. #u2803 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:601px;
  3707. top:41px;
  3708. width:68px;
  3709. height:20px;
  3710. display:flex;
  3711. transition:none;
  3712. transform-origin:50% 50%;
  3713. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3714. font-weight:500;
  3715. font-style:normal;
  3716. font-size:14px;
  3717. color:#FFFFFF;
  3718. text-align:center;
  3719. }
  3720. #u2803 .text {
  3721. position:absolute;
  3722. align-self:flex-start;
  3723. padding:0px 0px 0px 0px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u2803_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. }
  3732. #u2804 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:617px;
  3736. top:0px;
  3737. width:33px;
  3738. height:39px;
  3739. display:flex;
  3740. transition:none;
  3741. color:#FFFFFF;
  3742. }
  3743. #u2804 .text {
  3744. position:absolute;
  3745. align-self:center;
  3746. padding:2px 2px 2px 2px;
  3747. box-sizing:border-box;
  3748. width:100%;
  3749. }
  3750. #u2804_img {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:33px;
  3756. height:39px;
  3757. }
  3758. #u2804_text {
  3759. border-width:0px;
  3760. word-wrap:break-word;
  3761. text-transform:none;
  3762. }
  3763. #u2805 {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:0px;
  3769. height:0px;
  3770. }
  3771. #u2806_div {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:68px;
  3777. height:20px;
  3778. background:inherit;
  3779. background-color:rgba(28, 33, 30, 1);
  3780. border-radius:0px;
  3781. filter:drop-shadow(none);
  3782. transition:none;
  3783. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3784. font-weight:500;
  3785. font-style:normal;
  3786. font-size:14px;
  3787. color:#FFFFFF;
  3788. text-align:center;
  3789. }
  3790. #u2806 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:686px;
  3794. top:41px;
  3795. width:68px;
  3796. height:20px;
  3797. display:flex;
  3798. transition:none;
  3799. transform-origin:50% 50%;
  3800. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3801. font-weight:500;
  3802. font-style:normal;
  3803. font-size:14px;
  3804. color:#FFFFFF;
  3805. text-align:center;
  3806. }
  3807. #u2806 .text {
  3808. position:absolute;
  3809. align-self:flex-start;
  3810. padding:0px 0px 0px 0px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u2806_text {
  3815. border-width:0px;
  3816. word-wrap:break-word;
  3817. text-transform:none;
  3818. }
  3819. #u2807 {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:702px;
  3823. top:0px;
  3824. width:33px;
  3825. height:39px;
  3826. display:flex;
  3827. transition:none;
  3828. color:#FFFFFF;
  3829. }
  3830. #u2807 .text {
  3831. position:absolute;
  3832. align-self:center;
  3833. padding:2px 2px 2px 2px;
  3834. box-sizing:border-box;
  3835. width:100%;
  3836. }
  3837. #u2807_img {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:0px;
  3841. top:0px;
  3842. width:33px;
  3843. height:39px;
  3844. }
  3845. #u2807_text {
  3846. border-width:0px;
  3847. word-wrap:break-word;
  3848. text-transform:none;
  3849. }
  3850. #u2808 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:0px;
  3856. height:0px;
  3857. }
  3858. #u2809_div {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:68px;
  3864. height:20px;
  3865. background:inherit;
  3866. background-color:rgba(28, 33, 30, 1);
  3867. border-radius:0px;
  3868. filter:drop-shadow(none);
  3869. transition:none;
  3870. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3871. font-weight:500;
  3872. font-style:normal;
  3873. font-size:14px;
  3874. color:#FFFFFF;
  3875. text-align:center;
  3876. }
  3877. #u2809 {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:772px;
  3881. top:41px;
  3882. width:68px;
  3883. height:20px;
  3884. display:flex;
  3885. transition:none;
  3886. transform-origin:50% 50%;
  3887. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3888. font-weight:500;
  3889. font-style:normal;
  3890. font-size:14px;
  3891. color:#FFFFFF;
  3892. text-align:center;
  3893. }
  3894. #u2809 .text {
  3895. position:absolute;
  3896. align-self:flex-start;
  3897. padding:0px 0px 0px 0px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u2809_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. }
  3906. #u2810 {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:788px;
  3910. top:0px;
  3911. width:33px;
  3912. height:39px;
  3913. display:flex;
  3914. transition:none;
  3915. color:#FFFFFF;
  3916. }
  3917. #u2810 .text {
  3918. position:absolute;
  3919. align-self:center;
  3920. padding:2px 2px 2px 2px;
  3921. box-sizing:border-box;
  3922. width:100%;
  3923. }
  3924. #u2810_img {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:0px;
  3928. top:0px;
  3929. width:33px;
  3930. height:39px;
  3931. }
  3932. #u2810_text {
  3933. border-width:0px;
  3934. word-wrap:break-word;
  3935. text-transform:none;
  3936. }