styles.css 66 KB

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