styles.css 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396
  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. #u3908 {
  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. #u3908 .text {
  30. position:absolute;
  31. align-self:center;
  32. padding:2px 2px 2px 2px;
  33. box-sizing:border-box;
  34. width:100%;
  35. }
  36. #u3908_img {
  37. border-width:0px;
  38. position:absolute;
  39. left:0px;
  40. top:0px;
  41. width:1510px;
  42. height:858px;
  43. }
  44. #u3908_text {
  45. border-width:0px;
  46. word-wrap:break-word;
  47. text-transform:none;
  48. visibility:hidden;
  49. }
  50. #u3909 {
  51. border-width:0px;
  52. position:absolute;
  53. left:335px;
  54. top:783px;
  55. width:840px;
  56. height:61px;
  57. }
  58. #u3910 {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:0px;
  64. height:0px;
  65. }
  66. #u3911 {
  67. border-width:0px;
  68. position:absolute;
  69. left:0px;
  70. top:0px;
  71. width:0px;
  72. height:0px;
  73. }
  74. #u3912_div {
  75. border-width:0px;
  76. position:absolute;
  77. left:0px;
  78. top:0px;
  79. width:57px;
  80. height:20px;
  81. background:inherit;
  82. background-color:rgba(28, 33, 30, 1);
  83. border-radius:0px;
  84. filter:drop-shadow(none);
  85. transition:none;
  86. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  87. font-weight:500;
  88. font-style:normal;
  89. font-size:14px;
  90. color:#FFFFFF;
  91. }
  92. #u3912 {
  93. border-width:0px;
  94. position:absolute;
  95. left:77px;
  96. top:41px;
  97. width:57px;
  98. height:20px;
  99. display:flex;
  100. transition:none;
  101. transform-origin:50% 50%;
  102. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  103. font-weight:500;
  104. font-style:normal;
  105. font-size:14px;
  106. color:#FFFFFF;
  107. }
  108. #u3912 .text {
  109. position:absolute;
  110. align-self:flex-start;
  111. padding:0px 0px 0px 0px;
  112. box-sizing:border-box;
  113. width:100%;
  114. }
  115. #u3912_text {
  116. border-width:0px;
  117. white-space:nowrap;
  118. text-transform:none;
  119. }
  120. #u3913 {
  121. border-width:0px;
  122. position:absolute;
  123. left:89px;
  124. top:0px;
  125. width:33px;
  126. height:39px;
  127. display:flex;
  128. transition:none;
  129. color:#FFFFFF;
  130. }
  131. #u3913 .text {
  132. position:absolute;
  133. align-self:center;
  134. padding:2px 2px 2px 2px;
  135. box-sizing:border-box;
  136. width:100%;
  137. }
  138. #u3913_img {
  139. border-width:0px;
  140. position:absolute;
  141. left:0px;
  142. top:0px;
  143. width:33px;
  144. height:39px;
  145. }
  146. #u3913_text {
  147. border-width:0px;
  148. word-wrap:break-word;
  149. text-transform:none;
  150. }
  151. #u3914 {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:0px;
  157. height:0px;
  158. }
  159. #u3915_div {
  160. border-width:0px;
  161. position:absolute;
  162. left:0px;
  163. top:0px;
  164. width:57px;
  165. height:20px;
  166. background:inherit;
  167. background-color:rgba(28, 33, 30, 1);
  168. border-radius:0px;
  169. filter:drop-shadow(none);
  170. transition:none;
  171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  172. font-weight:500;
  173. font-style:normal;
  174. font-size:14px;
  175. color:#FFFFFF;
  176. }
  177. #u3915 {
  178. border-width:0px;
  179. position:absolute;
  180. left:151px;
  181. top:41px;
  182. width:57px;
  183. height:20px;
  184. display:flex;
  185. transition:none;
  186. transform-origin:50% 50%;
  187. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  188. font-weight:500;
  189. font-style:normal;
  190. font-size:14px;
  191. color:#FFFFFF;
  192. }
  193. #u3915 .text {
  194. position:absolute;
  195. align-self:flex-start;
  196. padding:0px 0px 0px 0px;
  197. box-sizing:border-box;
  198. width:100%;
  199. }
  200. #u3915_text {
  201. border-width:0px;
  202. white-space:nowrap;
  203. text-transform:none;
  204. }
  205. #u3916 {
  206. border-width:0px;
  207. position:absolute;
  208. left:163px;
  209. top:0px;
  210. width:33px;
  211. height:39px;
  212. display:flex;
  213. transition:none;
  214. color:#FFFFFF;
  215. }
  216. #u3916 .text {
  217. position:absolute;
  218. align-self:center;
  219. padding:2px 2px 2px 2px;
  220. box-sizing:border-box;
  221. width:100%;
  222. }
  223. #u3916_img {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:33px;
  229. height:39px;
  230. }
  231. #u3916_text {
  232. border-width:0px;
  233. word-wrap:break-word;
  234. text-transform:none;
  235. }
  236. #u3917 {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:0px;
  242. height:0px;
  243. }
  244. #u3918_div {
  245. border-width:0px;
  246. position:absolute;
  247. left:0px;
  248. top:0px;
  249. width:57px;
  250. height:20px;
  251. background:inherit;
  252. background-color:rgba(28, 33, 30, 1);
  253. border-radius:0px;
  254. filter:drop-shadow(none);
  255. transition:none;
  256. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  257. font-weight:500;
  258. font-style:normal;
  259. font-size:14px;
  260. color:#FFFFFF;
  261. }
  262. #u3918 {
  263. border-width:0px;
  264. position:absolute;
  265. left:0px;
  266. top:41px;
  267. width:57px;
  268. height:20px;
  269. display:flex;
  270. transition:none;
  271. transform-origin:50% 50%;
  272. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  273. font-weight:500;
  274. font-style:normal;
  275. font-size:14px;
  276. color:#FFFFFF;
  277. }
  278. #u3918 .text {
  279. position:absolute;
  280. align-self:flex-start;
  281. padding:0px 0px 0px 0px;
  282. box-sizing:border-box;
  283. width:100%;
  284. }
  285. #u3918_text {
  286. border-width:0px;
  287. white-space:nowrap;
  288. text-transform:none;
  289. }
  290. #u3919 {
  291. border-width:0px;
  292. position:absolute;
  293. left:12px;
  294. top:0px;
  295. width:33px;
  296. height:39px;
  297. display:flex;
  298. transition:none;
  299. color:#FFFFFF;
  300. }
  301. #u3919 .text {
  302. position:absolute;
  303. align-self:center;
  304. padding:2px 2px 2px 2px;
  305. box-sizing:border-box;
  306. width:100%;
  307. }
  308. #u3919_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:33px;
  314. height:39px;
  315. }
  316. #u3919_text {
  317. border-width:0px;
  318. word-wrap:break-word;
  319. text-transform:none;
  320. }
  321. #u3920_div {
  322. border-width:0px;
  323. position:absolute;
  324. left:0px;
  325. top:0px;
  326. width:59px;
  327. height:20px;
  328. background:inherit;
  329. background-color:rgba(28, 33, 30, 1);
  330. border-radius:0px;
  331. filter:drop-shadow(none);
  332. transition:none;
  333. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  334. font-weight:500;
  335. font-style:normal;
  336. font-size:14px;
  337. color:#FFFFFF;
  338. }
  339. #u3920 {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:41px;
  344. width:59px;
  345. height:20px;
  346. display:flex;
  347. transition:none;
  348. transform-origin:50% 50%;
  349. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  350. font-weight:500;
  351. font-style:normal;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u3920 .text {
  356. position:absolute;
  357. align-self:flex-start;
  358. padding:0px 0px 0px 0px;
  359. box-sizing:border-box;
  360. width:100%;
  361. }
  362. #u3920_text {
  363. border-width:0px;
  364. word-wrap:break-word;
  365. text-transform:none;
  366. }
  367. #u3921 {
  368. border-width:0px;
  369. position:absolute;
  370. left:0px;
  371. top:0px;
  372. width:0px;
  373. height:0px;
  374. }
  375. #u3922_div {
  376. border-width:0px;
  377. position:absolute;
  378. left:0px;
  379. top:0px;
  380. width:57px;
  381. height:20px;
  382. background:inherit;
  383. background-color:rgba(28, 33, 30, 1);
  384. border-radius:0px;
  385. filter:drop-shadow(none);
  386. transition:none;
  387. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  388. font-weight:500;
  389. font-style:normal;
  390. font-size:14px;
  391. color:#FFFFFF;
  392. }
  393. #u3922 {
  394. border-width:0px;
  395. position:absolute;
  396. left:226px;
  397. top:41px;
  398. width:57px;
  399. height:20px;
  400. display:flex;
  401. transition:none;
  402. transform-origin:50% 50%;
  403. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  404. font-weight:500;
  405. font-style:normal;
  406. font-size:14px;
  407. color:#FFFFFF;
  408. }
  409. #u3922 .text {
  410. position:absolute;
  411. align-self:flex-start;
  412. padding:0px 0px 0px 0px;
  413. box-sizing:border-box;
  414. width:100%;
  415. }
  416. #u3922_text {
  417. border-width:0px;
  418. white-space:nowrap;
  419. text-transform:none;
  420. }
  421. #u3923 {
  422. border-width:0px;
  423. position:absolute;
  424. left:238px;
  425. top:0px;
  426. width:33px;
  427. height:39px;
  428. display:flex;
  429. transition:none;
  430. color:#FFFFFF;
  431. }
  432. #u3923 .text {
  433. position:absolute;
  434. align-self:center;
  435. padding:2px 2px 2px 2px;
  436. box-sizing:border-box;
  437. width:100%;
  438. }
  439. #u3923_img {
  440. border-width:0px;
  441. position:absolute;
  442. left:0px;
  443. top:0px;
  444. width:33px;
  445. height:39px;
  446. }
  447. #u3923_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u3924 {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:0px;
  458. height:0px;
  459. }
  460. #u3925_div {
  461. border-width:0px;
  462. position:absolute;
  463. left:0px;
  464. top:0px;
  465. width:57px;
  466. height:20px;
  467. background:inherit;
  468. background-color:rgba(28, 33, 30, 1);
  469. border-radius:0px;
  470. filter:drop-shadow(none);
  471. transition:none;
  472. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  473. font-weight:500;
  474. font-style:normal;
  475. font-size:14px;
  476. color:#FFFFFF;
  477. }
  478. #u3925 {
  479. border-width:0px;
  480. position:absolute;
  481. left:301px;
  482. top:41px;
  483. width:57px;
  484. height:20px;
  485. display:flex;
  486. transition:none;
  487. transform-origin:50% 50%;
  488. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  489. font-weight:500;
  490. font-style:normal;
  491. font-size:14px;
  492. color:#FFFFFF;
  493. }
  494. #u3925 .text {
  495. position:absolute;
  496. align-self:flex-start;
  497. padding:0px 0px 0px 0px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u3925_text {
  502. border-width:0px;
  503. white-space:nowrap;
  504. text-transform:none;
  505. }
  506. #u3926 {
  507. border-width:0px;
  508. position:absolute;
  509. left:313px;
  510. top:0px;
  511. width:33px;
  512. height:39px;
  513. display:flex;
  514. transition:none;
  515. color:#FFFFFF;
  516. }
  517. #u3926 .text {
  518. position:absolute;
  519. align-self:center;
  520. padding:2px 2px 2px 2px;
  521. box-sizing:border-box;
  522. width:100%;
  523. }
  524. #u3926_img {
  525. border-width:0px;
  526. position:absolute;
  527. left:0px;
  528. top:0px;
  529. width:33px;
  530. height:39px;
  531. }
  532. #u3926_text {
  533. border-width:0px;
  534. word-wrap:break-word;
  535. text-transform:none;
  536. }
  537. #u3927 {
  538. border-width:0px;
  539. position:absolute;
  540. left:0px;
  541. top:0px;
  542. width:0px;
  543. height:0px;
  544. }
  545. #u3928_div {
  546. border-width:0px;
  547. position:absolute;
  548. left:0px;
  549. top:0px;
  550. width:56px;
  551. height:20px;
  552. background:inherit;
  553. background-color:rgba(28, 33, 30, 1);
  554. border-radius:0px;
  555. filter:drop-shadow(none);
  556. transition:none;
  557. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  558. font-weight:500;
  559. font-style:normal;
  560. font-size:14px;
  561. color:#FFFFFF;
  562. }
  563. #u3928 {
  564. border-width:0px;
  565. position:absolute;
  566. left:452px;
  567. top:41px;
  568. width:56px;
  569. height:20px;
  570. display:flex;
  571. transition:none;
  572. transform-origin:50% 50%;
  573. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  574. font-weight:500;
  575. font-style:normal;
  576. font-size:14px;
  577. color:#FFFFFF;
  578. }
  579. #u3928 .text {
  580. position:absolute;
  581. align-self:flex-start;
  582. padding:0px 0px 0px 0px;
  583. box-sizing:border-box;
  584. width:100%;
  585. }
  586. #u3928_text {
  587. border-width:0px;
  588. white-space:nowrap;
  589. text-transform:none;
  590. }
  591. #u3929 {
  592. border-width:0px;
  593. position:absolute;
  594. left:464px;
  595. top:0px;
  596. width:33px;
  597. height:39px;
  598. display:flex;
  599. transition:none;
  600. color:#FFFFFF;
  601. }
  602. #u3929 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u3929_img {
  610. border-width:0px;
  611. position:absolute;
  612. left:0px;
  613. top:0px;
  614. width:33px;
  615. height:39px;
  616. }
  617. #u3929_text {
  618. border-width:0px;
  619. word-wrap:break-word;
  620. text-transform:none;
  621. }
  622. #u3930 {
  623. border-width:0px;
  624. position:absolute;
  625. left:0px;
  626. top:0px;
  627. width:0px;
  628. height:0px;
  629. }
  630. #u3931_div {
  631. border-width:0px;
  632. position:absolute;
  633. left:0px;
  634. top:0px;
  635. width:59px;
  636. height:20px;
  637. background:inherit;
  638. background-color:rgba(28, 33, 30, 1);
  639. border-radius:0px;
  640. filter:drop-shadow(none);
  641. transition:none;
  642. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  643. font-weight:500;
  644. font-style:normal;
  645. font-size:14px;
  646. color:#FFFFFF;
  647. }
  648. #u3931 {
  649. border-width:0px;
  650. position:absolute;
  651. left:376px;
  652. top:41px;
  653. width:59px;
  654. height:20px;
  655. display:flex;
  656. transition:none;
  657. transform-origin:50% 50%;
  658. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  659. font-weight:500;
  660. font-style:normal;
  661. font-size:14px;
  662. color:#FFFFFF;
  663. }
  664. #u3931 .text {
  665. position:absolute;
  666. align-self:flex-start;
  667. padding:0px 0px 0px 0px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u3931_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. }
  676. #u3932 {
  677. border-width:0px;
  678. position:absolute;
  679. left:387px;
  680. top:0px;
  681. width:33px;
  682. height:39px;
  683. display:flex;
  684. transition:none;
  685. color:#FFFFFF;
  686. }
  687. #u3932 .text {
  688. position:absolute;
  689. align-self:center;
  690. padding:2px 2px 2px 2px;
  691. box-sizing:border-box;
  692. width:100%;
  693. }
  694. #u3932_img {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:33px;
  700. height:39px;
  701. }
  702. #u3932_text {
  703. border-width:0px;
  704. word-wrap:break-word;
  705. text-transform:none;
  706. }
  707. #u3933 {
  708. border-width:0px;
  709. position:absolute;
  710. left:0px;
  711. top:0px;
  712. width:0px;
  713. height:0px;
  714. }
  715. #u3934_div {
  716. border-width:0px;
  717. position:absolute;
  718. left:0px;
  719. top:0px;
  720. width:57px;
  721. height:20px;
  722. background:inherit;
  723. background-color:rgba(28, 33, 30, 1);
  724. border-radius:0px;
  725. filter:drop-shadow(none);
  726. transition:none;
  727. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  728. font-weight:500;
  729. font-style:normal;
  730. font-size:14px;
  731. color:#FFFFFF;
  732. }
  733. #u3934 {
  734. border-width:0px;
  735. position:absolute;
  736. left:526px;
  737. top:41px;
  738. width:57px;
  739. height:20px;
  740. display:flex;
  741. transition:none;
  742. transform-origin:50% 50%;
  743. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  744. font-weight:500;
  745. font-style:normal;
  746. font-size:14px;
  747. color:#FFFFFF;
  748. }
  749. #u3934 .text {
  750. position:absolute;
  751. align-self:flex-start;
  752. padding:0px 0px 0px 0px;
  753. box-sizing:border-box;
  754. width:100%;
  755. }
  756. #u3934_text {
  757. border-width:0px;
  758. white-space:nowrap;
  759. text-transform:none;
  760. }
  761. #u3935 {
  762. border-width:0px;
  763. position:absolute;
  764. left:539px;
  765. top:0px;
  766. width:33px;
  767. height:39px;
  768. display:flex;
  769. transition:none;
  770. color:#FFFFFF;
  771. }
  772. #u3935 .text {
  773. position:absolute;
  774. align-self:center;
  775. padding:2px 2px 2px 2px;
  776. box-sizing:border-box;
  777. width:100%;
  778. }
  779. #u3935_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:33px;
  785. height:39px;
  786. }
  787. #u3935_text {
  788. border-width:0px;
  789. word-wrap:break-word;
  790. text-transform:none;
  791. }
  792. #u3936 {
  793. border-width:0px;
  794. position:absolute;
  795. left:0px;
  796. top:0px;
  797. width:0px;
  798. height:0px;
  799. }
  800. #u3937_div {
  801. border-width:0px;
  802. position:absolute;
  803. left:0px;
  804. top:0px;
  805. width:68px;
  806. height:20px;
  807. background:inherit;
  808. background-color:rgba(28, 33, 30, 1);
  809. border-radius:0px;
  810. filter:drop-shadow(none);
  811. transition:none;
  812. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  813. font-weight:500;
  814. font-style:normal;
  815. font-size:14px;
  816. color:#FFFFFF;
  817. text-align:center;
  818. }
  819. #u3937 {
  820. border-width:0px;
  821. position:absolute;
  822. left:601px;
  823. top:41px;
  824. width:68px;
  825. height:20px;
  826. display:flex;
  827. transition:none;
  828. transform-origin:50% 50%;
  829. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  830. font-weight:500;
  831. font-style:normal;
  832. font-size:14px;
  833. color:#FFFFFF;
  834. text-align:center;
  835. }
  836. #u3937 .text {
  837. position:absolute;
  838. align-self:flex-start;
  839. padding:0px 0px 0px 0px;
  840. box-sizing:border-box;
  841. width:100%;
  842. }
  843. #u3937_text {
  844. border-width:0px;
  845. word-wrap:break-word;
  846. text-transform:none;
  847. }
  848. #u3938 {
  849. border-width:0px;
  850. position:absolute;
  851. left:617px;
  852. top:0px;
  853. width:33px;
  854. height:39px;
  855. display:flex;
  856. transition:none;
  857. color:#FFFFFF;
  858. }
  859. #u3938 .text {
  860. position:absolute;
  861. align-self:center;
  862. padding:2px 2px 2px 2px;
  863. box-sizing:border-box;
  864. width:100%;
  865. }
  866. #u3938_img {
  867. border-width:0px;
  868. position:absolute;
  869. left:0px;
  870. top:0px;
  871. width:33px;
  872. height:39px;
  873. }
  874. #u3938_text {
  875. border-width:0px;
  876. word-wrap:break-word;
  877. text-transform:none;
  878. }
  879. #u3939 {
  880. border-width:0px;
  881. position:absolute;
  882. left:0px;
  883. top:0px;
  884. width:0px;
  885. height:0px;
  886. }
  887. #u3940_div {
  888. border-width:0px;
  889. position:absolute;
  890. left:0px;
  891. top:0px;
  892. width:68px;
  893. height:20px;
  894. background:inherit;
  895. background-color:rgba(28, 33, 30, 1);
  896. border-radius:0px;
  897. filter:drop-shadow(none);
  898. transition:none;
  899. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  900. font-weight:500;
  901. font-style:normal;
  902. font-size:14px;
  903. color:#FFFFFF;
  904. text-align:center;
  905. }
  906. #u3940 {
  907. border-width:0px;
  908. position:absolute;
  909. left:686px;
  910. top:41px;
  911. width:68px;
  912. height:20px;
  913. display:flex;
  914. transition:none;
  915. transform-origin:50% 50%;
  916. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  917. font-weight:500;
  918. font-style:normal;
  919. font-size:14px;
  920. color:#FFFFFF;
  921. text-align:center;
  922. }
  923. #u3940 .text {
  924. position:absolute;
  925. align-self:flex-start;
  926. padding:0px 0px 0px 0px;
  927. box-sizing:border-box;
  928. width:100%;
  929. }
  930. #u3940_text {
  931. border-width:0px;
  932. word-wrap:break-word;
  933. text-transform:none;
  934. }
  935. #u3941 {
  936. border-width:0px;
  937. position:absolute;
  938. left:702px;
  939. top:0px;
  940. width:33px;
  941. height:39px;
  942. display:flex;
  943. transition:none;
  944. color:#FFFFFF;
  945. }
  946. #u3941 .text {
  947. position:absolute;
  948. align-self:center;
  949. padding:2px 2px 2px 2px;
  950. box-sizing:border-box;
  951. width:100%;
  952. }
  953. #u3941_img {
  954. border-width:0px;
  955. position:absolute;
  956. left:0px;
  957. top:0px;
  958. width:33px;
  959. height:39px;
  960. }
  961. #u3941_text {
  962. border-width:0px;
  963. word-wrap:break-word;
  964. text-transform:none;
  965. }
  966. #u3942 {
  967. border-width:0px;
  968. position:absolute;
  969. left:0px;
  970. top:0px;
  971. width:0px;
  972. height:0px;
  973. }
  974. #u3943_div {
  975. border-width:0px;
  976. position:absolute;
  977. left:0px;
  978. top:0px;
  979. width:68px;
  980. height:20px;
  981. background:inherit;
  982. background-color:rgba(28, 33, 30, 1);
  983. border-radius:0px;
  984. filter:drop-shadow(none);
  985. transition:none;
  986. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  987. font-weight:500;
  988. font-style:normal;
  989. font-size:14px;
  990. color:#FFFFFF;
  991. text-align:center;
  992. }
  993. #u3943 {
  994. border-width:0px;
  995. position:absolute;
  996. left:772px;
  997. top:41px;
  998. width:68px;
  999. height:20px;
  1000. display:flex;
  1001. transition:none;
  1002. transform-origin:50% 50%;
  1003. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1004. font-weight:500;
  1005. font-style:normal;
  1006. font-size:14px;
  1007. color:#FFFFFF;
  1008. text-align:center;
  1009. }
  1010. #u3943 .text {
  1011. position:absolute;
  1012. align-self:flex-start;
  1013. padding:0px 0px 0px 0px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u3943_text {
  1018. border-width:0px;
  1019. word-wrap:break-word;
  1020. text-transform:none;
  1021. }
  1022. #u3944 {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:788px;
  1026. top:0px;
  1027. width:33px;
  1028. height:39px;
  1029. display:flex;
  1030. transition:none;
  1031. color:#FFFFFF;
  1032. }
  1033. #u3944 .text {
  1034. position:absolute;
  1035. align-self:center;
  1036. padding:2px 2px 2px 2px;
  1037. box-sizing:border-box;
  1038. width:100%;
  1039. }
  1040. #u3944_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:33px;
  1046. height:39px;
  1047. }
  1048. #u3944_text {
  1049. border-width:0px;
  1050. word-wrap:break-word;
  1051. text-transform:none;
  1052. }
  1053. #u3945 {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:458px;
  1057. top:32px;
  1058. width:558px;
  1059. height:30px;
  1060. }
  1061. #u3945_state0 {
  1062. border-width:0px;
  1063. position:absolute;
  1064. left:0px;
  1065. top:0px;
  1066. width:558px;
  1067. height:30px;
  1068. -ms-overflow-x:hidden;
  1069. overflow-x:hidden;
  1070. -ms-overflow-y:hidden;
  1071. overflow-y:hidden;
  1072. background-image:none;
  1073. border-radius:0px;
  1074. -moz-box-shadow:none;
  1075. -webkit-box-shadow:none;
  1076. box-shadow:none;
  1077. }
  1078. #u3945_state0_content {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:1px;
  1084. height:1px;
  1085. }
  1086. #u3946_div {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:0px;
  1090. top:0px;
  1091. width:660px;
  1092. height:30px;
  1093. background:inherit;
  1094. background-color:rgba(255, 255, 255, 0);
  1095. border-left:0px;
  1096. border-top:0px;
  1097. border-right:0px;
  1098. border-radius:0px;
  1099. border-bottom-right-radius:0px;
  1100. border-bottom-left-radius:0px;
  1101. filter:drop-shadow(none);
  1102. transition:none;
  1103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1104. font-style:normal;
  1105. font-size:12px;
  1106. line-height:30px;
  1107. }
  1108. #u3946 {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:660px;
  1114. height:30px;
  1115. display:flex;
  1116. transition:none;
  1117. transform-origin:50% 50%;
  1118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1119. font-style:normal;
  1120. font-size:12px;
  1121. line-height:30px;
  1122. }
  1123. #u3946 .text {
  1124. position:absolute;
  1125. align-self:flex-start;
  1126. padding:0px 0px 0px 0px;
  1127. box-sizing:border-box;
  1128. width:100%;
  1129. }
  1130. #u3946_text {
  1131. border-width:0px;
  1132. white-space:nowrap;
  1133. text-transform:none;
  1134. }
  1135. #u3947 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:0px;
  1141. height:0px;
  1142. }
  1143. #u3948_div {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:240px;
  1149. height:40px;
  1150. background:inherit;
  1151. background-color:rgba(245, 154, 35, 0.2);
  1152. box-sizing:border-box;
  1153. border-width:2px;
  1154. border-style:solid;
  1155. border-color:rgba(245, 154, 35, 1);
  1156. border-left:0px;
  1157. border-top:0px;
  1158. border-right:0px;
  1159. border-radius:0px;
  1160. border-bottom-right-radius:0px;
  1161. border-bottom-left-radius:0px;
  1162. filter:drop-shadow(none);
  1163. transition:none;
  1164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1165. font-weight:400;
  1166. font-style:normal;
  1167. font-size:18px;
  1168. color:#FFFFFF;
  1169. text-align:left;
  1170. }
  1171. #u3948 {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:31px;
  1175. top:137px;
  1176. width:240px;
  1177. height:40px;
  1178. display:flex;
  1179. transition:none;
  1180. transform-origin:50% 50%;
  1181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1182. font-weight:400;
  1183. font-style:normal;
  1184. font-size:18px;
  1185. color:#FFFFFF;
  1186. text-align:left;
  1187. }
  1188. #u3948 .text {
  1189. position:absolute;
  1190. align-self:center;
  1191. padding:2px 2px 2px 10px;
  1192. box-sizing:border-box;
  1193. width:100%;
  1194. }
  1195. #u3948_text {
  1196. border-width:0px;
  1197. word-wrap:break-word;
  1198. text-transform:none;
  1199. }
  1200. #u3949 {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:45px;
  1204. top:187px;
  1205. width:96px;
  1206. height:96px;
  1207. display:flex;
  1208. transition:none;
  1209. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1210. font-style:normal;
  1211. color:#FFFFFF;
  1212. }
  1213. #u3949 .text {
  1214. position:absolute;
  1215. align-self:center;
  1216. padding:2px 2px 2px 2px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u3949_img {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:0px;
  1224. top:0px;
  1225. width:96px;
  1226. height:96px;
  1227. }
  1228. #u3949_text {
  1229. border-width:0px;
  1230. word-wrap:break-word;
  1231. text-transform:none;
  1232. }
  1233. #u3950_div {
  1234. border-width:0px;
  1235. position:absolute;
  1236. left:0px;
  1237. top:0px;
  1238. width:87px;
  1239. height:94px;
  1240. background:inherit;
  1241. background-color:rgba(255, 255, 255, 0);
  1242. border-radius:0px;
  1243. filter:drop-shadow(none);
  1244. transition:none;
  1245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1246. font-weight:400;
  1247. font-style:normal;
  1248. font-size:12px;
  1249. color:rgba(255, 255, 255, 0.6980392156862745);
  1250. text-align:left;
  1251. line-height:30px;
  1252. }
  1253. #u3950 {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:161px;
  1257. top:187px;
  1258. width:87px;
  1259. height:94px;
  1260. display:flex;
  1261. transition:none;
  1262. transform-origin:50% 50%;
  1263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1264. font-weight:400;
  1265. font-style:normal;
  1266. font-size:12px;
  1267. color:rgba(255, 255, 255, 0.6980392156862745);
  1268. text-align:left;
  1269. line-height:30px;
  1270. }
  1271. #u3950 .text {
  1272. position:absolute;
  1273. align-self:center;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u3950_text {
  1279. border-width:0px;
  1280. white-space:nowrap;
  1281. text-transform:none;
  1282. }
  1283. #u3951 {
  1284. border-width:0px;
  1285. position:absolute;
  1286. left:0px;
  1287. top:0px;
  1288. width:0px;
  1289. height:0px;
  1290. }
  1291. #u3952 {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:490px;
  1295. top:277px;
  1296. width:20px;
  1297. height:30px;
  1298. display:flex;
  1299. transition:none;
  1300. }
  1301. #u3952 .text {
  1302. position:absolute;
  1303. align-self:center;
  1304. padding:2px 2px 2px 2px;
  1305. box-sizing:border-box;
  1306. width:100%;
  1307. }
  1308. #u3952_img {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:-5px;
  1312. top:-5px;
  1313. width:30px;
  1314. height:40px;
  1315. }
  1316. #u3952_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u3953_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:57px;
  1328. height:13px;
  1329. background:inherit;
  1330. background-color:rgba(245, 154, 35, 1);
  1331. border-radius:4px;
  1332. filter:drop-shadow(none);
  1333. transition:none;
  1334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1335. font-weight:400;
  1336. font-style:normal;
  1337. font-size:7px;
  1338. color:#FFFFFF;
  1339. }
  1340. #u3953 {
  1341. border-width:0px;
  1342. position:absolute;
  1343. left:505px;
  1344. top:266px;
  1345. width:57px;
  1346. height:13px;
  1347. display:flex;
  1348. transition:none;
  1349. transform-origin:50% 50%;
  1350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1351. font-weight:400;
  1352. font-style:normal;
  1353. font-size:7px;
  1354. color:#FFFFFF;
  1355. }
  1356. #u3953 .text {
  1357. position:absolute;
  1358. align-self:center;
  1359. padding:2px 2px 2px 2px;
  1360. box-sizing:border-box;
  1361. width:100%;
  1362. }
  1363. #u3953_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. }
  1368. #u3954 {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:1031px;
  1372. top:377px;
  1373. width:20px;
  1374. height:30px;
  1375. display:flex;
  1376. transition:none;
  1377. }
  1378. #u3954 .text {
  1379. position:absolute;
  1380. align-self:center;
  1381. padding:2px 2px 2px 2px;
  1382. box-sizing:border-box;
  1383. width:100%;
  1384. }
  1385. #u3954_img {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:-5px;
  1389. top:-5px;
  1390. width:30px;
  1391. height:40px;
  1392. }
  1393. #u3954_text {
  1394. border-width:0px;
  1395. word-wrap:break-word;
  1396. text-transform:none;
  1397. visibility:hidden;
  1398. }
  1399. #u3955_div {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:0px;
  1403. top:0px;
  1404. width:57px;
  1405. height:13px;
  1406. background:inherit;
  1407. background-color:rgba(245, 154, 35, 1);
  1408. border-radius:4px;
  1409. filter:drop-shadow(none);
  1410. transition:none;
  1411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1412. font-weight:400;
  1413. font-style:normal;
  1414. font-size:7px;
  1415. color:#FFFFFF;
  1416. }
  1417. #u3955 {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:1046px;
  1421. top:366px;
  1422. width:57px;
  1423. height:13px;
  1424. display:flex;
  1425. transition:none;
  1426. transform-origin:50% 50%;
  1427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1428. font-weight:400;
  1429. font-style:normal;
  1430. font-size:7px;
  1431. color:#FFFFFF;
  1432. }
  1433. #u3955 .text {
  1434. position:absolute;
  1435. align-self:center;
  1436. padding:2px 2px 2px 2px;
  1437. box-sizing:border-box;
  1438. width:100%;
  1439. }
  1440. #u3955_text {
  1441. border-width:0px;
  1442. word-wrap:break-word;
  1443. text-transform:none;
  1444. }
  1445. #u3956 {
  1446. border-width:0px;
  1447. position:absolute;
  1448. left:898px;
  1449. top:288px;
  1450. width:20px;
  1451. height:30px;
  1452. display:flex;
  1453. transition:none;
  1454. }
  1455. #u3956 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u3956_img {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:-5px;
  1466. top:-5px;
  1467. width:30px;
  1468. height:40px;
  1469. }
  1470. #u3956_text {
  1471. border-width:0px;
  1472. word-wrap:break-word;
  1473. text-transform:none;
  1474. visibility:hidden;
  1475. }
  1476. #u3957_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:57px;
  1482. height:13px;
  1483. background:inherit;
  1484. background-color:rgba(245, 154, 35, 1);
  1485. border-radius:4px;
  1486. filter:drop-shadow(none);
  1487. transition:none;
  1488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1489. font-weight:400;
  1490. font-style:normal;
  1491. font-size:7px;
  1492. color:#FFFFFF;
  1493. }
  1494. #u3957 {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:913px;
  1498. top:277px;
  1499. width:57px;
  1500. height:13px;
  1501. display:flex;
  1502. transition:none;
  1503. transform-origin:50% 50%;
  1504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1505. font-weight:400;
  1506. font-style:normal;
  1507. font-size:7px;
  1508. color:#FFFFFF;
  1509. }
  1510. #u3957 .text {
  1511. position:absolute;
  1512. align-self:center;
  1513. padding:2px 2px 2px 2px;
  1514. box-sizing:border-box;
  1515. width:100%;
  1516. }
  1517. #u3957_text {
  1518. border-width:0px;
  1519. word-wrap:break-word;
  1520. text-transform:none;
  1521. }
  1522. #u3958_div {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:0px;
  1526. top:0px;
  1527. width:240px;
  1528. height:40px;
  1529. background:inherit;
  1530. background-color:rgba(245, 154, 35, 0.2);
  1531. box-sizing:border-box;
  1532. border-width:2px;
  1533. border-style:solid;
  1534. border-color:rgba(245, 154, 35, 1);
  1535. border-left:0px;
  1536. border-top:0px;
  1537. border-right:0px;
  1538. border-radius:0px;
  1539. border-bottom-right-radius:0px;
  1540. border-bottom-left-radius:0px;
  1541. filter:drop-shadow(none);
  1542. transition:none;
  1543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1544. font-weight:400;
  1545. font-style:normal;
  1546. font-size:18px;
  1547. color:#FFFFFF;
  1548. text-align:left;
  1549. }
  1550. #u3958 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:31px;
  1554. top:346px;
  1555. width:240px;
  1556. height:40px;
  1557. display:flex;
  1558. transition:none;
  1559. transform-origin:50% 50%;
  1560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1561. font-weight:400;
  1562. font-style:normal;
  1563. font-size:18px;
  1564. color:#FFFFFF;
  1565. text-align:left;
  1566. }
  1567. #u3958 .text {
  1568. position:absolute;
  1569. align-self:center;
  1570. padding:2px 2px 2px 10px;
  1571. box-sizing:border-box;
  1572. width:100%;
  1573. }
  1574. #u3958_text {
  1575. border-width:0px;
  1576. word-wrap:break-word;
  1577. text-transform:none;
  1578. }
  1579. #u3959_div {
  1580. border-width:0px;
  1581. position:absolute;
  1582. left:0px;
  1583. top:0px;
  1584. width:115px;
  1585. height:34px;
  1586. background:inherit;
  1587. background-color:rgba(255, 255, 255, 0);
  1588. border-radius:0px;
  1589. filter:drop-shadow(none);
  1590. transition:none;
  1591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1592. font-weight:400;
  1593. font-style:normal;
  1594. font-size:12px;
  1595. color:rgba(255, 255, 255, 0.6980392156862745);
  1596. text-align:left;
  1597. line-height:30px;
  1598. }
  1599. #u3959 {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:0px;
  1603. top:292px;
  1604. width:115px;
  1605. height:34px;
  1606. display:flex;
  1607. transition:none;
  1608. transform-origin:50% 50%;
  1609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1610. font-weight:400;
  1611. font-style:normal;
  1612. font-size:12px;
  1613. color:rgba(255, 255, 255, 0.6980392156862745);
  1614. text-align:left;
  1615. line-height:30px;
  1616. }
  1617. #u3959 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u3959_text {
  1625. border-width:0px;
  1626. white-space:nowrap;
  1627. text-transform:none;
  1628. }
  1629. #u3960_div {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:103px;
  1635. height:34px;
  1636. background:inherit;
  1637. background-color:rgba(255, 255, 255, 0);
  1638. border-radius:0px;
  1639. filter:drop-shadow(none);
  1640. transition:none;
  1641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1642. font-weight:400;
  1643. font-style:normal;
  1644. font-size:12px;
  1645. color:rgba(255, 255, 255, 0.6980392156862745);
  1646. text-align:left;
  1647. line-height:30px;
  1648. }
  1649. #u3960 {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:95px;
  1653. top:292px;
  1654. width:103px;
  1655. height:34px;
  1656. display:flex;
  1657. transition:none;
  1658. transform-origin:50% 50%;
  1659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1660. font-weight:400;
  1661. font-style:normal;
  1662. font-size:12px;
  1663. color:rgba(255, 255, 255, 0.6980392156862745);
  1664. text-align:left;
  1665. line-height:30px;
  1666. }
  1667. #u3960 .text {
  1668. position:absolute;
  1669. align-self:center;
  1670. padding:2px 2px 2px 2px;
  1671. box-sizing:border-box;
  1672. width:100%;
  1673. }
  1674. #u3960_text {
  1675. border-width:0px;
  1676. white-space:nowrap;
  1677. text-transform:none;
  1678. }
  1679. #u3961_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:95px;
  1685. height:34px;
  1686. background:inherit;
  1687. background-color:rgba(255, 255, 255, 0);
  1688. border-radius:0px;
  1689. filter:drop-shadow(none);
  1690. transition:none;
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:12px;
  1695. color:rgba(255, 255, 255, 0.6980392156862745);
  1696. text-align:left;
  1697. line-height:30px;
  1698. }
  1699. #u3961 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:178px;
  1703. top:292px;
  1704. width:95px;
  1705. height:34px;
  1706. display:flex;
  1707. transition:none;
  1708. transform-origin:50% 50%;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:12px;
  1713. color:rgba(255, 255, 255, 0.6980392156862745);
  1714. text-align:left;
  1715. line-height:30px;
  1716. }
  1717. #u3961 .text {
  1718. position:absolute;
  1719. align-self:center;
  1720. padding:2px 2px 2px 2px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u3961_text {
  1725. border-width:0px;
  1726. white-space:nowrap;
  1727. text-transform:none;
  1728. }
  1729. #u3962 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:0px;
  1735. height:0px;
  1736. }
  1737. #u3963_div {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:240px;
  1743. height:20px;
  1744. background:inherit;
  1745. background-color:rgba(255, 255, 255, 0.15294117647058825);
  1746. border-radius:0px;
  1747. filter:drop-shadow(none);
  1748. transition:none;
  1749. font-size:12px;
  1750. }
  1751. #u3963 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:33px;
  1755. top:423px;
  1756. width:240px;
  1757. height:20px;
  1758. display:flex;
  1759. transition:none;
  1760. transform-origin:50% 50%;
  1761. font-size:12px;
  1762. }
  1763. #u3963 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:2px 2px 2px 2px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u3963_text {
  1771. border-width:0px;
  1772. word-wrap:break-word;
  1773. text-transform:none;
  1774. visibility:hidden;
  1775. }
  1776. #u3964_div {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:53px;
  1782. height:21px;
  1783. background:inherit;
  1784. background-color:rgba(255, 255, 255, 0);
  1785. border-radius:0px;
  1786. filter:drop-shadow(none);
  1787. transition:none;
  1788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1789. font-weight:400;
  1790. font-style:normal;
  1791. font-size:12px;
  1792. color:rgba(242, 242, 242, 0.6980392156862745);
  1793. text-align:left;
  1794. }
  1795. #u3964 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:43px;
  1799. top:423px;
  1800. width:53px;
  1801. height:21px;
  1802. display:flex;
  1803. transition:none;
  1804. transform-origin:50% 50%;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:12px;
  1809. color:rgba(242, 242, 242, 0.6980392156862745);
  1810. text-align:left;
  1811. }
  1812. #u3964 .text {
  1813. position:absolute;
  1814. align-self:center;
  1815. padding:2px 2px 2px 2px;
  1816. box-sizing:border-box;
  1817. width:100%;
  1818. }
  1819. #u3964_text {
  1820. border-width:0px;
  1821. white-space:nowrap;
  1822. text-transform:none;
  1823. }
  1824. #u3965_div {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:29px;
  1830. height:21px;
  1831. background:inherit;
  1832. background-color:rgba(255, 255, 255, 0);
  1833. border-radius:0px;
  1834. filter:drop-shadow(none);
  1835. transition:none;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:12px;
  1840. color:rgba(242, 242, 242, 0.6980392156862745);
  1841. text-align:left;
  1842. }
  1843. #u3965 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:223px;
  1847. top:423px;
  1848. width:29px;
  1849. height:21px;
  1850. display:flex;
  1851. transition:none;
  1852. transform-origin:50% 50%;
  1853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1854. font-weight:400;
  1855. font-style:normal;
  1856. font-size:12px;
  1857. color:rgba(242, 242, 242, 0.6980392156862745);
  1858. text-align:left;
  1859. }
  1860. #u3965 .text {
  1861. position:absolute;
  1862. align-self:center;
  1863. padding:2px 2px 2px 2px;
  1864. box-sizing:border-box;
  1865. width:100%;
  1866. }
  1867. #u3965_text {
  1868. border-width:0px;
  1869. white-space:nowrap;
  1870. text-transform:none;
  1871. }
  1872. #u3966_div {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:53px;
  1878. height:21px;
  1879. background:inherit;
  1880. background-color:rgba(255, 255, 255, 0);
  1881. border-radius:0px;
  1882. filter:drop-shadow(none);
  1883. transition:none;
  1884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:12px;
  1888. color:rgba(242, 242, 242, 0.6980392156862745);
  1889. text-align:left;
  1890. }
  1891. #u3966 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:118px;
  1895. top:423px;
  1896. width:53px;
  1897. height:21px;
  1898. display:flex;
  1899. transition:none;
  1900. transform-origin:50% 50%;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:12px;
  1905. color:rgba(242, 242, 242, 0.6980392156862745);
  1906. text-align:left;
  1907. }
  1908. #u3966 .text {
  1909. position:absolute;
  1910. align-self:center;
  1911. padding:2px 2px 2px 2px;
  1912. box-sizing:border-box;
  1913. width:100%;
  1914. }
  1915. #u3966_text {
  1916. border-width:0px;
  1917. white-space:nowrap;
  1918. text-transform:none;
  1919. }
  1920. #u3967 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:0px;
  1926. height:0px;
  1927. }
  1928. #u3968_div {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:240px;
  1934. height:23px;
  1935. background:inherit;
  1936. background-color:rgba(255, 255, 255, 0);
  1937. border-radius:0px;
  1938. filter:drop-shadow(none);
  1939. transition:none;
  1940. font-size:12px;
  1941. }
  1942. #u3968 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:33px;
  1946. top:449px;
  1947. width:240px;
  1948. height:23px;
  1949. display:flex;
  1950. transition:none;
  1951. transform-origin:50% 50%;
  1952. font-size:12px;
  1953. }
  1954. #u3968 .text {
  1955. position:absolute;
  1956. align-self:center;
  1957. padding:2px 2px 2px 2px;
  1958. box-sizing:border-box;
  1959. width:100%;
  1960. }
  1961. #u3968_text {
  1962. border-width:0px;
  1963. word-wrap:break-word;
  1964. text-transform:none;
  1965. visibility:hidden;
  1966. }
  1967. #u3969_div {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:0px;
  1971. top:0px;
  1972. width:58px;
  1973. height:21px;
  1974. background:inherit;
  1975. background-color:rgba(255, 255, 255, 0);
  1976. border-radius:0px;
  1977. filter:drop-shadow(none);
  1978. transition:none;
  1979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1980. font-weight:400;
  1981. font-style:normal;
  1982. font-size:12px;
  1983. color:#F2F2F2;
  1984. text-align:left;
  1985. }
  1986. #u3969 {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:43px;
  1990. top:450px;
  1991. width:58px;
  1992. height:21px;
  1993. display:flex;
  1994. transition:none;
  1995. transform-origin:50% 50%;
  1996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1997. font-weight:400;
  1998. font-style:normal;
  1999. font-size:12px;
  2000. color:#F2F2F2;
  2001. text-align:left;
  2002. }
  2003. #u3969 .text {
  2004. position:absolute;
  2005. align-self:center;
  2006. padding:2px 2px 2px 2px;
  2007. box-sizing:border-box;
  2008. width:100%;
  2009. }
  2010. #u3969_text {
  2011. border-width:0px;
  2012. white-space:nowrap;
  2013. text-transform:none;
  2014. }
  2015. #u3970_div {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:0px;
  2019. top:0px;
  2020. width:58px;
  2021. height:21px;
  2022. background:inherit;
  2023. background-color:rgba(255, 255, 255, 0);
  2024. border-radius:0px;
  2025. filter:drop-shadow(none);
  2026. transition:none;
  2027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2028. font-weight:400;
  2029. font-style:normal;
  2030. font-size:12px;
  2031. color:#FFFFFF;
  2032. text-align:left;
  2033. }
  2034. #u3970 {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:121px;
  2038. top:450px;
  2039. width:58px;
  2040. height:21px;
  2041. display:flex;
  2042. transition:none;
  2043. transform-origin:50% 50%;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. font-size:12px;
  2048. color:#FFFFFF;
  2049. text-align:left;
  2050. }
  2051. #u3970 .text {
  2052. position:absolute;
  2053. align-self:center;
  2054. padding:2px 2px 2px 2px;
  2055. box-sizing:border-box;
  2056. width:100%;
  2057. }
  2058. #u3970_text {
  2059. border-width:0px;
  2060. white-space:nowrap;
  2061. text-transform:none;
  2062. }
  2063. #u3971_div {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:29px;
  2069. height:21px;
  2070. background:inherit;
  2071. background-color:rgba(255, 255, 255, 0);
  2072. border-radius:0px;
  2073. filter:drop-shadow(none);
  2074. transition:none;
  2075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2076. font-weight:400;
  2077. font-style:normal;
  2078. font-size:12px;
  2079. color:#FFFFFF;
  2080. text-align:left;
  2081. }
  2082. #u3971 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:232px;
  2086. top:450px;
  2087. width:29px;
  2088. height:21px;
  2089. display:flex;
  2090. transition:none;
  2091. transform-origin:50% 50%;
  2092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:12px;
  2096. color:#FFFFFF;
  2097. text-align:left;
  2098. }
  2099. #u3971 .text {
  2100. position:absolute;
  2101. align-self:center;
  2102. padding:2px 2px 2px 2px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u3971_text {
  2107. border-width:0px;
  2108. white-space:nowrap;
  2109. text-transform:none;
  2110. }
  2111. #u3972_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:25px;
  2117. height:18px;
  2118. background:inherit;
  2119. background-color:rgba(255, 255, 255, 0);
  2120. border-radius:0px;
  2121. filter:drop-shadow(none);
  2122. transition:none;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:10px;
  2127. color:rgba(245, 154, 35, 0.6980392156862745);
  2128. text-align:left;
  2129. }
  2130. #u3972 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:33px;
  2134. top:397px;
  2135. width:25px;
  2136. height:18px;
  2137. display:flex;
  2138. transition:none;
  2139. transform-origin:50% 50%;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:10px;
  2144. color:rgba(245, 154, 35, 0.6980392156862745);
  2145. text-align:left;
  2146. }
  2147. #u3972 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 2px 2px 2px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u3972_text {
  2155. border-width:0px;
  2156. white-space:nowrap;
  2157. text-transform:none;
  2158. }
  2159. #u3973_div {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:25px;
  2165. height:18px;
  2166. background:inherit;
  2167. background-color:rgba(255, 255, 255, 0);
  2168. border-radius:0px;
  2169. filter:drop-shadow(none);
  2170. transition:none;
  2171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2172. font-weight:400;
  2173. font-style:normal;
  2174. font-size:10px;
  2175. color:rgba(255, 255, 255, 0.6980392156862745);
  2176. text-align:left;
  2177. }
  2178. #u3973 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:96px;
  2182. top:397px;
  2183. width:25px;
  2184. height:18px;
  2185. display:flex;
  2186. transition:none;
  2187. transform-origin:50% 50%;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:10px;
  2192. color:rgba(255, 255, 255, 0.6980392156862745);
  2193. text-align:left;
  2194. }
  2195. #u3973 .text {
  2196. position:absolute;
  2197. align-self:center;
  2198. padding:2px 2px 2px 2px;
  2199. box-sizing:border-box;
  2200. width:100%;
  2201. }
  2202. #u3973_text {
  2203. border-width:0px;
  2204. white-space:nowrap;
  2205. text-transform:none;
  2206. }
  2207. #u3974_div {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:25px;
  2213. height:18px;
  2214. background:inherit;
  2215. background-color:rgba(255, 255, 255, 0);
  2216. border-radius:0px;
  2217. filter:drop-shadow(none);
  2218. transition:none;
  2219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2220. font-weight:400;
  2221. font-style:normal;
  2222. font-size:10px;
  2223. color:rgba(255, 255, 255, 0.6980392156862745);
  2224. text-align:left;
  2225. }
  2226. #u3974 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:161px;
  2230. top:397px;
  2231. width:25px;
  2232. height:18px;
  2233. display:flex;
  2234. transition:none;
  2235. transform-origin:50% 50%;
  2236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2237. font-weight:400;
  2238. font-style:normal;
  2239. font-size:10px;
  2240. color:rgba(255, 255, 255, 0.6980392156862745);
  2241. text-align:left;
  2242. }
  2243. #u3974 .text {
  2244. position:absolute;
  2245. align-self:center;
  2246. padding:2px 2px 2px 2px;
  2247. box-sizing:border-box;
  2248. width:100%;
  2249. }
  2250. #u3974_text {
  2251. border-width:0px;
  2252. white-space:nowrap;
  2253. text-transform:none;
  2254. }
  2255. #u3975 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:0px;
  2261. height:0px;
  2262. }
  2263. #u3976_div {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:440px;
  2269. height:300px;
  2270. background:inherit;
  2271. background-color:rgba(95, 72, 47, 1);
  2272. box-sizing:border-box;
  2273. border-width:2px;
  2274. border-style:solid;
  2275. border-color:rgba(245, 154, 35, 1);
  2276. border-radius:10px;
  2277. filter:drop-shadow(none);
  2278. transition:none;
  2279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:12px;
  2283. color:#FFFFFF;
  2284. text-align:left;
  2285. }
  2286. #u3976 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:502px;
  2290. top:346px;
  2291. width:440px;
  2292. height:300px;
  2293. display:flex;
  2294. transition:none;
  2295. transform-origin:50% 50%;
  2296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2297. font-weight:400;
  2298. font-style:normal;
  2299. font-size:12px;
  2300. color:#FFFFFF;
  2301. text-align:left;
  2302. }
  2303. #u3976 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 10px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u3976_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. visibility:hidden;
  2315. }
  2316. #u3977 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:0px;
  2322. height:0px;
  2323. }
  2324. #u3978_div {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:0px;
  2328. top:0px;
  2329. width:440px;
  2330. height:40px;
  2331. background:inherit;
  2332. background-color:rgba(221, 142, 35, 1);
  2333. box-sizing:border-box;
  2334. border-width:2px;
  2335. border-style:solid;
  2336. border-color:rgba(245, 154, 35, 1);
  2337. border-radius:10px;
  2338. border-bottom-right-radius:0px;
  2339. border-bottom-left-radius:0px;
  2340. filter:drop-shadow(none);
  2341. transition:none;
  2342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2343. font-weight:400;
  2344. font-style:normal;
  2345. font-size:12px;
  2346. color:#FFFFFF;
  2347. text-align:left;
  2348. }
  2349. #u3978 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:502px;
  2353. top:346px;
  2354. width:440px;
  2355. height:40px;
  2356. display:flex;
  2357. transition:none;
  2358. transform-origin:50% 50%;
  2359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. font-size:12px;
  2363. color:#FFFFFF;
  2364. text-align:left;
  2365. }
  2366. #u3978 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 10px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u3978_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. visibility:hidden;
  2378. }
  2379. #u3979_div {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:77px;
  2385. height:29px;
  2386. background:inherit;
  2387. background-color:rgba(245, 154, 35, 0);
  2388. border-left:0px;
  2389. border-top:0px;
  2390. border-right:0px;
  2391. border-radius:0px;
  2392. border-bottom-right-radius:0px;
  2393. border-bottom-left-radius:0px;
  2394. filter:drop-shadow(none);
  2395. transition:none;
  2396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:18px;
  2400. color:#FFFFFF;
  2401. text-align:left;
  2402. }
  2403. #u3979 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:522px;
  2407. top:351px;
  2408. width:77px;
  2409. height:29px;
  2410. display:flex;
  2411. transition:none;
  2412. transform-origin:50% 50%;
  2413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:18px;
  2417. color:#FFFFFF;
  2418. text-align:left;
  2419. }
  2420. #u3979 .text {
  2421. position:absolute;
  2422. align-self:center;
  2423. padding:2px 2px 2px 2px;
  2424. box-sizing:border-box;
  2425. width:100%;
  2426. }
  2427. #u3979_text {
  2428. border-width:0px;
  2429. white-space:nowrap;
  2430. text-transform:none;
  2431. }
  2432. #u3980_div {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:41px;
  2438. height:29px;
  2439. background:inherit;
  2440. background-color:rgba(245, 154, 35, 0);
  2441. border-left:0px;
  2442. border-top:0px;
  2443. border-right:0px;
  2444. border-radius:0px;
  2445. border-bottom-right-radius:0px;
  2446. border-bottom-left-radius:0px;
  2447. filter:drop-shadow(none);
  2448. transition:none;
  2449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. font-size:18px;
  2453. color:#FFFFFF;
  2454. text-align:left;
  2455. }
  2456. #u3980 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:879px;
  2460. top:351px;
  2461. width:41px;
  2462. height:29px;
  2463. display:flex;
  2464. transition:none;
  2465. transform-origin:50% 50%;
  2466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. font-size:18px;
  2470. color:#FFFFFF;
  2471. text-align:left;
  2472. }
  2473. #u3980 .text {
  2474. position:absolute;
  2475. align-self:center;
  2476. padding:2px 2px 2px 2px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u3980_text {
  2481. border-width:0px;
  2482. white-space:nowrap;
  2483. text-transform:none;
  2484. }
  2485. #u3981 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:522px;
  2489. top:406px;
  2490. width:180px;
  2491. height:180px;
  2492. display:flex;
  2493. transition:none;
  2494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2495. font-weight:400;
  2496. font-style:normal;
  2497. }
  2498. #u3981 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 2px 2px 2px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u3981_img {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:0px;
  2510. width:180px;
  2511. height:180px;
  2512. }
  2513. #u3981_text {
  2514. border-width:0px;
  2515. word-wrap:break-word;
  2516. text-transform:none;
  2517. visibility:hidden;
  2518. }
  2519. #u3982_div {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:149px;
  2525. height:34px;
  2526. background:inherit;
  2527. background-color:rgba(245, 154, 35, 0);
  2528. border-left:0px;
  2529. border-top:0px;
  2530. border-right:0px;
  2531. border-radius:0px;
  2532. border-bottom-right-radius:0px;
  2533. border-bottom-left-radius:0px;
  2534. filter:drop-shadow(none);
  2535. transition:none;
  2536. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2537. font-weight:500;
  2538. font-style:normal;
  2539. font-size:18px;
  2540. color:#FFFFFF;
  2541. text-align:left;
  2542. line-height:30px;
  2543. }
  2544. #u3982 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:722px;
  2548. top:406px;
  2549. width:149px;
  2550. height:34px;
  2551. display:flex;
  2552. transition:none;
  2553. transform-origin:50% 50%;
  2554. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2555. font-weight:500;
  2556. font-style:normal;
  2557. font-size:18px;
  2558. color:#FFFFFF;
  2559. text-align:left;
  2560. line-height:30px;
  2561. }
  2562. #u3982 .text {
  2563. position:absolute;
  2564. align-self:flex-start;
  2565. padding:2px 2px 2px 2px;
  2566. box-sizing:border-box;
  2567. width:100%;
  2568. }
  2569. #u3982_text {
  2570. border-width:0px;
  2571. white-space:nowrap;
  2572. text-transform:none;
  2573. }
  2574. #u3983_div {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:174px;
  2580. height:20px;
  2581. background:inherit;
  2582. background-color:rgba(245, 154, 35, 0);
  2583. border-left:0px;
  2584. border-top:0px;
  2585. border-right:0px;
  2586. border-radius:0px;
  2587. border-bottom-right-radius:0px;
  2588. border-bottom-left-radius:0px;
  2589. filter:drop-shadow(none);
  2590. transition:none;
  2591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2592. font-weight:400;
  2593. font-style:normal;
  2594. font-size:11px;
  2595. color:#FFFFFF;
  2596. text-align:left;
  2597. }
  2598. #u3983 {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:722px;
  2602. top:570px;
  2603. width:174px;
  2604. height:20px;
  2605. display:flex;
  2606. transition:none;
  2607. transform-origin:50% 50%;
  2608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2609. font-weight:400;
  2610. font-style:normal;
  2611. font-size:11px;
  2612. color:#FFFFFF;
  2613. text-align:left;
  2614. }
  2615. #u3983 .text {
  2616. position:absolute;
  2617. align-self:flex-start;
  2618. padding:2px 2px 2px 2px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u3983_text {
  2623. border-width:0px;
  2624. white-space:nowrap;
  2625. text-transform:none;
  2626. }
  2627. #u3984 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:0px;
  2633. height:0px;
  2634. }
  2635. #u3985_div {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:202px;
  2641. height:30px;
  2642. background:inherit;
  2643. background-color:rgba(255, 255, 255, 0.09803921568627451);
  2644. border-radius:0px;
  2645. filter:drop-shadow(none);
  2646. transition:none;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:12px;
  2651. color:rgba(255, 255, 255, 0.6980392156862745);
  2652. }
  2653. #u3985 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:722px;
  2657. top:471px;
  2658. width:202px;
  2659. height:30px;
  2660. display:flex;
  2661. transition:none;
  2662. transform-origin:50% 50%;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:12px;
  2667. color:rgba(255, 255, 255, 0.6980392156862745);
  2668. }
  2669. #u3985 .text {
  2670. position:absolute;
  2671. align-self:center;
  2672. padding:2px 2px 2px 2px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u3985_text {
  2677. border-width:0px;
  2678. word-wrap:break-word;
  2679. text-transform:none;
  2680. visibility:hidden;
  2681. }
  2682. #u3986_div {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:61px;
  2688. height:24px;
  2689. background:inherit;
  2690. background-color:rgba(245, 154, 35, 0);
  2691. border-left:0px;
  2692. border-top:0px;
  2693. border-right:0px;
  2694. border-radius:0px;
  2695. border-bottom-right-radius:0px;
  2696. border-bottom-left-radius:0px;
  2697. filter:drop-shadow(none);
  2698. transition:none;
  2699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2700. font-weight:400;
  2701. font-style:normal;
  2702. font-size:14px;
  2703. color:#FFFFFF;
  2704. text-align:left;
  2705. }
  2706. #u3986 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:732px;
  2710. top:474px;
  2711. width:61px;
  2712. height:24px;
  2713. display:flex;
  2714. transition:none;
  2715. transform-origin:50% 50%;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:14px;
  2720. color:#FFFFFF;
  2721. text-align:left;
  2722. }
  2723. #u3986 .text {
  2724. position:absolute;
  2725. align-self:flex-start;
  2726. padding:2px 2px 2px 2px;
  2727. box-sizing:border-box;
  2728. width:100%;
  2729. }
  2730. #u3986_text {
  2731. border-width:0px;
  2732. white-space:nowrap;
  2733. text-transform:none;
  2734. }
  2735. #u3987_div {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:61px;
  2741. height:24px;
  2742. background:inherit;
  2743. background-color:rgba(245, 154, 35, 0);
  2744. border-left:0px;
  2745. border-top:0px;
  2746. border-right:0px;
  2747. border-radius:0px;
  2748. border-bottom-right-radius:0px;
  2749. border-bottom-left-radius:0px;
  2750. filter:drop-shadow(none);
  2751. transition:none;
  2752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2753. font-weight:400;
  2754. font-style:normal;
  2755. font-size:14px;
  2756. color:#FFFFFF;
  2757. text-align:left;
  2758. }
  2759. #u3987 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:802px;
  2763. top:474px;
  2764. width:61px;
  2765. height:24px;
  2766. display:flex;
  2767. transition:none;
  2768. transform-origin:50% 50%;
  2769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. font-size:14px;
  2773. color:#FFFFFF;
  2774. text-align:left;
  2775. }
  2776. #u3987 .text {
  2777. position:absolute;
  2778. align-self:flex-start;
  2779. padding:2px 2px 2px 2px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u3987_text {
  2784. border-width:0px;
  2785. white-space:nowrap;
  2786. text-transform:none;
  2787. }
  2788. #u3988 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:0px;
  2794. height:0px;
  2795. }
  2796. #u3989_div {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:202px;
  2802. height:30px;
  2803. background:inherit;
  2804. background-color:rgba(255, 255, 255, 0.09803921568627451);
  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:12px;
  2812. color:rgba(255, 255, 255, 0.6980392156862745);
  2813. }
  2814. #u3989 {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:722px;
  2818. top:502px;
  2819. width:202px;
  2820. height:30px;
  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:12px;
  2828. color:rgba(255, 255, 255, 0.6980392156862745);
  2829. }
  2830. #u3989 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 2px 2px 2px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u3989_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. visibility:hidden;
  2842. }
  2843. #u3990_div {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:61px;
  2849. height:24px;
  2850. background:inherit;
  2851. background-color:rgba(245, 154, 35, 0);
  2852. border-left:0px;
  2853. border-top:0px;
  2854. border-right:0px;
  2855. border-radius:0px;
  2856. border-bottom-right-radius:0px;
  2857. border-bottom-left-radius:0px;
  2858. filter:drop-shadow(none);
  2859. transition:none;
  2860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2861. font-weight:400;
  2862. font-style:normal;
  2863. font-size:14px;
  2864. color:#FFFFFF;
  2865. text-align:left;
  2866. }
  2867. #u3990 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:732px;
  2871. top:505px;
  2872. width:61px;
  2873. height:24px;
  2874. display:flex;
  2875. transition:none;
  2876. transform-origin:50% 50%;
  2877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2878. font-weight:400;
  2879. font-style:normal;
  2880. font-size:14px;
  2881. color:#FFFFFF;
  2882. text-align:left;
  2883. }
  2884. #u3990 .text {
  2885. position:absolute;
  2886. align-self:flex-start;
  2887. padding:2px 2px 2px 2px;
  2888. box-sizing:border-box;
  2889. width:100%;
  2890. }
  2891. #u3990_text {
  2892. border-width:0px;
  2893. white-space:nowrap;
  2894. text-transform:none;
  2895. }
  2896. #u3991_div {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:0px;
  2901. width:46px;
  2902. height:24px;
  2903. background:inherit;
  2904. background-color:rgba(245, 154, 35, 0);
  2905. border-left:0px;
  2906. border-top:0px;
  2907. border-right:0px;
  2908. border-radius:0px;
  2909. border-bottom-right-radius:0px;
  2910. border-bottom-left-radius:0px;
  2911. filter:drop-shadow(none);
  2912. transition:none;
  2913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2914. font-weight:400;
  2915. font-style:normal;
  2916. font-size:14px;
  2917. color:#FFFFFF;
  2918. text-align:left;
  2919. }
  2920. #u3991 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:805px;
  2924. top:505px;
  2925. width:46px;
  2926. height:24px;
  2927. display:flex;
  2928. transition:none;
  2929. transform-origin:50% 50%;
  2930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:14px;
  2934. color:#FFFFFF;
  2935. text-align:left;
  2936. }
  2937. #u3991 .text {
  2938. position:absolute;
  2939. align-self:flex-start;
  2940. padding:2px 2px 2px 2px;
  2941. box-sizing:border-box;
  2942. width:100%;
  2943. }
  2944. #u3991_text {
  2945. border-width:0px;
  2946. white-space:nowrap;
  2947. text-transform:none;
  2948. }
  2949. #u3992 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:0px;
  2953. top:0px;
  2954. width:0px;
  2955. height:0px;
  2956. }
  2957. #u3993_div {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:202px;
  2963. height:30px;
  2964. background:inherit;
  2965. background-color:rgba(255, 255, 255, 0.09803921568627451);
  2966. border-radius:0px;
  2967. filter:drop-shadow(none);
  2968. transition:none;
  2969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2970. font-weight:400;
  2971. font-style:normal;
  2972. font-size:12px;
  2973. color:rgba(255, 255, 255, 0.6980392156862745);
  2974. }
  2975. #u3993 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:722px;
  2979. top:533px;
  2980. width:202px;
  2981. height:30px;
  2982. display:flex;
  2983. transition:none;
  2984. transform-origin:50% 50%;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:12px;
  2989. color:rgba(255, 255, 255, 0.6980392156862745);
  2990. }
  2991. #u3993 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 2px 2px 2px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u3993_text {
  2999. border-width:0px;
  3000. word-wrap:break-word;
  3001. text-transform:none;
  3002. visibility:hidden;
  3003. }
  3004. #u3994_div {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:61px;
  3010. height:24px;
  3011. background:inherit;
  3012. background-color:rgba(245, 154, 35, 0);
  3013. border-left:0px;
  3014. border-top:0px;
  3015. border-right:0px;
  3016. border-radius:0px;
  3017. border-bottom-right-radius:0px;
  3018. border-bottom-left-radius:0px;
  3019. filter:drop-shadow(none);
  3020. transition:none;
  3021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3022. font-weight:400;
  3023. font-style:normal;
  3024. font-size:14px;
  3025. color:#FFFFFF;
  3026. text-align:left;
  3027. }
  3028. #u3994 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:732px;
  3032. top:536px;
  3033. width:61px;
  3034. height:24px;
  3035. display:flex;
  3036. transition:none;
  3037. transform-origin:50% 50%;
  3038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3039. font-weight:400;
  3040. font-style:normal;
  3041. font-size:14px;
  3042. color:#FFFFFF;
  3043. text-align:left;
  3044. }
  3045. #u3994 .text {
  3046. position:absolute;
  3047. align-self:flex-start;
  3048. padding:2px 2px 2px 2px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u3994_text {
  3053. border-width:0px;
  3054. white-space:nowrap;
  3055. text-transform:none;
  3056. }
  3057. #u3995_div {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:95px;
  3063. height:24px;
  3064. background:inherit;
  3065. background-color:rgba(245, 154, 35, 0);
  3066. border-left:0px;
  3067. border-top:0px;
  3068. border-right:0px;
  3069. border-radius:0px;
  3070. border-bottom-right-radius:0px;
  3071. border-bottom-left-radius:0px;
  3072. filter:drop-shadow(none);
  3073. transition:none;
  3074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3075. font-weight:400;
  3076. font-style:normal;
  3077. font-size:14px;
  3078. color:#FFFFFF;
  3079. text-align:left;
  3080. }
  3081. #u3995 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:803px;
  3085. top:536px;
  3086. width:95px;
  3087. height:24px;
  3088. display:flex;
  3089. transition:none;
  3090. transform-origin:50% 50%;
  3091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3092. font-weight:400;
  3093. font-style:normal;
  3094. font-size:14px;
  3095. color:#FFFFFF;
  3096. text-align:left;
  3097. }
  3098. #u3995 .text {
  3099. position:absolute;
  3100. align-self:flex-start;
  3101. padding:2px 2px 2px 2px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u3995_text {
  3106. border-width:0px;
  3107. white-space:nowrap;
  3108. text-transform:none;
  3109. }
  3110. #u3996_div {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:60px;
  3116. height:30px;
  3117. background:inherit;
  3118. background-color:rgba(245, 154, 35, 1);
  3119. box-sizing:border-box;
  3120. border-width:1px;
  3121. border-style:solid;
  3122. border-color:rgba(245, 154, 35, 1);
  3123. border-radius:4px;
  3124. filter:drop-shadow(0px 0px 2.5px rgba(123, 77, 18, 0.34901960784313724));
  3125. transition:none;
  3126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3127. font-weight:400;
  3128. font-style:normal;
  3129. font-size:14px;
  3130. color:#FFFFFF;
  3131. }
  3132. #u3996 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:861px;
  3136. top:564px;
  3137. width:60px;
  3138. height:30px;
  3139. display:flex;
  3140. transition:none;
  3141. transform-origin:50% 50%;
  3142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:14px;
  3146. color:#FFFFFF;
  3147. }
  3148. #u3996 .text {
  3149. position:absolute;
  3150. align-self:center;
  3151. padding:2px 2px 2px 2px;
  3152. box-sizing:border-box;
  3153. width:100%;
  3154. }
  3155. #u3996_text {
  3156. border-width:0px;
  3157. word-wrap:break-word;
  3158. text-transform:none;
  3159. }
  3160. #u3997_div {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:41px;
  3166. height:21px;
  3167. background:inherit;
  3168. background-color:rgba(245, 154, 35, 1);
  3169. box-sizing:border-box;
  3170. border-width:1px;
  3171. border-style:solid;
  3172. border-color:rgba(245, 154, 35, 1);
  3173. border-radius:4px;
  3174. filter:drop-shadow(none);
  3175. transition:none;
  3176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3177. font-weight:400;
  3178. font-style:normal;
  3179. font-size:12px;
  3180. color:#FFFFFF;
  3181. }
  3182. #u3997 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:722px;
  3186. top:440px;
  3187. width:41px;
  3188. height:21px;
  3189. display:flex;
  3190. transition:none;
  3191. transform-origin:50% 50%;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. color:#FFFFFF;
  3197. }
  3198. #u3997 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 2px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u3997_text {
  3206. border-width:0px;
  3207. white-space:nowrap;
  3208. text-transform:none;
  3209. }
  3210. #u3998 {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:0px;
  3216. height:0px;
  3217. }
  3218. #u3999_div {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:0px;
  3223. width:60px;
  3224. height:30px;
  3225. background:inherit;
  3226. background-color:rgba(245, 154, 35, 0.8);
  3227. box-sizing:border-box;
  3228. border-width:1px;
  3229. border-style:solid;
  3230. border-color:rgba(245, 154, 35, 1);
  3231. border-radius:4px;
  3232. filter:drop-shadow(none);
  3233. transition:none;
  3234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3235. font-weight:400;
  3236. font-style:normal;
  3237. font-size:14px;
  3238. color:#FFFFFF;
  3239. }
  3240. #u3999 {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:861px;
  3244. top:596px;
  3245. width:60px;
  3246. height:30px;
  3247. display:flex;
  3248. transition:none;
  3249. transform-origin:50% 50%;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:14px;
  3254. color:#FFFFFF;
  3255. }
  3256. #u3999 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:2px 2px 2px 2px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u3999_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. }
  3268. #u4000 {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:908px;
  3272. top:610px;
  3273. width:6px;
  3274. height:4px;
  3275. display:flex;
  3276. transition:none;
  3277. }
  3278. #u4000 .text {
  3279. position:absolute;
  3280. align-self:center;
  3281. padding:2px 2px 2px 2px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u4000_img {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:6px;
  3291. height:4px;
  3292. }
  3293. #u4000_text {
  3294. border-width:0px;
  3295. word-wrap:break-word;
  3296. text-transform:none;
  3297. visibility:hidden;
  3298. }
  3299. #u4001_div {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:288px;
  3305. height:34px;
  3306. background:inherit;
  3307. background-color:rgba(255, 255, 255, 0);
  3308. border-radius:0px;
  3309. filter:drop-shadow(none);
  3310. transition:none;
  3311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3312. font-weight:400;
  3313. font-style:normal;
  3314. font-size:12px;
  3315. text-align:left;
  3316. line-height:30px;
  3317. }
  3318. #u4001 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:654px;
  3322. top:113px;
  3323. width:288px;
  3324. height:34px;
  3325. display:flex;
  3326. transition:none;
  3327. transform-origin:50% 50%;
  3328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3329. font-weight:400;
  3330. font-style:normal;
  3331. font-size:12px;
  3332. text-align:left;
  3333. line-height:30px;
  3334. }
  3335. #u4001 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 2px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u4001_text {
  3343. border-width:0px;
  3344. white-space:nowrap;
  3345. text-transform:none;
  3346. }
  3347. #u4002_div {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:298px;
  3353. height:34px;
  3354. background:inherit;
  3355. background-color:rgba(255, 255, 255, 0);
  3356. border-radius:0px;
  3357. filter:drop-shadow(none);
  3358. transition:none;
  3359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3360. font-weight:400;
  3361. font-style:normal;
  3362. font-size:12px;
  3363. color:rgba(217, 0, 27, 0.6980392156862745);
  3364. text-align:left;
  3365. line-height:30px;
  3366. }
  3367. #u4002 {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:869px;
  3371. top:147px;
  3372. width:298px;
  3373. height:34px;
  3374. display:flex;
  3375. transition:none;
  3376. transform-origin:50% 50%;
  3377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3378. font-weight:400;
  3379. font-style:normal;
  3380. font-size:12px;
  3381. color:rgba(217, 0, 27, 0.6980392156862745);
  3382. text-align:left;
  3383. line-height:30px;
  3384. }
  3385. #u4002 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:2px 2px 2px 2px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u4002_text {
  3393. border-width:0px;
  3394. white-space:nowrap;
  3395. text-transform:none;
  3396. }