styles.css 103 KB

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