styles.css 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-82px;
  6. width:3040px;
  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. #u26824 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u26825_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1201px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u26825 {
  52. border-width:0px;
  53. position:absolute;
  54. left:82px;
  55. top:65px;
  56. width:1000px;
  57. height:1201px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u26825 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u26825_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u26826_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:47px;
  88. height:35px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 0);
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. filter:drop-shadow(none);
  98. transition:none;
  99. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  100. font-weight:500;
  101. font-style:normal;
  102. font-size:18px;
  103. }
  104. #u26826 {
  105. border-width:0px;
  106. position:absolute;
  107. left:102px;
  108. top:83px;
  109. width:47px;
  110. height:35px;
  111. display:flex;
  112. transition:none;
  113. transform-origin:50% 50%;
  114. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  115. font-weight:500;
  116. font-style:normal;
  117. font-size:18px;
  118. }
  119. #u26826 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:5px 10px 5px 0px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u26826_text {
  127. border-width:0px;
  128. white-space:nowrap;
  129. text-transform:none;
  130. }
  131. #u26827 {
  132. border-width:0px;
  133. position:absolute;
  134. left:0px;
  135. top:0px;
  136. width:0px;
  137. height:0px;
  138. }
  139. #u26828_div {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:40px;
  145. height:40px;
  146. background:inherit;
  147. background-color:rgba(255, 255, 255, 0);
  148. border-top:0px;
  149. border-right:0px;
  150. border-bottom:0px;
  151. border-radius:0px;
  152. border-top-left-radius:0px;
  153. border-bottom-left-radius:0px;
  154. filter:drop-shadow(none);
  155. transition:none;
  156. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  157. font-weight:500;
  158. font-style:normal;
  159. font-size:14px;
  160. text-align:center;
  161. }
  162. #u26828 {
  163. border-width:0px;
  164. position:absolute;
  165. left:1042px;
  166. top:65px;
  167. width:40px;
  168. height:40px;
  169. display:flex;
  170. transition:none;
  171. transform-origin:50% 50%;
  172. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  173. font-weight:500;
  174. font-style:normal;
  175. font-size:14px;
  176. text-align:center;
  177. }
  178. #u26828 .text {
  179. position:absolute;
  180. align-self:center;
  181. padding:5px 10px 5px 0px;
  182. box-sizing:border-box;
  183. width:100%;
  184. }
  185. #u26828_text {
  186. border-width:0px;
  187. word-wrap:break-word;
  188. text-transform:none;
  189. }
  190. #u26829 {
  191. border-width:0px;
  192. position:absolute;
  193. left:1030px;
  194. top:81px;
  195. width:13px;
  196. height:13px;
  197. display:flex;
  198. transition:none;
  199. font-size:14px;
  200. }
  201. #u26829 .text {
  202. position:absolute;
  203. align-self:center;
  204. padding:2px 2px 2px 2px;
  205. box-sizing:border-box;
  206. width:100%;
  207. }
  208. #u26829_img {
  209. border-width:0px;
  210. position:absolute;
  211. left:0px;
  212. top:0px;
  213. width:13px;
  214. height:13px;
  215. }
  216. #u26829_text {
  217. border-width:0px;
  218. word-wrap:break-word;
  219. text-transform:none;
  220. visibility:hidden;
  221. }
  222. #u26830_div {
  223. border-width:0px;
  224. position:absolute;
  225. left:0px;
  226. top:0px;
  227. width:222px;
  228. height:43px;
  229. background:inherit;
  230. background-color:rgba(255, 255, 255, 0);
  231. border-top:0px;
  232. border-right:0px;
  233. border-bottom:0px;
  234. border-radius:0px;
  235. border-top-left-radius:0px;
  236. border-bottom-left-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  240. font-weight:500;
  241. font-style:normal;
  242. font-size:24px;
  243. }
  244. #u26830 {
  245. border-width:0px;
  246. position:absolute;
  247. left:112px;
  248. top:134px;
  249. width:222px;
  250. height:43px;
  251. display:flex;
  252. transition:none;
  253. transform-origin:50% 50%;
  254. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  255. font-weight:500;
  256. font-style:normal;
  257. font-size:24px;
  258. }
  259. #u26830 .text {
  260. position:absolute;
  261. align-self:center;
  262. padding:5px 10px 5px 0px;
  263. box-sizing:border-box;
  264. width:100%;
  265. }
  266. #u26830_text {
  267. border-width:0px;
  268. white-space:nowrap;
  269. text-transform:none;
  270. }
  271. #u26831 {
  272. border-width:0px;
  273. position:absolute;
  274. left:932px;
  275. top:135px;
  276. width:108px;
  277. height:108px;
  278. display:flex;
  279. -webkit-transform:rotate(315deg);
  280. -moz-transform:rotate(315deg);
  281. -ms-transform:rotate(315deg);
  282. transform:rotate(315deg);
  283. transition:none;
  284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  285. font-weight:400;
  286. font-style:normal;
  287. font-size:28px;
  288. color:#F59A23;
  289. }
  290. #u26831 .text {
  291. position:absolute;
  292. align-self:center;
  293. padding:2px 2px 2px 2px;
  294. box-sizing:border-box;
  295. width:100%;
  296. }
  297. #u26831_img {
  298. border-width:0px;
  299. position:absolute;
  300. left:0px;
  301. top:0px;
  302. width:108px;
  303. height:108px;
  304. }
  305. #u26831_text {
  306. border-width:0px;
  307. word-wrap:break-word;
  308. text-transform:none;
  309. }
  310. #u26832_div {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:67px;
  316. height:30px;
  317. background:inherit;
  318. background-color:rgba(255, 255, 255, 0);
  319. border-top:0px;
  320. border-right:0px;
  321. border-bottom:0px;
  322. border-radius:0px;
  323. border-top-left-radius:0px;
  324. border-bottom-left-radius:0px;
  325. filter:drop-shadow(none);
  326. transition:none;
  327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  328. font-weight:400;
  329. font-style:normal;
  330. font-size:14px;
  331. color:#7F7F7F;
  332. }
  333. #u26832 {
  334. border-width:0px;
  335. position:absolute;
  336. left:118px;
  337. top:193px;
  338. width:67px;
  339. height:30px;
  340. display:flex;
  341. transition:none;
  342. transform-origin:50% 50%;
  343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  344. font-weight:400;
  345. font-style:normal;
  346. font-size:14px;
  347. color:#7F7F7F;
  348. }
  349. #u26832 .text {
  350. position:absolute;
  351. align-self:center;
  352. padding:5px 10px 5px 0px;
  353. box-sizing:border-box;
  354. width:100%;
  355. }
  356. #u26832_text {
  357. border-width:0px;
  358. white-space:nowrap;
  359. text-transform:none;
  360. }
  361. #u26833_div {
  362. border-width:0px;
  363. position:absolute;
  364. left:0px;
  365. top:0px;
  366. width:39px;
  367. height:30px;
  368. background:inherit;
  369. background-color:rgba(255, 255, 255, 0);
  370. border-top:0px;
  371. border-right:0px;
  372. border-bottom:0px;
  373. border-radius:0px;
  374. border-top-left-radius:0px;
  375. border-bottom-left-radius:0px;
  376. filter:drop-shadow(none);
  377. transition:none;
  378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  379. font-weight:400;
  380. font-style:normal;
  381. font-size:14px;
  382. }
  383. #u26833 {
  384. border-width:0px;
  385. position:absolute;
  386. left:189px;
  387. top:193px;
  388. width:39px;
  389. height:30px;
  390. display:flex;
  391. transition:none;
  392. transform-origin:50% 50%;
  393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  394. font-weight:400;
  395. font-style:normal;
  396. font-size:14px;
  397. }
  398. #u26833 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:5px 10px 5px 0px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u26833_text {
  406. border-width:0px;
  407. white-space:nowrap;
  408. text-transform:none;
  409. }
  410. #u26834_div {
  411. border-width:0px;
  412. position:absolute;
  413. left:0px;
  414. top:0px;
  415. width:81px;
  416. height:30px;
  417. background:inherit;
  418. background-color:rgba(255, 255, 255, 0);
  419. border-top:0px;
  420. border-right:0px;
  421. border-bottom:0px;
  422. border-radius:0px;
  423. border-top-left-radius:0px;
  424. border-bottom-left-radius:0px;
  425. filter:drop-shadow(none);
  426. transition:none;
  427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  428. font-weight:400;
  429. font-style:normal;
  430. font-size:14px;
  431. color:#7F7F7F;
  432. }
  433. #u26834 {
  434. border-width:0px;
  435. position:absolute;
  436. left:378px;
  437. top:193px;
  438. width:81px;
  439. height:30px;
  440. display:flex;
  441. transition:none;
  442. transform-origin:50% 50%;
  443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  444. font-weight:400;
  445. font-style:normal;
  446. font-size:14px;
  447. color:#7F7F7F;
  448. }
  449. #u26834 .text {
  450. position:absolute;
  451. align-self:center;
  452. padding:5px 10px 5px 0px;
  453. box-sizing:border-box;
  454. width:100%;
  455. }
  456. #u26834_text {
  457. border-width:0px;
  458. white-space:nowrap;
  459. text-transform:none;
  460. }
  461. #u26835_div {
  462. border-width:0px;
  463. position:absolute;
  464. left:0px;
  465. top:0px;
  466. width:89px;
  467. height:30px;
  468. background:inherit;
  469. background-color:rgba(255, 255, 255, 0);
  470. border-top:0px;
  471. border-right:0px;
  472. border-bottom:0px;
  473. border-radius:0px;
  474. border-top-left-radius:0px;
  475. border-bottom-left-radius:0px;
  476. filter:drop-shadow(none);
  477. transition:none;
  478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  479. font-weight:400;
  480. font-style:normal;
  481. font-size:14px;
  482. }
  483. #u26835 {
  484. border-width:0px;
  485. position:absolute;
  486. left:449px;
  487. top:193px;
  488. width:89px;
  489. height:30px;
  490. display:flex;
  491. transition:none;
  492. transform-origin:50% 50%;
  493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  494. font-weight:400;
  495. font-style:normal;
  496. font-size:14px;
  497. }
  498. #u26835 .text {
  499. position:absolute;
  500. align-self:center;
  501. padding:5px 10px 5px 0px;
  502. box-sizing:border-box;
  503. width:100%;
  504. }
  505. #u26835_text {
  506. border-width:0px;
  507. white-space:nowrap;
  508. text-transform:none;
  509. }
  510. #u26836_div {
  511. border-width:0px;
  512. position:absolute;
  513. left:0px;
  514. top:0px;
  515. width:81px;
  516. height:30px;
  517. background:inherit;
  518. background-color:rgba(255, 255, 255, 0);
  519. border-top:0px;
  520. border-right:0px;
  521. border-bottom:0px;
  522. border-radius:0px;
  523. border-top-left-radius:0px;
  524. border-bottom-left-radius:0px;
  525. filter:drop-shadow(none);
  526. transition:none;
  527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  528. font-weight:400;
  529. font-style:normal;
  530. font-size:14px;
  531. color:#7F7F7F;
  532. }
  533. #u26836 {
  534. border-width:0px;
  535. position:absolute;
  536. left:635px;
  537. top:193px;
  538. width:81px;
  539. height:30px;
  540. display:flex;
  541. transition:none;
  542. transform-origin:50% 50%;
  543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  544. font-weight:400;
  545. font-style:normal;
  546. font-size:14px;
  547. color:#7F7F7F;
  548. }
  549. #u26836 .text {
  550. position:absolute;
  551. align-self:center;
  552. padding:5px 10px 5px 0px;
  553. box-sizing:border-box;
  554. width:100%;
  555. }
  556. #u26836_text {
  557. border-width:0px;
  558. white-space:nowrap;
  559. text-transform:none;
  560. }
  561. #u26837_div {
  562. border-width:0px;
  563. position:absolute;
  564. left:0px;
  565. top:0px;
  566. width:185px;
  567. height:30px;
  568. background:inherit;
  569. background-color:rgba(255, 255, 255, 0);
  570. border-top:0px;
  571. border-right:0px;
  572. border-bottom:0px;
  573. border-radius:0px;
  574. border-top-left-radius:0px;
  575. border-bottom-left-radius:0px;
  576. filter:drop-shadow(none);
  577. transition:none;
  578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  579. font-weight:400;
  580. font-style:normal;
  581. font-size:14px;
  582. }
  583. #u26837 {
  584. border-width:0px;
  585. position:absolute;
  586. left:706px;
  587. top:193px;
  588. width:185px;
  589. height:30px;
  590. display:flex;
  591. transition:none;
  592. transform-origin:50% 50%;
  593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  594. font-weight:400;
  595. font-style:normal;
  596. font-size:14px;
  597. }
  598. #u26837 .text {
  599. position:absolute;
  600. align-self:center;
  601. padding:5px 10px 5px 0px;
  602. box-sizing:border-box;
  603. width:100%;
  604. }
  605. #u26837_text {
  606. border-width:0px;
  607. white-space:nowrap;
  608. text-transform:none;
  609. }
  610. #u26838_div {
  611. border-width:0px;
  612. position:absolute;
  613. left:0px;
  614. top:0px;
  615. width:81px;
  616. height:30px;
  617. background:inherit;
  618. background-color:rgba(255, 255, 255, 0);
  619. border-top:0px;
  620. border-right:0px;
  621. border-bottom:0px;
  622. border-radius:0px;
  623. border-top-left-radius:0px;
  624. border-bottom-left-radius:0px;
  625. filter:drop-shadow(none);
  626. transition:none;
  627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  628. font-weight:400;
  629. font-style:normal;
  630. font-size:14px;
  631. color:#7F7F7F;
  632. }
  633. #u26838 {
  634. border-width:0px;
  635. position:absolute;
  636. left:118px;
  637. top:235px;
  638. width:81px;
  639. height:30px;
  640. display:flex;
  641. transition:none;
  642. transform-origin:50% 50%;
  643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  644. font-weight:400;
  645. font-style:normal;
  646. font-size:14px;
  647. color:#7F7F7F;
  648. }
  649. #u26838 .text {
  650. position:absolute;
  651. align-self:center;
  652. padding:5px 10px 5px 0px;
  653. box-sizing:border-box;
  654. width:100%;
  655. }
  656. #u26838_text {
  657. border-width:0px;
  658. white-space:nowrap;
  659. text-transform:none;
  660. }
  661. #u26839_div {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:95px;
  667. height:30px;
  668. background:inherit;
  669. background-color:rgba(255, 255, 255, 0);
  670. border-top:0px;
  671. border-right:0px;
  672. border-bottom:0px;
  673. border-radius:0px;
  674. border-top-left-radius:0px;
  675. border-bottom-left-radius:0px;
  676. filter:drop-shadow(none);
  677. transition:none;
  678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  679. font-weight:400;
  680. font-style:normal;
  681. font-size:14px;
  682. }
  683. #u26839 {
  684. border-width:0px;
  685. position:absolute;
  686. left:189px;
  687. top:235px;
  688. width:95px;
  689. height:30px;
  690. display:flex;
  691. transition:none;
  692. transform-origin:50% 50%;
  693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  694. font-weight:400;
  695. font-style:normal;
  696. font-size:14px;
  697. }
  698. #u26839 .text {
  699. position:absolute;
  700. align-self:center;
  701. padding:5px 10px 5px 0px;
  702. box-sizing:border-box;
  703. width:100%;
  704. }
  705. #u26839_text {
  706. border-width:0px;
  707. white-space:nowrap;
  708. text-transform:none;
  709. }
  710. #u26840_div {
  711. border-width:0px;
  712. position:absolute;
  713. left:0px;
  714. top:0px;
  715. width:57px;
  716. height:30px;
  717. background:inherit;
  718. background-color:rgba(255, 255, 255, 0);
  719. border-radius:0px;
  720. filter:drop-shadow(none);
  721. transition:none;
  722. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  723. font-weight:500;
  724. font-style:normal;
  725. font-size:14px;
  726. color:#000000;
  727. line-height:30px;
  728. }
  729. #u26840 {
  730. border-width:0px;
  731. position:absolute;
  732. left:118px;
  733. top:286px;
  734. width:57px;
  735. height:30px;
  736. display:flex;
  737. transition:none;
  738. transform-origin:50% 50%;
  739. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  740. font-weight:500;
  741. font-style:normal;
  742. font-size:14px;
  743. color:#000000;
  744. line-height:30px;
  745. }
  746. #u26840 .text {
  747. position:absolute;
  748. align-self:flex-start;
  749. padding:0px 0px 0px 0px;
  750. box-sizing:border-box;
  751. width:100%;
  752. }
  753. #u26840_text {
  754. border-width:0px;
  755. white-space:nowrap;
  756. text-transform:none;
  757. }
  758. #u26841 {
  759. border-width:0px;
  760. position:absolute;
  761. left:118px;
  762. top:326px;
  763. width:868px;
  764. height:102px;
  765. }
  766. #u26842 {
  767. border-width:0px;
  768. position:absolute;
  769. left:0px;
  770. top:0px;
  771. width:434px;
  772. height:34px;
  773. display:flex;
  774. transition:none;
  775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  776. font-weight:400;
  777. font-style:normal;
  778. font-size:14px;
  779. color:#FFFFFF;
  780. text-align:left;
  781. line-height:30px;
  782. }
  783. #u26842 .text {
  784. position:absolute;
  785. align-self:center;
  786. padding:2px 10px 2px 10px;
  787. box-sizing:border-box;
  788. width:100%;
  789. }
  790. #u26842_img {
  791. border-width:0px;
  792. position:absolute;
  793. left:0px;
  794. top:0px;
  795. width:434px;
  796. height:34px;
  797. }
  798. #u26842_text {
  799. border-width:0px;
  800. word-wrap:break-word;
  801. text-transform:none;
  802. }
  803. #u26843 {
  804. border-width:0px;
  805. position:absolute;
  806. left:434px;
  807. top:0px;
  808. width:434px;
  809. height:34px;
  810. display:flex;
  811. transition:none;
  812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:14px;
  816. color:#FFFFFF;
  817. text-align:left;
  818. line-height:30px;
  819. }
  820. #u26843 .text {
  821. position:absolute;
  822. align-self:center;
  823. padding:2px 10px 2px 10px;
  824. box-sizing:border-box;
  825. width:100%;
  826. }
  827. #u26843_img {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:434px;
  833. height:34px;
  834. }
  835. #u26843_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. }
  840. #u26844 {
  841. border-width:0px;
  842. position:absolute;
  843. left:0px;
  844. top:34px;
  845. width:434px;
  846. height:34px;
  847. display:flex;
  848. transition:none;
  849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  850. font-weight:400;
  851. font-style:normal;
  852. font-size:14px;
  853. text-align:left;
  854. line-height:30px;
  855. }
  856. #u26844 .text {
  857. position:absolute;
  858. align-self:center;
  859. padding:2px 10px 2px 10px;
  860. box-sizing:border-box;
  861. width:100%;
  862. }
  863. #u26844_img {
  864. border-width:0px;
  865. position:absolute;
  866. left:0px;
  867. top:0px;
  868. width:434px;
  869. height:34px;
  870. }
  871. #u26844_text {
  872. border-width:0px;
  873. word-wrap:break-word;
  874. text-transform:none;
  875. visibility:hidden;
  876. }
  877. #u26845 {
  878. border-width:0px;
  879. position:absolute;
  880. left:434px;
  881. top:34px;
  882. width:434px;
  883. height:34px;
  884. display:flex;
  885. transition:none;
  886. font-size:14px;
  887. text-align:left;
  888. line-height:30px;
  889. }
  890. #u26845 .text {
  891. position:absolute;
  892. align-self:center;
  893. padding:2px 10px 2px 10px;
  894. box-sizing:border-box;
  895. width:100%;
  896. }
  897. #u26845_img {
  898. border-width:0px;
  899. position:absolute;
  900. left:0px;
  901. top:0px;
  902. width:434px;
  903. height:34px;
  904. }
  905. #u26845_text {
  906. border-width:0px;
  907. word-wrap:break-word;
  908. text-transform:none;
  909. visibility:hidden;
  910. }
  911. #u26846 {
  912. border-width:0px;
  913. position:absolute;
  914. left:0px;
  915. top:68px;
  916. width:434px;
  917. height:34px;
  918. display:flex;
  919. transition:none;
  920. font-size:14px;
  921. text-align:left;
  922. line-height:30px;
  923. }
  924. #u26846 .text {
  925. position:absolute;
  926. align-self:center;
  927. padding:2px 10px 2px 10px;
  928. box-sizing:border-box;
  929. width:100%;
  930. }
  931. #u26846_img {
  932. border-width:0px;
  933. position:absolute;
  934. left:0px;
  935. top:0px;
  936. width:434px;
  937. height:34px;
  938. }
  939. #u26846_text {
  940. border-width:0px;
  941. word-wrap:break-word;
  942. text-transform:none;
  943. visibility:hidden;
  944. }
  945. #u26847 {
  946. border-width:0px;
  947. position:absolute;
  948. left:434px;
  949. top:68px;
  950. width:434px;
  951. height:34px;
  952. display:flex;
  953. transition:none;
  954. font-size:14px;
  955. text-align:left;
  956. line-height:30px;
  957. }
  958. #u26847 .text {
  959. position:absolute;
  960. align-self:center;
  961. padding:2px 10px 2px 10px;
  962. box-sizing:border-box;
  963. width:100%;
  964. }
  965. #u26847_img {
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:434px;
  971. height:34px;
  972. }
  973. #u26847_text {
  974. border-width:0px;
  975. word-wrap:break-word;
  976. text-transform:none;
  977. visibility:hidden;
  978. }
  979. #u26848_div {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:57px;
  985. height:30px;
  986. background:inherit;
  987. background-color:rgba(255, 255, 255, 0);
  988. border-radius:0px;
  989. filter:drop-shadow(none);
  990. transition:none;
  991. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  992. font-weight:500;
  993. font-style:normal;
  994. font-size:14px;
  995. color:#000000;
  996. line-height:30px;
  997. }
  998. #u26848 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:118px;
  1002. top:444px;
  1003. width:57px;
  1004. height:30px;
  1005. display:flex;
  1006. transition:none;
  1007. transform-origin:50% 50%;
  1008. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1009. font-weight:500;
  1010. font-style:normal;
  1011. font-size:14px;
  1012. color:#000000;
  1013. line-height:30px;
  1014. }
  1015. #u26848 .text {
  1016. position:absolute;
  1017. align-self:flex-start;
  1018. padding:0px 0px 0px 0px;
  1019. box-sizing:border-box;
  1020. width:100%;
  1021. }
  1022. #u26848_text {
  1023. border-width:0px;
  1024. white-space:nowrap;
  1025. text-transform:none;
  1026. }
  1027. #u26849 {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:118px;
  1031. top:484px;
  1032. width:70px;
  1033. height:60px;
  1034. display:flex;
  1035. transition:none;
  1036. }
  1037. #u26849 .text {
  1038. position:absolute;
  1039. align-self:center;
  1040. padding:2px 2px 2px 2px;
  1041. box-sizing:border-box;
  1042. width:100%;
  1043. }
  1044. #u26849_img {
  1045. border-width:0px;
  1046. position:absolute;
  1047. left:0px;
  1048. top:0px;
  1049. width:70px;
  1050. height:60px;
  1051. }
  1052. #u26849_text {
  1053. border-width:0px;
  1054. word-wrap:break-word;
  1055. text-transform:none;
  1056. visibility:hidden;
  1057. }
  1058. #u26850 {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:203px;
  1062. top:484px;
  1063. width:70px;
  1064. height:60px;
  1065. display:flex;
  1066. transition:none;
  1067. }
  1068. #u26850 .text {
  1069. position:absolute;
  1070. align-self:center;
  1071. padding:2px 2px 2px 2px;
  1072. box-sizing:border-box;
  1073. width:100%;
  1074. }
  1075. #u26850_img {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:0px;
  1079. top:0px;
  1080. width:70px;
  1081. height:60px;
  1082. }
  1083. #u26850_text {
  1084. border-width:0px;
  1085. word-wrap:break-word;
  1086. text-transform:none;
  1087. visibility:hidden;
  1088. }
  1089. #u26851 {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:288px;
  1093. top:484px;
  1094. width:70px;
  1095. height:60px;
  1096. display:flex;
  1097. transition:none;
  1098. }
  1099. #u26851 .text {
  1100. position:absolute;
  1101. align-self:center;
  1102. padding:2px 2px 2px 2px;
  1103. box-sizing:border-box;
  1104. width:100%;
  1105. }
  1106. #u26851_img {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:0px;
  1110. top:0px;
  1111. width:70px;
  1112. height:60px;
  1113. }
  1114. #u26851_text {
  1115. border-width:0px;
  1116. word-wrap:break-word;
  1117. text-transform:none;
  1118. visibility:hidden;
  1119. }
  1120. #u26852 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:373px;
  1124. top:484px;
  1125. width:70px;
  1126. height:60px;
  1127. display:flex;
  1128. transition:none;
  1129. }
  1130. #u26852 .text {
  1131. position:absolute;
  1132. align-self:center;
  1133. padding:2px 2px 2px 2px;
  1134. box-sizing:border-box;
  1135. width:100%;
  1136. }
  1137. #u26852_img {
  1138. border-width:0px;
  1139. position:absolute;
  1140. left:0px;
  1141. top:0px;
  1142. width:70px;
  1143. height:60px;
  1144. }
  1145. #u26852_text {
  1146. border-width:0px;
  1147. word-wrap:break-word;
  1148. text-transform:none;
  1149. visibility:hidden;
  1150. }
  1151. #u26853 {
  1152. border-width:0px;
  1153. position:absolute;
  1154. left:451px;
  1155. top:484px;
  1156. width:70px;
  1157. height:60px;
  1158. display:flex;
  1159. transition:none;
  1160. }
  1161. #u26853 .text {
  1162. position:absolute;
  1163. align-self:center;
  1164. padding:2px 2px 2px 2px;
  1165. box-sizing:border-box;
  1166. width:100%;
  1167. }
  1168. #u26853_img {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:0px;
  1172. top:0px;
  1173. width:70px;
  1174. height:60px;
  1175. }
  1176. #u26853_text {
  1177. border-width:0px;
  1178. word-wrap:break-word;
  1179. text-transform:none;
  1180. visibility:hidden;
  1181. }
  1182. #u26854 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:536px;
  1186. top:484px;
  1187. width:70px;
  1188. height:60px;
  1189. display:flex;
  1190. transition:none;
  1191. }
  1192. #u26854 .text {
  1193. position:absolute;
  1194. align-self:center;
  1195. padding:2px 2px 2px 2px;
  1196. box-sizing:border-box;
  1197. width:100%;
  1198. }
  1199. #u26854_img {
  1200. border-width:0px;
  1201. position:absolute;
  1202. left:0px;
  1203. top:0px;
  1204. width:70px;
  1205. height:60px;
  1206. }
  1207. #u26854_text {
  1208. border-width:0px;
  1209. word-wrap:break-word;
  1210. text-transform:none;
  1211. visibility:hidden;
  1212. }
  1213. #u26855 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:621px;
  1217. top:484px;
  1218. width:70px;
  1219. height:60px;
  1220. display:flex;
  1221. transition:none;
  1222. }
  1223. #u26855 .text {
  1224. position:absolute;
  1225. align-self:center;
  1226. padding:2px 2px 2px 2px;
  1227. box-sizing:border-box;
  1228. width:100%;
  1229. }
  1230. #u26855_img {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:0px;
  1234. top:0px;
  1235. width:70px;
  1236. height:60px;
  1237. }
  1238. #u26855_text {
  1239. border-width:0px;
  1240. word-wrap:break-word;
  1241. text-transform:none;
  1242. visibility:hidden;
  1243. }
  1244. #u26856 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:0px;
  1248. top:0px;
  1249. width:0px;
  1250. height:0px;
  1251. }
  1252. #u26857_div {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:1000px;
  1258. height:60px;
  1259. background:inherit;
  1260. background-color:rgba(255, 255, 255, 1);
  1261. box-sizing:border-box;
  1262. border-width:1px;
  1263. border-style:solid;
  1264. border-color:rgba(215, 215, 215, 1);
  1265. border-radius:0px;
  1266. filter:drop-shadow(none);
  1267. transition:none;
  1268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1269. font-weight:400;
  1270. font-style:normal;
  1271. font-size:14px;
  1272. color:#AAAAAA;
  1273. text-align:center;
  1274. line-height:30px;
  1275. }
  1276. #u26857 {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:82px;
  1280. top:1206px;
  1281. width:1000px;
  1282. height:60px;
  1283. display:flex;
  1284. transition:none;
  1285. transform-origin:50% 50%;
  1286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1287. font-weight:400;
  1288. font-style:normal;
  1289. font-size:14px;
  1290. color:#AAAAAA;
  1291. text-align:center;
  1292. line-height:30px;
  1293. }
  1294. #u26857 .text {
  1295. position:absolute;
  1296. align-self:center;
  1297. padding:5px 10px 5px 10px;
  1298. box-sizing:border-box;
  1299. width:100%;
  1300. }
  1301. #u26857_text {
  1302. border-width:0px;
  1303. word-wrap:break-word;
  1304. text-transform:none;
  1305. visibility:hidden;
  1306. }
  1307. #u26858_div {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:0px;
  1311. top:0px;
  1312. width:80px;
  1313. height:30px;
  1314. background:inherit;
  1315. background-color:rgba(255, 255, 255, 1);
  1316. box-sizing:border-box;
  1317. border-width:1px;
  1318. border-style:solid;
  1319. border-color:rgba(170, 170, 170, 1);
  1320. border-radius:4px;
  1321. filter:drop-shadow(none);
  1322. transition:none;
  1323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1324. font-weight:400;
  1325. font-style:normal;
  1326. font-size:14px;
  1327. }
  1328. #u26858 {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:963px;
  1332. top:1221px;
  1333. width:80px;
  1334. height:30px;
  1335. display:flex;
  1336. transition:none;
  1337. transform-origin:50% 50%;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:14px;
  1342. }
  1343. #u26858 .text {
  1344. position:absolute;
  1345. align-self:center;
  1346. padding:2px 2px 2px 2px;
  1347. box-sizing:border-box;
  1348. width:100%;
  1349. }
  1350. #u26858_text {
  1351. border-width:0px;
  1352. word-wrap:break-word;
  1353. text-transform:none;
  1354. }
  1355. #u26859 {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:0px;
  1361. height:0px;
  1362. }
  1363. #u26860_div {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:1000px;
  1369. height:1201px;
  1370. background:inherit;
  1371. background-color:rgba(242, 242, 242, 1);
  1372. box-sizing:border-box;
  1373. border-width:1px;
  1374. border-style:solid;
  1375. border-color:rgba(215, 215, 215, 1);
  1376. border-radius:0px;
  1377. filter:drop-shadow(none);
  1378. transition:none;
  1379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1380. font-weight:400;
  1381. font-style:normal;
  1382. font-size:14px;
  1383. color:#AAAAAA;
  1384. text-align:center;
  1385. line-height:30px;
  1386. }
  1387. #u26860 {
  1388. border-width:0px;
  1389. position:absolute;
  1390. left:1102px;
  1391. top:65px;
  1392. width:1000px;
  1393. height:1201px;
  1394. display:flex;
  1395. transition:none;
  1396. transform-origin:50% 50%;
  1397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1398. font-weight:400;
  1399. font-style:normal;
  1400. font-size:14px;
  1401. color:#AAAAAA;
  1402. text-align:center;
  1403. line-height:30px;
  1404. }
  1405. #u26860 .text {
  1406. position:absolute;
  1407. align-self:center;
  1408. padding:5px 10px 5px 10px;
  1409. box-sizing:border-box;
  1410. width:100%;
  1411. }
  1412. #u26860_text {
  1413. border-width:0px;
  1414. word-wrap:break-word;
  1415. text-transform:none;
  1416. visibility:hidden;
  1417. }
  1418. #u26861_div {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:0px;
  1422. top:0px;
  1423. width:1000px;
  1424. height:607px;
  1425. background:inherit;
  1426. background-color:rgba(255, 255, 255, 1);
  1427. box-sizing:border-box;
  1428. border-width:1px;
  1429. border-style:solid;
  1430. border-color:rgba(215, 215, 215, 1);
  1431. border-radius:0px;
  1432. filter:drop-shadow(none);
  1433. transition:none;
  1434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1435. font-weight:400;
  1436. font-style:normal;
  1437. font-size:14px;
  1438. color:#AAAAAA;
  1439. text-align:center;
  1440. line-height:30px;
  1441. }
  1442. #u26861 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:1102px;
  1446. top:599px;
  1447. width:1000px;
  1448. height:607px;
  1449. display:flex;
  1450. transition:none;
  1451. transform-origin:50% 50%;
  1452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1453. font-weight:400;
  1454. font-style:normal;
  1455. font-size:14px;
  1456. color:#AAAAAA;
  1457. text-align:center;
  1458. line-height:30px;
  1459. }
  1460. #u26861 .text {
  1461. position:absolute;
  1462. align-self:center;
  1463. padding:5px 10px 5px 10px;
  1464. box-sizing:border-box;
  1465. width:100%;
  1466. }
  1467. #u26861_text {
  1468. border-width:0px;
  1469. word-wrap:break-word;
  1470. text-transform:none;
  1471. visibility:hidden;
  1472. }
  1473. #u26862_div {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:1000px;
  1479. height:524px;
  1480. background:inherit;
  1481. background-color:rgba(255, 255, 255, 1);
  1482. box-sizing:border-box;
  1483. border-width:1px;
  1484. border-style:solid;
  1485. border-color:rgba(215, 215, 215, 1);
  1486. border-radius:0px;
  1487. filter:drop-shadow(none);
  1488. transition:none;
  1489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1490. font-weight:400;
  1491. font-style:normal;
  1492. font-size:14px;
  1493. color:#AAAAAA;
  1494. text-align:center;
  1495. line-height:30px;
  1496. }
  1497. #u26862 {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:1102px;
  1501. top:65px;
  1502. width:1000px;
  1503. height:524px;
  1504. display:flex;
  1505. transition:none;
  1506. transform-origin:50% 50%;
  1507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1508. font-weight:400;
  1509. font-style:normal;
  1510. font-size:14px;
  1511. color:#AAAAAA;
  1512. text-align:center;
  1513. line-height:30px;
  1514. }
  1515. #u26862 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:5px 10px 5px 10px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u26862_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u26863_div {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:47px;
  1534. height:35px;
  1535. background:inherit;
  1536. background-color:rgba(255, 255, 255, 0);
  1537. border-top:0px;
  1538. border-right:0px;
  1539. border-bottom:0px;
  1540. border-radius:0px;
  1541. border-top-left-radius:0px;
  1542. border-bottom-left-radius:0px;
  1543. filter:drop-shadow(none);
  1544. transition:none;
  1545. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1546. font-weight:500;
  1547. font-style:normal;
  1548. font-size:18px;
  1549. }
  1550. #u26863 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:1122px;
  1554. top:83px;
  1555. width:47px;
  1556. height:35px;
  1557. display:flex;
  1558. transition:none;
  1559. transform-origin:50% 50%;
  1560. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1561. font-weight:500;
  1562. font-style:normal;
  1563. font-size:18px;
  1564. }
  1565. #u26863 .text {
  1566. position:absolute;
  1567. align-self:center;
  1568. padding:5px 10px 5px 0px;
  1569. box-sizing:border-box;
  1570. width:100%;
  1571. }
  1572. #u26863_text {
  1573. border-width:0px;
  1574. white-space:nowrap;
  1575. text-transform:none;
  1576. }
  1577. #u26864 {
  1578. border-width:0px;
  1579. position:absolute;
  1580. left:0px;
  1581. top:0px;
  1582. width:0px;
  1583. height:0px;
  1584. }
  1585. #u26865_div {
  1586. border-width:0px;
  1587. position:absolute;
  1588. left:0px;
  1589. top:0px;
  1590. width:40px;
  1591. height:40px;
  1592. background:inherit;
  1593. background-color:rgba(255, 255, 255, 0);
  1594. border-top:0px;
  1595. border-right:0px;
  1596. border-bottom:0px;
  1597. border-radius:0px;
  1598. border-top-left-radius:0px;
  1599. border-bottom-left-radius:0px;
  1600. filter:drop-shadow(none);
  1601. transition:none;
  1602. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1603. font-weight:500;
  1604. font-style:normal;
  1605. font-size:14px;
  1606. text-align:center;
  1607. }
  1608. #u26865 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:2062px;
  1612. top:65px;
  1613. width:40px;
  1614. height:40px;
  1615. display:flex;
  1616. transition:none;
  1617. transform-origin:50% 50%;
  1618. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1619. font-weight:500;
  1620. font-style:normal;
  1621. font-size:14px;
  1622. text-align:center;
  1623. }
  1624. #u26865 .text {
  1625. position:absolute;
  1626. align-self:center;
  1627. padding:5px 10px 5px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u26865_text {
  1632. border-width:0px;
  1633. word-wrap:break-word;
  1634. text-transform:none;
  1635. }
  1636. #u26866 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:2050px;
  1640. top:81px;
  1641. width:13px;
  1642. height:13px;
  1643. display:flex;
  1644. transition:none;
  1645. font-size:14px;
  1646. }
  1647. #u26866 .text {
  1648. position:absolute;
  1649. align-self:center;
  1650. padding:2px 2px 2px 2px;
  1651. box-sizing:border-box;
  1652. width:100%;
  1653. }
  1654. #u26866_img {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:13px;
  1660. height:13px;
  1661. }
  1662. #u26866_text {
  1663. border-width:0px;
  1664. word-wrap:break-word;
  1665. text-transform:none;
  1666. visibility:hidden;
  1667. }
  1668. #u26867_div {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:222px;
  1674. height:43px;
  1675. background:inherit;
  1676. background-color:rgba(255, 255, 255, 0);
  1677. border-top:0px;
  1678. border-right:0px;
  1679. border-bottom:0px;
  1680. border-radius:0px;
  1681. border-top-left-radius:0px;
  1682. border-bottom-left-radius:0px;
  1683. filter:drop-shadow(none);
  1684. transition:none;
  1685. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1686. font-weight:500;
  1687. font-style:normal;
  1688. font-size:24px;
  1689. }
  1690. #u26867 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:1132px;
  1694. top:134px;
  1695. width:222px;
  1696. height:43px;
  1697. display:flex;
  1698. transition:none;
  1699. transform-origin:50% 50%;
  1700. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1701. font-weight:500;
  1702. font-style:normal;
  1703. font-size:24px;
  1704. }
  1705. #u26867 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:5px 10px 5px 0px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u26867_text {
  1713. border-width:0px;
  1714. white-space:nowrap;
  1715. text-transform:none;
  1716. }
  1717. #u26868 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:1952px;
  1721. top:135px;
  1722. width:108px;
  1723. height:108px;
  1724. display:flex;
  1725. -webkit-transform:rotate(315deg);
  1726. -moz-transform:rotate(315deg);
  1727. -ms-transform:rotate(315deg);
  1728. transform:rotate(315deg);
  1729. transition:none;
  1730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1731. font-weight:400;
  1732. font-style:normal;
  1733. font-size:28px;
  1734. color:#F59A23;
  1735. }
  1736. #u26868 .text {
  1737. position:absolute;
  1738. align-self:center;
  1739. padding:2px 2px 2px 2px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u26868_img {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:108px;
  1749. height:108px;
  1750. }
  1751. #u26868_text {
  1752. border-width:0px;
  1753. word-wrap:break-word;
  1754. text-transform:none;
  1755. }
  1756. #u26869 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:0px;
  1760. top:0px;
  1761. width:0px;
  1762. height:0px;
  1763. }
  1764. #u26870_div {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:1000px;
  1770. height:60px;
  1771. background:inherit;
  1772. background-color:rgba(255, 255, 255, 1);
  1773. box-sizing:border-box;
  1774. border-width:1px;
  1775. border-style:solid;
  1776. border-color:rgba(215, 215, 215, 1);
  1777. border-radius:0px;
  1778. filter:drop-shadow(none);
  1779. transition:none;
  1780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1781. font-weight:400;
  1782. font-style:normal;
  1783. font-size:14px;
  1784. color:#AAAAAA;
  1785. text-align:center;
  1786. line-height:30px;
  1787. }
  1788. #u26870 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:1102px;
  1792. top:1206px;
  1793. width:1000px;
  1794. height:60px;
  1795. display:flex;
  1796. transition:none;
  1797. transform-origin:50% 50%;
  1798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1799. font-weight:400;
  1800. font-style:normal;
  1801. font-size:14px;
  1802. color:#AAAAAA;
  1803. text-align:center;
  1804. line-height:30px;
  1805. }
  1806. #u26870 .text {
  1807. position:absolute;
  1808. align-self:center;
  1809. padding:5px 10px 5px 10px;
  1810. box-sizing:border-box;
  1811. width:100%;
  1812. }
  1813. #u26870_text {
  1814. border-width:0px;
  1815. word-wrap:break-word;
  1816. text-transform:none;
  1817. visibility:hidden;
  1818. }
  1819. #u26871_div {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:80px;
  1825. height:30px;
  1826. background:inherit;
  1827. background-color:rgba(255, 255, 255, 1);
  1828. box-sizing:border-box;
  1829. border-width:1px;
  1830. border-style:solid;
  1831. border-color:rgba(170, 170, 170, 1);
  1832. border-radius:4px;
  1833. filter:drop-shadow(none);
  1834. transition:none;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:14px;
  1839. }
  1840. #u26871 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:1983px;
  1844. top:1221px;
  1845. width:80px;
  1846. height:30px;
  1847. display:flex;
  1848. transition:none;
  1849. transform-origin:50% 50%;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:14px;
  1854. }
  1855. #u26871 .text {
  1856. position:absolute;
  1857. align-self:center;
  1858. padding:2px 2px 2px 2px;
  1859. box-sizing:border-box;
  1860. width:100%;
  1861. }
  1862. #u26871_text {
  1863. border-width:0px;
  1864. word-wrap:break-word;
  1865. text-transform:none;
  1866. }
  1867. #u26872_div {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:67px;
  1873. height:30px;
  1874. background:inherit;
  1875. background-color:rgba(255, 255, 255, 0);
  1876. border-top:0px;
  1877. border-right:0px;
  1878. border-bottom:0px;
  1879. border-radius:0px;
  1880. border-top-left-radius:0px;
  1881. border-bottom-left-radius:0px;
  1882. filter:drop-shadow(none);
  1883. transition:none;
  1884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:14px;
  1888. color:#7F7F7F;
  1889. }
  1890. #u26872 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:1138px;
  1894. top:193px;
  1895. width:67px;
  1896. height:30px;
  1897. display:flex;
  1898. transition:none;
  1899. transform-origin:50% 50%;
  1900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1901. font-weight:400;
  1902. font-style:normal;
  1903. font-size:14px;
  1904. color:#7F7F7F;
  1905. }
  1906. #u26872 .text {
  1907. position:absolute;
  1908. align-self:center;
  1909. padding:5px 10px 5px 0px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u26872_text {
  1914. border-width:0px;
  1915. white-space:nowrap;
  1916. text-transform:none;
  1917. }
  1918. #u26873_div {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:39px;
  1924. height:30px;
  1925. background:inherit;
  1926. background-color:rgba(255, 255, 255, 0);
  1927. border-top:0px;
  1928. border-right:0px;
  1929. border-bottom:0px;
  1930. border-radius:0px;
  1931. border-top-left-radius:0px;
  1932. border-bottom-left-radius:0px;
  1933. filter:drop-shadow(none);
  1934. transition:none;
  1935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1936. font-weight:400;
  1937. font-style:normal;
  1938. font-size:14px;
  1939. }
  1940. #u26873 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:1209px;
  1944. top:193px;
  1945. width:39px;
  1946. height:30px;
  1947. display:flex;
  1948. transition:none;
  1949. transform-origin:50% 50%;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:14px;
  1954. }
  1955. #u26873 .text {
  1956. position:absolute;
  1957. align-self:center;
  1958. padding:5px 10px 5px 0px;
  1959. box-sizing:border-box;
  1960. width:100%;
  1961. }
  1962. #u26873_text {
  1963. border-width:0px;
  1964. white-space:nowrap;
  1965. text-transform:none;
  1966. }
  1967. #u26874_div {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:0px;
  1971. top:0px;
  1972. width:81px;
  1973. height:30px;
  1974. background:inherit;
  1975. background-color:rgba(255, 255, 255, 0);
  1976. border-top:0px;
  1977. border-right:0px;
  1978. border-bottom:0px;
  1979. border-radius:0px;
  1980. border-top-left-radius:0px;
  1981. border-bottom-left-radius:0px;
  1982. filter:drop-shadow(none);
  1983. transition:none;
  1984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. font-size:14px;
  1988. color:#7F7F7F;
  1989. }
  1990. #u26874 {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:1398px;
  1994. top:193px;
  1995. width:81px;
  1996. height:30px;
  1997. display:flex;
  1998. transition:none;
  1999. transform-origin:50% 50%;
  2000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2001. font-weight:400;
  2002. font-style:normal;
  2003. font-size:14px;
  2004. color:#7F7F7F;
  2005. }
  2006. #u26874 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:5px 10px 5px 0px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u26874_text {
  2014. border-width:0px;
  2015. white-space:nowrap;
  2016. text-transform:none;
  2017. }
  2018. #u26875_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:89px;
  2024. height:30px;
  2025. background:inherit;
  2026. background-color:rgba(255, 255, 255, 0);
  2027. border-top:0px;
  2028. border-right:0px;
  2029. border-bottom:0px;
  2030. border-radius:0px;
  2031. border-top-left-radius:0px;
  2032. border-bottom-left-radius:0px;
  2033. filter:drop-shadow(none);
  2034. transition:none;
  2035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:14px;
  2039. }
  2040. #u26875 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:1469px;
  2044. top:193px;
  2045. width:89px;
  2046. height:30px;
  2047. display:flex;
  2048. transition:none;
  2049. transform-origin:50% 50%;
  2050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. font-size:14px;
  2054. }
  2055. #u26875 .text {
  2056. position:absolute;
  2057. align-self:center;
  2058. padding:5px 10px 5px 0px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u26875_text {
  2063. border-width:0px;
  2064. white-space:nowrap;
  2065. text-transform:none;
  2066. }
  2067. #u26876_div {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:81px;
  2073. height:30px;
  2074. background:inherit;
  2075. background-color:rgba(255, 255, 255, 0);
  2076. border-top:0px;
  2077. border-right:0px;
  2078. border-bottom:0px;
  2079. border-radius:0px;
  2080. border-top-left-radius:0px;
  2081. border-bottom-left-radius:0px;
  2082. filter:drop-shadow(none);
  2083. transition:none;
  2084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. font-size:14px;
  2088. color:#7F7F7F;
  2089. }
  2090. #u26876 {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:1655px;
  2094. top:193px;
  2095. width:81px;
  2096. height:30px;
  2097. display:flex;
  2098. transition:none;
  2099. transform-origin:50% 50%;
  2100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:14px;
  2104. color:#7F7F7F;
  2105. }
  2106. #u26876 .text {
  2107. position:absolute;
  2108. align-self:center;
  2109. padding:5px 10px 5px 0px;
  2110. box-sizing:border-box;
  2111. width:100%;
  2112. }
  2113. #u26876_text {
  2114. border-width:0px;
  2115. white-space:nowrap;
  2116. text-transform:none;
  2117. }
  2118. #u26877_div {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:0px;
  2122. top:0px;
  2123. width:185px;
  2124. height:30px;
  2125. background:inherit;
  2126. background-color:rgba(255, 255, 255, 0);
  2127. border-top:0px;
  2128. border-right:0px;
  2129. border-bottom:0px;
  2130. border-radius:0px;
  2131. border-top-left-radius:0px;
  2132. border-bottom-left-radius:0px;
  2133. filter:drop-shadow(none);
  2134. transition:none;
  2135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2136. font-weight:400;
  2137. font-style:normal;
  2138. font-size:14px;
  2139. }
  2140. #u26877 {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:1726px;
  2144. top:193px;
  2145. width:185px;
  2146. height:30px;
  2147. display:flex;
  2148. transition:none;
  2149. transform-origin:50% 50%;
  2150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2151. font-weight:400;
  2152. font-style:normal;
  2153. font-size:14px;
  2154. }
  2155. #u26877 .text {
  2156. position:absolute;
  2157. align-self:center;
  2158. padding:5px 10px 5px 0px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u26877_text {
  2163. border-width:0px;
  2164. white-space:nowrap;
  2165. text-transform:none;
  2166. }
  2167. #u26878_div {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:81px;
  2173. height:30px;
  2174. background:inherit;
  2175. background-color:rgba(255, 255, 255, 0);
  2176. border-top:0px;
  2177. border-right:0px;
  2178. border-bottom:0px;
  2179. border-radius:0px;
  2180. border-top-left-radius:0px;
  2181. border-bottom-left-radius:0px;
  2182. filter:drop-shadow(none);
  2183. transition:none;
  2184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2185. font-weight:400;
  2186. font-style:normal;
  2187. font-size:14px;
  2188. color:#7F7F7F;
  2189. }
  2190. #u26878 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:1138px;
  2194. top:235px;
  2195. width:81px;
  2196. height:30px;
  2197. display:flex;
  2198. transition:none;
  2199. transform-origin:50% 50%;
  2200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2201. font-weight:400;
  2202. font-style:normal;
  2203. font-size:14px;
  2204. color:#7F7F7F;
  2205. }
  2206. #u26878 .text {
  2207. position:absolute;
  2208. align-self:center;
  2209. padding:5px 10px 5px 0px;
  2210. box-sizing:border-box;
  2211. width:100%;
  2212. }
  2213. #u26878_text {
  2214. border-width:0px;
  2215. white-space:nowrap;
  2216. text-transform:none;
  2217. }
  2218. #u26879_div {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:95px;
  2224. height:30px;
  2225. background:inherit;
  2226. background-color:rgba(255, 255, 255, 0);
  2227. border-top:0px;
  2228. border-right:0px;
  2229. border-bottom:0px;
  2230. border-radius:0px;
  2231. border-top-left-radius:0px;
  2232. border-bottom-left-radius:0px;
  2233. filter:drop-shadow(none);
  2234. transition:none;
  2235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2236. font-weight:400;
  2237. font-style:normal;
  2238. font-size:14px;
  2239. }
  2240. #u26879 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:1209px;
  2244. top:235px;
  2245. width:95px;
  2246. height:30px;
  2247. display:flex;
  2248. transition:none;
  2249. transform-origin:50% 50%;
  2250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2251. font-weight:400;
  2252. font-style:normal;
  2253. font-size:14px;
  2254. }
  2255. #u26879 .text {
  2256. position:absolute;
  2257. align-self:center;
  2258. padding:5px 10px 5px 0px;
  2259. box-sizing:border-box;
  2260. width:100%;
  2261. }
  2262. #u26879_text {
  2263. border-width:0px;
  2264. white-space:nowrap;
  2265. text-transform:none;
  2266. }
  2267. #u26880_div {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:57px;
  2273. height:30px;
  2274. background:inherit;
  2275. background-color:rgba(255, 255, 255, 0);
  2276. border-radius:0px;
  2277. filter:drop-shadow(none);
  2278. transition:none;
  2279. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2280. font-weight:500;
  2281. font-style:normal;
  2282. font-size:14px;
  2283. color:#000000;
  2284. line-height:30px;
  2285. }
  2286. #u26880 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:1138px;
  2290. top:286px;
  2291. width:57px;
  2292. height:30px;
  2293. display:flex;
  2294. transition:none;
  2295. transform-origin:50% 50%;
  2296. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2297. font-weight:500;
  2298. font-style:normal;
  2299. font-size:14px;
  2300. color:#000000;
  2301. line-height:30px;
  2302. }
  2303. #u26880 .text {
  2304. position:absolute;
  2305. align-self:flex-start;
  2306. padding:0px 0px 0px 0px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u26880_text {
  2311. border-width:0px;
  2312. white-space:nowrap;
  2313. text-transform:none;
  2314. }
  2315. #u26881 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:1138px;
  2319. top:326px;
  2320. width:868px;
  2321. height:102px;
  2322. }
  2323. #u26882 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:434px;
  2329. height:34px;
  2330. display:flex;
  2331. transition:none;
  2332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. font-size:14px;
  2336. color:#FFFFFF;
  2337. text-align:left;
  2338. line-height:30px;
  2339. }
  2340. #u26882 .text {
  2341. position:absolute;
  2342. align-self:center;
  2343. padding:2px 10px 2px 10px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u26882_img {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:434px;
  2353. height:34px;
  2354. }
  2355. #u26882_text {
  2356. border-width:0px;
  2357. word-wrap:break-word;
  2358. text-transform:none;
  2359. }
  2360. #u26883 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:434px;
  2364. top:0px;
  2365. width:434px;
  2366. height:34px;
  2367. display:flex;
  2368. transition:none;
  2369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2370. font-weight:400;
  2371. font-style:normal;
  2372. font-size:14px;
  2373. color:#FFFFFF;
  2374. text-align:left;
  2375. line-height:30px;
  2376. }
  2377. #u26883 .text {
  2378. position:absolute;
  2379. align-self:center;
  2380. padding:2px 10px 2px 10px;
  2381. box-sizing:border-box;
  2382. width:100%;
  2383. }
  2384. #u26883_img {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:434px;
  2390. height:34px;
  2391. }
  2392. #u26883_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. }
  2397. #u26884 {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:34px;
  2402. width:434px;
  2403. height:34px;
  2404. display:flex;
  2405. transition:none;
  2406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2407. font-weight:400;
  2408. font-style:normal;
  2409. font-size:14px;
  2410. text-align:left;
  2411. line-height:30px;
  2412. }
  2413. #u26884 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:2px 10px 2px 10px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u26884_img {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:434px;
  2426. height:34px;
  2427. }
  2428. #u26884_text {
  2429. border-width:0px;
  2430. word-wrap:break-word;
  2431. text-transform:none;
  2432. visibility:hidden;
  2433. }
  2434. #u26885 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:434px;
  2438. top:34px;
  2439. width:434px;
  2440. height:34px;
  2441. display:flex;
  2442. transition:none;
  2443. font-size:14px;
  2444. text-align:left;
  2445. line-height:30px;
  2446. }
  2447. #u26885 .text {
  2448. position:absolute;
  2449. align-self:center;
  2450. padding:2px 10px 2px 10px;
  2451. box-sizing:border-box;
  2452. width:100%;
  2453. }
  2454. #u26885_img {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:434px;
  2460. height:34px;
  2461. }
  2462. #u26885_text {
  2463. border-width:0px;
  2464. word-wrap:break-word;
  2465. text-transform:none;
  2466. visibility:hidden;
  2467. }
  2468. #u26886 {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:68px;
  2473. width:434px;
  2474. height:34px;
  2475. display:flex;
  2476. transition:none;
  2477. font-size:14px;
  2478. text-align:left;
  2479. line-height:30px;
  2480. }
  2481. #u26886 .text {
  2482. position:absolute;
  2483. align-self:center;
  2484. padding:2px 10px 2px 10px;
  2485. box-sizing:border-box;
  2486. width:100%;
  2487. }
  2488. #u26886_img {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:434px;
  2494. height:34px;
  2495. }
  2496. #u26886_text {
  2497. border-width:0px;
  2498. word-wrap:break-word;
  2499. text-transform:none;
  2500. visibility:hidden;
  2501. }
  2502. #u26887 {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:434px;
  2506. top:68px;
  2507. width:434px;
  2508. height:34px;
  2509. display:flex;
  2510. transition:none;
  2511. font-size:14px;
  2512. text-align:left;
  2513. line-height:30px;
  2514. }
  2515. #u26887 .text {
  2516. position:absolute;
  2517. align-self:center;
  2518. padding:2px 10px 2px 10px;
  2519. box-sizing:border-box;
  2520. width:100%;
  2521. }
  2522. #u26887_img {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:0px;
  2527. width:434px;
  2528. height:34px;
  2529. }
  2530. #u26887_text {
  2531. border-width:0px;
  2532. word-wrap:break-word;
  2533. text-transform:none;
  2534. visibility:hidden;
  2535. }
  2536. #u26888_div {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:57px;
  2542. height:30px;
  2543. background:inherit;
  2544. background-color:rgba(255, 255, 255, 0);
  2545. border-radius:0px;
  2546. filter:drop-shadow(none);
  2547. transition:none;
  2548. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2549. font-weight:500;
  2550. font-style:normal;
  2551. font-size:14px;
  2552. color:#000000;
  2553. line-height:30px;
  2554. }
  2555. #u26888 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:1138px;
  2559. top:444px;
  2560. width:57px;
  2561. height:30px;
  2562. display:flex;
  2563. transition:none;
  2564. transform-origin:50% 50%;
  2565. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2566. font-weight:500;
  2567. font-style:normal;
  2568. font-size:14px;
  2569. color:#000000;
  2570. line-height:30px;
  2571. }
  2572. #u26888 .text {
  2573. position:absolute;
  2574. align-self:flex-start;
  2575. padding:0px 0px 0px 0px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u26888_text {
  2580. border-width:0px;
  2581. white-space:nowrap;
  2582. text-transform:none;
  2583. }
  2584. #u26889 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:1138px;
  2588. top:484px;
  2589. width:70px;
  2590. height:60px;
  2591. display:flex;
  2592. transition:none;
  2593. }
  2594. #u26889 .text {
  2595. position:absolute;
  2596. align-self:center;
  2597. padding:2px 2px 2px 2px;
  2598. box-sizing:border-box;
  2599. width:100%;
  2600. }
  2601. #u26889_img {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:70px;
  2607. height:60px;
  2608. }
  2609. #u26889_text {
  2610. border-width:0px;
  2611. word-wrap:break-word;
  2612. text-transform:none;
  2613. visibility:hidden;
  2614. }
  2615. #u26890 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:1223px;
  2619. top:484px;
  2620. width:70px;
  2621. height:60px;
  2622. display:flex;
  2623. transition:none;
  2624. }
  2625. #u26890 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:2px 2px 2px 2px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u26890_img {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:70px;
  2638. height:60px;
  2639. }
  2640. #u26890_text {
  2641. border-width:0px;
  2642. word-wrap:break-word;
  2643. text-transform:none;
  2644. visibility:hidden;
  2645. }
  2646. #u26891 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:1308px;
  2650. top:484px;
  2651. width:70px;
  2652. height:60px;
  2653. display:flex;
  2654. transition:none;
  2655. }
  2656. #u26891 .text {
  2657. position:absolute;
  2658. align-self:center;
  2659. padding:2px 2px 2px 2px;
  2660. box-sizing:border-box;
  2661. width:100%;
  2662. }
  2663. #u26891_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:70px;
  2669. height:60px;
  2670. }
  2671. #u26891_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. visibility:hidden;
  2676. }
  2677. #u26892 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:1393px;
  2681. top:484px;
  2682. width:70px;
  2683. height:60px;
  2684. display:flex;
  2685. transition:none;
  2686. }
  2687. #u26892 .text {
  2688. position:absolute;
  2689. align-self:center;
  2690. padding:2px 2px 2px 2px;
  2691. box-sizing:border-box;
  2692. width:100%;
  2693. }
  2694. #u26892_img {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:70px;
  2700. height:60px;
  2701. }
  2702. #u26892_text {
  2703. border-width:0px;
  2704. word-wrap:break-word;
  2705. text-transform:none;
  2706. visibility:hidden;
  2707. }
  2708. #u26893 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:1471px;
  2712. top:484px;
  2713. width:70px;
  2714. height:60px;
  2715. display:flex;
  2716. transition:none;
  2717. }
  2718. #u26893 .text {
  2719. position:absolute;
  2720. align-self:center;
  2721. padding:2px 2px 2px 2px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u26893_img {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:70px;
  2731. height:60px;
  2732. }
  2733. #u26893_text {
  2734. border-width:0px;
  2735. word-wrap:break-word;
  2736. text-transform:none;
  2737. visibility:hidden;
  2738. }
  2739. #u26894 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:1556px;
  2743. top:484px;
  2744. width:70px;
  2745. height:60px;
  2746. display:flex;
  2747. transition:none;
  2748. }
  2749. #u26894 .text {
  2750. position:absolute;
  2751. align-self:center;
  2752. padding:2px 2px 2px 2px;
  2753. box-sizing:border-box;
  2754. width:100%;
  2755. }
  2756. #u26894_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:70px;
  2762. height:60px;
  2763. }
  2764. #u26894_text {
  2765. border-width:0px;
  2766. word-wrap:break-word;
  2767. text-transform:none;
  2768. visibility:hidden;
  2769. }
  2770. #u26895 {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:1641px;
  2774. top:484px;
  2775. width:70px;
  2776. height:60px;
  2777. display:flex;
  2778. transition:none;
  2779. }
  2780. #u26895 .text {
  2781. position:absolute;
  2782. align-self:center;
  2783. padding:2px 2px 2px 2px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u26895_img {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:70px;
  2793. height:60px;
  2794. }
  2795. #u26895_text {
  2796. border-width:0px;
  2797. word-wrap:break-word;
  2798. text-transform:none;
  2799. visibility:hidden;
  2800. }
  2801. #u26896_div {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:80px;
  2807. height:30px;
  2808. background:inherit;
  2809. background-color:rgba(255, 255, 255, 0);
  2810. border-left:0px;
  2811. border-top:0px;
  2812. border-right:0px;
  2813. border-radius:0px;
  2814. border-bottom-right-radius:0px;
  2815. border-bottom-left-radius:0px;
  2816. filter:drop-shadow(none);
  2817. transition:none;
  2818. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2819. font-weight:500;
  2820. font-style:normal;
  2821. font-size:14px;
  2822. line-height:30px;
  2823. }
  2824. #u26896 {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:1138px;
  2828. top:619px;
  2829. width:80px;
  2830. height:30px;
  2831. display:flex;
  2832. transition:none;
  2833. transform-origin:50% 50%;
  2834. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2835. font-weight:500;
  2836. font-style:normal;
  2837. font-size:14px;
  2838. line-height:30px;
  2839. }
  2840. #u26896 .text {
  2841. position:absolute;
  2842. align-self:flex-start;
  2843. padding:0px 0px 0px 0px;
  2844. box-sizing:border-box;
  2845. width:100%;
  2846. }
  2847. #u26896_text {
  2848. border-width:0px;
  2849. word-wrap:break-word;
  2850. text-transform:none;
  2851. }
  2852. #u26897_div {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:0px;
  2856. top:0px;
  2857. width:80px;
  2858. height:30px;
  2859. background:inherit;
  2860. background-color:rgba(255, 255, 255, 0);
  2861. border-left:0px;
  2862. border-top:0px;
  2863. border-right:0px;
  2864. border-radius:0px;
  2865. border-bottom-right-radius:0px;
  2866. border-bottom-left-radius:0px;
  2867. filter:drop-shadow(none);
  2868. transition:none;
  2869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2870. font-weight:400;
  2871. font-style:normal;
  2872. font-size:14px;
  2873. color:#7F7F7F;
  2874. line-height:30px;
  2875. }
  2876. #u26897 {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:1138px;
  2880. top:696px;
  2881. width:80px;
  2882. height:30px;
  2883. display:flex;
  2884. transition:none;
  2885. transform-origin:50% 50%;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:14px;
  2890. color:#7F7F7F;
  2891. line-height:30px;
  2892. }
  2893. #u26897 .text {
  2894. position:absolute;
  2895. align-self:flex-start;
  2896. padding:0px 0px 0px 0px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u26897_text {
  2901. border-width:0px;
  2902. word-wrap:break-word;
  2903. text-transform:none;
  2904. }
  2905. #u26898_div {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:71px;
  2911. height:30px;
  2912. background:inherit;
  2913. background-color:rgba(255, 255, 255, 0);
  2914. border-left:0px;
  2915. border-top:0px;
  2916. border-right:0px;
  2917. border-radius:0px;
  2918. border-bottom-right-radius:0px;
  2919. border-bottom-left-radius:0px;
  2920. filter:drop-shadow(none);
  2921. transition:none;
  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:30px;
  2928. }
  2929. #u26898 {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:1138px;
  2933. top:659px;
  2934. width:71px;
  2935. height:30px;
  2936. display:flex;
  2937. transition:none;
  2938. transform-origin:50% 50%;
  2939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2940. font-weight:400;
  2941. font-style:normal;
  2942. font-size:14px;
  2943. color:#7F7F7F;
  2944. line-height:30px;
  2945. }
  2946. #u26898 .text {
  2947. position:absolute;
  2948. align-self:flex-start;
  2949. padding:0px 0px 0px 0px;
  2950. box-sizing:border-box;
  2951. width:100%;
  2952. }
  2953. #u26898_text {
  2954. border-width:0px;
  2955. white-space:nowrap;
  2956. text-transform:none;
  2957. }
  2958. #u26899_div {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:0px;
  2962. top:0px;
  2963. width:29px;
  2964. height:30px;
  2965. background:inherit;
  2966. background-color:rgba(255, 255, 255, 0);
  2967. border-left:0px;
  2968. border-top:0px;
  2969. border-right:0px;
  2970. border-radius:0px;
  2971. border-bottom-right-radius:0px;
  2972. border-bottom-left-radius:0px;
  2973. filter:drop-shadow(none);
  2974. transition:none;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:14px;
  2979. line-height:30px;
  2980. }
  2981. #u26899 {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:1218px;
  2985. top:659px;
  2986. width:29px;
  2987. height:30px;
  2988. display:flex;
  2989. transition:none;
  2990. transform-origin:50% 50%;
  2991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2992. font-weight:400;
  2993. font-style:normal;
  2994. font-size:14px;
  2995. line-height:30px;
  2996. }
  2997. #u26899 .text {
  2998. position:absolute;
  2999. align-self:flex-start;
  3000. padding:0px 0px 0px 0px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u26899_text {
  3005. border-width:0px;
  3006. white-space:nowrap;
  3007. text-transform:none;
  3008. }
  3009. #u26900_div {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:80px;
  3015. height:30px;
  3016. background:inherit;
  3017. background-color:rgba(255, 255, 255, 0);
  3018. border-left:0px;
  3019. border-top:0px;
  3020. border-right:0px;
  3021. border-radius:0px;
  3022. border-bottom-right-radius:0px;
  3023. border-bottom-left-radius:0px;
  3024. filter:drop-shadow(none);
  3025. transition:none;
  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:30px;
  3032. }
  3033. #u26900 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:1577px;
  3037. top:659px;
  3038. width:80px;
  3039. height:30px;
  3040. display:flex;
  3041. transition:none;
  3042. transform-origin:50% 50%;
  3043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3044. font-weight:400;
  3045. font-style:normal;
  3046. font-size:14px;
  3047. color:#7F7F7F;
  3048. line-height:30px;
  3049. }
  3050. #u26900 .text {
  3051. position:absolute;
  3052. align-self:flex-start;
  3053. padding:0px 0px 0px 0px;
  3054. box-sizing:border-box;
  3055. width:100%;
  3056. }
  3057. #u26900_text {
  3058. border-width:0px;
  3059. word-wrap:break-word;
  3060. text-transform:none;
  3061. }
  3062. #u26901_div {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:142px;
  3068. height:30px;
  3069. background:inherit;
  3070. background-color:rgba(255, 255, 255, 0);
  3071. border-left:0px;
  3072. border-top:0px;
  3073. border-right:0px;
  3074. border-radius:0px;
  3075. border-bottom-right-radius:0px;
  3076. border-bottom-left-radius:0px;
  3077. filter:drop-shadow(none);
  3078. transition:none;
  3079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:14px;
  3083. line-height:30px;
  3084. }
  3085. #u26901 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:1657px;
  3089. top:659px;
  3090. width:142px;
  3091. height:30px;
  3092. display:flex;
  3093. transition:none;
  3094. transform-origin:50% 50%;
  3095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3096. font-weight:400;
  3097. font-style:normal;
  3098. font-size:14px;
  3099. line-height:30px;
  3100. }
  3101. #u26901 .text {
  3102. position:absolute;
  3103. align-self:flex-start;
  3104. padding:0px 0px 0px 0px;
  3105. box-sizing:border-box;
  3106. width:100%;
  3107. }
  3108. #u26901_text {
  3109. border-width:0px;
  3110. white-space:nowrap;
  3111. text-transform:none;
  3112. }
  3113. #u26902_div {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:0px;
  3117. top:0px;
  3118. width:43px;
  3119. height:30px;
  3120. background:inherit;
  3121. background-color:rgba(255, 255, 255, 0);
  3122. border-left:0px;
  3123. border-top:0px;
  3124. border-right:0px;
  3125. border-radius:0px;
  3126. border-bottom-right-radius:0px;
  3127. border-bottom-left-radius:0px;
  3128. filter:drop-shadow(none);
  3129. transition:none;
  3130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3131. font-weight:400;
  3132. font-style:normal;
  3133. font-size:14px;
  3134. color:#1890FF;
  3135. line-height:30px;
  3136. }
  3137. #u26902 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:1218px;
  3141. top:696px;
  3142. width:43px;
  3143. height:30px;
  3144. display:flex;
  3145. transition:none;
  3146. transform-origin:50% 50%;
  3147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3148. font-weight:400;
  3149. font-style:normal;
  3150. font-size:14px;
  3151. color:#1890FF;
  3152. line-height:30px;
  3153. }
  3154. #u26902 .text {
  3155. position:absolute;
  3156. align-self:flex-start;
  3157. padding:0px 0px 0px 0px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u26902_text {
  3162. border-width:0px;
  3163. white-space:nowrap;
  3164. text-transform:none;
  3165. }
  3166. #u26903_div {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:0px;
  3170. top:0px;
  3171. width:80px;
  3172. height:30px;
  3173. background:inherit;
  3174. background-color:rgba(255, 255, 255, 0);
  3175. border-left:0px;
  3176. border-top:0px;
  3177. border-right:0px;
  3178. border-radius:0px;
  3179. border-bottom-right-radius:0px;
  3180. border-bottom-left-radius:0px;
  3181. filter:drop-shadow(none);
  3182. transition:none;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:14px;
  3187. color:#7F7F7F;
  3188. line-height:30px;
  3189. }
  3190. #u26903 {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:1138px;
  3194. top:736px;
  3195. width:80px;
  3196. height:30px;
  3197. display:flex;
  3198. transition:none;
  3199. transform-origin:50% 50%;
  3200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3201. font-weight:400;
  3202. font-style:normal;
  3203. font-size:14px;
  3204. color:#7F7F7F;
  3205. line-height:30px;
  3206. }
  3207. #u26903 .text {
  3208. position:absolute;
  3209. align-self:flex-start;
  3210. padding:0px 0px 0px 0px;
  3211. box-sizing:border-box;
  3212. width:100%;
  3213. }
  3214. #u26903_text {
  3215. border-width:0px;
  3216. word-wrap:break-word;
  3217. text-transform:none;
  3218. }
  3219. #u26904_div {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:337px;
  3225. height:30px;
  3226. background:inherit;
  3227. background-color:rgba(255, 255, 255, 0);
  3228. border-left:0px;
  3229. border-top:0px;
  3230. border-right:0px;
  3231. border-radius:0px;
  3232. border-bottom-right-radius:0px;
  3233. border-bottom-left-radius:0px;
  3234. filter:drop-shadow(none);
  3235. transition:none;
  3236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:14px;
  3240. line-height:30px;
  3241. }
  3242. #u26904 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:1218px;
  3246. top:736px;
  3247. width:337px;
  3248. height:30px;
  3249. display:flex;
  3250. transition:none;
  3251. transform-origin:50% 50%;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:14px;
  3256. line-height:30px;
  3257. }
  3258. #u26904 .text {
  3259. position:absolute;
  3260. align-self:flex-start;
  3261. padding:0px 0px 0px 0px;
  3262. box-sizing:border-box;
  3263. width:100%;
  3264. }
  3265. #u26904_text {
  3266. border-width:0px;
  3267. white-space:nowrap;
  3268. text-transform:none;
  3269. }
  3270. #u26905 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:0px;
  3276. height:0px;
  3277. }
  3278. #u26906_div {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:1000px;
  3284. height:1201px;
  3285. background:inherit;
  3286. background-color:rgba(242, 242, 242, 1);
  3287. box-sizing:border-box;
  3288. border-width:1px;
  3289. border-style:solid;
  3290. border-color:rgba(215, 215, 215, 1);
  3291. border-radius:0px;
  3292. filter:drop-shadow(none);
  3293. transition:none;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:14px;
  3298. color:#AAAAAA;
  3299. text-align:center;
  3300. line-height:30px;
  3301. }
  3302. #u26906 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:2122px;
  3306. top:65px;
  3307. width:1000px;
  3308. height:1201px;
  3309. display:flex;
  3310. transition:none;
  3311. transform-origin:50% 50%;
  3312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3313. font-weight:400;
  3314. font-style:normal;
  3315. font-size:14px;
  3316. color:#AAAAAA;
  3317. text-align:center;
  3318. line-height:30px;
  3319. }
  3320. #u26906 .text {
  3321. position:absolute;
  3322. align-self:center;
  3323. padding:5px 10px 5px 10px;
  3324. box-sizing:border-box;
  3325. width:100%;
  3326. }
  3327. #u26906_text {
  3328. border-width:0px;
  3329. word-wrap:break-word;
  3330. text-transform:none;
  3331. visibility:hidden;
  3332. }
  3333. #u26907_div {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:1000px;
  3339. height:607px;
  3340. background:inherit;
  3341. background-color:rgba(255, 255, 255, 1);
  3342. box-sizing:border-box;
  3343. border-width:1px;
  3344. border-style:solid;
  3345. border-color:rgba(215, 215, 215, 1);
  3346. border-radius:0px;
  3347. filter:drop-shadow(none);
  3348. transition:none;
  3349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:14px;
  3353. color:#AAAAAA;
  3354. text-align:center;
  3355. line-height:30px;
  3356. }
  3357. #u26907 {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:2122px;
  3361. top:599px;
  3362. width:1000px;
  3363. height:607px;
  3364. display:flex;
  3365. transition:none;
  3366. transform-origin:50% 50%;
  3367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3368. font-weight:400;
  3369. font-style:normal;
  3370. font-size:14px;
  3371. color:#AAAAAA;
  3372. text-align:center;
  3373. line-height:30px;
  3374. }
  3375. #u26907 .text {
  3376. position:absolute;
  3377. align-self:center;
  3378. padding:5px 10px 5px 10px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u26907_text {
  3383. border-width:0px;
  3384. word-wrap:break-word;
  3385. text-transform:none;
  3386. visibility:hidden;
  3387. }
  3388. #u26908_div {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:0px;
  3392. top:0px;
  3393. width:1000px;
  3394. height:524px;
  3395. background:inherit;
  3396. background-color:rgba(255, 255, 255, 1);
  3397. box-sizing:border-box;
  3398. border-width:1px;
  3399. border-style:solid;
  3400. border-color:rgba(215, 215, 215, 1);
  3401. border-radius:0px;
  3402. filter:drop-shadow(none);
  3403. transition:none;
  3404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3405. font-weight:400;
  3406. font-style:normal;
  3407. font-size:14px;
  3408. color:#AAAAAA;
  3409. text-align:center;
  3410. line-height:30px;
  3411. }
  3412. #u26908 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:2122px;
  3416. top:65px;
  3417. width:1000px;
  3418. height:524px;
  3419. display:flex;
  3420. transition:none;
  3421. transform-origin:50% 50%;
  3422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3423. font-weight:400;
  3424. font-style:normal;
  3425. font-size:14px;
  3426. color:#AAAAAA;
  3427. text-align:center;
  3428. line-height:30px;
  3429. }
  3430. #u26908 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:5px 10px 5px 10px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u26908_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u26909_div {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:47px;
  3449. height:35px;
  3450. background:inherit;
  3451. background-color:rgba(255, 255, 255, 0);
  3452. border-top:0px;
  3453. border-right:0px;
  3454. border-bottom:0px;
  3455. border-radius:0px;
  3456. border-top-left-radius:0px;
  3457. border-bottom-left-radius:0px;
  3458. filter:drop-shadow(none);
  3459. transition:none;
  3460. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3461. font-weight:500;
  3462. font-style:normal;
  3463. font-size:18px;
  3464. }
  3465. #u26909 {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:2142px;
  3469. top:83px;
  3470. width:47px;
  3471. height:35px;
  3472. display:flex;
  3473. transition:none;
  3474. transform-origin:50% 50%;
  3475. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3476. font-weight:500;
  3477. font-style:normal;
  3478. font-size:18px;
  3479. }
  3480. #u26909 .text {
  3481. position:absolute;
  3482. align-self:center;
  3483. padding:5px 10px 5px 0px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u26909_text {
  3488. border-width:0px;
  3489. white-space:nowrap;
  3490. text-transform:none;
  3491. }
  3492. #u26910 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:0px;
  3498. height:0px;
  3499. }
  3500. #u26911_div {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:40px;
  3506. height:40px;
  3507. background:inherit;
  3508. background-color:rgba(255, 255, 255, 0);
  3509. border-top:0px;
  3510. border-right:0px;
  3511. border-bottom:0px;
  3512. border-radius:0px;
  3513. border-top-left-radius:0px;
  3514. border-bottom-left-radius:0px;
  3515. filter:drop-shadow(none);
  3516. transition:none;
  3517. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3518. font-weight:500;
  3519. font-style:normal;
  3520. font-size:14px;
  3521. text-align:center;
  3522. }
  3523. #u26911 {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:3082px;
  3527. top:65px;
  3528. width:40px;
  3529. height:40px;
  3530. display:flex;
  3531. transition:none;
  3532. transform-origin:50% 50%;
  3533. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3534. font-weight:500;
  3535. font-style:normal;
  3536. font-size:14px;
  3537. text-align:center;
  3538. }
  3539. #u26911 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:5px 10px 5px 0px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u26911_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. }
  3551. #u26912 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:3070px;
  3555. top:81px;
  3556. width:13px;
  3557. height:13px;
  3558. display:flex;
  3559. transition:none;
  3560. font-size:14px;
  3561. }
  3562. #u26912 .text {
  3563. position:absolute;
  3564. align-self:center;
  3565. padding:2px 2px 2px 2px;
  3566. box-sizing:border-box;
  3567. width:100%;
  3568. }
  3569. #u26912_img {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:13px;
  3575. height:13px;
  3576. }
  3577. #u26912_text {
  3578. border-width:0px;
  3579. word-wrap:break-word;
  3580. text-transform:none;
  3581. visibility:hidden;
  3582. }
  3583. #u26913_div {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:222px;
  3589. height:43px;
  3590. background:inherit;
  3591. background-color:rgba(255, 255, 255, 0);
  3592. border-top:0px;
  3593. border-right:0px;
  3594. border-bottom:0px;
  3595. border-radius:0px;
  3596. border-top-left-radius:0px;
  3597. border-bottom-left-radius:0px;
  3598. filter:drop-shadow(none);
  3599. transition:none;
  3600. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3601. font-weight:500;
  3602. font-style:normal;
  3603. font-size:24px;
  3604. }
  3605. #u26913 {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:2152px;
  3609. top:134px;
  3610. width:222px;
  3611. height:43px;
  3612. display:flex;
  3613. transition:none;
  3614. transform-origin:50% 50%;
  3615. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3616. font-weight:500;
  3617. font-style:normal;
  3618. font-size:24px;
  3619. }
  3620. #u26913 .text {
  3621. position:absolute;
  3622. align-self:center;
  3623. padding:5px 10px 5px 0px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u26913_text {
  3628. border-width:0px;
  3629. white-space:nowrap;
  3630. text-transform:none;
  3631. }
  3632. #u26914 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:2972px;
  3636. top:135px;
  3637. width:108px;
  3638. height:108px;
  3639. display:flex;
  3640. -webkit-transform:rotate(315deg);
  3641. -moz-transform:rotate(315deg);
  3642. -ms-transform:rotate(315deg);
  3643. transform:rotate(315deg);
  3644. transition:none;
  3645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3646. font-weight:400;
  3647. font-style:normal;
  3648. font-size:28px;
  3649. color:#F59A23;
  3650. }
  3651. #u26914 .text {
  3652. position:absolute;
  3653. align-self:center;
  3654. padding:2px 2px 2px 2px;
  3655. box-sizing:border-box;
  3656. width:100%;
  3657. }
  3658. #u26914_img {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:108px;
  3664. height:108px;
  3665. }
  3666. #u26914_text {
  3667. border-width:0px;
  3668. word-wrap:break-word;
  3669. text-transform:none;
  3670. }
  3671. #u26915 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:0px;
  3677. height:0px;
  3678. }
  3679. #u26916_div {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:1000px;
  3685. height:60px;
  3686. background:inherit;
  3687. background-color:rgba(255, 255, 255, 1);
  3688. box-sizing:border-box;
  3689. border-width:1px;
  3690. border-style:solid;
  3691. border-color:rgba(215, 215, 215, 1);
  3692. border-radius:0px;
  3693. filter:drop-shadow(none);
  3694. transition:none;
  3695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3696. font-weight:400;
  3697. font-style:normal;
  3698. font-size:14px;
  3699. color:#AAAAAA;
  3700. text-align:center;
  3701. line-height:30px;
  3702. }
  3703. #u26916 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:2122px;
  3707. top:1206px;
  3708. width:1000px;
  3709. height:60px;
  3710. display:flex;
  3711. transition:none;
  3712. transform-origin:50% 50%;
  3713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3714. font-weight:400;
  3715. font-style:normal;
  3716. font-size:14px;
  3717. color:#AAAAAA;
  3718. text-align:center;
  3719. line-height:30px;
  3720. }
  3721. #u26916 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:5px 10px 5px 10px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u26916_text {
  3729. border-width:0px;
  3730. word-wrap:break-word;
  3731. text-transform:none;
  3732. visibility:hidden;
  3733. }
  3734. #u26917_div {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:80px;
  3740. height:30px;
  3741. background:inherit;
  3742. background-color:rgba(255, 255, 255, 1);
  3743. box-sizing:border-box;
  3744. border-width:1px;
  3745. border-style:solid;
  3746. border-color:rgba(170, 170, 170, 1);
  3747. border-radius:4px;
  3748. filter:drop-shadow(none);
  3749. transition:none;
  3750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3751. font-weight:400;
  3752. font-style:normal;
  3753. font-size:14px;
  3754. }
  3755. #u26917 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:3003px;
  3759. top:1221px;
  3760. width:80px;
  3761. height:30px;
  3762. display:flex;
  3763. transition:none;
  3764. transform-origin:50% 50%;
  3765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3766. font-weight:400;
  3767. font-style:normal;
  3768. font-size:14px;
  3769. }
  3770. #u26917 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:2px 2px 2px 2px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u26917_text {
  3778. border-width:0px;
  3779. word-wrap:break-word;
  3780. text-transform:none;
  3781. }
  3782. #u26918_div {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:0px;
  3786. top:0px;
  3787. width:67px;
  3788. height:30px;
  3789. background:inherit;
  3790. background-color:rgba(255, 255, 255, 0);
  3791. border-top:0px;
  3792. border-right:0px;
  3793. border-bottom:0px;
  3794. border-radius:0px;
  3795. border-top-left-radius:0px;
  3796. border-bottom-left-radius:0px;
  3797. filter:drop-shadow(none);
  3798. transition:none;
  3799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:14px;
  3803. color:#7F7F7F;
  3804. }
  3805. #u26918 {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:2158px;
  3809. top:193px;
  3810. width:67px;
  3811. height:30px;
  3812. display:flex;
  3813. transition:none;
  3814. transform-origin:50% 50%;
  3815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3816. font-weight:400;
  3817. font-style:normal;
  3818. font-size:14px;
  3819. color:#7F7F7F;
  3820. }
  3821. #u26918 .text {
  3822. position:absolute;
  3823. align-self:center;
  3824. padding:5px 10px 5px 0px;
  3825. box-sizing:border-box;
  3826. width:100%;
  3827. }
  3828. #u26918_text {
  3829. border-width:0px;
  3830. white-space:nowrap;
  3831. text-transform:none;
  3832. }
  3833. #u26919_div {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:39px;
  3839. height:30px;
  3840. background:inherit;
  3841. background-color:rgba(255, 255, 255, 0);
  3842. border-top:0px;
  3843. border-right:0px;
  3844. border-bottom:0px;
  3845. border-radius:0px;
  3846. border-top-left-radius:0px;
  3847. border-bottom-left-radius:0px;
  3848. filter:drop-shadow(none);
  3849. transition:none;
  3850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3851. font-weight:400;
  3852. font-style:normal;
  3853. font-size:14px;
  3854. }
  3855. #u26919 {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:2229px;
  3859. top:193px;
  3860. width:39px;
  3861. height:30px;
  3862. display:flex;
  3863. transition:none;
  3864. transform-origin:50% 50%;
  3865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3866. font-weight:400;
  3867. font-style:normal;
  3868. font-size:14px;
  3869. }
  3870. #u26919 .text {
  3871. position:absolute;
  3872. align-self:center;
  3873. padding:5px 10px 5px 0px;
  3874. box-sizing:border-box;
  3875. width:100%;
  3876. }
  3877. #u26919_text {
  3878. border-width:0px;
  3879. white-space:nowrap;
  3880. text-transform:none;
  3881. }
  3882. #u26920_div {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:81px;
  3888. height:30px;
  3889. background:inherit;
  3890. background-color:rgba(255, 255, 255, 0);
  3891. border-top:0px;
  3892. border-right:0px;
  3893. border-bottom:0px;
  3894. border-radius:0px;
  3895. border-top-left-radius:0px;
  3896. border-bottom-left-radius:0px;
  3897. filter:drop-shadow(none);
  3898. transition:none;
  3899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3900. font-weight:400;
  3901. font-style:normal;
  3902. font-size:14px;
  3903. color:#7F7F7F;
  3904. }
  3905. #u26920 {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:2418px;
  3909. top:193px;
  3910. width:81px;
  3911. height:30px;
  3912. display:flex;
  3913. transition:none;
  3914. transform-origin:50% 50%;
  3915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3916. font-weight:400;
  3917. font-style:normal;
  3918. font-size:14px;
  3919. color:#7F7F7F;
  3920. }
  3921. #u26920 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:5px 10px 5px 0px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u26920_text {
  3929. border-width:0px;
  3930. white-space:nowrap;
  3931. text-transform:none;
  3932. }
  3933. #u26921_div {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:89px;
  3939. height:30px;
  3940. background:inherit;
  3941. background-color:rgba(255, 255, 255, 0);
  3942. border-top:0px;
  3943. border-right:0px;
  3944. border-bottom:0px;
  3945. border-radius:0px;
  3946. border-top-left-radius:0px;
  3947. border-bottom-left-radius:0px;
  3948. filter:drop-shadow(none);
  3949. transition:none;
  3950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:14px;
  3954. }
  3955. #u26921 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:2489px;
  3959. top:193px;
  3960. width:89px;
  3961. height:30px;
  3962. display:flex;
  3963. transition:none;
  3964. transform-origin:50% 50%;
  3965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3966. font-weight:400;
  3967. font-style:normal;
  3968. font-size:14px;
  3969. }
  3970. #u26921 .text {
  3971. position:absolute;
  3972. align-self:center;
  3973. padding:5px 10px 5px 0px;
  3974. box-sizing:border-box;
  3975. width:100%;
  3976. }
  3977. #u26921_text {
  3978. border-width:0px;
  3979. white-space:nowrap;
  3980. text-transform:none;
  3981. }
  3982. #u26922_div {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:81px;
  3988. height:30px;
  3989. background:inherit;
  3990. background-color:rgba(255, 255, 255, 0);
  3991. border-top:0px;
  3992. border-right:0px;
  3993. border-bottom:0px;
  3994. border-radius:0px;
  3995. border-top-left-radius:0px;
  3996. border-bottom-left-radius:0px;
  3997. filter:drop-shadow(none);
  3998. transition:none;
  3999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4000. font-weight:400;
  4001. font-style:normal;
  4002. font-size:14px;
  4003. color:#7F7F7F;
  4004. }
  4005. #u26922 {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:2675px;
  4009. top:193px;
  4010. width:81px;
  4011. height:30px;
  4012. display:flex;
  4013. transition:none;
  4014. transform-origin:50% 50%;
  4015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4016. font-weight:400;
  4017. font-style:normal;
  4018. font-size:14px;
  4019. color:#7F7F7F;
  4020. }
  4021. #u26922 .text {
  4022. position:absolute;
  4023. align-self:center;
  4024. padding:5px 10px 5px 0px;
  4025. box-sizing:border-box;
  4026. width:100%;
  4027. }
  4028. #u26922_text {
  4029. border-width:0px;
  4030. white-space:nowrap;
  4031. text-transform:none;
  4032. }
  4033. #u26923_div {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:0px;
  4038. width:185px;
  4039. height:30px;
  4040. background:inherit;
  4041. background-color:rgba(255, 255, 255, 0);
  4042. border-top:0px;
  4043. border-right:0px;
  4044. border-bottom:0px;
  4045. border-radius:0px;
  4046. border-top-left-radius:0px;
  4047. border-bottom-left-radius:0px;
  4048. filter:drop-shadow(none);
  4049. transition:none;
  4050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4051. font-weight:400;
  4052. font-style:normal;
  4053. font-size:14px;
  4054. }
  4055. #u26923 {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:2746px;
  4059. top:193px;
  4060. width:185px;
  4061. height:30px;
  4062. display:flex;
  4063. transition:none;
  4064. transform-origin:50% 50%;
  4065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4066. font-weight:400;
  4067. font-style:normal;
  4068. font-size:14px;
  4069. }
  4070. #u26923 .text {
  4071. position:absolute;
  4072. align-self:center;
  4073. padding:5px 10px 5px 0px;
  4074. box-sizing:border-box;
  4075. width:100%;
  4076. }
  4077. #u26923_text {
  4078. border-width:0px;
  4079. white-space:nowrap;
  4080. text-transform:none;
  4081. }
  4082. #u26924_div {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:0px;
  4086. top:0px;
  4087. width:81px;
  4088. height:30px;
  4089. background:inherit;
  4090. background-color:rgba(255, 255, 255, 0);
  4091. border-top:0px;
  4092. border-right:0px;
  4093. border-bottom:0px;
  4094. border-radius:0px;
  4095. border-top-left-radius:0px;
  4096. border-bottom-left-radius:0px;
  4097. filter:drop-shadow(none);
  4098. transition:none;
  4099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. font-size:14px;
  4103. color:#7F7F7F;
  4104. }
  4105. #u26924 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:2158px;
  4109. top:235px;
  4110. width:81px;
  4111. height:30px;
  4112. display:flex;
  4113. transition:none;
  4114. transform-origin:50% 50%;
  4115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4116. font-weight:400;
  4117. font-style:normal;
  4118. font-size:14px;
  4119. color:#7F7F7F;
  4120. }
  4121. #u26924 .text {
  4122. position:absolute;
  4123. align-self:center;
  4124. padding:5px 10px 5px 0px;
  4125. box-sizing:border-box;
  4126. width:100%;
  4127. }
  4128. #u26924_text {
  4129. border-width:0px;
  4130. white-space:nowrap;
  4131. text-transform:none;
  4132. }
  4133. #u26925_div {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:95px;
  4139. height:30px;
  4140. background:inherit;
  4141. background-color:rgba(255, 255, 255, 0);
  4142. border-top:0px;
  4143. border-right:0px;
  4144. border-bottom:0px;
  4145. border-radius:0px;
  4146. border-top-left-radius:0px;
  4147. border-bottom-left-radius:0px;
  4148. filter:drop-shadow(none);
  4149. transition:none;
  4150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4151. font-weight:400;
  4152. font-style:normal;
  4153. font-size:14px;
  4154. }
  4155. #u26925 {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:2229px;
  4159. top:235px;
  4160. width:95px;
  4161. height:30px;
  4162. display:flex;
  4163. transition:none;
  4164. transform-origin:50% 50%;
  4165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4166. font-weight:400;
  4167. font-style:normal;
  4168. font-size:14px;
  4169. }
  4170. #u26925 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:5px 10px 5px 0px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u26925_text {
  4178. border-width:0px;
  4179. white-space:nowrap;
  4180. text-transform:none;
  4181. }
  4182. #u26926_div {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:57px;
  4188. height:30px;
  4189. background:inherit;
  4190. background-color:rgba(255, 255, 255, 0);
  4191. border-radius:0px;
  4192. filter:drop-shadow(none);
  4193. transition:none;
  4194. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4195. font-weight:500;
  4196. font-style:normal;
  4197. font-size:14px;
  4198. color:#000000;
  4199. line-height:30px;
  4200. }
  4201. #u26926 {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:2158px;
  4205. top:286px;
  4206. width:57px;
  4207. height:30px;
  4208. display:flex;
  4209. transition:none;
  4210. transform-origin:50% 50%;
  4211. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4212. font-weight:500;
  4213. font-style:normal;
  4214. font-size:14px;
  4215. color:#000000;
  4216. line-height:30px;
  4217. }
  4218. #u26926 .text {
  4219. position:absolute;
  4220. align-self:flex-start;
  4221. padding:0px 0px 0px 0px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u26926_text {
  4226. border-width:0px;
  4227. white-space:nowrap;
  4228. text-transform:none;
  4229. }
  4230. #u26927 {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:2158px;
  4234. top:326px;
  4235. width:868px;
  4236. height:102px;
  4237. }
  4238. #u26928 {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:434px;
  4244. height:34px;
  4245. display:flex;
  4246. transition:none;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:14px;
  4251. color:#FFFFFF;
  4252. text-align:left;
  4253. line-height:30px;
  4254. }
  4255. #u26928 .text {
  4256. position:absolute;
  4257. align-self:center;
  4258. padding:2px 10px 2px 10px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u26928_img {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:434px;
  4268. height:34px;
  4269. }
  4270. #u26928_text {
  4271. border-width:0px;
  4272. word-wrap:break-word;
  4273. text-transform:none;
  4274. }
  4275. #u26929 {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:434px;
  4279. top:0px;
  4280. width:434px;
  4281. height:34px;
  4282. display:flex;
  4283. transition:none;
  4284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4285. font-weight:400;
  4286. font-style:normal;
  4287. font-size:14px;
  4288. color:#FFFFFF;
  4289. text-align:left;
  4290. line-height:30px;
  4291. }
  4292. #u26929 .text {
  4293. position:absolute;
  4294. align-self:center;
  4295. padding:2px 10px 2px 10px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u26929_img {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:434px;
  4305. height:34px;
  4306. }
  4307. #u26929_text {
  4308. border-width:0px;
  4309. word-wrap:break-word;
  4310. text-transform:none;
  4311. }
  4312. #u26930 {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:0px;
  4316. top:34px;
  4317. width:434px;
  4318. height:34px;
  4319. display:flex;
  4320. transition:none;
  4321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4322. font-weight:400;
  4323. font-style:normal;
  4324. font-size:14px;
  4325. text-align:left;
  4326. line-height:30px;
  4327. }
  4328. #u26930 .text {
  4329. position:absolute;
  4330. align-self:center;
  4331. padding:2px 10px 2px 10px;
  4332. box-sizing:border-box;
  4333. width:100%;
  4334. }
  4335. #u26930_img {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:0px;
  4339. top:0px;
  4340. width:434px;
  4341. height:34px;
  4342. }
  4343. #u26930_text {
  4344. border-width:0px;
  4345. word-wrap:break-word;
  4346. text-transform:none;
  4347. visibility:hidden;
  4348. }
  4349. #u26931 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:434px;
  4353. top:34px;
  4354. width:434px;
  4355. height:34px;
  4356. display:flex;
  4357. transition:none;
  4358. font-size:14px;
  4359. text-align:left;
  4360. line-height:30px;
  4361. }
  4362. #u26931 .text {
  4363. position:absolute;
  4364. align-self:center;
  4365. padding:2px 10px 2px 10px;
  4366. box-sizing:border-box;
  4367. width:100%;
  4368. }
  4369. #u26931_img {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:434px;
  4375. height:34px;
  4376. }
  4377. #u26931_text {
  4378. border-width:0px;
  4379. word-wrap:break-word;
  4380. text-transform:none;
  4381. visibility:hidden;
  4382. }
  4383. #u26932 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:0px;
  4387. top:68px;
  4388. width:434px;
  4389. height:34px;
  4390. display:flex;
  4391. transition:none;
  4392. font-size:14px;
  4393. text-align:left;
  4394. line-height:30px;
  4395. }
  4396. #u26932 .text {
  4397. position:absolute;
  4398. align-self:center;
  4399. padding:2px 10px 2px 10px;
  4400. box-sizing:border-box;
  4401. width:100%;
  4402. }
  4403. #u26932_img {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:434px;
  4409. height:34px;
  4410. }
  4411. #u26932_text {
  4412. border-width:0px;
  4413. word-wrap:break-word;
  4414. text-transform:none;
  4415. visibility:hidden;
  4416. }
  4417. #u26933 {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:434px;
  4421. top:68px;
  4422. width:434px;
  4423. height:34px;
  4424. display:flex;
  4425. transition:none;
  4426. font-size:14px;
  4427. text-align:left;
  4428. line-height:30px;
  4429. }
  4430. #u26933 .text {
  4431. position:absolute;
  4432. align-self:center;
  4433. padding:2px 10px 2px 10px;
  4434. box-sizing:border-box;
  4435. width:100%;
  4436. }
  4437. #u26933_img {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:434px;
  4443. height:34px;
  4444. }
  4445. #u26933_text {
  4446. border-width:0px;
  4447. word-wrap:break-word;
  4448. text-transform:none;
  4449. visibility:hidden;
  4450. }
  4451. #u26934_div {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:57px;
  4457. height:30px;
  4458. background:inherit;
  4459. background-color:rgba(255, 255, 255, 0);
  4460. border-radius:0px;
  4461. filter:drop-shadow(none);
  4462. transition:none;
  4463. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4464. font-weight:500;
  4465. font-style:normal;
  4466. font-size:14px;
  4467. color:#000000;
  4468. line-height:30px;
  4469. }
  4470. #u26934 {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:2158px;
  4474. top:444px;
  4475. width:57px;
  4476. height:30px;
  4477. display:flex;
  4478. transition:none;
  4479. transform-origin:50% 50%;
  4480. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4481. font-weight:500;
  4482. font-style:normal;
  4483. font-size:14px;
  4484. color:#000000;
  4485. line-height:30px;
  4486. }
  4487. #u26934 .text {
  4488. position:absolute;
  4489. align-self:flex-start;
  4490. padding:0px 0px 0px 0px;
  4491. box-sizing:border-box;
  4492. width:100%;
  4493. }
  4494. #u26934_text {
  4495. border-width:0px;
  4496. white-space:nowrap;
  4497. text-transform:none;
  4498. }
  4499. #u26935 {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:2158px;
  4503. top:484px;
  4504. width:70px;
  4505. height:60px;
  4506. display:flex;
  4507. transition:none;
  4508. }
  4509. #u26935 .text {
  4510. position:absolute;
  4511. align-self:center;
  4512. padding:2px 2px 2px 2px;
  4513. box-sizing:border-box;
  4514. width:100%;
  4515. }
  4516. #u26935_img {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:0px;
  4520. top:0px;
  4521. width:70px;
  4522. height:60px;
  4523. }
  4524. #u26935_text {
  4525. border-width:0px;
  4526. word-wrap:break-word;
  4527. text-transform:none;
  4528. visibility:hidden;
  4529. }
  4530. #u26936 {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:2243px;
  4534. top:484px;
  4535. width:70px;
  4536. height:60px;
  4537. display:flex;
  4538. transition:none;
  4539. }
  4540. #u26936 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:2px 2px 2px 2px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u26936_img {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:0px;
  4551. top:0px;
  4552. width:70px;
  4553. height:60px;
  4554. }
  4555. #u26936_text {
  4556. border-width:0px;
  4557. word-wrap:break-word;
  4558. text-transform:none;
  4559. visibility:hidden;
  4560. }
  4561. #u26937 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:2328px;
  4565. top:484px;
  4566. width:70px;
  4567. height:60px;
  4568. display:flex;
  4569. transition:none;
  4570. }
  4571. #u26937 .text {
  4572. position:absolute;
  4573. align-self:center;
  4574. padding:2px 2px 2px 2px;
  4575. box-sizing:border-box;
  4576. width:100%;
  4577. }
  4578. #u26937_img {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:0px;
  4583. width:70px;
  4584. height:60px;
  4585. }
  4586. #u26937_text {
  4587. border-width:0px;
  4588. word-wrap:break-word;
  4589. text-transform:none;
  4590. visibility:hidden;
  4591. }
  4592. #u26938 {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:2413px;
  4596. top:484px;
  4597. width:70px;
  4598. height:60px;
  4599. display:flex;
  4600. transition:none;
  4601. }
  4602. #u26938 .text {
  4603. position:absolute;
  4604. align-self:center;
  4605. padding:2px 2px 2px 2px;
  4606. box-sizing:border-box;
  4607. width:100%;
  4608. }
  4609. #u26938_img {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:0px;
  4613. top:0px;
  4614. width:70px;
  4615. height:60px;
  4616. }
  4617. #u26938_text {
  4618. border-width:0px;
  4619. word-wrap:break-word;
  4620. text-transform:none;
  4621. visibility:hidden;
  4622. }
  4623. #u26939 {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:2491px;
  4627. top:484px;
  4628. width:70px;
  4629. height:60px;
  4630. display:flex;
  4631. transition:none;
  4632. }
  4633. #u26939 .text {
  4634. position:absolute;
  4635. align-self:center;
  4636. padding:2px 2px 2px 2px;
  4637. box-sizing:border-box;
  4638. width:100%;
  4639. }
  4640. #u26939_img {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:0px;
  4644. top:0px;
  4645. width:70px;
  4646. height:60px;
  4647. }
  4648. #u26939_text {
  4649. border-width:0px;
  4650. word-wrap:break-word;
  4651. text-transform:none;
  4652. visibility:hidden;
  4653. }
  4654. #u26940 {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:2576px;
  4658. top:484px;
  4659. width:70px;
  4660. height:60px;
  4661. display:flex;
  4662. transition:none;
  4663. }
  4664. #u26940 .text {
  4665. position:absolute;
  4666. align-self:center;
  4667. padding:2px 2px 2px 2px;
  4668. box-sizing:border-box;
  4669. width:100%;
  4670. }
  4671. #u26940_img {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:0px;
  4676. width:70px;
  4677. height:60px;
  4678. }
  4679. #u26940_text {
  4680. border-width:0px;
  4681. word-wrap:break-word;
  4682. text-transform:none;
  4683. visibility:hidden;
  4684. }
  4685. #u26941 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:2661px;
  4689. top:484px;
  4690. width:70px;
  4691. height:60px;
  4692. display:flex;
  4693. transition:none;
  4694. }
  4695. #u26941 .text {
  4696. position:absolute;
  4697. align-self:center;
  4698. padding:2px 2px 2px 2px;
  4699. box-sizing:border-box;
  4700. width:100%;
  4701. }
  4702. #u26941_img {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:0px;
  4707. width:70px;
  4708. height:60px;
  4709. }
  4710. #u26941_text {
  4711. border-width:0px;
  4712. word-wrap:break-word;
  4713. text-transform:none;
  4714. visibility:hidden;
  4715. }
  4716. #u26942_div {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:80px;
  4722. height:30px;
  4723. background:inherit;
  4724. background-color:rgba(255, 255, 255, 0);
  4725. border-left:0px;
  4726. border-top:0px;
  4727. border-right:0px;
  4728. border-radius:0px;
  4729. border-bottom-right-radius:0px;
  4730. border-bottom-left-radius:0px;
  4731. filter:drop-shadow(none);
  4732. transition:none;
  4733. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4734. font-weight:500;
  4735. font-style:normal;
  4736. font-size:14px;
  4737. line-height:30px;
  4738. }
  4739. #u26942 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:2158px;
  4743. top:619px;
  4744. width:80px;
  4745. height:30px;
  4746. display:flex;
  4747. transition:none;
  4748. transform-origin:50% 50%;
  4749. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4750. font-weight:500;
  4751. font-style:normal;
  4752. font-size:14px;
  4753. line-height:30px;
  4754. }
  4755. #u26942 .text {
  4756. position:absolute;
  4757. align-self:flex-start;
  4758. padding:0px 0px 0px 0px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u26942_text {
  4763. border-width:0px;
  4764. word-wrap:break-word;
  4765. text-transform:none;
  4766. }
  4767. #u26943_div {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:80px;
  4773. height:30px;
  4774. background:inherit;
  4775. background-color:rgba(255, 255, 255, 0);
  4776. border-left:0px;
  4777. border-top:0px;
  4778. border-right:0px;
  4779. border-radius:0px;
  4780. border-bottom-right-radius:0px;
  4781. border-bottom-left-radius:0px;
  4782. filter:drop-shadow(none);
  4783. transition:none;
  4784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4785. font-weight:400;
  4786. font-style:normal;
  4787. font-size:14px;
  4788. color:#7F7F7F;
  4789. line-height:30px;
  4790. }
  4791. #u26943 {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:2158px;
  4795. top:696px;
  4796. width:80px;
  4797. height:30px;
  4798. display:flex;
  4799. transition:none;
  4800. transform-origin:50% 50%;
  4801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4802. font-weight:400;
  4803. font-style:normal;
  4804. font-size:14px;
  4805. color:#7F7F7F;
  4806. line-height:30px;
  4807. }
  4808. #u26943 .text {
  4809. position:absolute;
  4810. align-self:flex-start;
  4811. padding:0px 0px 0px 0px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u26943_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. }
  4820. #u26944_div {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:71px;
  4826. height:30px;
  4827. background:inherit;
  4828. background-color:rgba(255, 255, 255, 0);
  4829. border-left:0px;
  4830. border-top:0px;
  4831. border-right:0px;
  4832. border-radius:0px;
  4833. border-bottom-right-radius:0px;
  4834. border-bottom-left-radius:0px;
  4835. filter:drop-shadow(none);
  4836. transition:none;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:14px;
  4841. color:#7F7F7F;
  4842. line-height:30px;
  4843. }
  4844. #u26944 {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:2158px;
  4848. top:659px;
  4849. width:71px;
  4850. height:30px;
  4851. display:flex;
  4852. transition:none;
  4853. transform-origin:50% 50%;
  4854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4855. font-weight:400;
  4856. font-style:normal;
  4857. font-size:14px;
  4858. color:#7F7F7F;
  4859. line-height:30px;
  4860. }
  4861. #u26944 .text {
  4862. position:absolute;
  4863. align-self:flex-start;
  4864. padding:0px 0px 0px 0px;
  4865. box-sizing:border-box;
  4866. width:100%;
  4867. }
  4868. #u26944_text {
  4869. border-width:0px;
  4870. white-space:nowrap;
  4871. text-transform:none;
  4872. }
  4873. #u26945_div {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:29px;
  4879. height:30px;
  4880. background:inherit;
  4881. background-color:rgba(255, 255, 255, 0);
  4882. border-left:0px;
  4883. border-top:0px;
  4884. border-right:0px;
  4885. border-radius:0px;
  4886. border-bottom-right-radius:0px;
  4887. border-bottom-left-radius:0px;
  4888. filter:drop-shadow(none);
  4889. transition:none;
  4890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4891. font-weight:400;
  4892. font-style:normal;
  4893. font-size:14px;
  4894. line-height:30px;
  4895. }
  4896. #u26945 {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:2238px;
  4900. top:659px;
  4901. width:29px;
  4902. height:30px;
  4903. display:flex;
  4904. transition:none;
  4905. transform-origin:50% 50%;
  4906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4907. font-weight:400;
  4908. font-style:normal;
  4909. font-size:14px;
  4910. line-height:30px;
  4911. }
  4912. #u26945 .text {
  4913. position:absolute;
  4914. align-self:flex-start;
  4915. padding:0px 0px 0px 0px;
  4916. box-sizing:border-box;
  4917. width:100%;
  4918. }
  4919. #u26945_text {
  4920. border-width:0px;
  4921. white-space:nowrap;
  4922. text-transform:none;
  4923. }
  4924. #u26946_div {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:0px;
  4928. top:0px;
  4929. width:80px;
  4930. height:30px;
  4931. background:inherit;
  4932. background-color:rgba(255, 255, 255, 0);
  4933. border-left:0px;
  4934. border-top:0px;
  4935. border-right:0px;
  4936. border-radius:0px;
  4937. border-bottom-right-radius:0px;
  4938. border-bottom-left-radius:0px;
  4939. filter:drop-shadow(none);
  4940. transition:none;
  4941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4942. font-weight:400;
  4943. font-style:normal;
  4944. font-size:14px;
  4945. color:#7F7F7F;
  4946. line-height:30px;
  4947. }
  4948. #u26946 {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:2597px;
  4952. top:659px;
  4953. width:80px;
  4954. height:30px;
  4955. display:flex;
  4956. transition:none;
  4957. transform-origin:50% 50%;
  4958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:14px;
  4962. color:#7F7F7F;
  4963. line-height:30px;
  4964. }
  4965. #u26946 .text {
  4966. position:absolute;
  4967. align-self:flex-start;
  4968. padding:0px 0px 0px 0px;
  4969. box-sizing:border-box;
  4970. width:100%;
  4971. }
  4972. #u26946_text {
  4973. border-width:0px;
  4974. word-wrap:break-word;
  4975. text-transform:none;
  4976. }
  4977. #u26947_div {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:0px;
  4981. top:0px;
  4982. width:142px;
  4983. height:30px;
  4984. background:inherit;
  4985. background-color:rgba(255, 255, 255, 0);
  4986. border-left:0px;
  4987. border-top:0px;
  4988. border-right:0px;
  4989. border-radius:0px;
  4990. border-bottom-right-radius:0px;
  4991. border-bottom-left-radius:0px;
  4992. filter:drop-shadow(none);
  4993. transition:none;
  4994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4995. font-weight:400;
  4996. font-style:normal;
  4997. font-size:14px;
  4998. line-height:30px;
  4999. }
  5000. #u26947 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:2677px;
  5004. top:659px;
  5005. width:142px;
  5006. height:30px;
  5007. display:flex;
  5008. transition:none;
  5009. transform-origin:50% 50%;
  5010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. font-size:14px;
  5014. line-height:30px;
  5015. }
  5016. #u26947 .text {
  5017. position:absolute;
  5018. align-self:flex-start;
  5019. padding:0px 0px 0px 0px;
  5020. box-sizing:border-box;
  5021. width:100%;
  5022. }
  5023. #u26947_text {
  5024. border-width:0px;
  5025. white-space:nowrap;
  5026. text-transform:none;
  5027. }
  5028. #u26948_div {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:43px;
  5034. height:30px;
  5035. background:inherit;
  5036. background-color:rgba(255, 255, 255, 0);
  5037. border-left:0px;
  5038. border-top:0px;
  5039. border-right:0px;
  5040. border-radius:0px;
  5041. border-bottom-right-radius:0px;
  5042. border-bottom-left-radius:0px;
  5043. filter:drop-shadow(none);
  5044. transition:none;
  5045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5046. font-weight:400;
  5047. font-style:normal;
  5048. font-size:14px;
  5049. color:#D9001B;
  5050. line-height:30px;
  5051. }
  5052. #u26948 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:2238px;
  5056. top:696px;
  5057. width:43px;
  5058. height:30px;
  5059. display:flex;
  5060. transition:none;
  5061. transform-origin:50% 50%;
  5062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:14px;
  5066. color:#D9001B;
  5067. line-height:30px;
  5068. }
  5069. #u26948 .text {
  5070. position:absolute;
  5071. align-self:flex-start;
  5072. padding:0px 0px 0px 0px;
  5073. box-sizing:border-box;
  5074. width:100%;
  5075. }
  5076. #u26948_text {
  5077. border-width:0px;
  5078. white-space:nowrap;
  5079. text-transform:none;
  5080. }
  5081. #u26949_div {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:80px;
  5087. height:30px;
  5088. background:inherit;
  5089. background-color:rgba(255, 255, 255, 0);
  5090. border-left:0px;
  5091. border-top:0px;
  5092. border-right:0px;
  5093. border-radius:0px;
  5094. border-bottom-right-radius:0px;
  5095. border-bottom-left-radius:0px;
  5096. filter:drop-shadow(none);
  5097. transition:none;
  5098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5099. font-weight:400;
  5100. font-style:normal;
  5101. font-size:14px;
  5102. color:#7F7F7F;
  5103. line-height:30px;
  5104. }
  5105. #u26949 {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:2158px;
  5109. top:736px;
  5110. width:80px;
  5111. height:30px;
  5112. display:flex;
  5113. transition:none;
  5114. transform-origin:50% 50%;
  5115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5116. font-weight:400;
  5117. font-style:normal;
  5118. font-size:14px;
  5119. color:#7F7F7F;
  5120. line-height:30px;
  5121. }
  5122. #u26949 .text {
  5123. position:absolute;
  5124. align-self:flex-start;
  5125. padding:0px 0px 0px 0px;
  5126. box-sizing:border-box;
  5127. width:100%;
  5128. }
  5129. #u26949_text {
  5130. border-width:0px;
  5131. word-wrap:break-word;
  5132. text-transform:none;
  5133. }
  5134. #u26950_div {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:337px;
  5140. height:30px;
  5141. background:inherit;
  5142. background-color:rgba(255, 255, 255, 0);
  5143. border-left:0px;
  5144. border-top:0px;
  5145. border-right:0px;
  5146. border-radius:0px;
  5147. border-bottom-right-radius:0px;
  5148. border-bottom-left-radius:0px;
  5149. filter:drop-shadow(none);
  5150. transition:none;
  5151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5152. font-weight:400;
  5153. font-style:normal;
  5154. font-size:14px;
  5155. line-height:30px;
  5156. }
  5157. #u26950 {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:2238px;
  5161. top:736px;
  5162. width:337px;
  5163. height:30px;
  5164. display:flex;
  5165. transition:none;
  5166. transform-origin:50% 50%;
  5167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5168. font-weight:400;
  5169. font-style:normal;
  5170. font-size:14px;
  5171. line-height:30px;
  5172. }
  5173. #u26950 .text {
  5174. position:absolute;
  5175. align-self:flex-start;
  5176. padding:0px 0px 0px 0px;
  5177. box-sizing:border-box;
  5178. width:100%;
  5179. }
  5180. #u26950_text {
  5181. border-width:0px;
  5182. white-space:nowrap;
  5183. text-transform:none;
  5184. }