styles.css 78 KB

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