styles.css 226 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3585px;
  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. #u97471_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u97471 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u97471 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u97471_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u97472_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u97472 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u97472 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u97472_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u97473_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u97473 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u97473 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u97473_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u97474 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u97475_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u97475 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u97475 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u97475_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u97476_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u97476 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u97476 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u97476_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u97477_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u97477 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u97477 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u97477_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u97478 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u97479_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u97479_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u97479_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u97479 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u97479 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u97479_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u97479.disabled {
  356. }
  357. .u97479_input_option {
  358. font-size:14px;
  359. }
  360. #u97480_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u97480 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u97480 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u97480_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u97481_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u97481 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u97481 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u97481_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u97482_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u97482 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u97482 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u97482_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u97483 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u97484_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u97484 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u97484 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u97484_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u97485_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u97485 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u97485 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u97485_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u97486 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u97487_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u97487 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u97487 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u97487_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u97488_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u97488 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u97488 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u97488_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u97489 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u97490_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u97490 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u97490 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u97490_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u97491_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u97491 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u97491 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u97491_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u97492 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u97493_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u97493 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u97493 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u97493_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u97494_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u97494 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u97494 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u97494_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u97495 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u97496_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u97496 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u97496 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u97496_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u97497_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u97497 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u97497 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u97497_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u97498 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u97499_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u97499 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u97499 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u97499_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u97500_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u97500 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u97500 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u97500_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u97501 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u97502_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u97502 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u97502 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u97502_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u97503_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u97503 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u97503 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u97503_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u97504 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u97505_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u97505 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u97505 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u97505_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u97506_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u97506 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u97506 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u97506_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u97507 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u97508_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u97508 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u97508 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u97508_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u97509_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u97509 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u97509 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u97509_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u97510 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u97511_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u97511 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u97511 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u97511_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u97512_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u97512 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u97512 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u97512_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u97513_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u97513 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u97513 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u97513_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u97514_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u97514 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u97514 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u97514_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u97515_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u97515 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u97515 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u97515_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u97516_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u97516 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u97516 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u97516_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u97517 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u97518_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u97518 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u97518 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u97518_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u97519_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u97519 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u97519 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u97519_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u97520 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u97521_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u97521 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u97521 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u97521_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u97522_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u97522 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u97522 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u97522_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u97523 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u97524_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:200px;
  1652. height:1180px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 1);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. }
  1661. #u97524 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:120px;
  1665. top:50px;
  1666. width:200px;
  1667. height:1180px;
  1668. display:flex;
  1669. }
  1670. #u97524 .text {
  1671. position:absolute;
  1672. align-self:center;
  1673. padding:2px 2px 2px 2px;
  1674. box-sizing:border-box;
  1675. width:100%;
  1676. }
  1677. #u97524_text {
  1678. border-width:0px;
  1679. word-wrap:break-word;
  1680. text-transform:none;
  1681. visibility:hidden;
  1682. }
  1683. #u97525_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:200px;
  1689. height:60px;
  1690. background:inherit;
  1691. background-color:rgba(224, 231, 247, 1);
  1692. border:none;
  1693. border-radius:0px;
  1694. -moz-box-shadow:none;
  1695. -webkit-box-shadow:none;
  1696. box-shadow:none;
  1697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1698. font-weight:500;
  1699. font-style:normal;
  1700. font-size:18px;
  1701. }
  1702. #u97525 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:120px;
  1706. top:50px;
  1707. width:200px;
  1708. height:60px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1711. font-weight:500;
  1712. font-style:normal;
  1713. font-size:18px;
  1714. }
  1715. #u97525 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:0px 0px 0px 20px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u97525_text {
  1723. border-width:0px;
  1724. word-wrap:break-word;
  1725. text-transform:none;
  1726. }
  1727. #u97526_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:65px;
  1733. height:22px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 0);
  1736. border:none;
  1737. border-radius:0px;
  1738. -moz-box-shadow:none;
  1739. -webkit-box-shadow:none;
  1740. box-shadow:none;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:16px;
  1745. }
  1746. #u97526 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:143px;
  1750. top:484px;
  1751. width:65px;
  1752. height:22px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:16px;
  1758. }
  1759. #u97526 .text {
  1760. position:absolute;
  1761. align-self:flex-start;
  1762. padding:0px 0px 0px 0px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u97526_text {
  1767. border-width:0px;
  1768. white-space:nowrap;
  1769. text-transform:none;
  1770. }
  1771. #u97527_img {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:201px;
  1777. height:2px;
  1778. }
  1779. #u97527 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:120px;
  1783. top:431px;
  1784. width:200px;
  1785. height:1px;
  1786. display:flex;
  1787. }
  1788. #u97527 .text {
  1789. position:absolute;
  1790. align-self:center;
  1791. padding:2px 2px 2px 2px;
  1792. box-sizing:border-box;
  1793. width:100%;
  1794. }
  1795. #u97527_text {
  1796. border-width:0px;
  1797. word-wrap:break-word;
  1798. text-transform:none;
  1799. visibility:hidden;
  1800. }
  1801. #u97528_div {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:0px;
  1805. top:0px;
  1806. width:49px;
  1807. height:17px;
  1808. background:inherit;
  1809. background-color:rgba(255, 255, 255, 0);
  1810. border:none;
  1811. border-radius:0px;
  1812. -moz-box-shadow:none;
  1813. -webkit-box-shadow:none;
  1814. box-shadow:none;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:12px;
  1819. color:#AAAAAA;
  1820. }
  1821. #u97528 {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:143px;
  1825. top:451px;
  1826. width:49px;
  1827. height:17px;
  1828. display:flex;
  1829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:12px;
  1833. color:#AAAAAA;
  1834. }
  1835. #u97528 .text {
  1836. position:absolute;
  1837. align-self:flex-start;
  1838. padding:0px 0px 0px 0px;
  1839. box-sizing:border-box;
  1840. width:100%;
  1841. }
  1842. #u97528_text {
  1843. border-width:0px;
  1844. white-space:nowrap;
  1845. text-transform:none;
  1846. }
  1847. #u97529_div {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:65px;
  1853. height:22px;
  1854. background:inherit;
  1855. background-color:rgba(255, 255, 255, 0);
  1856. border:none;
  1857. border-radius:0px;
  1858. -moz-box-shadow:none;
  1859. -webkit-box-shadow:none;
  1860. box-shadow:none;
  1861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:16px;
  1865. }
  1866. #u97529 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:143px;
  1870. top:163px;
  1871. width:65px;
  1872. height:22px;
  1873. display:flex;
  1874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1875. font-weight:400;
  1876. font-style:normal;
  1877. font-size:16px;
  1878. }
  1879. #u97529 .text {
  1880. position:absolute;
  1881. align-self:flex-start;
  1882. padding:0px 0px 0px 0px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u97529_text {
  1887. border-width:0px;
  1888. white-space:nowrap;
  1889. text-transform:none;
  1890. }
  1891. #u97530_div {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:49px;
  1897. height:17px;
  1898. background:inherit;
  1899. background-color:rgba(255, 255, 255, 0);
  1900. border:none;
  1901. border-radius:0px;
  1902. -moz-box-shadow:none;
  1903. -webkit-box-shadow:none;
  1904. box-shadow:none;
  1905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1906. font-weight:400;
  1907. font-style:normal;
  1908. font-size:12px;
  1909. color:#AAAAAA;
  1910. }
  1911. #u97530 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:143px;
  1915. top:130px;
  1916. width:49px;
  1917. height:17px;
  1918. display:flex;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:12px;
  1923. color:#AAAAAA;
  1924. }
  1925. #u97530 .text {
  1926. position:absolute;
  1927. align-self:flex-start;
  1928. padding:0px 0px 0px 0px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u97530_text {
  1933. border-width:0px;
  1934. white-space:nowrap;
  1935. text-transform:none;
  1936. }
  1937. #u97531_div {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:65px;
  1943. height:22px;
  1944. background:inherit;
  1945. background-color:rgba(255, 255, 255, 0);
  1946. border:none;
  1947. border-radius:0px;
  1948. -moz-box-shadow:none;
  1949. -webkit-box-shadow:none;
  1950. box-shadow:none;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:16px;
  1955. }
  1956. #u97531 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:143px;
  1960. top:205px;
  1961. width:65px;
  1962. height:22px;
  1963. display:flex;
  1964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1965. font-weight:400;
  1966. font-style:normal;
  1967. font-size:16px;
  1968. }
  1969. #u97531 .text {
  1970. position:absolute;
  1971. align-self:flex-start;
  1972. padding:0px 0px 0px 0px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u97531_text {
  1977. border-width:0px;
  1978. white-space:nowrap;
  1979. text-transform:none;
  1980. }
  1981. #u97532_div {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:65px;
  1987. height:22px;
  1988. background:inherit;
  1989. background-color:rgba(255, 255, 255, 0);
  1990. border:none;
  1991. border-radius:0px;
  1992. -moz-box-shadow:none;
  1993. -webkit-box-shadow:none;
  1994. box-shadow:none;
  1995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:16px;
  1999. }
  2000. #u97532 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:143px;
  2004. top:247px;
  2005. width:65px;
  2006. height:22px;
  2007. display:flex;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:16px;
  2012. }
  2013. #u97532 .text {
  2014. position:absolute;
  2015. align-self:flex-start;
  2016. padding:0px 0px 0px 0px;
  2017. box-sizing:border-box;
  2018. width:100%;
  2019. }
  2020. #u97532_text {
  2021. border-width:0px;
  2022. white-space:nowrap;
  2023. text-transform:none;
  2024. }
  2025. #u97533_div {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:65px;
  2031. height:22px;
  2032. background:inherit;
  2033. background-color:rgba(255, 255, 255, 0);
  2034. border:none;
  2035. border-radius:0px;
  2036. -moz-box-shadow:none;
  2037. -webkit-box-shadow:none;
  2038. box-shadow:none;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:16px;
  2043. }
  2044. #u97533 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:143px;
  2048. top:342px;
  2049. width:65px;
  2050. height:22px;
  2051. display:flex;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:16px;
  2056. }
  2057. #u97533 .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. #u97533_text {
  2065. border-width:0px;
  2066. white-space:nowrap;
  2067. text-transform:none;
  2068. }
  2069. #u97534_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:201px;
  2075. height:2px;
  2076. }
  2077. #u97534 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:120px;
  2081. top:289px;
  2082. width:200px;
  2083. height:1px;
  2084. display:flex;
  2085. }
  2086. #u97534 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 2px 2px 2px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u97534_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. visibility:hidden;
  2098. }
  2099. #u97535_div {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:49px;
  2105. height:17px;
  2106. background:inherit;
  2107. background-color:rgba(255, 255, 255, 0);
  2108. border:none;
  2109. border-radius:0px;
  2110. -moz-box-shadow:none;
  2111. -webkit-box-shadow:none;
  2112. box-shadow:none;
  2113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:12px;
  2117. color:#AAAAAA;
  2118. }
  2119. #u97535 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:143px;
  2123. top:309px;
  2124. width:49px;
  2125. height:17px;
  2126. display:flex;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:12px;
  2131. color:#AAAAAA;
  2132. }
  2133. #u97535 .text {
  2134. position:absolute;
  2135. align-self:flex-start;
  2136. padding:0px 0px 0px 0px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u97535_text {
  2141. border-width:0px;
  2142. white-space:nowrap;
  2143. text-transform:none;
  2144. }
  2145. #u97536_div {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:65px;
  2151. height:22px;
  2152. background:inherit;
  2153. background-color:rgba(255, 255, 255, 0);
  2154. border:none;
  2155. border-radius:0px;
  2156. -moz-box-shadow:none;
  2157. -webkit-box-shadow:none;
  2158. box-shadow:none;
  2159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2160. font-weight:400;
  2161. font-style:normal;
  2162. font-size:16px;
  2163. }
  2164. #u97536 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:143px;
  2168. top:384px;
  2169. width:65px;
  2170. height:22px;
  2171. display:flex;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:16px;
  2176. }
  2177. #u97536 .text {
  2178. position:absolute;
  2179. align-self:flex-start;
  2180. padding:0px 0px 0px 0px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u97536_text {
  2185. border-width:0px;
  2186. white-space:nowrap;
  2187. text-transform:none;
  2188. }
  2189. #u97537_div {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:1260px;
  2195. height:1082px;
  2196. background:inherit;
  2197. background-color:rgba(255, 255, 255, 1);
  2198. border:none;
  2199. border-radius:0px;
  2200. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2201. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2202. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2203. color:#1890FF;
  2204. }
  2205. #u97537 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:332px;
  2209. top:160px;
  2210. width:1260px;
  2211. height:1082px;
  2212. display:flex;
  2213. color:#1890FF;
  2214. }
  2215. #u97537 .text {
  2216. position:absolute;
  2217. align-self:center;
  2218. padding:2px 2px 2px 2px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u97537_text {
  2223. border-width:0px;
  2224. word-wrap:break-word;
  2225. text-transform:none;
  2226. visibility:hidden;
  2227. }
  2228. #u97538_div {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:0px;
  2232. top:0px;
  2233. width:1260px;
  2234. height:100px;
  2235. background:inherit;
  2236. background-color:rgba(255, 255, 255, 1);
  2237. border:none;
  2238. border-radius:0px;
  2239. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2240. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2241. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2242. color:#1890FF;
  2243. }
  2244. #u97538 {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:332px;
  2248. top:50px;
  2249. width:1260px;
  2250. height:100px;
  2251. display:flex;
  2252. color:#1890FF;
  2253. }
  2254. #u97538 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 2px 2px 2px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u97538_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. visibility:hidden;
  2266. }
  2267. #u97539_div {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:73px;
  2273. height:50px;
  2274. background:inherit;
  2275. background-color:rgba(255, 255, 255, 0);
  2276. border:none;
  2277. border-left:0px;
  2278. border-top:0px;
  2279. border-right:0px;
  2280. border-radius:0px;
  2281. border-bottom-right-radius:0px;
  2282. border-bottom-left-radius:0px;
  2283. -moz-box-shadow:none;
  2284. -webkit-box-shadow:none;
  2285. box-shadow:none;
  2286. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2287. font-weight:500;
  2288. font-style:normal;
  2289. font-size:18px;
  2290. }
  2291. #u97539 {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:351px;
  2295. top:50px;
  2296. width:73px;
  2297. height:50px;
  2298. display:flex;
  2299. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2300. font-weight:500;
  2301. font-style:normal;
  2302. font-size:18px;
  2303. }
  2304. #u97539 .text {
  2305. position:absolute;
  2306. align-self:center;
  2307. padding:0px 0px 0px 0px;
  2308. box-sizing:border-box;
  2309. width:100%;
  2310. }
  2311. #u97539_text {
  2312. border-width:0px;
  2313. white-space:nowrap;
  2314. text-transform:none;
  2315. }
  2316. #u97540_div {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:59px;
  2322. height:30px;
  2323. background:inherit;
  2324. background-color:rgba(41, 143, 255, 1);
  2325. border:none;
  2326. border-radius:4px;
  2327. -moz-box-shadow:none;
  2328. -webkit-box-shadow:none;
  2329. box-shadow:none;
  2330. font-family:'Microsoft YaHei', sans-serif;
  2331. font-weight:400;
  2332. font-style:normal;
  2333. font-size:14px;
  2334. color:#FFFFFF;
  2335. }
  2336. #u97540 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:651px;
  2340. top:180px;
  2341. width:59px;
  2342. height:30px;
  2343. display:flex;
  2344. font-family:'Microsoft YaHei', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:14px;
  2348. color:#FFFFFF;
  2349. }
  2350. #u97540 .text {
  2351. position:absolute;
  2352. align-self:center;
  2353. padding:5px 15px 5px 15px;
  2354. box-sizing:border-box;
  2355. width:100%;
  2356. }
  2357. #u97540_text {
  2358. border-width:0px;
  2359. white-space:nowrap;
  2360. text-transform:none;
  2361. }
  2362. #u97541_div {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:0px;
  2366. top:0px;
  2367. width:55px;
  2368. height:30px;
  2369. background:inherit;
  2370. background-color:rgba(255, 255, 255, 1);
  2371. box-sizing:border-box;
  2372. border-width:1px;
  2373. border-style:solid;
  2374. border-color:rgba(170, 170, 170, 1);
  2375. border-radius:4px;
  2376. -moz-box-shadow:none;
  2377. -webkit-box-shadow:none;
  2378. box-shadow:none;
  2379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2380. font-weight:400;
  2381. font-style:normal;
  2382. font-size:12px;
  2383. color:#555555;
  2384. }
  2385. #u97541 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:720px;
  2389. top:180px;
  2390. width:55px;
  2391. height:30px;
  2392. display:flex;
  2393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2394. font-weight:400;
  2395. font-style:normal;
  2396. font-size:12px;
  2397. color:#555555;
  2398. }
  2399. #u97541 .text {
  2400. position:absolute;
  2401. align-self:center;
  2402. padding:5px 15px 5px 15px;
  2403. box-sizing:border-box;
  2404. width:100%;
  2405. }
  2406. #u97541_text {
  2407. border-width:0px;
  2408. white-space:nowrap;
  2409. text-transform:none;
  2410. }
  2411. #u97542 {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:0px;
  2417. height:0px;
  2418. }
  2419. #u97543_div {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:0px;
  2424. width:140px;
  2425. height:30px;
  2426. background:inherit;
  2427. background-color:rgba(255, 255, 255, 1);
  2428. box-sizing:border-box;
  2429. border-width:1px;
  2430. border-style:solid;
  2431. border-color:rgba(201, 201, 201, 1);
  2432. border-radius:4px;
  2433. -moz-box-shadow:none;
  2434. -webkit-box-shadow:none;
  2435. box-shadow:none;
  2436. font-family:'Microsoft YaHei', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:14px;
  2440. color:#CCCCCC;
  2441. text-align:left;
  2442. }
  2443. #u97543 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:501px;
  2447. top:180px;
  2448. width:140px;
  2449. height:30px;
  2450. display:flex;
  2451. font-family:'Microsoft YaHei', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:14px;
  2455. color:#CCCCCC;
  2456. text-align:left;
  2457. }
  2458. #u97543 .text {
  2459. position:absolute;
  2460. align-self:center;
  2461. padding:2px 8px 2px 8px;
  2462. box-sizing:border-box;
  2463. width:100%;
  2464. }
  2465. #u97543_text {
  2466. border-width:0px;
  2467. word-wrap:break-word;
  2468. text-transform:none;
  2469. visibility:hidden;
  2470. }
  2471. #u97544_input {
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:127px;
  2476. height:25px;
  2477. padding:2px 2px 2px 2px;
  2478. font-family:'Microsoft YaHei', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:10px;
  2482. letter-spacing:normal;
  2483. color:#000000;
  2484. vertical-align:none;
  2485. text-align:left;
  2486. text-transform:none;
  2487. background-color:transparent;
  2488. border-color:transparent;
  2489. }
  2490. #u97544_input.disabled {
  2491. position:absolute;
  2492. left:0px;
  2493. top:0px;
  2494. width:127px;
  2495. height:25px;
  2496. padding:2px 2px 2px 2px;
  2497. font-family:'Microsoft YaHei', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:10px;
  2501. letter-spacing:normal;
  2502. color:#000000;
  2503. vertical-align:none;
  2504. text-align:left;
  2505. text-transform:none;
  2506. background-color:transparent;
  2507. border-color:transparent;
  2508. }
  2509. #u97544_div {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:127px;
  2515. height:25px;
  2516. background:inherit;
  2517. background-color:rgba(255, 255, 255, 1);
  2518. border:none;
  2519. border-radius:0px;
  2520. -moz-box-shadow:none;
  2521. -webkit-box-shadow:none;
  2522. box-shadow:none;
  2523. font-family:'Microsoft YaHei', sans-serif;
  2524. font-weight:400;
  2525. font-style:normal;
  2526. font-size:10px;
  2527. }
  2528. #u97544 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:509px;
  2532. top:181px;
  2533. width:127px;
  2534. height:25px;
  2535. display:flex;
  2536. font-family:'Microsoft YaHei', sans-serif;
  2537. font-weight:400;
  2538. font-style:normal;
  2539. font-size:10px;
  2540. }
  2541. #u97544 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:2px 2px 2px 2px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u97544_div.disabled {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:127px;
  2554. height:25px;
  2555. background:inherit;
  2556. background-color:rgba(240, 240, 240, 1);
  2557. border:none;
  2558. border-radius:0px;
  2559. -moz-box-shadow:none;
  2560. -webkit-box-shadow:none;
  2561. box-shadow:none;
  2562. font-family:'Microsoft YaHei', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. font-size:10px;
  2566. }
  2567. #u97544.disabled {
  2568. }
  2569. #u97545 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:0px;
  2575. height:0px;
  2576. }
  2577. #u97546_div {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:140px;
  2583. height:30px;
  2584. background:inherit;
  2585. background-color:rgba(255, 255, 255, 1);
  2586. box-sizing:border-box;
  2587. border-width:1px;
  2588. border-style:solid;
  2589. border-color:rgba(215, 215, 215, 1);
  2590. border-radius:4px;
  2591. -moz-box-shadow:none;
  2592. -webkit-box-shadow:none;
  2593. box-shadow:none;
  2594. font-size:11px;
  2595. }
  2596. #u97546 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:351px;
  2600. top:180px;
  2601. width:140px;
  2602. height:30px;
  2603. display:flex;
  2604. font-size:11px;
  2605. }
  2606. #u97546 .text {
  2607. position:absolute;
  2608. align-self:center;
  2609. padding:2px 2px 2px 2px;
  2610. box-sizing:border-box;
  2611. width:100%;
  2612. }
  2613. #u97546_text {
  2614. border-width:0px;
  2615. word-wrap:break-word;
  2616. text-transform:none;
  2617. visibility:hidden;
  2618. }
  2619. #u97547_input {
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:120px;
  2624. height:23px;
  2625. padding:2px 2px 2px 2px;
  2626. font-family:'ArialMT', 'Arial', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:11px;
  2630. letter-spacing:normal;
  2631. color:#AAAAAA;
  2632. vertical-align:none;
  2633. text-align:left;
  2634. text-transform:none;
  2635. background-color:transparent;
  2636. border-color:transparent;
  2637. }
  2638. #u97547_input.disabled {
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:120px;
  2643. height:23px;
  2644. padding:2px 2px 2px 2px;
  2645. font-family:'ArialMT', 'Arial', sans-serif;
  2646. font-weight:400;
  2647. font-style:normal;
  2648. font-size:11px;
  2649. letter-spacing:normal;
  2650. color:#AAAAAA;
  2651. vertical-align:none;
  2652. text-align:left;
  2653. text-transform:none;
  2654. background-color:transparent;
  2655. border-color:transparent;
  2656. }
  2657. #u97547_div {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:120px;
  2663. height:23px;
  2664. background:inherit;
  2665. background-color:rgba(255, 255, 255, 1);
  2666. border:none;
  2667. border-radius:0px;
  2668. -moz-box-shadow:none;
  2669. -webkit-box-shadow:none;
  2670. box-shadow:none;
  2671. font-size:11px;
  2672. color:#AAAAAA;
  2673. }
  2674. #u97547 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:358px;
  2678. top:182px;
  2679. width:120px;
  2680. height:23px;
  2681. display:flex;
  2682. font-size:11px;
  2683. color:#AAAAAA;
  2684. }
  2685. #u97547 .text {
  2686. position:absolute;
  2687. align-self:flex-start;
  2688. padding:2px 2px 2px 2px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u97547_div.disabled {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:120px;
  2698. height:23px;
  2699. background:inherit;
  2700. background-color:rgba(240, 240, 240, 1);
  2701. border:none;
  2702. border-radius:0px;
  2703. -moz-box-shadow:none;
  2704. -webkit-box-shadow:none;
  2705. box-shadow:none;
  2706. font-size:11px;
  2707. color:#AAAAAA;
  2708. }
  2709. #u97547.disabled {
  2710. }
  2711. .u97547_input_option {
  2712. font-size:11px;
  2713. }
  2714. #u97548_div {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:55px;
  2720. height:50px;
  2721. background:inherit;
  2722. background-color:rgba(255, 255, 255, 0);
  2723. border:none;
  2724. border-left:0px;
  2725. border-top:0px;
  2726. border-right:0px;
  2727. border-radius:0px;
  2728. border-bottom-right-radius:0px;
  2729. border-bottom-left-radius:0px;
  2730. -moz-box-shadow:none;
  2731. -webkit-box-shadow:none;
  2732. box-shadow:none;
  2733. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2734. font-weight:500;
  2735. font-style:normal;
  2736. font-size:18px;
  2737. color:#298FFF;
  2738. }
  2739. #u97548 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:358px;
  2743. top:100px;
  2744. width:55px;
  2745. height:50px;
  2746. display:flex;
  2747. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2748. font-weight:500;
  2749. font-style:normal;
  2750. font-size:18px;
  2751. color:#298FFF;
  2752. }
  2753. #u97548 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:0px 0px 0px 0px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u97548_text {
  2761. border-width:0px;
  2762. white-space:nowrap;
  2763. text-transform:none;
  2764. }
  2765. #u97549_div {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:55px;
  2771. height:50px;
  2772. background:inherit;
  2773. background-color:rgba(255, 255, 255, 0);
  2774. border:none;
  2775. border-left:0px;
  2776. border-top:0px;
  2777. border-right:0px;
  2778. border-radius:0px;
  2779. border-bottom-right-radius:0px;
  2780. border-bottom-left-radius:0px;
  2781. -moz-box-shadow:none;
  2782. -webkit-box-shadow:none;
  2783. box-shadow:none;
  2784. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2785. font-weight:500;
  2786. font-style:normal;
  2787. font-size:18px;
  2788. }
  2789. #u97549 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:443px;
  2793. top:100px;
  2794. width:55px;
  2795. height:50px;
  2796. display:flex;
  2797. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2798. font-weight:500;
  2799. font-style:normal;
  2800. font-size:18px;
  2801. }
  2802. #u97549 .text {
  2803. position:absolute;
  2804. align-self:center;
  2805. padding:0px 0px 0px 0px;
  2806. box-sizing:border-box;
  2807. width:100%;
  2808. }
  2809. #u97549_text {
  2810. border-width:0px;
  2811. white-space:nowrap;
  2812. text-transform:none;
  2813. }
  2814. #u97550 {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:351px;
  2818. top:232px;
  2819. width:1222px;
  2820. height:363px;
  2821. }
  2822. #u97551_img {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:95px;
  2828. height:38px;
  2829. }
  2830. #u97551 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:95px;
  2836. height:38px;
  2837. display:flex;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:12px;
  2842. color:#FFFFFF;
  2843. }
  2844. #u97551 .text {
  2845. position:absolute;
  2846. align-self:center;
  2847. padding:2px 2px 2px 0px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u97551_text {
  2852. border-width:0px;
  2853. word-wrap:break-word;
  2854. text-transform:none;
  2855. }
  2856. #u97552_img {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:85px;
  2862. height:38px;
  2863. }
  2864. #u97552 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:95px;
  2868. top:0px;
  2869. width:85px;
  2870. height:38px;
  2871. display:flex;
  2872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:12px;
  2876. color:#FFFFFF;
  2877. }
  2878. #u97552 .text {
  2879. position:absolute;
  2880. align-self:center;
  2881. padding:2px 2px 2px 0px;
  2882. box-sizing:border-box;
  2883. width:100%;
  2884. }
  2885. #u97552_text {
  2886. border-width:0px;
  2887. word-wrap:break-word;
  2888. text-transform:none;
  2889. }
  2890. #u97553_img {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:0px;
  2894. top:0px;
  2895. width:85px;
  2896. height:38px;
  2897. }
  2898. #u97553 {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:180px;
  2902. top:0px;
  2903. width:85px;
  2904. height:38px;
  2905. display:flex;
  2906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2907. font-weight:400;
  2908. font-style:normal;
  2909. font-size:12px;
  2910. color:#FFFFFF;
  2911. }
  2912. #u97553 .text {
  2913. position:absolute;
  2914. align-self:center;
  2915. padding:2px 2px 2px 0px;
  2916. box-sizing:border-box;
  2917. width:100%;
  2918. }
  2919. #u97553_text {
  2920. border-width:0px;
  2921. word-wrap:break-word;
  2922. text-transform:none;
  2923. }
  2924. #u97554_img {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:96px;
  2930. height:38px;
  2931. }
  2932. #u97554 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:265px;
  2936. top:0px;
  2937. width:96px;
  2938. height:38px;
  2939. display:flex;
  2940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2941. font-weight:400;
  2942. font-style:normal;
  2943. font-size:12px;
  2944. color:#FFFFFF;
  2945. }
  2946. #u97554 .text {
  2947. position:absolute;
  2948. align-self:center;
  2949. padding:2px 2px 2px 0px;
  2950. box-sizing:border-box;
  2951. width:100%;
  2952. }
  2953. #u97554_text {
  2954. border-width:0px;
  2955. word-wrap:break-word;
  2956. text-transform:none;
  2957. }
  2958. #u97555_img {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:0px;
  2962. top:0px;
  2963. width:85px;
  2964. height:38px;
  2965. }
  2966. #u97555 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:361px;
  2970. top:0px;
  2971. width:85px;
  2972. height:38px;
  2973. display:flex;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:12px;
  2978. color:#FFFFFF;
  2979. }
  2980. #u97555 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 2px 2px 0px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u97555_text {
  2988. border-width:0px;
  2989. word-wrap:break-word;
  2990. text-transform:none;
  2991. }
  2992. #u97556_img {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:95px;
  2998. height:38px;
  2999. }
  3000. #u97556 {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:446px;
  3004. top:0px;
  3005. width:95px;
  3006. height:38px;
  3007. display:flex;
  3008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3009. font-weight:400;
  3010. font-style:normal;
  3011. font-size:12px;
  3012. color:#FFFFFF;
  3013. }
  3014. #u97556 .text {
  3015. position:absolute;
  3016. align-self:center;
  3017. padding:2px 2px 2px 0px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u97556_text {
  3022. border-width:0px;
  3023. word-wrap:break-word;
  3024. text-transform:none;
  3025. }
  3026. #u97557_img {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:0px;
  3030. top:0px;
  3031. width:96px;
  3032. height:38px;
  3033. }
  3034. #u97557 {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:541px;
  3038. top:0px;
  3039. width:96px;
  3040. height:38px;
  3041. display:flex;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:12px;
  3046. color:#FFFFFF;
  3047. }
  3048. #u97557 .text {
  3049. position:absolute;
  3050. align-self:center;
  3051. padding:2px 2px 2px 0px;
  3052. box-sizing:border-box;
  3053. width:100%;
  3054. }
  3055. #u97557_text {
  3056. border-width:0px;
  3057. word-wrap:break-word;
  3058. text-transform:none;
  3059. }
  3060. #u97558_img {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:0px;
  3064. top:0px;
  3065. width:95px;
  3066. height:38px;
  3067. }
  3068. #u97558 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:637px;
  3072. top:0px;
  3073. width:95px;
  3074. height:38px;
  3075. display:flex;
  3076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3077. font-weight:400;
  3078. font-style:normal;
  3079. font-size:12px;
  3080. color:#FFFFFF;
  3081. }
  3082. #u97558 .text {
  3083. position:absolute;
  3084. align-self:center;
  3085. padding:2px 2px 2px 0px;
  3086. box-sizing:border-box;
  3087. width:100%;
  3088. }
  3089. #u97558_text {
  3090. border-width:0px;
  3091. word-wrap:break-word;
  3092. text-transform:none;
  3093. }
  3094. #u97559_img {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:0px;
  3098. top:0px;
  3099. width:94px;
  3100. height:38px;
  3101. }
  3102. #u97559 {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:732px;
  3106. top:0px;
  3107. width:94px;
  3108. height:38px;
  3109. display:flex;
  3110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3111. font-weight:400;
  3112. font-style:normal;
  3113. font-size:12px;
  3114. color:#FFFFFF;
  3115. }
  3116. #u97559 .text {
  3117. position:absolute;
  3118. align-self:center;
  3119. padding:2px 2px 2px 0px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u97559_text {
  3124. border-width:0px;
  3125. word-wrap:break-word;
  3126. text-transform:none;
  3127. }
  3128. #u97560_img {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:0px;
  3132. top:0px;
  3133. width:94px;
  3134. height:38px;
  3135. }
  3136. #u97560 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:826px;
  3140. top:0px;
  3141. width:94px;
  3142. height:38px;
  3143. display:flex;
  3144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3145. font-weight:400;
  3146. font-style:normal;
  3147. font-size:12px;
  3148. color:#FFFFFF;
  3149. }
  3150. #u97560 .text {
  3151. position:absolute;
  3152. align-self:center;
  3153. padding:2px 2px 2px 0px;
  3154. box-sizing:border-box;
  3155. width:100%;
  3156. }
  3157. #u97560_text {
  3158. border-width:0px;
  3159. word-wrap:break-word;
  3160. text-transform:none;
  3161. }
  3162. #u97561_img {
  3163. border-width:0px;
  3164. position:absolute;
  3165. left:0px;
  3166. top:0px;
  3167. width:96px;
  3168. height:38px;
  3169. }
  3170. #u97561 {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:920px;
  3174. top:0px;
  3175. width:96px;
  3176. height:38px;
  3177. display:flex;
  3178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:12px;
  3182. color:#FFFFFF;
  3183. }
  3184. #u97561 .text {
  3185. position:absolute;
  3186. align-self:center;
  3187. padding:2px 2px 2px 0px;
  3188. box-sizing:border-box;
  3189. width:100%;
  3190. }
  3191. #u97561_text {
  3192. border-width:0px;
  3193. word-wrap:break-word;
  3194. text-transform:none;
  3195. }
  3196. #u97562_img {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:0px;
  3200. top:0px;
  3201. width:96px;
  3202. height:38px;
  3203. }
  3204. #u97562 {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:1016px;
  3208. top:0px;
  3209. width:96px;
  3210. height:38px;
  3211. display:flex;
  3212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3213. font-weight:400;
  3214. font-style:normal;
  3215. font-size:12px;
  3216. color:#FFFFFF;
  3217. }
  3218. #u97562 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 2px 2px 0px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u97562_text {
  3226. border-width:0px;
  3227. word-wrap:break-word;
  3228. text-transform:none;
  3229. }
  3230. #u97563_img {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:110px;
  3236. height:38px;
  3237. }
  3238. #u97563 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:1112px;
  3242. top:0px;
  3243. width:110px;
  3244. height:38px;
  3245. display:flex;
  3246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3247. font-weight:400;
  3248. font-style:normal;
  3249. font-size:12px;
  3250. color:#FFFFFF;
  3251. }
  3252. #u97563 .text {
  3253. position:absolute;
  3254. align-self:center;
  3255. padding:2px 2px 2px 0px;
  3256. box-sizing:border-box;
  3257. width:100%;
  3258. }
  3259. #u97563_text {
  3260. border-width:0px;
  3261. word-wrap:break-word;
  3262. text-transform:none;
  3263. }
  3264. #u97564_img {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:95px;
  3270. height:38px;
  3271. }
  3272. #u97564 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:38px;
  3277. width:95px;
  3278. height:38px;
  3279. display:flex;
  3280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3281. font-weight:400;
  3282. font-style:normal;
  3283. font-size:12px;
  3284. }
  3285. #u97564 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 0px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u97564_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. }
  3297. #u97565_img {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:85px;
  3303. height:38px;
  3304. }
  3305. #u97565 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:95px;
  3309. top:38px;
  3310. width:85px;
  3311. height:38px;
  3312. display:flex;
  3313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:12px;
  3317. }
  3318. #u97565 .text {
  3319. position:absolute;
  3320. align-self:center;
  3321. padding:2px 2px 2px 0px;
  3322. box-sizing:border-box;
  3323. width:100%;
  3324. }
  3325. #u97565_text {
  3326. border-width:0px;
  3327. word-wrap:break-word;
  3328. text-transform:none;
  3329. visibility:hidden;
  3330. }
  3331. #u97566_img {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:85px;
  3337. height:38px;
  3338. }
  3339. #u97566 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:180px;
  3343. top:38px;
  3344. width:85px;
  3345. height:38px;
  3346. display:flex;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:12px;
  3351. }
  3352. #u97566 .text {
  3353. position:absolute;
  3354. align-self:center;
  3355. padding:2px 2px 2px 0px;
  3356. box-sizing:border-box;
  3357. width:100%;
  3358. }
  3359. #u97566_text {
  3360. border-width:0px;
  3361. word-wrap:break-word;
  3362. text-transform:none;
  3363. visibility:hidden;
  3364. }
  3365. #u97567_img {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:96px;
  3371. height:38px;
  3372. }
  3373. #u97567 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:265px;
  3377. top:38px;
  3378. width:96px;
  3379. height:38px;
  3380. display:flex;
  3381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3382. font-weight:400;
  3383. font-style:normal;
  3384. font-size:12px;
  3385. }
  3386. #u97567 .text {
  3387. position:absolute;
  3388. align-self:center;
  3389. padding:2px 2px 2px 0px;
  3390. box-sizing:border-box;
  3391. width:100%;
  3392. }
  3393. #u97567_text {
  3394. border-width:0px;
  3395. word-wrap:break-word;
  3396. text-transform:none;
  3397. visibility:hidden;
  3398. }
  3399. #u97568_img {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:85px;
  3405. height:38px;
  3406. }
  3407. #u97568 {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:361px;
  3411. top:38px;
  3412. width:85px;
  3413. height:38px;
  3414. display:flex;
  3415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3416. font-weight:400;
  3417. font-style:normal;
  3418. font-size:12px;
  3419. }
  3420. #u97568 .text {
  3421. position:absolute;
  3422. align-self:center;
  3423. padding:2px 2px 2px 0px;
  3424. box-sizing:border-box;
  3425. width:100%;
  3426. }
  3427. #u97568_text {
  3428. border-width:0px;
  3429. word-wrap:break-word;
  3430. text-transform:none;
  3431. visibility:hidden;
  3432. }
  3433. #u97569_img {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:95px;
  3439. height:38px;
  3440. }
  3441. #u97569 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:446px;
  3445. top:38px;
  3446. width:95px;
  3447. height:38px;
  3448. display:flex;
  3449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:12px;
  3453. }
  3454. #u97569 .text {
  3455. position:absolute;
  3456. align-self:center;
  3457. padding:2px 2px 2px 0px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u97569_text {
  3462. border-width:0px;
  3463. word-wrap:break-word;
  3464. text-transform:none;
  3465. visibility:hidden;
  3466. }
  3467. #u97570_img {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:96px;
  3473. height:38px;
  3474. }
  3475. #u97570 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:541px;
  3479. top:38px;
  3480. width:96px;
  3481. height:38px;
  3482. display:flex;
  3483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:12px;
  3487. }
  3488. #u97570 .text {
  3489. position:absolute;
  3490. align-self:center;
  3491. padding:2px 2px 2px 0px;
  3492. box-sizing:border-box;
  3493. width:100%;
  3494. }
  3495. #u97570_text {
  3496. border-width:0px;
  3497. word-wrap:break-word;
  3498. text-transform:none;
  3499. visibility:hidden;
  3500. }
  3501. #u97571_img {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:95px;
  3507. height:38px;
  3508. }
  3509. #u97571 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:637px;
  3513. top:38px;
  3514. width:95px;
  3515. height:38px;
  3516. display:flex;
  3517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3518. font-weight:400;
  3519. font-style:normal;
  3520. font-size:12px;
  3521. }
  3522. #u97571 .text {
  3523. position:absolute;
  3524. align-self:center;
  3525. padding:2px 2px 2px 0px;
  3526. box-sizing:border-box;
  3527. width:100%;
  3528. }
  3529. #u97571_text {
  3530. border-width:0px;
  3531. word-wrap:break-word;
  3532. text-transform:none;
  3533. visibility:hidden;
  3534. }
  3535. #u97572_img {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:94px;
  3541. height:38px;
  3542. }
  3543. #u97572 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:732px;
  3547. top:38px;
  3548. width:94px;
  3549. height:38px;
  3550. display:flex;
  3551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3552. font-weight:400;
  3553. font-style:normal;
  3554. font-size:12px;
  3555. }
  3556. #u97572 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 2px 2px 0px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u97572_text {
  3564. border-width:0px;
  3565. word-wrap:break-word;
  3566. text-transform:none;
  3567. }
  3568. #u97573_img {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:94px;
  3574. height:38px;
  3575. }
  3576. #u97573 {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:826px;
  3580. top:38px;
  3581. width:94px;
  3582. height:38px;
  3583. display:flex;
  3584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3585. font-weight:400;
  3586. font-style:normal;
  3587. font-size:12px;
  3588. }
  3589. #u97573 .text {
  3590. position:absolute;
  3591. align-self:center;
  3592. padding:2px 2px 2px 0px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u97573_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. }
  3601. #u97574_img {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:96px;
  3607. height:38px;
  3608. }
  3609. #u97574 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:920px;
  3613. top:38px;
  3614. width:96px;
  3615. height:38px;
  3616. display:flex;
  3617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3618. font-weight:400;
  3619. font-style:normal;
  3620. font-size:12px;
  3621. }
  3622. #u97574 .text {
  3623. position:absolute;
  3624. align-self:center;
  3625. padding:2px 2px 2px 0px;
  3626. box-sizing:border-box;
  3627. width:100%;
  3628. }
  3629. #u97574_text {
  3630. border-width:0px;
  3631. word-wrap:break-word;
  3632. text-transform:none;
  3633. visibility:hidden;
  3634. }
  3635. #u97575_img {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:96px;
  3641. height:38px;
  3642. }
  3643. #u97575 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:1016px;
  3647. top:38px;
  3648. width:96px;
  3649. height:38px;
  3650. display:flex;
  3651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3652. font-weight:400;
  3653. font-style:normal;
  3654. font-size:12px;
  3655. }
  3656. #u97575 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:2px 2px 2px 0px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u97575_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u97576_img {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:110px;
  3675. height:38px;
  3676. }
  3677. #u97576 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:1112px;
  3681. top:38px;
  3682. width:110px;
  3683. height:38px;
  3684. display:flex;
  3685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:12px;
  3689. color:#1890FF;
  3690. }
  3691. #u97576 .text {
  3692. position:absolute;
  3693. align-self:center;
  3694. padding:2px 2px 2px 0px;
  3695. box-sizing:border-box;
  3696. width:100%;
  3697. }
  3698. #u97576_text {
  3699. border-width:0px;
  3700. word-wrap:break-word;
  3701. text-transform:none;
  3702. }
  3703. #u97577_img {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:95px;
  3709. height:38px;
  3710. }
  3711. #u97577 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:0px;
  3715. top:76px;
  3716. width:95px;
  3717. height:38px;
  3718. display:flex;
  3719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:12px;
  3723. }
  3724. #u97577 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 0px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u97577_text {
  3732. border-width:0px;
  3733. word-wrap:break-word;
  3734. text-transform:none;
  3735. visibility:hidden;
  3736. }
  3737. #u97578_img {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:85px;
  3743. height:38px;
  3744. }
  3745. #u97578 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:95px;
  3749. top:76px;
  3750. width:85px;
  3751. height:38px;
  3752. display:flex;
  3753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:12px;
  3757. }
  3758. #u97578 .text {
  3759. position:absolute;
  3760. align-self:center;
  3761. padding:2px 2px 2px 0px;
  3762. box-sizing:border-box;
  3763. width:100%;
  3764. }
  3765. #u97578_text {
  3766. border-width:0px;
  3767. word-wrap:break-word;
  3768. text-transform:none;
  3769. visibility:hidden;
  3770. }
  3771. #u97579_img {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:85px;
  3777. height:38px;
  3778. }
  3779. #u97579 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:180px;
  3783. top:76px;
  3784. width:85px;
  3785. height:38px;
  3786. display:flex;
  3787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3788. font-weight:400;
  3789. font-style:normal;
  3790. font-size:12px;
  3791. }
  3792. #u97579 .text {
  3793. position:absolute;
  3794. align-self:center;
  3795. padding:2px 2px 2px 0px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u97579_text {
  3800. border-width:0px;
  3801. word-wrap:break-word;
  3802. text-transform:none;
  3803. visibility:hidden;
  3804. }
  3805. #u97580_img {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:96px;
  3811. height:38px;
  3812. }
  3813. #u97580 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:265px;
  3817. top:76px;
  3818. width:96px;
  3819. height:38px;
  3820. display:flex;
  3821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:12px;
  3825. }
  3826. #u97580 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 2px 2px 0px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u97580_text {
  3834. border-width:0px;
  3835. word-wrap:break-word;
  3836. text-transform:none;
  3837. visibility:hidden;
  3838. }
  3839. #u97581_img {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:85px;
  3845. height:38px;
  3846. }
  3847. #u97581 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:361px;
  3851. top:76px;
  3852. width:85px;
  3853. height:38px;
  3854. display:flex;
  3855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3856. font-weight:400;
  3857. font-style:normal;
  3858. font-size:12px;
  3859. }
  3860. #u97581 .text {
  3861. position:absolute;
  3862. align-self:center;
  3863. padding:2px 2px 2px 0px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u97581_text {
  3868. border-width:0px;
  3869. word-wrap:break-word;
  3870. text-transform:none;
  3871. visibility:hidden;
  3872. }
  3873. #u97582_img {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:95px;
  3879. height:38px;
  3880. }
  3881. #u97582 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:446px;
  3885. top:76px;
  3886. width:95px;
  3887. height:38px;
  3888. display:flex;
  3889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:12px;
  3893. }
  3894. #u97582 .text {
  3895. position:absolute;
  3896. align-self:center;
  3897. padding:2px 2px 2px 0px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u97582_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. visibility:hidden;
  3906. }
  3907. #u97583_img {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:96px;
  3913. height:38px;
  3914. }
  3915. #u97583 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:541px;
  3919. top:76px;
  3920. width:96px;
  3921. height:38px;
  3922. display:flex;
  3923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3924. font-weight:400;
  3925. font-style:normal;
  3926. font-size:12px;
  3927. }
  3928. #u97583 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:2px 2px 2px 0px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u97583_text {
  3936. border-width:0px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. visibility:hidden;
  3940. }
  3941. #u97584_img {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:95px;
  3947. height:38px;
  3948. }
  3949. #u97584 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:637px;
  3953. top:76px;
  3954. width:95px;
  3955. height:38px;
  3956. display:flex;
  3957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3958. font-weight:400;
  3959. font-style:normal;
  3960. font-size:12px;
  3961. }
  3962. #u97584 .text {
  3963. position:absolute;
  3964. align-self:center;
  3965. padding:2px 2px 2px 0px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u97584_text {
  3970. border-width:0px;
  3971. word-wrap:break-word;
  3972. text-transform:none;
  3973. visibility:hidden;
  3974. }
  3975. #u97585_img {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:0px;
  3979. top:0px;
  3980. width:94px;
  3981. height:38px;
  3982. }
  3983. #u97585 {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:732px;
  3987. top:76px;
  3988. width:94px;
  3989. height:38px;
  3990. display:flex;
  3991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:12px;
  3995. }
  3996. #u97585 .text {
  3997. position:absolute;
  3998. align-self:center;
  3999. padding:2px 2px 2px 0px;
  4000. box-sizing:border-box;
  4001. width:100%;
  4002. }
  4003. #u97585_text {
  4004. border-width:0px;
  4005. word-wrap:break-word;
  4006. text-transform:none;
  4007. visibility:hidden;
  4008. }
  4009. #u97586_img {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:94px;
  4015. height:38px;
  4016. }
  4017. #u97586 {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:826px;
  4021. top:76px;
  4022. width:94px;
  4023. height:38px;
  4024. display:flex;
  4025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. font-size:12px;
  4029. }
  4030. #u97586 .text {
  4031. position:absolute;
  4032. align-self:center;
  4033. padding:2px 2px 2px 0px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u97586_text {
  4038. border-width:0px;
  4039. word-wrap:break-word;
  4040. text-transform:none;
  4041. visibility:hidden;
  4042. }
  4043. #u97587_img {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:0px;
  4047. top:0px;
  4048. width:96px;
  4049. height:38px;
  4050. }
  4051. #u97587 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:920px;
  4055. top:76px;
  4056. width:96px;
  4057. height:38px;
  4058. display:flex;
  4059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. font-size:12px;
  4063. }
  4064. #u97587 .text {
  4065. position:absolute;
  4066. align-self:center;
  4067. padding:2px 2px 2px 0px;
  4068. box-sizing:border-box;
  4069. width:100%;
  4070. }
  4071. #u97587_text {
  4072. border-width:0px;
  4073. word-wrap:break-word;
  4074. text-transform:none;
  4075. visibility:hidden;
  4076. }
  4077. #u97588_img {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:0px;
  4081. top:0px;
  4082. width:96px;
  4083. height:38px;
  4084. }
  4085. #u97588 {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:1016px;
  4089. top:76px;
  4090. width:96px;
  4091. height:38px;
  4092. display:flex;
  4093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4094. font-weight:400;
  4095. font-style:normal;
  4096. font-size:12px;
  4097. }
  4098. #u97588 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 0px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u97588_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. visibility:hidden;
  4110. }
  4111. #u97589_img {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:110px;
  4117. height:38px;
  4118. }
  4119. #u97589 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:1112px;
  4123. top:76px;
  4124. width:110px;
  4125. height:38px;
  4126. display:flex;
  4127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4128. font-weight:400;
  4129. font-style:normal;
  4130. font-size:12px;
  4131. color:#1890FF;
  4132. }
  4133. #u97589 .text {
  4134. position:absolute;
  4135. align-self:center;
  4136. padding:2px 2px 2px 0px;
  4137. box-sizing:border-box;
  4138. width:100%;
  4139. }
  4140. #u97589_text {
  4141. border-width:0px;
  4142. word-wrap:break-word;
  4143. text-transform:none;
  4144. }
  4145. #u97590_img {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:0px;
  4149. top:0px;
  4150. width:95px;
  4151. height:38px;
  4152. }
  4153. #u97590 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:114px;
  4158. width:95px;
  4159. height:38px;
  4160. display:flex;
  4161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:12px;
  4165. }
  4166. #u97590 .text {
  4167. position:absolute;
  4168. align-self:center;
  4169. padding:2px 2px 2px 0px;
  4170. box-sizing:border-box;
  4171. width:100%;
  4172. }
  4173. #u97590_text {
  4174. border-width:0px;
  4175. word-wrap:break-word;
  4176. text-transform:none;
  4177. visibility:hidden;
  4178. }
  4179. #u97591_img {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:85px;
  4185. height:38px;
  4186. }
  4187. #u97591 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:95px;
  4191. top:114px;
  4192. width:85px;
  4193. height:38px;
  4194. display:flex;
  4195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4196. font-weight:400;
  4197. font-style:normal;
  4198. font-size:12px;
  4199. }
  4200. #u97591 .text {
  4201. position:absolute;
  4202. align-self:center;
  4203. padding:2px 2px 2px 0px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u97591_text {
  4208. border-width:0px;
  4209. word-wrap:break-word;
  4210. text-transform:none;
  4211. visibility:hidden;
  4212. }
  4213. #u97592_img {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:85px;
  4219. height:38px;
  4220. }
  4221. #u97592 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:180px;
  4225. top:114px;
  4226. width:85px;
  4227. height:38px;
  4228. display:flex;
  4229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:12px;
  4233. }
  4234. #u97592 .text {
  4235. position:absolute;
  4236. align-self:center;
  4237. padding:2px 2px 2px 0px;
  4238. box-sizing:border-box;
  4239. width:100%;
  4240. }
  4241. #u97592_text {
  4242. border-width:0px;
  4243. word-wrap:break-word;
  4244. text-transform:none;
  4245. visibility:hidden;
  4246. }
  4247. #u97593_img {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:96px;
  4253. height:38px;
  4254. }
  4255. #u97593 {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:265px;
  4259. top:114px;
  4260. width:96px;
  4261. height:38px;
  4262. display:flex;
  4263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4264. font-weight:400;
  4265. font-style:normal;
  4266. font-size:12px;
  4267. }
  4268. #u97593 .text {
  4269. position:absolute;
  4270. align-self:center;
  4271. padding:2px 2px 2px 0px;
  4272. box-sizing:border-box;
  4273. width:100%;
  4274. }
  4275. #u97593_text {
  4276. border-width:0px;
  4277. word-wrap:break-word;
  4278. text-transform:none;
  4279. visibility:hidden;
  4280. }
  4281. #u97594_img {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:85px;
  4287. height:38px;
  4288. }
  4289. #u97594 {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:361px;
  4293. top:114px;
  4294. width:85px;
  4295. height:38px;
  4296. display:flex;
  4297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4298. font-weight:400;
  4299. font-style:normal;
  4300. font-size:12px;
  4301. }
  4302. #u97594 .text {
  4303. position:absolute;
  4304. align-self:center;
  4305. padding:2px 2px 2px 0px;
  4306. box-sizing:border-box;
  4307. width:100%;
  4308. }
  4309. #u97594_text {
  4310. border-width:0px;
  4311. word-wrap:break-word;
  4312. text-transform:none;
  4313. visibility:hidden;
  4314. }
  4315. #u97595_img {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:95px;
  4321. height:38px;
  4322. }
  4323. #u97595 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:446px;
  4327. top:114px;
  4328. width:95px;
  4329. height:38px;
  4330. display:flex;
  4331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4332. font-weight:400;
  4333. font-style:normal;
  4334. font-size:12px;
  4335. }
  4336. #u97595 .text {
  4337. position:absolute;
  4338. align-self:center;
  4339. padding:2px 2px 2px 0px;
  4340. box-sizing:border-box;
  4341. width:100%;
  4342. }
  4343. #u97595_text {
  4344. border-width:0px;
  4345. word-wrap:break-word;
  4346. text-transform:none;
  4347. visibility:hidden;
  4348. }
  4349. #u97596_img {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:0px;
  4353. top:0px;
  4354. width:96px;
  4355. height:38px;
  4356. }
  4357. #u97596 {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:541px;
  4361. top:114px;
  4362. width:96px;
  4363. height:38px;
  4364. display:flex;
  4365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4366. font-weight:400;
  4367. font-style:normal;
  4368. font-size:12px;
  4369. }
  4370. #u97596 .text {
  4371. position:absolute;
  4372. align-self:center;
  4373. padding:2px 2px 2px 0px;
  4374. box-sizing:border-box;
  4375. width:100%;
  4376. }
  4377. #u97596_text {
  4378. border-width:0px;
  4379. word-wrap:break-word;
  4380. text-transform:none;
  4381. visibility:hidden;
  4382. }
  4383. #u97597_img {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:0px;
  4387. top:0px;
  4388. width:95px;
  4389. height:38px;
  4390. }
  4391. #u97597 {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:637px;
  4395. top:114px;
  4396. width:95px;
  4397. height:38px;
  4398. display:flex;
  4399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4400. font-weight:400;
  4401. font-style:normal;
  4402. font-size:12px;
  4403. }
  4404. #u97597 .text {
  4405. position:absolute;
  4406. align-self:center;
  4407. padding:2px 2px 2px 0px;
  4408. box-sizing:border-box;
  4409. width:100%;
  4410. }
  4411. #u97597_text {
  4412. border-width:0px;
  4413. word-wrap:break-word;
  4414. text-transform:none;
  4415. visibility:hidden;
  4416. }
  4417. #u97598_img {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:0px;
  4421. top:0px;
  4422. width:94px;
  4423. height:38px;
  4424. }
  4425. #u97598 {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:732px;
  4429. top:114px;
  4430. width:94px;
  4431. height:38px;
  4432. display:flex;
  4433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4434. font-weight:400;
  4435. font-style:normal;
  4436. font-size:12px;
  4437. }
  4438. #u97598 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 0px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u97598_text {
  4446. border-width:0px;
  4447. word-wrap:break-word;
  4448. text-transform:none;
  4449. visibility:hidden;
  4450. }
  4451. #u97599_img {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:94px;
  4457. height:38px;
  4458. }
  4459. #u97599 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:826px;
  4463. top:114px;
  4464. width:94px;
  4465. height:38px;
  4466. display:flex;
  4467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4468. font-weight:400;
  4469. font-style:normal;
  4470. font-size:12px;
  4471. }
  4472. #u97599 .text {
  4473. position:absolute;
  4474. align-self:center;
  4475. padding:2px 2px 2px 0px;
  4476. box-sizing:border-box;
  4477. width:100%;
  4478. }
  4479. #u97599_text {
  4480. border-width:0px;
  4481. word-wrap:break-word;
  4482. text-transform:none;
  4483. visibility:hidden;
  4484. }
  4485. #u97600_img {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:0px;
  4489. top:0px;
  4490. width:96px;
  4491. height:38px;
  4492. }
  4493. #u97600 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:920px;
  4497. top:114px;
  4498. width:96px;
  4499. height:38px;
  4500. display:flex;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:12px;
  4505. }
  4506. #u97600 .text {
  4507. position:absolute;
  4508. align-self:center;
  4509. padding:2px 2px 2px 0px;
  4510. box-sizing:border-box;
  4511. width:100%;
  4512. }
  4513. #u97600_text {
  4514. border-width:0px;
  4515. word-wrap:break-word;
  4516. text-transform:none;
  4517. visibility:hidden;
  4518. }
  4519. #u97601_img {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:96px;
  4525. height:38px;
  4526. }
  4527. #u97601 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:1016px;
  4531. top:114px;
  4532. width:96px;
  4533. height:38px;
  4534. display:flex;
  4535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4536. font-weight:400;
  4537. font-style:normal;
  4538. font-size:12px;
  4539. }
  4540. #u97601 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:2px 2px 2px 0px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u97601_text {
  4548. border-width:0px;
  4549. word-wrap:break-word;
  4550. text-transform:none;
  4551. visibility:hidden;
  4552. }
  4553. #u97602_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:110px;
  4559. height:38px;
  4560. }
  4561. #u97602 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:1112px;
  4565. top:114px;
  4566. width:110px;
  4567. height:38px;
  4568. display:flex;
  4569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:12px;
  4573. color:#1890FF;
  4574. }
  4575. #u97602 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 0px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u97602_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u97603_img {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:95px;
  4594. height:38px;
  4595. }
  4596. #u97603 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:0px;
  4600. top:152px;
  4601. width:95px;
  4602. height:38px;
  4603. display:flex;
  4604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:12px;
  4608. }
  4609. #u97603 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:2px 2px 2px 0px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u97603_text {
  4617. border-width:0px;
  4618. word-wrap:break-word;
  4619. text-transform:none;
  4620. visibility:hidden;
  4621. }
  4622. #u97604_img {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:85px;
  4628. height:38px;
  4629. }
  4630. #u97604 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:95px;
  4634. top:152px;
  4635. width:85px;
  4636. height:38px;
  4637. display:flex;
  4638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:12px;
  4642. }
  4643. #u97604 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:2px 2px 2px 0px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u97604_text {
  4651. border-width:0px;
  4652. word-wrap:break-word;
  4653. text-transform:none;
  4654. visibility:hidden;
  4655. }
  4656. #u97605_img {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:0px;
  4660. top:0px;
  4661. width:85px;
  4662. height:38px;
  4663. }
  4664. #u97605 {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:180px;
  4668. top:152px;
  4669. width:85px;
  4670. height:38px;
  4671. display:flex;
  4672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4673. font-weight:400;
  4674. font-style:normal;
  4675. font-size:12px;
  4676. }
  4677. #u97605 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:2px 2px 2px 0px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u97605_text {
  4685. border-width:0px;
  4686. word-wrap:break-word;
  4687. text-transform:none;
  4688. visibility:hidden;
  4689. }
  4690. #u97606_img {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:0px;
  4694. top:0px;
  4695. width:96px;
  4696. height:38px;
  4697. }
  4698. #u97606 {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:265px;
  4702. top:152px;
  4703. width:96px;
  4704. height:38px;
  4705. display:flex;
  4706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4707. font-weight:400;
  4708. font-style:normal;
  4709. font-size:12px;
  4710. }
  4711. #u97606 .text {
  4712. position:absolute;
  4713. align-self:center;
  4714. padding:2px 2px 2px 0px;
  4715. box-sizing:border-box;
  4716. width:100%;
  4717. }
  4718. #u97606_text {
  4719. border-width:0px;
  4720. word-wrap:break-word;
  4721. text-transform:none;
  4722. visibility:hidden;
  4723. }
  4724. #u97607_img {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:0px;
  4728. top:0px;
  4729. width:85px;
  4730. height:38px;
  4731. }
  4732. #u97607 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:361px;
  4736. top:152px;
  4737. width:85px;
  4738. height:38px;
  4739. display:flex;
  4740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4741. font-weight:400;
  4742. font-style:normal;
  4743. font-size:12px;
  4744. }
  4745. #u97607 .text {
  4746. position:absolute;
  4747. align-self:center;
  4748. padding:2px 2px 2px 0px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u97607_text {
  4753. border-width:0px;
  4754. word-wrap:break-word;
  4755. text-transform:none;
  4756. visibility:hidden;
  4757. }
  4758. #u97608_img {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:95px;
  4764. height:38px;
  4765. }
  4766. #u97608 {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:446px;
  4770. top:152px;
  4771. width:95px;
  4772. height:38px;
  4773. display:flex;
  4774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4775. font-weight:400;
  4776. font-style:normal;
  4777. font-size:12px;
  4778. }
  4779. #u97608 .text {
  4780. position:absolute;
  4781. align-self:center;
  4782. padding:2px 2px 2px 0px;
  4783. box-sizing:border-box;
  4784. width:100%;
  4785. }
  4786. #u97608_text {
  4787. border-width:0px;
  4788. word-wrap:break-word;
  4789. text-transform:none;
  4790. visibility:hidden;
  4791. }
  4792. #u97609_img {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:96px;
  4798. height:38px;
  4799. }
  4800. #u97609 {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:541px;
  4804. top:152px;
  4805. width:96px;
  4806. height:38px;
  4807. display:flex;
  4808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:12px;
  4812. }
  4813. #u97609 .text {
  4814. position:absolute;
  4815. align-self:center;
  4816. padding:2px 2px 2px 0px;
  4817. box-sizing:border-box;
  4818. width:100%;
  4819. }
  4820. #u97609_text {
  4821. border-width:0px;
  4822. word-wrap:break-word;
  4823. text-transform:none;
  4824. visibility:hidden;
  4825. }
  4826. #u97610_img {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:95px;
  4832. height:38px;
  4833. }
  4834. #u97610 {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:637px;
  4838. top:152px;
  4839. width:95px;
  4840. height:38px;
  4841. display:flex;
  4842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4843. font-weight:400;
  4844. font-style:normal;
  4845. font-size:12px;
  4846. }
  4847. #u97610 .text {
  4848. position:absolute;
  4849. align-self:center;
  4850. padding:2px 2px 2px 0px;
  4851. box-sizing:border-box;
  4852. width:100%;
  4853. }
  4854. #u97610_text {
  4855. border-width:0px;
  4856. word-wrap:break-word;
  4857. text-transform:none;
  4858. visibility:hidden;
  4859. }
  4860. #u97611_img {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:0px;
  4864. top:0px;
  4865. width:94px;
  4866. height:38px;
  4867. }
  4868. #u97611 {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:732px;
  4872. top:152px;
  4873. width:94px;
  4874. height:38px;
  4875. display:flex;
  4876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4877. font-weight:400;
  4878. font-style:normal;
  4879. font-size:12px;
  4880. }
  4881. #u97611 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:2px 2px 2px 0px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u97611_text {
  4889. border-width:0px;
  4890. word-wrap:break-word;
  4891. text-transform:none;
  4892. visibility:hidden;
  4893. }
  4894. #u97612_img {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:94px;
  4900. height:38px;
  4901. }
  4902. #u97612 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:826px;
  4906. top:152px;
  4907. width:94px;
  4908. height:38px;
  4909. display:flex;
  4910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4911. font-weight:400;
  4912. font-style:normal;
  4913. font-size:12px;
  4914. }
  4915. #u97612 .text {
  4916. position:absolute;
  4917. align-self:center;
  4918. padding:2px 2px 2px 0px;
  4919. box-sizing:border-box;
  4920. width:100%;
  4921. }
  4922. #u97612_text {
  4923. border-width:0px;
  4924. word-wrap:break-word;
  4925. text-transform:none;
  4926. visibility:hidden;
  4927. }
  4928. #u97613_img {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:96px;
  4934. height:38px;
  4935. }
  4936. #u97613 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:920px;
  4940. top:152px;
  4941. width:96px;
  4942. height:38px;
  4943. display:flex;
  4944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:12px;
  4948. }
  4949. #u97613 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 2px 2px 0px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u97613_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u97614_img {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:96px;
  4968. height:38px;
  4969. }
  4970. #u97614 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:1016px;
  4974. top:152px;
  4975. width:96px;
  4976. height:38px;
  4977. display:flex;
  4978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4979. font-weight:400;
  4980. font-style:normal;
  4981. font-size:12px;
  4982. }
  4983. #u97614 .text {
  4984. position:absolute;
  4985. align-self:center;
  4986. padding:2px 2px 2px 0px;
  4987. box-sizing:border-box;
  4988. width:100%;
  4989. }
  4990. #u97614_text {
  4991. border-width:0px;
  4992. word-wrap:break-word;
  4993. text-transform:none;
  4994. visibility:hidden;
  4995. }
  4996. #u97615_img {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:110px;
  5002. height:38px;
  5003. }
  5004. #u97615 {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:1112px;
  5008. top:152px;
  5009. width:110px;
  5010. height:38px;
  5011. display:flex;
  5012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5013. font-weight:400;
  5014. font-style:normal;
  5015. font-size:12px;
  5016. color:#1890FF;
  5017. }
  5018. #u97615 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 0px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u97615_text {
  5026. border-width:0px;
  5027. word-wrap:break-word;
  5028. text-transform:none;
  5029. visibility:hidden;
  5030. }
  5031. #u97616_img {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:0px;
  5035. top:0px;
  5036. width:95px;
  5037. height:35px;
  5038. }
  5039. #u97616 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:190px;
  5044. width:95px;
  5045. height:35px;
  5046. display:flex;
  5047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. font-size:12px;
  5051. color:#606266;
  5052. }
  5053. #u97616 .text {
  5054. position:absolute;
  5055. align-self:center;
  5056. padding:2px 2px 2px 0px;
  5057. box-sizing:border-box;
  5058. width:100%;
  5059. }
  5060. #u97616_text {
  5061. border-width:0px;
  5062. word-wrap:break-word;
  5063. text-transform:none;
  5064. visibility:hidden;
  5065. }
  5066. #u97617_img {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:85px;
  5072. height:35px;
  5073. }
  5074. #u97617 {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:95px;
  5078. top:190px;
  5079. width:85px;
  5080. height:35px;
  5081. display:flex;
  5082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. font-size:12px;
  5086. color:#606266;
  5087. }
  5088. #u97617 .text {
  5089. position:absolute;
  5090. align-self:center;
  5091. padding:2px 2px 2px 0px;
  5092. box-sizing:border-box;
  5093. width:100%;
  5094. }
  5095. #u97617_text {
  5096. border-width:0px;
  5097. word-wrap:break-word;
  5098. text-transform:none;
  5099. visibility:hidden;
  5100. }
  5101. #u97618_img {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:85px;
  5107. height:35px;
  5108. }
  5109. #u97618 {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:180px;
  5113. top:190px;
  5114. width:85px;
  5115. height:35px;
  5116. display:flex;
  5117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5118. font-weight:400;
  5119. font-style:normal;
  5120. font-size:12px;
  5121. color:#606266;
  5122. }
  5123. #u97618 .text {
  5124. position:absolute;
  5125. align-self:center;
  5126. padding:2px 2px 2px 0px;
  5127. box-sizing:border-box;
  5128. width:100%;
  5129. }
  5130. #u97618_text {
  5131. border-width:0px;
  5132. word-wrap:break-word;
  5133. text-transform:none;
  5134. visibility:hidden;
  5135. }
  5136. #u97619_img {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:96px;
  5142. height:35px;
  5143. }
  5144. #u97619 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:265px;
  5148. top:190px;
  5149. width:96px;
  5150. height:35px;
  5151. display:flex;
  5152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5153. font-weight:400;
  5154. font-style:normal;
  5155. font-size:12px;
  5156. color:#606266;
  5157. }
  5158. #u97619 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:2px 2px 2px 0px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u97619_text {
  5166. border-width:0px;
  5167. word-wrap:break-word;
  5168. text-transform:none;
  5169. visibility:hidden;
  5170. }
  5171. #u97620_img {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:85px;
  5177. height:35px;
  5178. }
  5179. #u97620 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:361px;
  5183. top:190px;
  5184. width:85px;
  5185. height:35px;
  5186. display:flex;
  5187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5188. font-weight:400;
  5189. font-style:normal;
  5190. font-size:12px;
  5191. color:#606266;
  5192. }
  5193. #u97620 .text {
  5194. position:absolute;
  5195. align-self:center;
  5196. padding:2px 2px 2px 0px;
  5197. box-sizing:border-box;
  5198. width:100%;
  5199. }
  5200. #u97620_text {
  5201. border-width:0px;
  5202. word-wrap:break-word;
  5203. text-transform:none;
  5204. visibility:hidden;
  5205. }
  5206. #u97621_img {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:95px;
  5212. height:35px;
  5213. }
  5214. #u97621 {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:446px;
  5218. top:190px;
  5219. width:95px;
  5220. height:35px;
  5221. display:flex;
  5222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5223. font-weight:400;
  5224. font-style:normal;
  5225. font-size:12px;
  5226. color:#606266;
  5227. }
  5228. #u97621 .text {
  5229. position:absolute;
  5230. align-self:center;
  5231. padding:2px 2px 2px 0px;
  5232. box-sizing:border-box;
  5233. width:100%;
  5234. }
  5235. #u97621_text {
  5236. border-width:0px;
  5237. word-wrap:break-word;
  5238. text-transform:none;
  5239. visibility:hidden;
  5240. }
  5241. #u97622_img {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:96px;
  5247. height:35px;
  5248. }
  5249. #u97622 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:541px;
  5253. top:190px;
  5254. width:96px;
  5255. height:35px;
  5256. display:flex;
  5257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:12px;
  5261. color:#606266;
  5262. }
  5263. #u97622 .text {
  5264. position:absolute;
  5265. align-self:center;
  5266. padding:2px 2px 2px 0px;
  5267. box-sizing:border-box;
  5268. width:100%;
  5269. }
  5270. #u97622_text {
  5271. border-width:0px;
  5272. word-wrap:break-word;
  5273. text-transform:none;
  5274. visibility:hidden;
  5275. }
  5276. #u97623_img {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:0px;
  5280. top:0px;
  5281. width:95px;
  5282. height:35px;
  5283. }
  5284. #u97623 {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:637px;
  5288. top:190px;
  5289. width:95px;
  5290. height:35px;
  5291. display:flex;
  5292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. font-size:12px;
  5296. color:#606266;
  5297. }
  5298. #u97623 .text {
  5299. position:absolute;
  5300. align-self:center;
  5301. padding:2px 2px 2px 0px;
  5302. box-sizing:border-box;
  5303. width:100%;
  5304. }
  5305. #u97623_text {
  5306. border-width:0px;
  5307. word-wrap:break-word;
  5308. text-transform:none;
  5309. visibility:hidden;
  5310. }
  5311. #u97624_img {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:94px;
  5317. height:35px;
  5318. }
  5319. #u97624 {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:732px;
  5323. top:190px;
  5324. width:94px;
  5325. height:35px;
  5326. display:flex;
  5327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5328. font-weight:400;
  5329. font-style:normal;
  5330. font-size:12px;
  5331. color:#606266;
  5332. }
  5333. #u97624 .text {
  5334. position:absolute;
  5335. align-self:center;
  5336. padding:2px 2px 2px 0px;
  5337. box-sizing:border-box;
  5338. width:100%;
  5339. }
  5340. #u97624_text {
  5341. border-width:0px;
  5342. word-wrap:break-word;
  5343. text-transform:none;
  5344. visibility:hidden;
  5345. }
  5346. #u97625_img {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:94px;
  5352. height:35px;
  5353. }
  5354. #u97625 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:826px;
  5358. top:190px;
  5359. width:94px;
  5360. height:35px;
  5361. display:flex;
  5362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5363. font-weight:400;
  5364. font-style:normal;
  5365. font-size:12px;
  5366. color:#606266;
  5367. }
  5368. #u97625 .text {
  5369. position:absolute;
  5370. align-self:center;
  5371. padding:2px 2px 2px 0px;
  5372. box-sizing:border-box;
  5373. width:100%;
  5374. }
  5375. #u97625_text {
  5376. border-width:0px;
  5377. word-wrap:break-word;
  5378. text-transform:none;
  5379. visibility:hidden;
  5380. }
  5381. #u97626_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:96px;
  5387. height:35px;
  5388. }
  5389. #u97626 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:920px;
  5393. top:190px;
  5394. width:96px;
  5395. height:35px;
  5396. display:flex;
  5397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5398. font-weight:400;
  5399. font-style:normal;
  5400. font-size:12px;
  5401. color:#606266;
  5402. }
  5403. #u97626 .text {
  5404. position:absolute;
  5405. align-self:center;
  5406. padding:2px 2px 2px 0px;
  5407. box-sizing:border-box;
  5408. width:100%;
  5409. }
  5410. #u97626_text {
  5411. border-width:0px;
  5412. word-wrap:break-word;
  5413. text-transform:none;
  5414. visibility:hidden;
  5415. }
  5416. #u97627_img {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:0px;
  5420. top:0px;
  5421. width:96px;
  5422. height:35px;
  5423. }
  5424. #u97627 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:1016px;
  5428. top:190px;
  5429. width:96px;
  5430. height:35px;
  5431. display:flex;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:12px;
  5436. color:#606266;
  5437. }
  5438. #u97627 .text {
  5439. position:absolute;
  5440. align-self:center;
  5441. padding:2px 2px 2px 0px;
  5442. box-sizing:border-box;
  5443. width:100%;
  5444. }
  5445. #u97627_text {
  5446. border-width:0px;
  5447. word-wrap:break-word;
  5448. text-transform:none;
  5449. visibility:hidden;
  5450. }
  5451. #u97628_img {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:110px;
  5457. height:35px;
  5458. }
  5459. #u97628 {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:1112px;
  5463. top:190px;
  5464. width:110px;
  5465. height:35px;
  5466. display:flex;
  5467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. font-size:12px;
  5471. color:#02A7F0;
  5472. }
  5473. #u97628 .text {
  5474. position:absolute;
  5475. align-self:center;
  5476. padding:2px 2px 2px 0px;
  5477. box-sizing:border-box;
  5478. width:100%;
  5479. }
  5480. #u97628_text {
  5481. border-width:0px;
  5482. word-wrap:break-word;
  5483. text-transform:none;
  5484. visibility:hidden;
  5485. }
  5486. #u97629_img {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:0px;
  5490. top:0px;
  5491. width:95px;
  5492. height:35px;
  5493. }
  5494. #u97629 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:0px;
  5498. top:225px;
  5499. width:95px;
  5500. height:35px;
  5501. display:flex;
  5502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5503. font-weight:400;
  5504. font-style:normal;
  5505. font-size:12px;
  5506. color:#606266;
  5507. }
  5508. #u97629 .text {
  5509. position:absolute;
  5510. align-self:center;
  5511. padding:2px 2px 2px 0px;
  5512. box-sizing:border-box;
  5513. width:100%;
  5514. }
  5515. #u97629_text {
  5516. border-width:0px;
  5517. word-wrap:break-word;
  5518. text-transform:none;
  5519. visibility:hidden;
  5520. }
  5521. #u97630_img {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:85px;
  5527. height:35px;
  5528. }
  5529. #u97630 {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:95px;
  5533. top:225px;
  5534. width:85px;
  5535. height:35px;
  5536. display:flex;
  5537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5538. font-weight:400;
  5539. font-style:normal;
  5540. font-size:12px;
  5541. color:#606266;
  5542. }
  5543. #u97630 .text {
  5544. position:absolute;
  5545. align-self:center;
  5546. padding:2px 2px 2px 0px;
  5547. box-sizing:border-box;
  5548. width:100%;
  5549. }
  5550. #u97630_text {
  5551. border-width:0px;
  5552. word-wrap:break-word;
  5553. text-transform:none;
  5554. visibility:hidden;
  5555. }
  5556. #u97631_img {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:0px;
  5561. width:85px;
  5562. height:35px;
  5563. }
  5564. #u97631 {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:180px;
  5568. top:225px;
  5569. width:85px;
  5570. height:35px;
  5571. display:flex;
  5572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5573. font-weight:400;
  5574. font-style:normal;
  5575. font-size:12px;
  5576. color:#606266;
  5577. }
  5578. #u97631 .text {
  5579. position:absolute;
  5580. align-self:center;
  5581. padding:2px 2px 2px 0px;
  5582. box-sizing:border-box;
  5583. width:100%;
  5584. }
  5585. #u97631_text {
  5586. border-width:0px;
  5587. word-wrap:break-word;
  5588. text-transform:none;
  5589. visibility:hidden;
  5590. }
  5591. #u97632_img {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:0px;
  5595. top:0px;
  5596. width:96px;
  5597. height:35px;
  5598. }
  5599. #u97632 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:265px;
  5603. top:225px;
  5604. width:96px;
  5605. height:35px;
  5606. display:flex;
  5607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5608. font-weight:400;
  5609. font-style:normal;
  5610. font-size:12px;
  5611. color:#606266;
  5612. }
  5613. #u97632 .text {
  5614. position:absolute;
  5615. align-self:center;
  5616. padding:2px 2px 2px 0px;
  5617. box-sizing:border-box;
  5618. width:100%;
  5619. }
  5620. #u97632_text {
  5621. border-width:0px;
  5622. word-wrap:break-word;
  5623. text-transform:none;
  5624. visibility:hidden;
  5625. }
  5626. #u97633_img {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:0px;
  5630. top:0px;
  5631. width:85px;
  5632. height:35px;
  5633. }
  5634. #u97633 {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:361px;
  5638. top:225px;
  5639. width:85px;
  5640. height:35px;
  5641. display:flex;
  5642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5643. font-weight:400;
  5644. font-style:normal;
  5645. font-size:12px;
  5646. color:#606266;
  5647. }
  5648. #u97633 .text {
  5649. position:absolute;
  5650. align-self:center;
  5651. padding:2px 2px 2px 0px;
  5652. box-sizing:border-box;
  5653. width:100%;
  5654. }
  5655. #u97633_text {
  5656. border-width:0px;
  5657. word-wrap:break-word;
  5658. text-transform:none;
  5659. visibility:hidden;
  5660. }
  5661. #u97634_img {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:0px;
  5665. top:0px;
  5666. width:95px;
  5667. height:35px;
  5668. }
  5669. #u97634 {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:446px;
  5673. top:225px;
  5674. width:95px;
  5675. height:35px;
  5676. display:flex;
  5677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5678. font-weight:400;
  5679. font-style:normal;
  5680. font-size:12px;
  5681. color:#606266;
  5682. }
  5683. #u97634 .text {
  5684. position:absolute;
  5685. align-self:center;
  5686. padding:2px 2px 2px 0px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u97634_text {
  5691. border-width:0px;
  5692. word-wrap:break-word;
  5693. text-transform:none;
  5694. visibility:hidden;
  5695. }
  5696. #u97635_img {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:96px;
  5702. height:35px;
  5703. }
  5704. #u97635 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:541px;
  5708. top:225px;
  5709. width:96px;
  5710. height:35px;
  5711. display:flex;
  5712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:12px;
  5716. color:#606266;
  5717. }
  5718. #u97635 .text {
  5719. position:absolute;
  5720. align-self:center;
  5721. padding:2px 2px 2px 0px;
  5722. box-sizing:border-box;
  5723. width:100%;
  5724. }
  5725. #u97635_text {
  5726. border-width:0px;
  5727. word-wrap:break-word;
  5728. text-transform:none;
  5729. visibility:hidden;
  5730. }
  5731. #u97636_img {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:0px;
  5735. top:0px;
  5736. width:95px;
  5737. height:35px;
  5738. }
  5739. #u97636 {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:637px;
  5743. top:225px;
  5744. width:95px;
  5745. height:35px;
  5746. display:flex;
  5747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5748. font-weight:400;
  5749. font-style:normal;
  5750. font-size:12px;
  5751. color:#606266;
  5752. }
  5753. #u97636 .text {
  5754. position:absolute;
  5755. align-self:center;
  5756. padding:2px 2px 2px 0px;
  5757. box-sizing:border-box;
  5758. width:100%;
  5759. }
  5760. #u97636_text {
  5761. border-width:0px;
  5762. word-wrap:break-word;
  5763. text-transform:none;
  5764. visibility:hidden;
  5765. }
  5766. #u97637_img {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:0px;
  5770. top:0px;
  5771. width:94px;
  5772. height:35px;
  5773. }
  5774. #u97637 {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:732px;
  5778. top:225px;
  5779. width:94px;
  5780. height:35px;
  5781. display:flex;
  5782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5783. font-weight:400;
  5784. font-style:normal;
  5785. font-size:12px;
  5786. color:#606266;
  5787. }
  5788. #u97637 .text {
  5789. position:absolute;
  5790. align-self:center;
  5791. padding:2px 2px 2px 0px;
  5792. box-sizing:border-box;
  5793. width:100%;
  5794. }
  5795. #u97637_text {
  5796. border-width:0px;
  5797. word-wrap:break-word;
  5798. text-transform:none;
  5799. visibility:hidden;
  5800. }
  5801. #u97638_img {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:94px;
  5807. height:35px;
  5808. }
  5809. #u97638 {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:826px;
  5813. top:225px;
  5814. width:94px;
  5815. height:35px;
  5816. display:flex;
  5817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5818. font-weight:400;
  5819. font-style:normal;
  5820. font-size:12px;
  5821. color:#606266;
  5822. }
  5823. #u97638 .text {
  5824. position:absolute;
  5825. align-self:center;
  5826. padding:2px 2px 2px 0px;
  5827. box-sizing:border-box;
  5828. width:100%;
  5829. }
  5830. #u97638_text {
  5831. border-width:0px;
  5832. word-wrap:break-word;
  5833. text-transform:none;
  5834. visibility:hidden;
  5835. }
  5836. #u97639_img {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:96px;
  5842. height:35px;
  5843. }
  5844. #u97639 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:920px;
  5848. top:225px;
  5849. width:96px;
  5850. height:35px;
  5851. display:flex;
  5852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. font-size:12px;
  5856. color:#606266;
  5857. }
  5858. #u97639 .text {
  5859. position:absolute;
  5860. align-self:center;
  5861. padding:2px 2px 2px 0px;
  5862. box-sizing:border-box;
  5863. width:100%;
  5864. }
  5865. #u97639_text {
  5866. border-width:0px;
  5867. word-wrap:break-word;
  5868. text-transform:none;
  5869. visibility:hidden;
  5870. }
  5871. #u97640_img {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:0px;
  5875. top:0px;
  5876. width:96px;
  5877. height:35px;
  5878. }
  5879. #u97640 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:1016px;
  5883. top:225px;
  5884. width:96px;
  5885. height:35px;
  5886. display:flex;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:12px;
  5891. color:#606266;
  5892. }
  5893. #u97640 .text {
  5894. position:absolute;
  5895. align-self:center;
  5896. padding:2px 2px 2px 0px;
  5897. box-sizing:border-box;
  5898. width:100%;
  5899. }
  5900. #u97640_text {
  5901. border-width:0px;
  5902. word-wrap:break-word;
  5903. text-transform:none;
  5904. visibility:hidden;
  5905. }
  5906. #u97641_img {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:110px;
  5912. height:35px;
  5913. }
  5914. #u97641 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:1112px;
  5918. top:225px;
  5919. width:110px;
  5920. height:35px;
  5921. display:flex;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:12px;
  5926. color:#02A7F0;
  5927. }
  5928. #u97641 .text {
  5929. position:absolute;
  5930. align-self:center;
  5931. padding:2px 2px 2px 0px;
  5932. box-sizing:border-box;
  5933. width:100%;
  5934. }
  5935. #u97641_text {
  5936. border-width:0px;
  5937. word-wrap:break-word;
  5938. text-transform:none;
  5939. visibility:hidden;
  5940. }
  5941. #u97642_img {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:95px;
  5947. height:35px;
  5948. }
  5949. #u97642 {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:260px;
  5954. width:95px;
  5955. height:35px;
  5956. display:flex;
  5957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:12px;
  5961. color:#606266;
  5962. }
  5963. #u97642 .text {
  5964. position:absolute;
  5965. align-self:center;
  5966. padding:2px 2px 2px 0px;
  5967. box-sizing:border-box;
  5968. width:100%;
  5969. }
  5970. #u97642_text {
  5971. border-width:0px;
  5972. word-wrap:break-word;
  5973. text-transform:none;
  5974. visibility:hidden;
  5975. }
  5976. #u97643_img {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:85px;
  5982. height:35px;
  5983. }
  5984. #u97643 {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:95px;
  5988. top:260px;
  5989. width:85px;
  5990. height:35px;
  5991. display:flex;
  5992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5993. font-weight:400;
  5994. font-style:normal;
  5995. font-size:12px;
  5996. color:#606266;
  5997. }
  5998. #u97643 .text {
  5999. position:absolute;
  6000. align-self:center;
  6001. padding:2px 2px 2px 0px;
  6002. box-sizing:border-box;
  6003. width:100%;
  6004. }
  6005. #u97643_text {
  6006. border-width:0px;
  6007. word-wrap:break-word;
  6008. text-transform:none;
  6009. visibility:hidden;
  6010. }
  6011. #u97644_img {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:85px;
  6017. height:35px;
  6018. }
  6019. #u97644 {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:180px;
  6023. top:260px;
  6024. width:85px;
  6025. height:35px;
  6026. display:flex;
  6027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6028. font-weight:400;
  6029. font-style:normal;
  6030. font-size:12px;
  6031. color:#606266;
  6032. }
  6033. #u97644 .text {
  6034. position:absolute;
  6035. align-self:center;
  6036. padding:2px 2px 2px 0px;
  6037. box-sizing:border-box;
  6038. width:100%;
  6039. }
  6040. #u97644_text {
  6041. border-width:0px;
  6042. word-wrap:break-word;
  6043. text-transform:none;
  6044. visibility:hidden;
  6045. }
  6046. #u97645_img {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:0px;
  6050. top:0px;
  6051. width:96px;
  6052. height:35px;
  6053. }
  6054. #u97645 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:265px;
  6058. top:260px;
  6059. width:96px;
  6060. height:35px;
  6061. display:flex;
  6062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6063. font-weight:400;
  6064. font-style:normal;
  6065. font-size:12px;
  6066. color:#606266;
  6067. }
  6068. #u97645 .text {
  6069. position:absolute;
  6070. align-self:center;
  6071. padding:2px 2px 2px 0px;
  6072. box-sizing:border-box;
  6073. width:100%;
  6074. }
  6075. #u97645_text {
  6076. border-width:0px;
  6077. word-wrap:break-word;
  6078. text-transform:none;
  6079. visibility:hidden;
  6080. }
  6081. #u97646_img {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:85px;
  6087. height:35px;
  6088. }
  6089. #u97646 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:361px;
  6093. top:260px;
  6094. width:85px;
  6095. height:35px;
  6096. display:flex;
  6097. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6098. font-weight:400;
  6099. font-style:normal;
  6100. font-size:12px;
  6101. color:#606266;
  6102. }
  6103. #u97646 .text {
  6104. position:absolute;
  6105. align-self:center;
  6106. padding:2px 2px 2px 0px;
  6107. box-sizing:border-box;
  6108. width:100%;
  6109. }
  6110. #u97646_text {
  6111. border-width:0px;
  6112. word-wrap:break-word;
  6113. text-transform:none;
  6114. visibility:hidden;
  6115. }
  6116. #u97647_img {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:95px;
  6122. height:35px;
  6123. }
  6124. #u97647 {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:446px;
  6128. top:260px;
  6129. width:95px;
  6130. height:35px;
  6131. display:flex;
  6132. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6133. font-weight:400;
  6134. font-style:normal;
  6135. font-size:12px;
  6136. color:#606266;
  6137. }
  6138. #u97647 .text {
  6139. position:absolute;
  6140. align-self:center;
  6141. padding:2px 2px 2px 0px;
  6142. box-sizing:border-box;
  6143. width:100%;
  6144. }
  6145. #u97647_text {
  6146. border-width:0px;
  6147. word-wrap:break-word;
  6148. text-transform:none;
  6149. visibility:hidden;
  6150. }
  6151. #u97648_img {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:96px;
  6157. height:35px;
  6158. }
  6159. #u97648 {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:541px;
  6163. top:260px;
  6164. width:96px;
  6165. height:35px;
  6166. display:flex;
  6167. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6168. font-weight:400;
  6169. font-style:normal;
  6170. font-size:12px;
  6171. color:#606266;
  6172. }
  6173. #u97648 .text {
  6174. position:absolute;
  6175. align-self:center;
  6176. padding:2px 2px 2px 0px;
  6177. box-sizing:border-box;
  6178. width:100%;
  6179. }
  6180. #u97648_text {
  6181. border-width:0px;
  6182. word-wrap:break-word;
  6183. text-transform:none;
  6184. visibility:hidden;
  6185. }
  6186. #u97649_img {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:0px;
  6190. top:0px;
  6191. width:95px;
  6192. height:35px;
  6193. }
  6194. #u97649 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:637px;
  6198. top:260px;
  6199. width:95px;
  6200. height:35px;
  6201. display:flex;
  6202. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6203. font-weight:400;
  6204. font-style:normal;
  6205. font-size:12px;
  6206. color:#606266;
  6207. }
  6208. #u97649 .text {
  6209. position:absolute;
  6210. align-self:center;
  6211. padding:2px 2px 2px 0px;
  6212. box-sizing:border-box;
  6213. width:100%;
  6214. }
  6215. #u97649_text {
  6216. border-width:0px;
  6217. word-wrap:break-word;
  6218. text-transform:none;
  6219. visibility:hidden;
  6220. }
  6221. #u97650_img {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:0px;
  6225. top:0px;
  6226. width:94px;
  6227. height:35px;
  6228. }
  6229. #u97650 {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:732px;
  6233. top:260px;
  6234. width:94px;
  6235. height:35px;
  6236. display:flex;
  6237. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6238. font-weight:400;
  6239. font-style:normal;
  6240. font-size:12px;
  6241. color:#606266;
  6242. }
  6243. #u97650 .text {
  6244. position:absolute;
  6245. align-self:center;
  6246. padding:2px 2px 2px 0px;
  6247. box-sizing:border-box;
  6248. width:100%;
  6249. }
  6250. #u97650_text {
  6251. border-width:0px;
  6252. word-wrap:break-word;
  6253. text-transform:none;
  6254. visibility:hidden;
  6255. }
  6256. #u97651_img {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:0px;
  6260. top:0px;
  6261. width:94px;
  6262. height:35px;
  6263. }
  6264. #u97651 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:826px;
  6268. top:260px;
  6269. width:94px;
  6270. height:35px;
  6271. display:flex;
  6272. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6273. font-weight:400;
  6274. font-style:normal;
  6275. font-size:12px;
  6276. color:#606266;
  6277. }
  6278. #u97651 .text {
  6279. position:absolute;
  6280. align-self:center;
  6281. padding:2px 2px 2px 0px;
  6282. box-sizing:border-box;
  6283. width:100%;
  6284. }
  6285. #u97651_text {
  6286. border-width:0px;
  6287. word-wrap:break-word;
  6288. text-transform:none;
  6289. visibility:hidden;
  6290. }
  6291. #u97652_img {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:0px;
  6296. width:96px;
  6297. height:35px;
  6298. }
  6299. #u97652 {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:920px;
  6303. top:260px;
  6304. width:96px;
  6305. height:35px;
  6306. display:flex;
  6307. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6308. font-weight:400;
  6309. font-style:normal;
  6310. font-size:12px;
  6311. color:#606266;
  6312. }
  6313. #u97652 .text {
  6314. position:absolute;
  6315. align-self:center;
  6316. padding:2px 2px 2px 0px;
  6317. box-sizing:border-box;
  6318. width:100%;
  6319. }
  6320. #u97652_text {
  6321. border-width:0px;
  6322. word-wrap:break-word;
  6323. text-transform:none;
  6324. visibility:hidden;
  6325. }
  6326. #u97653_img {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:96px;
  6332. height:35px;
  6333. }
  6334. #u97653 {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:1016px;
  6338. top:260px;
  6339. width:96px;
  6340. height:35px;
  6341. display:flex;
  6342. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:12px;
  6346. color:#606266;
  6347. }
  6348. #u97653 .text {
  6349. position:absolute;
  6350. align-self:center;
  6351. padding:2px 2px 2px 0px;
  6352. box-sizing:border-box;
  6353. width:100%;
  6354. }
  6355. #u97653_text {
  6356. border-width:0px;
  6357. word-wrap:break-word;
  6358. text-transform:none;
  6359. visibility:hidden;
  6360. }
  6361. #u97654_img {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:110px;
  6367. height:35px;
  6368. }
  6369. #u97654 {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:1112px;
  6373. top:260px;
  6374. width:110px;
  6375. height:35px;
  6376. display:flex;
  6377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6378. font-weight:400;
  6379. font-style:normal;
  6380. font-size:12px;
  6381. color:#02A7F0;
  6382. }
  6383. #u97654 .text {
  6384. position:absolute;
  6385. align-self:center;
  6386. padding:2px 2px 2px 0px;
  6387. box-sizing:border-box;
  6388. width:100%;
  6389. }
  6390. #u97654_text {
  6391. border-width:0px;
  6392. word-wrap:break-word;
  6393. text-transform:none;
  6394. visibility:hidden;
  6395. }
  6396. #u97655_img {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:95px;
  6402. height:35px;
  6403. }
  6404. #u97655 {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:295px;
  6409. width:95px;
  6410. height:35px;
  6411. display:flex;
  6412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6413. font-weight:400;
  6414. font-style:normal;
  6415. font-size:12px;
  6416. color:#606266;
  6417. }
  6418. #u97655 .text {
  6419. position:absolute;
  6420. align-self:center;
  6421. padding:2px 2px 2px 0px;
  6422. box-sizing:border-box;
  6423. width:100%;
  6424. }
  6425. #u97655_text {
  6426. border-width:0px;
  6427. word-wrap:break-word;
  6428. text-transform:none;
  6429. visibility:hidden;
  6430. }
  6431. #u97656_img {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:0px;
  6435. top:0px;
  6436. width:85px;
  6437. height:35px;
  6438. }
  6439. #u97656 {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:95px;
  6443. top:295px;
  6444. width:85px;
  6445. height:35px;
  6446. display:flex;
  6447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6448. font-weight:400;
  6449. font-style:normal;
  6450. font-size:12px;
  6451. color:#606266;
  6452. }
  6453. #u97656 .text {
  6454. position:absolute;
  6455. align-self:center;
  6456. padding:2px 2px 2px 0px;
  6457. box-sizing:border-box;
  6458. width:100%;
  6459. }
  6460. #u97656_text {
  6461. border-width:0px;
  6462. word-wrap:break-word;
  6463. text-transform:none;
  6464. visibility:hidden;
  6465. }
  6466. #u97657_img {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:0px;
  6470. top:0px;
  6471. width:85px;
  6472. height:35px;
  6473. }
  6474. #u97657 {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:180px;
  6478. top:295px;
  6479. width:85px;
  6480. height:35px;
  6481. display:flex;
  6482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6483. font-weight:400;
  6484. font-style:normal;
  6485. font-size:12px;
  6486. color:#606266;
  6487. }
  6488. #u97657 .text {
  6489. position:absolute;
  6490. align-self:center;
  6491. padding:2px 2px 2px 0px;
  6492. box-sizing:border-box;
  6493. width:100%;
  6494. }
  6495. #u97657_text {
  6496. border-width:0px;
  6497. word-wrap:break-word;
  6498. text-transform:none;
  6499. visibility:hidden;
  6500. }
  6501. #u97658_img {
  6502. border-width:0px;
  6503. position:absolute;
  6504. left:0px;
  6505. top:0px;
  6506. width:96px;
  6507. height:35px;
  6508. }
  6509. #u97658 {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:265px;
  6513. top:295px;
  6514. width:96px;
  6515. height:35px;
  6516. display:flex;
  6517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6518. font-weight:400;
  6519. font-style:normal;
  6520. font-size:12px;
  6521. color:#606266;
  6522. }
  6523. #u97658 .text {
  6524. position:absolute;
  6525. align-self:center;
  6526. padding:2px 2px 2px 0px;
  6527. box-sizing:border-box;
  6528. width:100%;
  6529. }
  6530. #u97658_text {
  6531. border-width:0px;
  6532. word-wrap:break-word;
  6533. text-transform:none;
  6534. visibility:hidden;
  6535. }
  6536. #u97659_img {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:0px;
  6540. top:0px;
  6541. width:85px;
  6542. height:35px;
  6543. }
  6544. #u97659 {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:361px;
  6548. top:295px;
  6549. width:85px;
  6550. height:35px;
  6551. display:flex;
  6552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6553. font-weight:400;
  6554. font-style:normal;
  6555. font-size:12px;
  6556. color:#606266;
  6557. }
  6558. #u97659 .text {
  6559. position:absolute;
  6560. align-self:center;
  6561. padding:2px 2px 2px 0px;
  6562. box-sizing:border-box;
  6563. width:100%;
  6564. }
  6565. #u97659_text {
  6566. border-width:0px;
  6567. word-wrap:break-word;
  6568. text-transform:none;
  6569. visibility:hidden;
  6570. }
  6571. #u97660_img {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:0px;
  6575. top:0px;
  6576. width:95px;
  6577. height:35px;
  6578. }
  6579. #u97660 {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:446px;
  6583. top:295px;
  6584. width:95px;
  6585. height:35px;
  6586. display:flex;
  6587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:12px;
  6591. color:#606266;
  6592. }
  6593. #u97660 .text {
  6594. position:absolute;
  6595. align-self:center;
  6596. padding:2px 2px 2px 0px;
  6597. box-sizing:border-box;
  6598. width:100%;
  6599. }
  6600. #u97660_text {
  6601. border-width:0px;
  6602. word-wrap:break-word;
  6603. text-transform:none;
  6604. visibility:hidden;
  6605. }
  6606. #u97661_img {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:96px;
  6612. height:35px;
  6613. }
  6614. #u97661 {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:541px;
  6618. top:295px;
  6619. width:96px;
  6620. height:35px;
  6621. display:flex;
  6622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6623. font-weight:400;
  6624. font-style:normal;
  6625. font-size:12px;
  6626. color:#606266;
  6627. }
  6628. #u97661 .text {
  6629. position:absolute;
  6630. align-self:center;
  6631. padding:2px 2px 2px 0px;
  6632. box-sizing:border-box;
  6633. width:100%;
  6634. }
  6635. #u97661_text {
  6636. border-width:0px;
  6637. word-wrap:break-word;
  6638. text-transform:none;
  6639. visibility:hidden;
  6640. }
  6641. #u97662_img {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:0px;
  6645. top:0px;
  6646. width:95px;
  6647. height:35px;
  6648. }
  6649. #u97662 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:637px;
  6653. top:295px;
  6654. width:95px;
  6655. height:35px;
  6656. display:flex;
  6657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6658. font-weight:400;
  6659. font-style:normal;
  6660. font-size:12px;
  6661. color:#606266;
  6662. }
  6663. #u97662 .text {
  6664. position:absolute;
  6665. align-self:center;
  6666. padding:2px 2px 2px 0px;
  6667. box-sizing:border-box;
  6668. width:100%;
  6669. }
  6670. #u97662_text {
  6671. border-width:0px;
  6672. word-wrap:break-word;
  6673. text-transform:none;
  6674. visibility:hidden;
  6675. }
  6676. #u97663_img {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:94px;
  6682. height:35px;
  6683. }
  6684. #u97663 {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:732px;
  6688. top:295px;
  6689. width:94px;
  6690. height:35px;
  6691. display:flex;
  6692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6693. font-weight:400;
  6694. font-style:normal;
  6695. font-size:12px;
  6696. color:#606266;
  6697. }
  6698. #u97663 .text {
  6699. position:absolute;
  6700. align-self:center;
  6701. padding:2px 2px 2px 0px;
  6702. box-sizing:border-box;
  6703. width:100%;
  6704. }
  6705. #u97663_text {
  6706. border-width:0px;
  6707. word-wrap:break-word;
  6708. text-transform:none;
  6709. visibility:hidden;
  6710. }
  6711. #u97664_img {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:0px;
  6715. top:0px;
  6716. width:94px;
  6717. height:35px;
  6718. }
  6719. #u97664 {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:826px;
  6723. top:295px;
  6724. width:94px;
  6725. height:35px;
  6726. display:flex;
  6727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6728. font-weight:400;
  6729. font-style:normal;
  6730. font-size:12px;
  6731. color:#606266;
  6732. }
  6733. #u97664 .text {
  6734. position:absolute;
  6735. align-self:center;
  6736. padding:2px 2px 2px 0px;
  6737. box-sizing:border-box;
  6738. width:100%;
  6739. }
  6740. #u97664_text {
  6741. border-width:0px;
  6742. word-wrap:break-word;
  6743. text-transform:none;
  6744. visibility:hidden;
  6745. }
  6746. #u97665_img {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:0px;
  6750. top:0px;
  6751. width:96px;
  6752. height:35px;
  6753. }
  6754. #u97665 {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:920px;
  6758. top:295px;
  6759. width:96px;
  6760. height:35px;
  6761. display:flex;
  6762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6763. font-weight:400;
  6764. font-style:normal;
  6765. font-size:12px;
  6766. color:#606266;
  6767. }
  6768. #u97665 .text {
  6769. position:absolute;
  6770. align-self:center;
  6771. padding:2px 2px 2px 0px;
  6772. box-sizing:border-box;
  6773. width:100%;
  6774. }
  6775. #u97665_text {
  6776. border-width:0px;
  6777. word-wrap:break-word;
  6778. text-transform:none;
  6779. visibility:hidden;
  6780. }
  6781. #u97666_img {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:0px;
  6785. top:0px;
  6786. width:96px;
  6787. height:35px;
  6788. }
  6789. #u97666 {
  6790. border-width:0px;
  6791. position:absolute;
  6792. left:1016px;
  6793. top:295px;
  6794. width:96px;
  6795. height:35px;
  6796. display:flex;
  6797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6798. font-weight:400;
  6799. font-style:normal;
  6800. font-size:12px;
  6801. color:#606266;
  6802. }
  6803. #u97666 .text {
  6804. position:absolute;
  6805. align-self:center;
  6806. padding:2px 2px 2px 0px;
  6807. box-sizing:border-box;
  6808. width:100%;
  6809. }
  6810. #u97666_text {
  6811. border-width:0px;
  6812. word-wrap:break-word;
  6813. text-transform:none;
  6814. visibility:hidden;
  6815. }
  6816. #u97667_img {
  6817. border-width:0px;
  6818. position:absolute;
  6819. left:0px;
  6820. top:0px;
  6821. width:110px;
  6822. height:35px;
  6823. }
  6824. #u97667 {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:1112px;
  6828. top:295px;
  6829. width:110px;
  6830. height:35px;
  6831. display:flex;
  6832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6833. font-weight:400;
  6834. font-style:normal;
  6835. font-size:12px;
  6836. color:#02A7F0;
  6837. }
  6838. #u97667 .text {
  6839. position:absolute;
  6840. align-self:center;
  6841. padding:2px 2px 2px 0px;
  6842. box-sizing:border-box;
  6843. width:100%;
  6844. }
  6845. #u97667_text {
  6846. border-width:0px;
  6847. word-wrap:break-word;
  6848. text-transform:none;
  6849. visibility:hidden;
  6850. }
  6851. #u97668_img {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:0px;
  6855. top:0px;
  6856. width:95px;
  6857. height:33px;
  6858. }
  6859. #u97668 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:330px;
  6864. width:95px;
  6865. height:33px;
  6866. display:flex;
  6867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6868. font-weight:400;
  6869. font-style:normal;
  6870. font-size:12px;
  6871. color:#606266;
  6872. }
  6873. #u97668 .text {
  6874. position:absolute;
  6875. align-self:center;
  6876. padding:2px 2px 2px 0px;
  6877. box-sizing:border-box;
  6878. width:100%;
  6879. }
  6880. #u97668_text {
  6881. border-width:0px;
  6882. word-wrap:break-word;
  6883. text-transform:none;
  6884. visibility:hidden;
  6885. }
  6886. #u97669_img {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:0px;
  6890. top:0px;
  6891. width:85px;
  6892. height:33px;
  6893. }
  6894. #u97669 {
  6895. border-width:0px;
  6896. position:absolute;
  6897. left:95px;
  6898. top:330px;
  6899. width:85px;
  6900. height:33px;
  6901. display:flex;
  6902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6903. font-weight:400;
  6904. font-style:normal;
  6905. font-size:12px;
  6906. color:#606266;
  6907. }
  6908. #u97669 .text {
  6909. position:absolute;
  6910. align-self:center;
  6911. padding:2px 2px 2px 0px;
  6912. box-sizing:border-box;
  6913. width:100%;
  6914. }
  6915. #u97669_text {
  6916. border-width:0px;
  6917. word-wrap:break-word;
  6918. text-transform:none;
  6919. visibility:hidden;
  6920. }
  6921. #u97670_img {
  6922. border-width:0px;
  6923. position:absolute;
  6924. left:0px;
  6925. top:0px;
  6926. width:85px;
  6927. height:33px;
  6928. }
  6929. #u97670 {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:180px;
  6933. top:330px;
  6934. width:85px;
  6935. height:33px;
  6936. display:flex;
  6937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6938. font-weight:400;
  6939. font-style:normal;
  6940. font-size:12px;
  6941. color:#606266;
  6942. }
  6943. #u97670 .text {
  6944. position:absolute;
  6945. align-self:center;
  6946. padding:2px 2px 2px 0px;
  6947. box-sizing:border-box;
  6948. width:100%;
  6949. }
  6950. #u97670_text {
  6951. border-width:0px;
  6952. word-wrap:break-word;
  6953. text-transform:none;
  6954. visibility:hidden;
  6955. }
  6956. #u97671_img {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:96px;
  6962. height:33px;
  6963. }
  6964. #u97671 {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:265px;
  6968. top:330px;
  6969. width:96px;
  6970. height:33px;
  6971. display:flex;
  6972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6973. font-weight:400;
  6974. font-style:normal;
  6975. font-size:12px;
  6976. color:#606266;
  6977. }
  6978. #u97671 .text {
  6979. position:absolute;
  6980. align-self:center;
  6981. padding:2px 2px 2px 0px;
  6982. box-sizing:border-box;
  6983. width:100%;
  6984. }
  6985. #u97671_text {
  6986. border-width:0px;
  6987. word-wrap:break-word;
  6988. text-transform:none;
  6989. visibility:hidden;
  6990. }
  6991. #u97672_img {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:0px;
  6995. top:0px;
  6996. width:85px;
  6997. height:33px;
  6998. }
  6999. #u97672 {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:361px;
  7003. top:330px;
  7004. width:85px;
  7005. height:33px;
  7006. display:flex;
  7007. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7008. font-weight:400;
  7009. font-style:normal;
  7010. font-size:12px;
  7011. color:#606266;
  7012. }
  7013. #u97672 .text {
  7014. position:absolute;
  7015. align-self:center;
  7016. padding:2px 2px 2px 0px;
  7017. box-sizing:border-box;
  7018. width:100%;
  7019. }
  7020. #u97672_text {
  7021. border-width:0px;
  7022. word-wrap:break-word;
  7023. text-transform:none;
  7024. visibility:hidden;
  7025. }
  7026. #u97673_img {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:0px;
  7030. top:0px;
  7031. width:95px;
  7032. height:33px;
  7033. }
  7034. #u97673 {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:446px;
  7038. top:330px;
  7039. width:95px;
  7040. height:33px;
  7041. display:flex;
  7042. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7043. font-weight:400;
  7044. font-style:normal;
  7045. font-size:12px;
  7046. color:#606266;
  7047. }
  7048. #u97673 .text {
  7049. position:absolute;
  7050. align-self:center;
  7051. padding:2px 2px 2px 0px;
  7052. box-sizing:border-box;
  7053. width:100%;
  7054. }
  7055. #u97673_text {
  7056. border-width:0px;
  7057. word-wrap:break-word;
  7058. text-transform:none;
  7059. visibility:hidden;
  7060. }
  7061. #u97674_img {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:0px;
  7065. top:0px;
  7066. width:96px;
  7067. height:33px;
  7068. }
  7069. #u97674 {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:541px;
  7073. top:330px;
  7074. width:96px;
  7075. height:33px;
  7076. display:flex;
  7077. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7078. font-weight:400;
  7079. font-style:normal;
  7080. font-size:12px;
  7081. color:#606266;
  7082. }
  7083. #u97674 .text {
  7084. position:absolute;
  7085. align-self:center;
  7086. padding:2px 2px 2px 0px;
  7087. box-sizing:border-box;
  7088. width:100%;
  7089. }
  7090. #u97674_text {
  7091. border-width:0px;
  7092. word-wrap:break-word;
  7093. text-transform:none;
  7094. visibility:hidden;
  7095. }
  7096. #u97675_img {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:95px;
  7102. height:33px;
  7103. }
  7104. #u97675 {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:637px;
  7108. top:330px;
  7109. width:95px;
  7110. height:33px;
  7111. display:flex;
  7112. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7113. font-weight:400;
  7114. font-style:normal;
  7115. font-size:12px;
  7116. color:#606266;
  7117. }
  7118. #u97675 .text {
  7119. position:absolute;
  7120. align-self:center;
  7121. padding:2px 2px 2px 0px;
  7122. box-sizing:border-box;
  7123. width:100%;
  7124. }
  7125. #u97675_text {
  7126. border-width:0px;
  7127. word-wrap:break-word;
  7128. text-transform:none;
  7129. visibility:hidden;
  7130. }
  7131. #u97676_img {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:0px;
  7135. top:0px;
  7136. width:94px;
  7137. height:33px;
  7138. }
  7139. #u97676 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:732px;
  7143. top:330px;
  7144. width:94px;
  7145. height:33px;
  7146. display:flex;
  7147. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:12px;
  7151. color:#606266;
  7152. }
  7153. #u97676 .text {
  7154. position:absolute;
  7155. align-self:center;
  7156. padding:2px 2px 2px 0px;
  7157. box-sizing:border-box;
  7158. width:100%;
  7159. }
  7160. #u97676_text {
  7161. border-width:0px;
  7162. word-wrap:break-word;
  7163. text-transform:none;
  7164. visibility:hidden;
  7165. }
  7166. #u97677_img {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:0px;
  7170. top:0px;
  7171. width:94px;
  7172. height:33px;
  7173. }
  7174. #u97677 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:826px;
  7178. top:330px;
  7179. width:94px;
  7180. height:33px;
  7181. display:flex;
  7182. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7183. font-weight:400;
  7184. font-style:normal;
  7185. font-size:12px;
  7186. color:#606266;
  7187. }
  7188. #u97677 .text {
  7189. position:absolute;
  7190. align-self:center;
  7191. padding:2px 2px 2px 0px;
  7192. box-sizing:border-box;
  7193. width:100%;
  7194. }
  7195. #u97677_text {
  7196. border-width:0px;
  7197. word-wrap:break-word;
  7198. text-transform:none;
  7199. visibility:hidden;
  7200. }
  7201. #u97678_img {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:0px;
  7205. top:0px;
  7206. width:96px;
  7207. height:33px;
  7208. }
  7209. #u97678 {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:920px;
  7213. top:330px;
  7214. width:96px;
  7215. height:33px;
  7216. display:flex;
  7217. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7218. font-weight:400;
  7219. font-style:normal;
  7220. font-size:12px;
  7221. color:#606266;
  7222. }
  7223. #u97678 .text {
  7224. position:absolute;
  7225. align-self:center;
  7226. padding:2px 2px 2px 0px;
  7227. box-sizing:border-box;
  7228. width:100%;
  7229. }
  7230. #u97678_text {
  7231. border-width:0px;
  7232. word-wrap:break-word;
  7233. text-transform:none;
  7234. visibility:hidden;
  7235. }
  7236. #u97679_img {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:0px;
  7240. top:0px;
  7241. width:96px;
  7242. height:33px;
  7243. }
  7244. #u97679 {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:1016px;
  7248. top:330px;
  7249. width:96px;
  7250. height:33px;
  7251. display:flex;
  7252. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7253. font-weight:400;
  7254. font-style:normal;
  7255. font-size:12px;
  7256. color:#606266;
  7257. }
  7258. #u97679 .text {
  7259. position:absolute;
  7260. align-self:center;
  7261. padding:2px 2px 2px 0px;
  7262. box-sizing:border-box;
  7263. width:100%;
  7264. }
  7265. #u97679_text {
  7266. border-width:0px;
  7267. word-wrap:break-word;
  7268. text-transform:none;
  7269. visibility:hidden;
  7270. }
  7271. #u97680_img {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:0px;
  7275. top:0px;
  7276. width:110px;
  7277. height:33px;
  7278. }
  7279. #u97680 {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:1112px;
  7283. top:330px;
  7284. width:110px;
  7285. height:33px;
  7286. display:flex;
  7287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7288. font-weight:400;
  7289. font-style:normal;
  7290. font-size:12px;
  7291. color:#02A7F0;
  7292. }
  7293. #u97680 .text {
  7294. position:absolute;
  7295. align-self:center;
  7296. padding:2px 2px 2px 0px;
  7297. box-sizing:border-box;
  7298. width:100%;
  7299. }
  7300. #u97680_text {
  7301. border-width:0px;
  7302. word-wrap:break-word;
  7303. text-transform:none;
  7304. visibility:hidden;
  7305. }
  7306. #u97681_div {
  7307. border-width:0px;
  7308. position:absolute;
  7309. left:0px;
  7310. top:0px;
  7311. width:1260px;
  7312. height:1082px;
  7313. background:inherit;
  7314. background-color:rgba(255, 255, 255, 1);
  7315. border:none;
  7316. border-radius:0px;
  7317. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7318. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7319. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7320. color:#1890FF;
  7321. }
  7322. #u97681 {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:1668px;
  7326. top:160px;
  7327. width:1260px;
  7328. height:1082px;
  7329. display:flex;
  7330. color:#1890FF;
  7331. }
  7332. #u97681 .text {
  7333. position:absolute;
  7334. align-self:center;
  7335. padding:2px 2px 2px 2px;
  7336. box-sizing:border-box;
  7337. width:100%;
  7338. }
  7339. #u97681_text {
  7340. border-width:0px;
  7341. word-wrap:break-word;
  7342. text-transform:none;
  7343. visibility:hidden;
  7344. }
  7345. #u97682_div {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:1260px;
  7351. height:100px;
  7352. background:inherit;
  7353. background-color:rgba(255, 255, 255, 1);
  7354. border:none;
  7355. border-radius:0px;
  7356. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7357. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7358. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7359. color:#1890FF;
  7360. }
  7361. #u97682 {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:1668px;
  7365. top:50px;
  7366. width:1260px;
  7367. height:100px;
  7368. display:flex;
  7369. color:#1890FF;
  7370. }
  7371. #u97682 .text {
  7372. position:absolute;
  7373. align-self:center;
  7374. padding:2px 2px 2px 2px;
  7375. box-sizing:border-box;
  7376. width:100%;
  7377. }
  7378. #u97682_text {
  7379. border-width:0px;
  7380. word-wrap:break-word;
  7381. text-transform:none;
  7382. visibility:hidden;
  7383. }
  7384. #u97683_div {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:0px;
  7388. top:0px;
  7389. width:73px;
  7390. height:50px;
  7391. background:inherit;
  7392. background-color:rgba(255, 255, 255, 0);
  7393. border:none;
  7394. border-left:0px;
  7395. border-top:0px;
  7396. border-right:0px;
  7397. border-radius:0px;
  7398. border-bottom-right-radius:0px;
  7399. border-bottom-left-radius:0px;
  7400. -moz-box-shadow:none;
  7401. -webkit-box-shadow:none;
  7402. box-shadow:none;
  7403. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7404. font-weight:500;
  7405. font-style:normal;
  7406. font-size:18px;
  7407. }
  7408. #u97683 {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:1687px;
  7412. top:50px;
  7413. width:73px;
  7414. height:50px;
  7415. display:flex;
  7416. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7417. font-weight:500;
  7418. font-style:normal;
  7419. font-size:18px;
  7420. }
  7421. #u97683 .text {
  7422. position:absolute;
  7423. align-self:center;
  7424. padding:0px 0px 0px 0px;
  7425. box-sizing:border-box;
  7426. width:100%;
  7427. }
  7428. #u97683_text {
  7429. border-width:0px;
  7430. white-space:nowrap;
  7431. text-transform:none;
  7432. }
  7433. #u97684_div {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:0px;
  7437. top:0px;
  7438. width:59px;
  7439. height:30px;
  7440. background:inherit;
  7441. background-color:rgba(41, 143, 255, 1);
  7442. border:none;
  7443. border-radius:4px;
  7444. -moz-box-shadow:none;
  7445. -webkit-box-shadow:none;
  7446. box-shadow:none;
  7447. font-family:'Microsoft YaHei', sans-serif;
  7448. font-weight:400;
  7449. font-style:normal;
  7450. font-size:14px;
  7451. color:#FFFFFF;
  7452. }
  7453. #u97684 {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:1987px;
  7457. top:180px;
  7458. width:59px;
  7459. height:30px;
  7460. display:flex;
  7461. font-family:'Microsoft YaHei', sans-serif;
  7462. font-weight:400;
  7463. font-style:normal;
  7464. font-size:14px;
  7465. color:#FFFFFF;
  7466. }
  7467. #u97684 .text {
  7468. position:absolute;
  7469. align-self:center;
  7470. padding:5px 15px 5px 15px;
  7471. box-sizing:border-box;
  7472. width:100%;
  7473. }
  7474. #u97684_text {
  7475. border-width:0px;
  7476. white-space:nowrap;
  7477. text-transform:none;
  7478. }
  7479. #u97685_div {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:0px;
  7483. top:0px;
  7484. width:55px;
  7485. height:30px;
  7486. background:inherit;
  7487. background-color:rgba(255, 255, 255, 1);
  7488. box-sizing:border-box;
  7489. border-width:1px;
  7490. border-style:solid;
  7491. border-color:rgba(170, 170, 170, 1);
  7492. border-radius:4px;
  7493. -moz-box-shadow:none;
  7494. -webkit-box-shadow:none;
  7495. box-shadow:none;
  7496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7497. font-weight:400;
  7498. font-style:normal;
  7499. font-size:12px;
  7500. color:#555555;
  7501. }
  7502. #u97685 {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:2056px;
  7506. top:180px;
  7507. width:55px;
  7508. height:30px;
  7509. display:flex;
  7510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7511. font-weight:400;
  7512. font-style:normal;
  7513. font-size:12px;
  7514. color:#555555;
  7515. }
  7516. #u97685 .text {
  7517. position:absolute;
  7518. align-self:center;
  7519. padding:5px 15px 5px 15px;
  7520. box-sizing:border-box;
  7521. width:100%;
  7522. }
  7523. #u97685_text {
  7524. border-width:0px;
  7525. white-space:nowrap;
  7526. text-transform:none;
  7527. }
  7528. #u97686 {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:0px;
  7532. top:0px;
  7533. width:0px;
  7534. height:0px;
  7535. }
  7536. #u97687_div {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:0px;
  7540. top:0px;
  7541. width:140px;
  7542. height:30px;
  7543. background:inherit;
  7544. background-color:rgba(255, 255, 255, 1);
  7545. box-sizing:border-box;
  7546. border-width:1px;
  7547. border-style:solid;
  7548. border-color:rgba(201, 201, 201, 1);
  7549. border-radius:4px;
  7550. -moz-box-shadow:none;
  7551. -webkit-box-shadow:none;
  7552. box-shadow:none;
  7553. font-family:'Microsoft YaHei', sans-serif;
  7554. font-weight:400;
  7555. font-style:normal;
  7556. font-size:14px;
  7557. color:#CCCCCC;
  7558. text-align:left;
  7559. }
  7560. #u97687 {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:1837px;
  7564. top:180px;
  7565. width:140px;
  7566. height:30px;
  7567. display:flex;
  7568. font-family:'Microsoft YaHei', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:14px;
  7572. color:#CCCCCC;
  7573. text-align:left;
  7574. }
  7575. #u97687 .text {
  7576. position:absolute;
  7577. align-self:center;
  7578. padding:2px 8px 2px 8px;
  7579. box-sizing:border-box;
  7580. width:100%;
  7581. }
  7582. #u97687_text {
  7583. border-width:0px;
  7584. word-wrap:break-word;
  7585. text-transform:none;
  7586. visibility:hidden;
  7587. }
  7588. #u97688_input {
  7589. position:absolute;
  7590. left:0px;
  7591. top:0px;
  7592. width:127px;
  7593. height:25px;
  7594. padding:2px 2px 2px 2px;
  7595. font-family:'Microsoft YaHei', sans-serif;
  7596. font-weight:400;
  7597. font-style:normal;
  7598. font-size:10px;
  7599. letter-spacing:normal;
  7600. color:#000000;
  7601. vertical-align:none;
  7602. text-align:left;
  7603. text-transform:none;
  7604. background-color:transparent;
  7605. border-color:transparent;
  7606. }
  7607. #u97688_input.disabled {
  7608. position:absolute;
  7609. left:0px;
  7610. top:0px;
  7611. width:127px;
  7612. height:25px;
  7613. padding:2px 2px 2px 2px;
  7614. font-family:'Microsoft YaHei', sans-serif;
  7615. font-weight:400;
  7616. font-style:normal;
  7617. font-size:10px;
  7618. letter-spacing:normal;
  7619. color:#000000;
  7620. vertical-align:none;
  7621. text-align:left;
  7622. text-transform:none;
  7623. background-color:transparent;
  7624. border-color:transparent;
  7625. }
  7626. #u97688_div {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:0px;
  7630. top:0px;
  7631. width:127px;
  7632. height:25px;
  7633. background:inherit;
  7634. background-color:rgba(255, 255, 255, 1);
  7635. border:none;
  7636. border-radius:0px;
  7637. -moz-box-shadow:none;
  7638. -webkit-box-shadow:none;
  7639. box-shadow:none;
  7640. font-family:'Microsoft YaHei', sans-serif;
  7641. font-weight:400;
  7642. font-style:normal;
  7643. font-size:10px;
  7644. }
  7645. #u97688 {
  7646. border-width:0px;
  7647. position:absolute;
  7648. left:1845px;
  7649. top:181px;
  7650. width:127px;
  7651. height:25px;
  7652. display:flex;
  7653. font-family:'Microsoft YaHei', sans-serif;
  7654. font-weight:400;
  7655. font-style:normal;
  7656. font-size:10px;
  7657. }
  7658. #u97688 .text {
  7659. position:absolute;
  7660. align-self:center;
  7661. padding:2px 2px 2px 2px;
  7662. box-sizing:border-box;
  7663. width:100%;
  7664. }
  7665. #u97688_div.disabled {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:127px;
  7671. height:25px;
  7672. background:inherit;
  7673. background-color:rgba(240, 240, 240, 1);
  7674. border:none;
  7675. border-radius:0px;
  7676. -moz-box-shadow:none;
  7677. -webkit-box-shadow:none;
  7678. box-shadow:none;
  7679. font-family:'Microsoft YaHei', sans-serif;
  7680. font-weight:400;
  7681. font-style:normal;
  7682. font-size:10px;
  7683. }
  7684. #u97688.disabled {
  7685. }
  7686. #u97689 {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:0px;
  7690. top:0px;
  7691. width:0px;
  7692. height:0px;
  7693. }
  7694. #u97690_div {
  7695. border-width:0px;
  7696. position:absolute;
  7697. left:0px;
  7698. top:0px;
  7699. width:140px;
  7700. height:30px;
  7701. background:inherit;
  7702. background-color:rgba(255, 255, 255, 1);
  7703. box-sizing:border-box;
  7704. border-width:1px;
  7705. border-style:solid;
  7706. border-color:rgba(215, 215, 215, 1);
  7707. border-radius:4px;
  7708. -moz-box-shadow:none;
  7709. -webkit-box-shadow:none;
  7710. box-shadow:none;
  7711. font-size:11px;
  7712. }
  7713. #u97690 {
  7714. border-width:0px;
  7715. position:absolute;
  7716. left:1687px;
  7717. top:180px;
  7718. width:140px;
  7719. height:30px;
  7720. display:flex;
  7721. font-size:11px;
  7722. }
  7723. #u97690 .text {
  7724. position:absolute;
  7725. align-self:center;
  7726. padding:2px 2px 2px 2px;
  7727. box-sizing:border-box;
  7728. width:100%;
  7729. }
  7730. #u97690_text {
  7731. border-width:0px;
  7732. word-wrap:break-word;
  7733. text-transform:none;
  7734. visibility:hidden;
  7735. }
  7736. #u97691_input {
  7737. position:absolute;
  7738. left:0px;
  7739. top:0px;
  7740. width:120px;
  7741. height:23px;
  7742. padding:2px 2px 2px 2px;
  7743. font-family:'ArialMT', 'Arial', sans-serif;
  7744. font-weight:400;
  7745. font-style:normal;
  7746. font-size:11px;
  7747. letter-spacing:normal;
  7748. color:#AAAAAA;
  7749. vertical-align:none;
  7750. text-align:left;
  7751. text-transform:none;
  7752. background-color:transparent;
  7753. border-color:transparent;
  7754. }
  7755. #u97691_input.disabled {
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:120px;
  7760. height:23px;
  7761. padding:2px 2px 2px 2px;
  7762. font-family:'ArialMT', 'Arial', sans-serif;
  7763. font-weight:400;
  7764. font-style:normal;
  7765. font-size:11px;
  7766. letter-spacing:normal;
  7767. color:#AAAAAA;
  7768. vertical-align:none;
  7769. text-align:left;
  7770. text-transform:none;
  7771. background-color:transparent;
  7772. border-color:transparent;
  7773. }
  7774. #u97691_div {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:0px;
  7778. top:0px;
  7779. width:120px;
  7780. height:23px;
  7781. background:inherit;
  7782. background-color:rgba(255, 255, 255, 1);
  7783. border:none;
  7784. border-radius:0px;
  7785. -moz-box-shadow:none;
  7786. -webkit-box-shadow:none;
  7787. box-shadow:none;
  7788. font-size:11px;
  7789. color:#AAAAAA;
  7790. }
  7791. #u97691 {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:1694px;
  7795. top:182px;
  7796. width:120px;
  7797. height:23px;
  7798. display:flex;
  7799. font-size:11px;
  7800. color:#AAAAAA;
  7801. }
  7802. #u97691 .text {
  7803. position:absolute;
  7804. align-self:flex-start;
  7805. padding:2px 2px 2px 2px;
  7806. box-sizing:border-box;
  7807. width:100%;
  7808. }
  7809. #u97691_div.disabled {
  7810. border-width:0px;
  7811. position:absolute;
  7812. left:0px;
  7813. top:0px;
  7814. width:120px;
  7815. height:23px;
  7816. background:inherit;
  7817. background-color:rgba(240, 240, 240, 1);
  7818. border:none;
  7819. border-radius:0px;
  7820. -moz-box-shadow:none;
  7821. -webkit-box-shadow:none;
  7822. box-shadow:none;
  7823. font-size:11px;
  7824. color:#AAAAAA;
  7825. }
  7826. #u97691.disabled {
  7827. }
  7828. .u97691_input_option {
  7829. font-size:11px;
  7830. }
  7831. #u97692_div {
  7832. border-width:0px;
  7833. position:absolute;
  7834. left:0px;
  7835. top:0px;
  7836. width:55px;
  7837. height:50px;
  7838. background:inherit;
  7839. background-color:rgba(255, 255, 255, 0);
  7840. border:none;
  7841. border-left:0px;
  7842. border-top:0px;
  7843. border-right:0px;
  7844. border-radius:0px;
  7845. border-bottom-right-radius:0px;
  7846. border-bottom-left-radius:0px;
  7847. -moz-box-shadow:none;
  7848. -webkit-box-shadow:none;
  7849. box-shadow:none;
  7850. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7851. font-weight:500;
  7852. font-style:normal;
  7853. font-size:18px;
  7854. }
  7855. #u97692 {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:1694px;
  7859. top:100px;
  7860. width:55px;
  7861. height:50px;
  7862. display:flex;
  7863. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7864. font-weight:500;
  7865. font-style:normal;
  7866. font-size:18px;
  7867. }
  7868. #u97692 .text {
  7869. position:absolute;
  7870. align-self:center;
  7871. padding:0px 0px 0px 0px;
  7872. box-sizing:border-box;
  7873. width:100%;
  7874. }
  7875. #u97692_text {
  7876. border-width:0px;
  7877. white-space:nowrap;
  7878. text-transform:none;
  7879. }
  7880. #u97693_div {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:0px;
  7884. top:0px;
  7885. width:55px;
  7886. height:50px;
  7887. background:inherit;
  7888. background-color:rgba(255, 255, 255, 0);
  7889. border:none;
  7890. border-left:0px;
  7891. border-top:0px;
  7892. border-right:0px;
  7893. border-radius:0px;
  7894. border-bottom-right-radius:0px;
  7895. border-bottom-left-radius:0px;
  7896. -moz-box-shadow:none;
  7897. -webkit-box-shadow:none;
  7898. box-shadow:none;
  7899. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7900. font-weight:500;
  7901. font-style:normal;
  7902. font-size:18px;
  7903. color:#1890FF;
  7904. }
  7905. #u97693 {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:1779px;
  7909. top:100px;
  7910. width:55px;
  7911. height:50px;
  7912. display:flex;
  7913. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7914. font-weight:500;
  7915. font-style:normal;
  7916. font-size:18px;
  7917. color:#1890FF;
  7918. }
  7919. #u97693 .text {
  7920. position:absolute;
  7921. align-self:center;
  7922. padding:0px 0px 0px 0px;
  7923. box-sizing:border-box;
  7924. width:100%;
  7925. }
  7926. #u97693_text {
  7927. border-width:0px;
  7928. white-space:nowrap;
  7929. text-transform:none;
  7930. }
  7931. #u97694 {
  7932. border-width:0px;
  7933. position:absolute;
  7934. left:1687px;
  7935. top:232px;
  7936. width:1222px;
  7937. height:363px;
  7938. }
  7939. #u97695_img {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:0px;
  7943. top:0px;
  7944. width:82px;
  7945. height:38px;
  7946. }
  7947. #u97695 {
  7948. border-width:0px;
  7949. position:absolute;
  7950. left:0px;
  7951. top:0px;
  7952. width:82px;
  7953. height:38px;
  7954. display:flex;
  7955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7956. font-weight:400;
  7957. font-style:normal;
  7958. font-size:12px;
  7959. color:#FFFFFF;
  7960. }
  7961. #u97695 .text {
  7962. position:absolute;
  7963. align-self:center;
  7964. padding:2px 2px 2px 0px;
  7965. box-sizing:border-box;
  7966. width:100%;
  7967. }
  7968. #u97695_text {
  7969. border-width:0px;
  7970. word-wrap:break-word;
  7971. text-transform:none;
  7972. }
  7973. #u97696_img {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:0px;
  7977. top:0px;
  7978. width:74px;
  7979. height:38px;
  7980. }
  7981. #u97696 {
  7982. border-width:0px;
  7983. position:absolute;
  7984. left:82px;
  7985. top:0px;
  7986. width:74px;
  7987. height:38px;
  7988. display:flex;
  7989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7990. font-weight:400;
  7991. font-style:normal;
  7992. font-size:12px;
  7993. color:#FFFFFF;
  7994. }
  7995. #u97696 .text {
  7996. position:absolute;
  7997. align-self:center;
  7998. padding:2px 2px 2px 0px;
  7999. box-sizing:border-box;
  8000. width:100%;
  8001. }
  8002. #u97696_text {
  8003. border-width:0px;
  8004. word-wrap:break-word;
  8005. text-transform:none;
  8006. }
  8007. #u97697_img {
  8008. border-width:0px;
  8009. position:absolute;
  8010. left:0px;
  8011. top:0px;
  8012. width:74px;
  8013. height:38px;
  8014. }
  8015. #u97697 {
  8016. border-width:0px;
  8017. position:absolute;
  8018. left:156px;
  8019. top:0px;
  8020. width:74px;
  8021. height:38px;
  8022. display:flex;
  8023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8024. font-weight:400;
  8025. font-style:normal;
  8026. font-size:12px;
  8027. color:#FFFFFF;
  8028. }
  8029. #u97697 .text {
  8030. position:absolute;
  8031. align-self:center;
  8032. padding:2px 2px 2px 0px;
  8033. box-sizing:border-box;
  8034. width:100%;
  8035. }
  8036. #u97697_text {
  8037. border-width:0px;
  8038. word-wrap:break-word;
  8039. text-transform:none;
  8040. }
  8041. #u97698_img {
  8042. border-width:0px;
  8043. position:absolute;
  8044. left:0px;
  8045. top:0px;
  8046. width:83px;
  8047. height:38px;
  8048. }
  8049. #u97698 {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:230px;
  8053. top:0px;
  8054. width:83px;
  8055. height:38px;
  8056. display:flex;
  8057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8058. font-weight:400;
  8059. font-style:normal;
  8060. font-size:12px;
  8061. color:#FFFFFF;
  8062. }
  8063. #u97698 .text {
  8064. position:absolute;
  8065. align-self:center;
  8066. padding:2px 2px 2px 0px;
  8067. box-sizing:border-box;
  8068. width:100%;
  8069. }
  8070. #u97698_text {
  8071. border-width:0px;
  8072. word-wrap:break-word;
  8073. text-transform:none;
  8074. }
  8075. #u97699_img {
  8076. border-width:0px;
  8077. position:absolute;
  8078. left:0px;
  8079. top:0px;
  8080. width:74px;
  8081. height:38px;
  8082. }
  8083. #u97699 {
  8084. border-width:0px;
  8085. position:absolute;
  8086. left:313px;
  8087. top:0px;
  8088. width:74px;
  8089. height:38px;
  8090. display:flex;
  8091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8092. font-weight:400;
  8093. font-style:normal;
  8094. font-size:12px;
  8095. color:#FFFFFF;
  8096. }
  8097. #u97699 .text {
  8098. position:absolute;
  8099. align-self:center;
  8100. padding:2px 2px 2px 0px;
  8101. box-sizing:border-box;
  8102. width:100%;
  8103. }
  8104. #u97699_text {
  8105. border-width:0px;
  8106. word-wrap:break-word;
  8107. text-transform:none;
  8108. }
  8109. #u97700_img {
  8110. border-width:0px;
  8111. position:absolute;
  8112. left:0px;
  8113. top:0px;
  8114. width:82px;
  8115. height:38px;
  8116. }
  8117. #u97700 {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:387px;
  8121. top:0px;
  8122. width:82px;
  8123. height:38px;
  8124. display:flex;
  8125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8126. font-weight:400;
  8127. font-style:normal;
  8128. font-size:12px;
  8129. color:#FFFFFF;
  8130. }
  8131. #u97700 .text {
  8132. position:absolute;
  8133. align-self:center;
  8134. padding:2px 2px 2px 0px;
  8135. box-sizing:border-box;
  8136. width:100%;
  8137. }
  8138. #u97700_text {
  8139. border-width:0px;
  8140. word-wrap:break-word;
  8141. text-transform:none;
  8142. }
  8143. #u97701_img {
  8144. border-width:0px;
  8145. position:absolute;
  8146. left:0px;
  8147. top:0px;
  8148. width:83px;
  8149. height:38px;
  8150. }
  8151. #u97701 {
  8152. border-width:0px;
  8153. position:absolute;
  8154. left:469px;
  8155. top:0px;
  8156. width:83px;
  8157. height:38px;
  8158. display:flex;
  8159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8160. font-weight:400;
  8161. font-style:normal;
  8162. font-size:12px;
  8163. color:#FFFFFF;
  8164. }
  8165. #u97701 .text {
  8166. position:absolute;
  8167. align-self:center;
  8168. padding:2px 2px 2px 0px;
  8169. box-sizing:border-box;
  8170. width:100%;
  8171. }
  8172. #u97701_text {
  8173. border-width:0px;
  8174. word-wrap:break-word;
  8175. text-transform:none;
  8176. }
  8177. #u97702_img {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:0px;
  8181. top:0px;
  8182. width:82px;
  8183. height:38px;
  8184. }
  8185. #u97702 {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:552px;
  8189. top:0px;
  8190. width:82px;
  8191. height:38px;
  8192. display:flex;
  8193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8194. font-weight:400;
  8195. font-style:normal;
  8196. font-size:12px;
  8197. color:#FFFFFF;
  8198. }
  8199. #u97702 .text {
  8200. position:absolute;
  8201. align-self:center;
  8202. padding:2px 2px 2px 0px;
  8203. box-sizing:border-box;
  8204. width:100%;
  8205. }
  8206. #u97702_text {
  8207. border-width:0px;
  8208. word-wrap:break-word;
  8209. text-transform:none;
  8210. }
  8211. #u97703_img {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:81px;
  8217. height:38px;
  8218. }
  8219. #u97703 {
  8220. border-width:0px;
  8221. position:absolute;
  8222. left:634px;
  8223. top:0px;
  8224. width:81px;
  8225. height:38px;
  8226. display:flex;
  8227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8228. font-weight:400;
  8229. font-style:normal;
  8230. font-size:12px;
  8231. color:#FFFFFF;
  8232. }
  8233. #u97703 .text {
  8234. position:absolute;
  8235. align-self:center;
  8236. padding:2px 2px 2px 0px;
  8237. box-sizing:border-box;
  8238. width:100%;
  8239. }
  8240. #u97703_text {
  8241. border-width:0px;
  8242. word-wrap:break-word;
  8243. text-transform:none;
  8244. }
  8245. #u97704_img {
  8246. border-width:0px;
  8247. position:absolute;
  8248. left:0px;
  8249. top:0px;
  8250. width:81px;
  8251. height:38px;
  8252. }
  8253. #u97704 {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:715px;
  8257. top:0px;
  8258. width:81px;
  8259. height:38px;
  8260. display:flex;
  8261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8262. font-weight:400;
  8263. font-style:normal;
  8264. font-size:12px;
  8265. color:#FFFFFF;
  8266. }
  8267. #u97704 .text {
  8268. position:absolute;
  8269. align-self:center;
  8270. padding:2px 2px 2px 0px;
  8271. box-sizing:border-box;
  8272. width:100%;
  8273. }
  8274. #u97704_text {
  8275. border-width:0px;
  8276. word-wrap:break-word;
  8277. text-transform:none;
  8278. }
  8279. #u97705_img {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:0px;
  8283. top:0px;
  8284. width:83px;
  8285. height:38px;
  8286. }
  8287. #u97705 {
  8288. border-width:0px;
  8289. position:absolute;
  8290. left:796px;
  8291. top:0px;
  8292. width:83px;
  8293. height:38px;
  8294. display:flex;
  8295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8296. font-weight:400;
  8297. font-style:normal;
  8298. font-size:12px;
  8299. color:#FFFFFF;
  8300. }
  8301. #u97705 .text {
  8302. position:absolute;
  8303. align-self:center;
  8304. padding:2px 2px 2px 0px;
  8305. box-sizing:border-box;
  8306. width:100%;
  8307. }
  8308. #u97705_text {
  8309. border-width:0px;
  8310. word-wrap:break-word;
  8311. text-transform:none;
  8312. }
  8313. #u97706_img {
  8314. border-width:0px;
  8315. position:absolute;
  8316. left:0px;
  8317. top:0px;
  8318. width:83px;
  8319. height:38px;
  8320. }
  8321. #u97706 {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:879px;
  8325. top:0px;
  8326. width:83px;
  8327. height:38px;
  8328. display:flex;
  8329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8330. font-weight:400;
  8331. font-style:normal;
  8332. font-size:12px;
  8333. color:#FFFFFF;
  8334. }
  8335. #u97706 .text {
  8336. position:absolute;
  8337. align-self:center;
  8338. padding:2px 2px 2px 0px;
  8339. box-sizing:border-box;
  8340. width:100%;
  8341. }
  8342. #u97706_text {
  8343. border-width:0px;
  8344. word-wrap:break-word;
  8345. text-transform:none;
  8346. }
  8347. #u97707_img {
  8348. border-width:0px;
  8349. position:absolute;
  8350. left:0px;
  8351. top:0px;
  8352. width:81px;
  8353. height:38px;
  8354. }
  8355. #u97707 {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:962px;
  8359. top:0px;
  8360. width:81px;
  8361. height:38px;
  8362. display:flex;
  8363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8364. font-weight:400;
  8365. font-style:normal;
  8366. font-size:12px;
  8367. color:#FFFFFF;
  8368. }
  8369. #u97707 .text {
  8370. position:absolute;
  8371. align-self:center;
  8372. padding:2px 2px 2px 0px;
  8373. box-sizing:border-box;
  8374. width:100%;
  8375. }
  8376. #u97707_text {
  8377. border-width:0px;
  8378. word-wrap:break-word;
  8379. text-transform:none;
  8380. }
  8381. #u97708_img {
  8382. border-width:0px;
  8383. position:absolute;
  8384. left:0px;
  8385. top:0px;
  8386. width:81px;
  8387. height:38px;
  8388. }
  8389. #u97708 {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:1043px;
  8393. top:0px;
  8394. width:81px;
  8395. height:38px;
  8396. display:flex;
  8397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8398. font-weight:400;
  8399. font-style:normal;
  8400. font-size:12px;
  8401. color:#FFFFFF;
  8402. }
  8403. #u97708 .text {
  8404. position:absolute;
  8405. align-self:center;
  8406. padding:2px 2px 2px 0px;
  8407. box-sizing:border-box;
  8408. width:100%;
  8409. }
  8410. #u97708_text {
  8411. border-width:0px;
  8412. word-wrap:break-word;
  8413. text-transform:none;
  8414. }
  8415. #u97709_img {
  8416. border-width:0px;
  8417. position:absolute;
  8418. left:0px;
  8419. top:0px;
  8420. width:98px;
  8421. height:38px;
  8422. }
  8423. #u97709 {
  8424. border-width:0px;
  8425. position:absolute;
  8426. left:1124px;
  8427. top:0px;
  8428. width:98px;
  8429. height:38px;
  8430. display:flex;
  8431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8432. font-weight:400;
  8433. font-style:normal;
  8434. font-size:12px;
  8435. color:#FFFFFF;
  8436. }
  8437. #u97709 .text {
  8438. position:absolute;
  8439. align-self:center;
  8440. padding:2px 2px 2px 0px;
  8441. box-sizing:border-box;
  8442. width:100%;
  8443. }
  8444. #u97709_text {
  8445. border-width:0px;
  8446. word-wrap:break-word;
  8447. text-transform:none;
  8448. }
  8449. #u97710_img {
  8450. border-width:0px;
  8451. position:absolute;
  8452. left:0px;
  8453. top:0px;
  8454. width:82px;
  8455. height:38px;
  8456. }
  8457. #u97710 {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:0px;
  8461. top:38px;
  8462. width:82px;
  8463. height:38px;
  8464. display:flex;
  8465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8466. font-weight:400;
  8467. font-style:normal;
  8468. font-size:12px;
  8469. }
  8470. #u97710 .text {
  8471. position:absolute;
  8472. align-self:center;
  8473. padding:2px 2px 2px 0px;
  8474. box-sizing:border-box;
  8475. width:100%;
  8476. }
  8477. #u97710_text {
  8478. border-width:0px;
  8479. word-wrap:break-word;
  8480. text-transform:none;
  8481. }
  8482. #u97711_img {
  8483. border-width:0px;
  8484. position:absolute;
  8485. left:0px;
  8486. top:0px;
  8487. width:74px;
  8488. height:38px;
  8489. }
  8490. #u97711 {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:82px;
  8494. top:38px;
  8495. width:74px;
  8496. height:38px;
  8497. display:flex;
  8498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8499. font-weight:400;
  8500. font-style:normal;
  8501. font-size:12px;
  8502. }
  8503. #u97711 .text {
  8504. position:absolute;
  8505. align-self:center;
  8506. padding:2px 2px 2px 0px;
  8507. box-sizing:border-box;
  8508. width:100%;
  8509. }
  8510. #u97711_text {
  8511. border-width:0px;
  8512. word-wrap:break-word;
  8513. text-transform:none;
  8514. visibility:hidden;
  8515. }
  8516. #u97712_img {
  8517. border-width:0px;
  8518. position:absolute;
  8519. left:0px;
  8520. top:0px;
  8521. width:74px;
  8522. height:38px;
  8523. }
  8524. #u97712 {
  8525. border-width:0px;
  8526. position:absolute;
  8527. left:156px;
  8528. top:38px;
  8529. width:74px;
  8530. height:38px;
  8531. display:flex;
  8532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8533. font-weight:400;
  8534. font-style:normal;
  8535. font-size:12px;
  8536. }
  8537. #u97712 .text {
  8538. position:absolute;
  8539. align-self:center;
  8540. padding:2px 2px 2px 0px;
  8541. box-sizing:border-box;
  8542. width:100%;
  8543. }
  8544. #u97712_text {
  8545. border-width:0px;
  8546. word-wrap:break-word;
  8547. text-transform:none;
  8548. visibility:hidden;
  8549. }
  8550. #u97713_img {
  8551. border-width:0px;
  8552. position:absolute;
  8553. left:0px;
  8554. top:0px;
  8555. width:83px;
  8556. height:38px;
  8557. }
  8558. #u97713 {
  8559. border-width:0px;
  8560. position:absolute;
  8561. left:230px;
  8562. top:38px;
  8563. width:83px;
  8564. height:38px;
  8565. display:flex;
  8566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8567. font-weight:400;
  8568. font-style:normal;
  8569. font-size:12px;
  8570. }
  8571. #u97713 .text {
  8572. position:absolute;
  8573. align-self:center;
  8574. padding:2px 2px 2px 0px;
  8575. box-sizing:border-box;
  8576. width:100%;
  8577. }
  8578. #u97713_text {
  8579. border-width:0px;
  8580. word-wrap:break-word;
  8581. text-transform:none;
  8582. visibility:hidden;
  8583. }
  8584. #u97714_img {
  8585. border-width:0px;
  8586. position:absolute;
  8587. left:0px;
  8588. top:0px;
  8589. width:74px;
  8590. height:38px;
  8591. }
  8592. #u97714 {
  8593. border-width:0px;
  8594. position:absolute;
  8595. left:313px;
  8596. top:38px;
  8597. width:74px;
  8598. height:38px;
  8599. display:flex;
  8600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8601. font-weight:400;
  8602. font-style:normal;
  8603. font-size:12px;
  8604. }
  8605. #u97714 .text {
  8606. position:absolute;
  8607. align-self:center;
  8608. padding:2px 2px 2px 0px;
  8609. box-sizing:border-box;
  8610. width:100%;
  8611. }
  8612. #u97714_text {
  8613. border-width:0px;
  8614. word-wrap:break-word;
  8615. text-transform:none;
  8616. visibility:hidden;
  8617. }
  8618. #u97715_img {
  8619. border-width:0px;
  8620. position:absolute;
  8621. left:0px;
  8622. top:0px;
  8623. width:82px;
  8624. height:38px;
  8625. }
  8626. #u97715 {
  8627. border-width:0px;
  8628. position:absolute;
  8629. left:387px;
  8630. top:38px;
  8631. width:82px;
  8632. height:38px;
  8633. display:flex;
  8634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8635. font-weight:400;
  8636. font-style:normal;
  8637. font-size:12px;
  8638. }
  8639. #u97715 .text {
  8640. position:absolute;
  8641. align-self:center;
  8642. padding:2px 2px 2px 0px;
  8643. box-sizing:border-box;
  8644. width:100%;
  8645. }
  8646. #u97715_text {
  8647. border-width:0px;
  8648. word-wrap:break-word;
  8649. text-transform:none;
  8650. visibility:hidden;
  8651. }
  8652. #u97716_img {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:0px;
  8656. top:0px;
  8657. width:83px;
  8658. height:38px;
  8659. }
  8660. #u97716 {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:469px;
  8664. top:38px;
  8665. width:83px;
  8666. height:38px;
  8667. display:flex;
  8668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8669. font-weight:400;
  8670. font-style:normal;
  8671. font-size:12px;
  8672. }
  8673. #u97716 .text {
  8674. position:absolute;
  8675. align-self:center;
  8676. padding:2px 2px 2px 0px;
  8677. box-sizing:border-box;
  8678. width:100%;
  8679. }
  8680. #u97716_text {
  8681. border-width:0px;
  8682. word-wrap:break-word;
  8683. text-transform:none;
  8684. visibility:hidden;
  8685. }
  8686. #u97717_img {
  8687. border-width:0px;
  8688. position:absolute;
  8689. left:0px;
  8690. top:0px;
  8691. width:82px;
  8692. height:38px;
  8693. }
  8694. #u97717 {
  8695. border-width:0px;
  8696. position:absolute;
  8697. left:552px;
  8698. top:38px;
  8699. width:82px;
  8700. height:38px;
  8701. display:flex;
  8702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8703. font-weight:400;
  8704. font-style:normal;
  8705. font-size:12px;
  8706. }
  8707. #u97717 .text {
  8708. position:absolute;
  8709. align-self:center;
  8710. padding:2px 2px 2px 0px;
  8711. box-sizing:border-box;
  8712. width:100%;
  8713. }
  8714. #u97717_text {
  8715. border-width:0px;
  8716. word-wrap:break-word;
  8717. text-transform:none;
  8718. visibility:hidden;
  8719. }
  8720. #u97718_img {
  8721. border-width:0px;
  8722. position:absolute;
  8723. left:0px;
  8724. top:0px;
  8725. width:81px;
  8726. height:38px;
  8727. }
  8728. #u97718 {
  8729. border-width:0px;
  8730. position:absolute;
  8731. left:634px;
  8732. top:38px;
  8733. width:81px;
  8734. height:38px;
  8735. display:flex;
  8736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8737. font-weight:400;
  8738. font-style:normal;
  8739. font-size:12px;
  8740. }
  8741. #u97718 .text {
  8742. position:absolute;
  8743. align-self:center;
  8744. padding:2px 2px 2px 0px;
  8745. box-sizing:border-box;
  8746. width:100%;
  8747. }
  8748. #u97718_text {
  8749. border-width:0px;
  8750. word-wrap:break-word;
  8751. text-transform:none;
  8752. }
  8753. #u97719_img {
  8754. border-width:0px;
  8755. position:absolute;
  8756. left:0px;
  8757. top:0px;
  8758. width:81px;
  8759. height:38px;
  8760. }
  8761. #u97719 {
  8762. border-width:0px;
  8763. position:absolute;
  8764. left:715px;
  8765. top:38px;
  8766. width:81px;
  8767. height:38px;
  8768. display:flex;
  8769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8770. font-weight:400;
  8771. font-style:normal;
  8772. font-size:12px;
  8773. }
  8774. #u97719 .text {
  8775. position:absolute;
  8776. align-self:center;
  8777. padding:2px 2px 2px 0px;
  8778. box-sizing:border-box;
  8779. width:100%;
  8780. }
  8781. #u97719_text {
  8782. border-width:0px;
  8783. word-wrap:break-word;
  8784. text-transform:none;
  8785. }
  8786. #u97720_img {
  8787. border-width:0px;
  8788. position:absolute;
  8789. left:0px;
  8790. top:0px;
  8791. width:83px;
  8792. height:38px;
  8793. }
  8794. #u97720 {
  8795. border-width:0px;
  8796. position:absolute;
  8797. left:796px;
  8798. top:38px;
  8799. width:83px;
  8800. height:38px;
  8801. display:flex;
  8802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8803. font-weight:400;
  8804. font-style:normal;
  8805. font-size:12px;
  8806. }
  8807. #u97720 .text {
  8808. position:absolute;
  8809. align-self:center;
  8810. padding:2px 2px 2px 0px;
  8811. box-sizing:border-box;
  8812. width:100%;
  8813. }
  8814. #u97720_text {
  8815. border-width:0px;
  8816. word-wrap:break-word;
  8817. text-transform:none;
  8818. }
  8819. #u97721_img {
  8820. border-width:0px;
  8821. position:absolute;
  8822. left:0px;
  8823. top:0px;
  8824. width:83px;
  8825. height:38px;
  8826. }
  8827. #u97721 {
  8828. border-width:0px;
  8829. position:absolute;
  8830. left:879px;
  8831. top:38px;
  8832. width:83px;
  8833. height:38px;
  8834. display:flex;
  8835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8836. font-weight:400;
  8837. font-style:normal;
  8838. font-size:12px;
  8839. }
  8840. #u97721 .text {
  8841. position:absolute;
  8842. align-self:center;
  8843. padding:2px 2px 2px 0px;
  8844. box-sizing:border-box;
  8845. width:100%;
  8846. }
  8847. #u97721_text {
  8848. border-width:0px;
  8849. word-wrap:break-word;
  8850. text-transform:none;
  8851. visibility:hidden;
  8852. }
  8853. #u97722_img {
  8854. border-width:0px;
  8855. position:absolute;
  8856. left:0px;
  8857. top:0px;
  8858. width:81px;
  8859. height:38px;
  8860. }
  8861. #u97722 {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:962px;
  8865. top:38px;
  8866. width:81px;
  8867. height:38px;
  8868. display:flex;
  8869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8870. font-weight:400;
  8871. font-style:normal;
  8872. font-size:12px;
  8873. }
  8874. #u97722 .text {
  8875. position:absolute;
  8876. align-self:center;
  8877. padding:2px 2px 2px 0px;
  8878. box-sizing:border-box;
  8879. width:100%;
  8880. }
  8881. #u97722_text {
  8882. border-width:0px;
  8883. word-wrap:break-word;
  8884. text-transform:none;
  8885. visibility:hidden;
  8886. }
  8887. #u97723_img {
  8888. border-width:0px;
  8889. position:absolute;
  8890. left:0px;
  8891. top:0px;
  8892. width:81px;
  8893. height:38px;
  8894. }
  8895. #u97723 {
  8896. border-width:0px;
  8897. position:absolute;
  8898. left:1043px;
  8899. top:38px;
  8900. width:81px;
  8901. height:38px;
  8902. display:flex;
  8903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8904. font-weight:400;
  8905. font-style:normal;
  8906. font-size:12px;
  8907. }
  8908. #u97723 .text {
  8909. position:absolute;
  8910. align-self:center;
  8911. padding:2px 2px 2px 0px;
  8912. box-sizing:border-box;
  8913. width:100%;
  8914. }
  8915. #u97723_text {
  8916. border-width:0px;
  8917. word-wrap:break-word;
  8918. text-transform:none;
  8919. }
  8920. #u97724_img {
  8921. border-width:0px;
  8922. position:absolute;
  8923. left:0px;
  8924. top:0px;
  8925. width:98px;
  8926. height:38px;
  8927. }
  8928. #u97724 {
  8929. border-width:0px;
  8930. position:absolute;
  8931. left:1124px;
  8932. top:38px;
  8933. width:98px;
  8934. height:38px;
  8935. display:flex;
  8936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8937. font-weight:400;
  8938. font-style:normal;
  8939. font-size:12px;
  8940. color:#1890FF;
  8941. }
  8942. #u97724 .text {
  8943. position:absolute;
  8944. align-self:center;
  8945. padding:2px 2px 2px 0px;
  8946. box-sizing:border-box;
  8947. width:100%;
  8948. }
  8949. #u97724_text {
  8950. border-width:0px;
  8951. word-wrap:break-word;
  8952. text-transform:none;
  8953. }
  8954. #u97725_img {
  8955. border-width:0px;
  8956. position:absolute;
  8957. left:0px;
  8958. top:0px;
  8959. width:82px;
  8960. height:38px;
  8961. }
  8962. #u97725 {
  8963. border-width:0px;
  8964. position:absolute;
  8965. left:0px;
  8966. top:76px;
  8967. width:82px;
  8968. height:38px;
  8969. display:flex;
  8970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8971. font-weight:400;
  8972. font-style:normal;
  8973. font-size:12px;
  8974. }
  8975. #u97725 .text {
  8976. position:absolute;
  8977. align-self:center;
  8978. padding:2px 2px 2px 0px;
  8979. box-sizing:border-box;
  8980. width:100%;
  8981. }
  8982. #u97725_text {
  8983. border-width:0px;
  8984. word-wrap:break-word;
  8985. text-transform:none;
  8986. visibility:hidden;
  8987. }
  8988. #u97726_img {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:0px;
  8992. top:0px;
  8993. width:74px;
  8994. height:38px;
  8995. }
  8996. #u97726 {
  8997. border-width:0px;
  8998. position:absolute;
  8999. left:82px;
  9000. top:76px;
  9001. width:74px;
  9002. height:38px;
  9003. display:flex;
  9004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9005. font-weight:400;
  9006. font-style:normal;
  9007. font-size:12px;
  9008. }
  9009. #u97726 .text {
  9010. position:absolute;
  9011. align-self:center;
  9012. padding:2px 2px 2px 0px;
  9013. box-sizing:border-box;
  9014. width:100%;
  9015. }
  9016. #u97726_text {
  9017. border-width:0px;
  9018. word-wrap:break-word;
  9019. text-transform:none;
  9020. visibility:hidden;
  9021. }
  9022. #u97727_img {
  9023. border-width:0px;
  9024. position:absolute;
  9025. left:0px;
  9026. top:0px;
  9027. width:74px;
  9028. height:38px;
  9029. }
  9030. #u97727 {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:156px;
  9034. top:76px;
  9035. width:74px;
  9036. height:38px;
  9037. display:flex;
  9038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9039. font-weight:400;
  9040. font-style:normal;
  9041. font-size:12px;
  9042. }
  9043. #u97727 .text {
  9044. position:absolute;
  9045. align-self:center;
  9046. padding:2px 2px 2px 0px;
  9047. box-sizing:border-box;
  9048. width:100%;
  9049. }
  9050. #u97727_text {
  9051. border-width:0px;
  9052. word-wrap:break-word;
  9053. text-transform:none;
  9054. visibility:hidden;
  9055. }
  9056. #u97728_img {
  9057. border-width:0px;
  9058. position:absolute;
  9059. left:0px;
  9060. top:0px;
  9061. width:83px;
  9062. height:38px;
  9063. }
  9064. #u97728 {
  9065. border-width:0px;
  9066. position:absolute;
  9067. left:230px;
  9068. top:76px;
  9069. width:83px;
  9070. height:38px;
  9071. display:flex;
  9072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9073. font-weight:400;
  9074. font-style:normal;
  9075. font-size:12px;
  9076. }
  9077. #u97728 .text {
  9078. position:absolute;
  9079. align-self:center;
  9080. padding:2px 2px 2px 0px;
  9081. box-sizing:border-box;
  9082. width:100%;
  9083. }
  9084. #u97728_text {
  9085. border-width:0px;
  9086. word-wrap:break-word;
  9087. text-transform:none;
  9088. visibility:hidden;
  9089. }
  9090. #u97729_img {
  9091. border-width:0px;
  9092. position:absolute;
  9093. left:0px;
  9094. top:0px;
  9095. width:74px;
  9096. height:38px;
  9097. }
  9098. #u97729 {
  9099. border-width:0px;
  9100. position:absolute;
  9101. left:313px;
  9102. top:76px;
  9103. width:74px;
  9104. height:38px;
  9105. display:flex;
  9106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9107. font-weight:400;
  9108. font-style:normal;
  9109. font-size:12px;
  9110. }
  9111. #u97729 .text {
  9112. position:absolute;
  9113. align-self:center;
  9114. padding:2px 2px 2px 0px;
  9115. box-sizing:border-box;
  9116. width:100%;
  9117. }
  9118. #u97729_text {
  9119. border-width:0px;
  9120. word-wrap:break-word;
  9121. text-transform:none;
  9122. visibility:hidden;
  9123. }
  9124. #u97730_img {
  9125. border-width:0px;
  9126. position:absolute;
  9127. left:0px;
  9128. top:0px;
  9129. width:82px;
  9130. height:38px;
  9131. }
  9132. #u97730 {
  9133. border-width:0px;
  9134. position:absolute;
  9135. left:387px;
  9136. top:76px;
  9137. width:82px;
  9138. height:38px;
  9139. display:flex;
  9140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9141. font-weight:400;
  9142. font-style:normal;
  9143. font-size:12px;
  9144. }
  9145. #u97730 .text {
  9146. position:absolute;
  9147. align-self:center;
  9148. padding:2px 2px 2px 0px;
  9149. box-sizing:border-box;
  9150. width:100%;
  9151. }
  9152. #u97730_text {
  9153. border-width:0px;
  9154. word-wrap:break-word;
  9155. text-transform:none;
  9156. visibility:hidden;
  9157. }
  9158. #u97731_img {
  9159. border-width:0px;
  9160. position:absolute;
  9161. left:0px;
  9162. top:0px;
  9163. width:83px;
  9164. height:38px;
  9165. }
  9166. #u97731 {
  9167. border-width:0px;
  9168. position:absolute;
  9169. left:469px;
  9170. top:76px;
  9171. width:83px;
  9172. height:38px;
  9173. display:flex;
  9174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9175. font-weight:400;
  9176. font-style:normal;
  9177. font-size:12px;
  9178. }
  9179. #u97731 .text {
  9180. position:absolute;
  9181. align-self:center;
  9182. padding:2px 2px 2px 0px;
  9183. box-sizing:border-box;
  9184. width:100%;
  9185. }
  9186. #u97731_text {
  9187. border-width:0px;
  9188. word-wrap:break-word;
  9189. text-transform:none;
  9190. visibility:hidden;
  9191. }
  9192. #u97732_img {
  9193. border-width:0px;
  9194. position:absolute;
  9195. left:0px;
  9196. top:0px;
  9197. width:82px;
  9198. height:38px;
  9199. }
  9200. #u97732 {
  9201. border-width:0px;
  9202. position:absolute;
  9203. left:552px;
  9204. top:76px;
  9205. width:82px;
  9206. height:38px;
  9207. display:flex;
  9208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9209. font-weight:400;
  9210. font-style:normal;
  9211. font-size:12px;
  9212. }
  9213. #u97732 .text {
  9214. position:absolute;
  9215. align-self:center;
  9216. padding:2px 2px 2px 0px;
  9217. box-sizing:border-box;
  9218. width:100%;
  9219. }
  9220. #u97732_text {
  9221. border-width:0px;
  9222. word-wrap:break-word;
  9223. text-transform:none;
  9224. visibility:hidden;
  9225. }
  9226. #u97733_img {
  9227. border-width:0px;
  9228. position:absolute;
  9229. left:0px;
  9230. top:0px;
  9231. width:81px;
  9232. height:38px;
  9233. }
  9234. #u97733 {
  9235. border-width:0px;
  9236. position:absolute;
  9237. left:634px;
  9238. top:76px;
  9239. width:81px;
  9240. height:38px;
  9241. display:flex;
  9242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9243. font-weight:400;
  9244. font-style:normal;
  9245. font-size:12px;
  9246. }
  9247. #u97733 .text {
  9248. position:absolute;
  9249. align-self:center;
  9250. padding:2px 2px 2px 0px;
  9251. box-sizing:border-box;
  9252. width:100%;
  9253. }
  9254. #u97733_text {
  9255. border-width:0px;
  9256. word-wrap:break-word;
  9257. text-transform:none;
  9258. visibility:hidden;
  9259. }
  9260. #u97734_img {
  9261. border-width:0px;
  9262. position:absolute;
  9263. left:0px;
  9264. top:0px;
  9265. width:81px;
  9266. height:38px;
  9267. }
  9268. #u97734 {
  9269. border-width:0px;
  9270. position:absolute;
  9271. left:715px;
  9272. top:76px;
  9273. width:81px;
  9274. height:38px;
  9275. display:flex;
  9276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9277. font-weight:400;
  9278. font-style:normal;
  9279. font-size:12px;
  9280. }
  9281. #u97734 .text {
  9282. position:absolute;
  9283. align-self:center;
  9284. padding:2px 2px 2px 0px;
  9285. box-sizing:border-box;
  9286. width:100%;
  9287. }
  9288. #u97734_text {
  9289. border-width:0px;
  9290. word-wrap:break-word;
  9291. text-transform:none;
  9292. visibility:hidden;
  9293. }
  9294. #u97735_img {
  9295. border-width:0px;
  9296. position:absolute;
  9297. left:0px;
  9298. top:0px;
  9299. width:83px;
  9300. height:38px;
  9301. }
  9302. #u97735 {
  9303. border-width:0px;
  9304. position:absolute;
  9305. left:796px;
  9306. top:76px;
  9307. width:83px;
  9308. height:38px;
  9309. display:flex;
  9310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9311. font-weight:400;
  9312. font-style:normal;
  9313. font-size:12px;
  9314. }
  9315. #u97735 .text {
  9316. position:absolute;
  9317. align-self:center;
  9318. padding:2px 2px 2px 0px;
  9319. box-sizing:border-box;
  9320. width:100%;
  9321. }
  9322. #u97735_text {
  9323. border-width:0px;
  9324. word-wrap:break-word;
  9325. text-transform:none;
  9326. }
  9327. #u97736_img {
  9328. border-width:0px;
  9329. position:absolute;
  9330. left:0px;
  9331. top:0px;
  9332. width:83px;
  9333. height:38px;
  9334. }
  9335. #u97736 {
  9336. border-width:0px;
  9337. position:absolute;
  9338. left:879px;
  9339. top:76px;
  9340. width:83px;
  9341. height:38px;
  9342. display:flex;
  9343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9344. font-weight:400;
  9345. font-style:normal;
  9346. font-size:12px;
  9347. }
  9348. #u97736 .text {
  9349. position:absolute;
  9350. align-self:center;
  9351. padding:2px 2px 2px 0px;
  9352. box-sizing:border-box;
  9353. width:100%;
  9354. }
  9355. #u97736_text {
  9356. border-width:0px;
  9357. word-wrap:break-word;
  9358. text-transform:none;
  9359. visibility:hidden;
  9360. }
  9361. #u97737_img {
  9362. border-width:0px;
  9363. position:absolute;
  9364. left:0px;
  9365. top:0px;
  9366. width:81px;
  9367. height:38px;
  9368. }
  9369. #u97737 {
  9370. border-width:0px;
  9371. position:absolute;
  9372. left:962px;
  9373. top:76px;
  9374. width:81px;
  9375. height:38px;
  9376. display:flex;
  9377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9378. font-weight:400;
  9379. font-style:normal;
  9380. font-size:12px;
  9381. }
  9382. #u97737 .text {
  9383. position:absolute;
  9384. align-self:center;
  9385. padding:2px 2px 2px 0px;
  9386. box-sizing:border-box;
  9387. width:100%;
  9388. }
  9389. #u97737_text {
  9390. border-width:0px;
  9391. word-wrap:break-word;
  9392. text-transform:none;
  9393. visibility:hidden;
  9394. }
  9395. #u97738_img {
  9396. border-width:0px;
  9397. position:absolute;
  9398. left:0px;
  9399. top:0px;
  9400. width:81px;
  9401. height:38px;
  9402. }
  9403. #u97738 {
  9404. border-width:0px;
  9405. position:absolute;
  9406. left:1043px;
  9407. top:76px;
  9408. width:81px;
  9409. height:38px;
  9410. display:flex;
  9411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9412. font-weight:400;
  9413. font-style:normal;
  9414. font-size:12px;
  9415. }
  9416. #u97738 .text {
  9417. position:absolute;
  9418. align-self:center;
  9419. padding:2px 2px 2px 0px;
  9420. box-sizing:border-box;
  9421. width:100%;
  9422. }
  9423. #u97738_text {
  9424. border-width:0px;
  9425. word-wrap:break-word;
  9426. text-transform:none;
  9427. }
  9428. #u97739_img {
  9429. border-width:0px;
  9430. position:absolute;
  9431. left:0px;
  9432. top:0px;
  9433. width:98px;
  9434. height:38px;
  9435. }
  9436. #u97739 {
  9437. border-width:0px;
  9438. position:absolute;
  9439. left:1124px;
  9440. top:76px;
  9441. width:98px;
  9442. height:38px;
  9443. display:flex;
  9444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9445. font-weight:400;
  9446. font-style:normal;
  9447. font-size:12px;
  9448. color:#1890FF;
  9449. }
  9450. #u97739 .text {
  9451. position:absolute;
  9452. align-self:center;
  9453. padding:2px 2px 2px 0px;
  9454. box-sizing:border-box;
  9455. width:100%;
  9456. }
  9457. #u97739_text {
  9458. border-width:0px;
  9459. word-wrap:break-word;
  9460. text-transform:none;
  9461. }
  9462. #u97740_img {
  9463. border-width:0px;
  9464. position:absolute;
  9465. left:0px;
  9466. top:0px;
  9467. width:82px;
  9468. height:38px;
  9469. }
  9470. #u97740 {
  9471. border-width:0px;
  9472. position:absolute;
  9473. left:0px;
  9474. top:114px;
  9475. width:82px;
  9476. height:38px;
  9477. display:flex;
  9478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9479. font-weight:400;
  9480. font-style:normal;
  9481. font-size:12px;
  9482. }
  9483. #u97740 .text {
  9484. position:absolute;
  9485. align-self:center;
  9486. padding:2px 2px 2px 0px;
  9487. box-sizing:border-box;
  9488. width:100%;
  9489. }
  9490. #u97740_text {
  9491. border-width:0px;
  9492. word-wrap:break-word;
  9493. text-transform:none;
  9494. visibility:hidden;
  9495. }
  9496. #u97741_img {
  9497. border-width:0px;
  9498. position:absolute;
  9499. left:0px;
  9500. top:0px;
  9501. width:74px;
  9502. height:38px;
  9503. }
  9504. #u97741 {
  9505. border-width:0px;
  9506. position:absolute;
  9507. left:82px;
  9508. top:114px;
  9509. width:74px;
  9510. height:38px;
  9511. display:flex;
  9512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9513. font-weight:400;
  9514. font-style:normal;
  9515. font-size:12px;
  9516. }
  9517. #u97741 .text {
  9518. position:absolute;
  9519. align-self:center;
  9520. padding:2px 2px 2px 0px;
  9521. box-sizing:border-box;
  9522. width:100%;
  9523. }
  9524. #u97741_text {
  9525. border-width:0px;
  9526. word-wrap:break-word;
  9527. text-transform:none;
  9528. visibility:hidden;
  9529. }
  9530. #u97742_img {
  9531. border-width:0px;
  9532. position:absolute;
  9533. left:0px;
  9534. top:0px;
  9535. width:74px;
  9536. height:38px;
  9537. }
  9538. #u97742 {
  9539. border-width:0px;
  9540. position:absolute;
  9541. left:156px;
  9542. top:114px;
  9543. width:74px;
  9544. height:38px;
  9545. display:flex;
  9546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9547. font-weight:400;
  9548. font-style:normal;
  9549. font-size:12px;
  9550. }
  9551. #u97742 .text {
  9552. position:absolute;
  9553. align-self:center;
  9554. padding:2px 2px 2px 0px;
  9555. box-sizing:border-box;
  9556. width:100%;
  9557. }
  9558. #u97742_text {
  9559. border-width:0px;
  9560. word-wrap:break-word;
  9561. text-transform:none;
  9562. visibility:hidden;
  9563. }
  9564. #u97743_img {
  9565. border-width:0px;
  9566. position:absolute;
  9567. left:0px;
  9568. top:0px;
  9569. width:83px;
  9570. height:38px;
  9571. }
  9572. #u97743 {
  9573. border-width:0px;
  9574. position:absolute;
  9575. left:230px;
  9576. top:114px;
  9577. width:83px;
  9578. height:38px;
  9579. display:flex;
  9580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9581. font-weight:400;
  9582. font-style:normal;
  9583. font-size:12px;
  9584. }
  9585. #u97743 .text {
  9586. position:absolute;
  9587. align-self:center;
  9588. padding:2px 2px 2px 0px;
  9589. box-sizing:border-box;
  9590. width:100%;
  9591. }
  9592. #u97743_text {
  9593. border-width:0px;
  9594. word-wrap:break-word;
  9595. text-transform:none;
  9596. visibility:hidden;
  9597. }
  9598. #u97744_img {
  9599. border-width:0px;
  9600. position:absolute;
  9601. left:0px;
  9602. top:0px;
  9603. width:74px;
  9604. height:38px;
  9605. }
  9606. #u97744 {
  9607. border-width:0px;
  9608. position:absolute;
  9609. left:313px;
  9610. top:114px;
  9611. width:74px;
  9612. height:38px;
  9613. display:flex;
  9614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9615. font-weight:400;
  9616. font-style:normal;
  9617. font-size:12px;
  9618. }
  9619. #u97744 .text {
  9620. position:absolute;
  9621. align-self:center;
  9622. padding:2px 2px 2px 0px;
  9623. box-sizing:border-box;
  9624. width:100%;
  9625. }
  9626. #u97744_text {
  9627. border-width:0px;
  9628. word-wrap:break-word;
  9629. text-transform:none;
  9630. visibility:hidden;
  9631. }
  9632. #u97745_img {
  9633. border-width:0px;
  9634. position:absolute;
  9635. left:0px;
  9636. top:0px;
  9637. width:82px;
  9638. height:38px;
  9639. }
  9640. #u97745 {
  9641. border-width:0px;
  9642. position:absolute;
  9643. left:387px;
  9644. top:114px;
  9645. width:82px;
  9646. height:38px;
  9647. display:flex;
  9648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9649. font-weight:400;
  9650. font-style:normal;
  9651. font-size:12px;
  9652. }
  9653. #u97745 .text {
  9654. position:absolute;
  9655. align-self:center;
  9656. padding:2px 2px 2px 0px;
  9657. box-sizing:border-box;
  9658. width:100%;
  9659. }
  9660. #u97745_text {
  9661. border-width:0px;
  9662. word-wrap:break-word;
  9663. text-transform:none;
  9664. visibility:hidden;
  9665. }
  9666. #u97746_img {
  9667. border-width:0px;
  9668. position:absolute;
  9669. left:0px;
  9670. top:0px;
  9671. width:83px;
  9672. height:38px;
  9673. }
  9674. #u97746 {
  9675. border-width:0px;
  9676. position:absolute;
  9677. left:469px;
  9678. top:114px;
  9679. width:83px;
  9680. height:38px;
  9681. display:flex;
  9682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9683. font-weight:400;
  9684. font-style:normal;
  9685. font-size:12px;
  9686. }
  9687. #u97746 .text {
  9688. position:absolute;
  9689. align-self:center;
  9690. padding:2px 2px 2px 0px;
  9691. box-sizing:border-box;
  9692. width:100%;
  9693. }
  9694. #u97746_text {
  9695. border-width:0px;
  9696. word-wrap:break-word;
  9697. text-transform:none;
  9698. visibility:hidden;
  9699. }
  9700. #u97747_img {
  9701. border-width:0px;
  9702. position:absolute;
  9703. left:0px;
  9704. top:0px;
  9705. width:82px;
  9706. height:38px;
  9707. }
  9708. #u97747 {
  9709. border-width:0px;
  9710. position:absolute;
  9711. left:552px;
  9712. top:114px;
  9713. width:82px;
  9714. height:38px;
  9715. display:flex;
  9716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9717. font-weight:400;
  9718. font-style:normal;
  9719. font-size:12px;
  9720. }
  9721. #u97747 .text {
  9722. position:absolute;
  9723. align-self:center;
  9724. padding:2px 2px 2px 0px;
  9725. box-sizing:border-box;
  9726. width:100%;
  9727. }
  9728. #u97747_text {
  9729. border-width:0px;
  9730. word-wrap:break-word;
  9731. text-transform:none;
  9732. visibility:hidden;
  9733. }
  9734. #u97748_img {
  9735. border-width:0px;
  9736. position:absolute;
  9737. left:0px;
  9738. top:0px;
  9739. width:81px;
  9740. height:38px;
  9741. }
  9742. #u97748 {
  9743. border-width:0px;
  9744. position:absolute;
  9745. left:634px;
  9746. top:114px;
  9747. width:81px;
  9748. height:38px;
  9749. display:flex;
  9750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9751. font-weight:400;
  9752. font-style:normal;
  9753. font-size:12px;
  9754. }
  9755. #u97748 .text {
  9756. position:absolute;
  9757. align-self:center;
  9758. padding:2px 2px 2px 0px;
  9759. box-sizing:border-box;
  9760. width:100%;
  9761. }
  9762. #u97748_text {
  9763. border-width:0px;
  9764. word-wrap:break-word;
  9765. text-transform:none;
  9766. visibility:hidden;
  9767. }
  9768. #u97749_img {
  9769. border-width:0px;
  9770. position:absolute;
  9771. left:0px;
  9772. top:0px;
  9773. width:81px;
  9774. height:38px;
  9775. }
  9776. #u97749 {
  9777. border-width:0px;
  9778. position:absolute;
  9779. left:715px;
  9780. top:114px;
  9781. width:81px;
  9782. height:38px;
  9783. display:flex;
  9784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9785. font-weight:400;
  9786. font-style:normal;
  9787. font-size:12px;
  9788. }
  9789. #u97749 .text {
  9790. position:absolute;
  9791. align-self:center;
  9792. padding:2px 2px 2px 0px;
  9793. box-sizing:border-box;
  9794. width:100%;
  9795. }
  9796. #u97749_text {
  9797. border-width:0px;
  9798. word-wrap:break-word;
  9799. text-transform:none;
  9800. visibility:hidden;
  9801. }
  9802. #u97750_img {
  9803. border-width:0px;
  9804. position:absolute;
  9805. left:0px;
  9806. top:0px;
  9807. width:83px;
  9808. height:38px;
  9809. }
  9810. #u97750 {
  9811. border-width:0px;
  9812. position:absolute;
  9813. left:796px;
  9814. top:114px;
  9815. width:83px;
  9816. height:38px;
  9817. display:flex;
  9818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9819. font-weight:400;
  9820. font-style:normal;
  9821. font-size:12px;
  9822. color:#D9001B;
  9823. }
  9824. #u97750 .text {
  9825. position:absolute;
  9826. align-self:center;
  9827. padding:2px 2px 2px 0px;
  9828. box-sizing:border-box;
  9829. width:100%;
  9830. }
  9831. #u97750_text {
  9832. border-width:0px;
  9833. word-wrap:break-word;
  9834. text-transform:none;
  9835. }
  9836. #u97751_img {
  9837. border-width:0px;
  9838. position:absolute;
  9839. left:0px;
  9840. top:0px;
  9841. width:83px;
  9842. height:38px;
  9843. }
  9844. #u97751 {
  9845. border-width:0px;
  9846. position:absolute;
  9847. left:879px;
  9848. top:114px;
  9849. width:83px;
  9850. height:38px;
  9851. display:flex;
  9852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9853. font-weight:400;
  9854. font-style:normal;
  9855. font-size:12px;
  9856. }
  9857. #u97751 .text {
  9858. position:absolute;
  9859. align-self:center;
  9860. padding:2px 2px 2px 0px;
  9861. box-sizing:border-box;
  9862. width:100%;
  9863. }
  9864. #u97751_text {
  9865. border-width:0px;
  9866. word-wrap:break-word;
  9867. text-transform:none;
  9868. visibility:hidden;
  9869. }
  9870. #u97752_img {
  9871. border-width:0px;
  9872. position:absolute;
  9873. left:0px;
  9874. top:0px;
  9875. width:81px;
  9876. height:38px;
  9877. }
  9878. #u97752 {
  9879. border-width:0px;
  9880. position:absolute;
  9881. left:962px;
  9882. top:114px;
  9883. width:81px;
  9884. height:38px;
  9885. display:flex;
  9886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9887. font-weight:400;
  9888. font-style:normal;
  9889. font-size:12px;
  9890. }
  9891. #u97752 .text {
  9892. position:absolute;
  9893. align-self:center;
  9894. padding:2px 2px 2px 0px;
  9895. box-sizing:border-box;
  9896. width:100%;
  9897. }
  9898. #u97752_text {
  9899. border-width:0px;
  9900. word-wrap:break-word;
  9901. text-transform:none;
  9902. visibility:hidden;
  9903. }
  9904. #u97753_img {
  9905. border-width:0px;
  9906. position:absolute;
  9907. left:0px;
  9908. top:0px;
  9909. width:81px;
  9910. height:38px;
  9911. }
  9912. #u97753 {
  9913. border-width:0px;
  9914. position:absolute;
  9915. left:1043px;
  9916. top:114px;
  9917. width:81px;
  9918. height:38px;
  9919. display:flex;
  9920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9921. font-weight:400;
  9922. font-style:normal;
  9923. font-size:12px;
  9924. }
  9925. #u97753 .text {
  9926. position:absolute;
  9927. align-self:center;
  9928. padding:2px 2px 2px 0px;
  9929. box-sizing:border-box;
  9930. width:100%;
  9931. }
  9932. #u97753_text {
  9933. border-width:0px;
  9934. word-wrap:break-word;
  9935. text-transform:none;
  9936. }
  9937. #u97754_img {
  9938. border-width:0px;
  9939. position:absolute;
  9940. left:0px;
  9941. top:0px;
  9942. width:98px;
  9943. height:38px;
  9944. }
  9945. #u97754 {
  9946. border-width:0px;
  9947. position:absolute;
  9948. left:1124px;
  9949. top:114px;
  9950. width:98px;
  9951. height:38px;
  9952. display:flex;
  9953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9954. font-weight:400;
  9955. font-style:normal;
  9956. font-size:12px;
  9957. }
  9958. #u97754 .text {
  9959. position:absolute;
  9960. align-self:center;
  9961. padding:2px 2px 2px 0px;
  9962. box-sizing:border-box;
  9963. width:100%;
  9964. }
  9965. #u97754_text {
  9966. border-width:0px;
  9967. word-wrap:break-word;
  9968. text-transform:none;
  9969. }
  9970. #u97755_img {
  9971. border-width:0px;
  9972. position:absolute;
  9973. left:0px;
  9974. top:0px;
  9975. width:82px;
  9976. height:38px;
  9977. }
  9978. #u97755 {
  9979. border-width:0px;
  9980. position:absolute;
  9981. left:0px;
  9982. top:152px;
  9983. width:82px;
  9984. height:38px;
  9985. display:flex;
  9986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9987. font-weight:400;
  9988. font-style:normal;
  9989. font-size:12px;
  9990. }
  9991. #u97755 .text {
  9992. position:absolute;
  9993. align-self:center;
  9994. padding:2px 2px 2px 0px;
  9995. box-sizing:border-box;
  9996. width:100%;
  9997. }
  9998. #u97755_text {
  9999. border-width:0px;
  10000. word-wrap:break-word;
  10001. text-transform:none;
  10002. visibility:hidden;
  10003. }
  10004. #u97756_img {
  10005. border-width:0px;
  10006. position:absolute;
  10007. left:0px;
  10008. top:0px;
  10009. width:74px;
  10010. height:38px;
  10011. }
  10012. #u97756 {
  10013. border-width:0px;
  10014. position:absolute;
  10015. left:82px;
  10016. top:152px;
  10017. width:74px;
  10018. height:38px;
  10019. display:flex;
  10020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10021. font-weight:400;
  10022. font-style:normal;
  10023. font-size:12px;
  10024. }
  10025. #u97756 .text {
  10026. position:absolute;
  10027. align-self:center;
  10028. padding:2px 2px 2px 0px;
  10029. box-sizing:border-box;
  10030. width:100%;
  10031. }
  10032. #u97756_text {
  10033. border-width:0px;
  10034. word-wrap:break-word;
  10035. text-transform:none;
  10036. visibility:hidden;
  10037. }
  10038. #u97757_img {
  10039. border-width:0px;
  10040. position:absolute;
  10041. left:0px;
  10042. top:0px;
  10043. width:74px;
  10044. height:38px;
  10045. }
  10046. #u97757 {
  10047. border-width:0px;
  10048. position:absolute;
  10049. left:156px;
  10050. top:152px;
  10051. width:74px;
  10052. height:38px;
  10053. display:flex;
  10054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10055. font-weight:400;
  10056. font-style:normal;
  10057. font-size:12px;
  10058. }
  10059. #u97757 .text {
  10060. position:absolute;
  10061. align-self:center;
  10062. padding:2px 2px 2px 0px;
  10063. box-sizing:border-box;
  10064. width:100%;
  10065. }
  10066. #u97757_text {
  10067. border-width:0px;
  10068. word-wrap:break-word;
  10069. text-transform:none;
  10070. visibility:hidden;
  10071. }
  10072. #u97758_img {
  10073. border-width:0px;
  10074. position:absolute;
  10075. left:0px;
  10076. top:0px;
  10077. width:83px;
  10078. height:38px;
  10079. }
  10080. #u97758 {
  10081. border-width:0px;
  10082. position:absolute;
  10083. left:230px;
  10084. top:152px;
  10085. width:83px;
  10086. height:38px;
  10087. display:flex;
  10088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10089. font-weight:400;
  10090. font-style:normal;
  10091. font-size:12px;
  10092. }
  10093. #u97758 .text {
  10094. position:absolute;
  10095. align-self:center;
  10096. padding:2px 2px 2px 0px;
  10097. box-sizing:border-box;
  10098. width:100%;
  10099. }
  10100. #u97758_text {
  10101. border-width:0px;
  10102. word-wrap:break-word;
  10103. text-transform:none;
  10104. visibility:hidden;
  10105. }
  10106. #u97759_img {
  10107. border-width:0px;
  10108. position:absolute;
  10109. left:0px;
  10110. top:0px;
  10111. width:74px;
  10112. height:38px;
  10113. }
  10114. #u97759 {
  10115. border-width:0px;
  10116. position:absolute;
  10117. left:313px;
  10118. top:152px;
  10119. width:74px;
  10120. height:38px;
  10121. display:flex;
  10122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10123. font-weight:400;
  10124. font-style:normal;
  10125. font-size:12px;
  10126. }
  10127. #u97759 .text {
  10128. position:absolute;
  10129. align-self:center;
  10130. padding:2px 2px 2px 0px;
  10131. box-sizing:border-box;
  10132. width:100%;
  10133. }
  10134. #u97759_text {
  10135. border-width:0px;
  10136. word-wrap:break-word;
  10137. text-transform:none;
  10138. visibility:hidden;
  10139. }
  10140. #u97760_img {
  10141. border-width:0px;
  10142. position:absolute;
  10143. left:0px;
  10144. top:0px;
  10145. width:82px;
  10146. height:38px;
  10147. }
  10148. #u97760 {
  10149. border-width:0px;
  10150. position:absolute;
  10151. left:387px;
  10152. top:152px;
  10153. width:82px;
  10154. height:38px;
  10155. display:flex;
  10156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10157. font-weight:400;
  10158. font-style:normal;
  10159. font-size:12px;
  10160. }
  10161. #u97760 .text {
  10162. position:absolute;
  10163. align-self:center;
  10164. padding:2px 2px 2px 0px;
  10165. box-sizing:border-box;
  10166. width:100%;
  10167. }
  10168. #u97760_text {
  10169. border-width:0px;
  10170. word-wrap:break-word;
  10171. text-transform:none;
  10172. visibility:hidden;
  10173. }
  10174. #u97761_img {
  10175. border-width:0px;
  10176. position:absolute;
  10177. left:0px;
  10178. top:0px;
  10179. width:83px;
  10180. height:38px;
  10181. }
  10182. #u97761 {
  10183. border-width:0px;
  10184. position:absolute;
  10185. left:469px;
  10186. top:152px;
  10187. width:83px;
  10188. height:38px;
  10189. display:flex;
  10190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10191. font-weight:400;
  10192. font-style:normal;
  10193. font-size:12px;
  10194. }
  10195. #u97761 .text {
  10196. position:absolute;
  10197. align-self:center;
  10198. padding:2px 2px 2px 0px;
  10199. box-sizing:border-box;
  10200. width:100%;
  10201. }
  10202. #u97761_text {
  10203. border-width:0px;
  10204. word-wrap:break-word;
  10205. text-transform:none;
  10206. visibility:hidden;
  10207. }
  10208. #u97762_img {
  10209. border-width:0px;
  10210. position:absolute;
  10211. left:0px;
  10212. top:0px;
  10213. width:82px;
  10214. height:38px;
  10215. }
  10216. #u97762 {
  10217. border-width:0px;
  10218. position:absolute;
  10219. left:552px;
  10220. top:152px;
  10221. width:82px;
  10222. height:38px;
  10223. display:flex;
  10224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10225. font-weight:400;
  10226. font-style:normal;
  10227. font-size:12px;
  10228. }
  10229. #u97762 .text {
  10230. position:absolute;
  10231. align-self:center;
  10232. padding:2px 2px 2px 0px;
  10233. box-sizing:border-box;
  10234. width:100%;
  10235. }
  10236. #u97762_text {
  10237. border-width:0px;
  10238. word-wrap:break-word;
  10239. text-transform:none;
  10240. visibility:hidden;
  10241. }
  10242. #u97763_img {
  10243. border-width:0px;
  10244. position:absolute;
  10245. left:0px;
  10246. top:0px;
  10247. width:81px;
  10248. height:38px;
  10249. }
  10250. #u97763 {
  10251. border-width:0px;
  10252. position:absolute;
  10253. left:634px;
  10254. top:152px;
  10255. width:81px;
  10256. height:38px;
  10257. display:flex;
  10258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10259. font-weight:400;
  10260. font-style:normal;
  10261. font-size:12px;
  10262. }
  10263. #u97763 .text {
  10264. position:absolute;
  10265. align-self:center;
  10266. padding:2px 2px 2px 0px;
  10267. box-sizing:border-box;
  10268. width:100%;
  10269. }
  10270. #u97763_text {
  10271. border-width:0px;
  10272. word-wrap:break-word;
  10273. text-transform:none;
  10274. visibility:hidden;
  10275. }
  10276. #u97764_img {
  10277. border-width:0px;
  10278. position:absolute;
  10279. left:0px;
  10280. top:0px;
  10281. width:81px;
  10282. height:38px;
  10283. }
  10284. #u97764 {
  10285. border-width:0px;
  10286. position:absolute;
  10287. left:715px;
  10288. top:152px;
  10289. width:81px;
  10290. height:38px;
  10291. display:flex;
  10292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10293. font-weight:400;
  10294. font-style:normal;
  10295. font-size:12px;
  10296. }
  10297. #u97764 .text {
  10298. position:absolute;
  10299. align-self:center;
  10300. padding:2px 2px 2px 0px;
  10301. box-sizing:border-box;
  10302. width:100%;
  10303. }
  10304. #u97764_text {
  10305. border-width:0px;
  10306. word-wrap:break-word;
  10307. text-transform:none;
  10308. visibility:hidden;
  10309. }
  10310. #u97765_img {
  10311. border-width:0px;
  10312. position:absolute;
  10313. left:0px;
  10314. top:0px;
  10315. width:83px;
  10316. height:38px;
  10317. }
  10318. #u97765 {
  10319. border-width:0px;
  10320. position:absolute;
  10321. left:796px;
  10322. top:152px;
  10323. width:83px;
  10324. height:38px;
  10325. display:flex;
  10326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10327. font-weight:400;
  10328. font-style:normal;
  10329. font-size:12px;
  10330. }
  10331. #u97765 .text {
  10332. position:absolute;
  10333. align-self:center;
  10334. padding:2px 2px 2px 0px;
  10335. box-sizing:border-box;
  10336. width:100%;
  10337. }
  10338. #u97765_text {
  10339. border-width:0px;
  10340. word-wrap:break-word;
  10341. text-transform:none;
  10342. visibility:hidden;
  10343. }
  10344. #u97766_img {
  10345. border-width:0px;
  10346. position:absolute;
  10347. left:0px;
  10348. top:0px;
  10349. width:83px;
  10350. height:38px;
  10351. }
  10352. #u97766 {
  10353. border-width:0px;
  10354. position:absolute;
  10355. left:879px;
  10356. top:152px;
  10357. width:83px;
  10358. height:38px;
  10359. display:flex;
  10360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10361. font-weight:400;
  10362. font-style:normal;
  10363. font-size:12px;
  10364. }
  10365. #u97766 .text {
  10366. position:absolute;
  10367. align-self:center;
  10368. padding:2px 2px 2px 0px;
  10369. box-sizing:border-box;
  10370. width:100%;
  10371. }
  10372. #u97766_text {
  10373. border-width:0px;
  10374. word-wrap:break-word;
  10375. text-transform:none;
  10376. visibility:hidden;
  10377. }
  10378. #u97767_img {
  10379. border-width:0px;
  10380. position:absolute;
  10381. left:0px;
  10382. top:0px;
  10383. width:81px;
  10384. height:38px;
  10385. }
  10386. #u97767 {
  10387. border-width:0px;
  10388. position:absolute;
  10389. left:962px;
  10390. top:152px;
  10391. width:81px;
  10392. height:38px;
  10393. display:flex;
  10394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10395. font-weight:400;
  10396. font-style:normal;
  10397. font-size:12px;
  10398. }
  10399. #u97767 .text {
  10400. position:absolute;
  10401. align-self:center;
  10402. padding:2px 2px 2px 0px;
  10403. box-sizing:border-box;
  10404. width:100%;
  10405. }
  10406. #u97767_text {
  10407. border-width:0px;
  10408. word-wrap:break-word;
  10409. text-transform:none;
  10410. visibility:hidden;
  10411. }
  10412. #u97768_img {
  10413. border-width:0px;
  10414. position:absolute;
  10415. left:0px;
  10416. top:0px;
  10417. width:81px;
  10418. height:38px;
  10419. }
  10420. #u97768 {
  10421. border-width:0px;
  10422. position:absolute;
  10423. left:1043px;
  10424. top:152px;
  10425. width:81px;
  10426. height:38px;
  10427. display:flex;
  10428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10429. font-weight:400;
  10430. font-style:normal;
  10431. font-size:12px;
  10432. }
  10433. #u97768 .text {
  10434. position:absolute;
  10435. align-self:center;
  10436. padding:2px 2px 2px 0px;
  10437. box-sizing:border-box;
  10438. width:100%;
  10439. }
  10440. #u97768_text {
  10441. border-width:0px;
  10442. word-wrap:break-word;
  10443. text-transform:none;
  10444. visibility:hidden;
  10445. }
  10446. #u97769_img {
  10447. border-width:0px;
  10448. position:absolute;
  10449. left:0px;
  10450. top:0px;
  10451. width:98px;
  10452. height:38px;
  10453. }
  10454. #u97769 {
  10455. border-width:0px;
  10456. position:absolute;
  10457. left:1124px;
  10458. top:152px;
  10459. width:98px;
  10460. height:38px;
  10461. display:flex;
  10462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10463. font-weight:400;
  10464. font-style:normal;
  10465. font-size:12px;
  10466. color:#1890FF;
  10467. }
  10468. #u97769 .text {
  10469. position:absolute;
  10470. align-self:center;
  10471. padding:2px 2px 2px 0px;
  10472. box-sizing:border-box;
  10473. width:100%;
  10474. }
  10475. #u97769_text {
  10476. border-width:0px;
  10477. word-wrap:break-word;
  10478. text-transform:none;
  10479. visibility:hidden;
  10480. }
  10481. #u97770_img {
  10482. border-width:0px;
  10483. position:absolute;
  10484. left:0px;
  10485. top:0px;
  10486. width:82px;
  10487. height:35px;
  10488. }
  10489. #u97770 {
  10490. border-width:0px;
  10491. position:absolute;
  10492. left:0px;
  10493. top:190px;
  10494. width:82px;
  10495. height:35px;
  10496. display:flex;
  10497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10498. font-weight:400;
  10499. font-style:normal;
  10500. font-size:12px;
  10501. color:#606266;
  10502. }
  10503. #u97770 .text {
  10504. position:absolute;
  10505. align-self:center;
  10506. padding:2px 2px 2px 0px;
  10507. box-sizing:border-box;
  10508. width:100%;
  10509. }
  10510. #u97770_text {
  10511. border-width:0px;
  10512. word-wrap:break-word;
  10513. text-transform:none;
  10514. visibility:hidden;
  10515. }
  10516. #u97771_img {
  10517. border-width:0px;
  10518. position:absolute;
  10519. left:0px;
  10520. top:0px;
  10521. width:74px;
  10522. height:35px;
  10523. }
  10524. #u97771 {
  10525. border-width:0px;
  10526. position:absolute;
  10527. left:82px;
  10528. top:190px;
  10529. width:74px;
  10530. height:35px;
  10531. display:flex;
  10532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10533. font-weight:400;
  10534. font-style:normal;
  10535. font-size:12px;
  10536. color:#606266;
  10537. }
  10538. #u97771 .text {
  10539. position:absolute;
  10540. align-self:center;
  10541. padding:2px 2px 2px 0px;
  10542. box-sizing:border-box;
  10543. width:100%;
  10544. }
  10545. #u97771_text {
  10546. border-width:0px;
  10547. word-wrap:break-word;
  10548. text-transform:none;
  10549. visibility:hidden;
  10550. }
  10551. #u97772_img {
  10552. border-width:0px;
  10553. position:absolute;
  10554. left:0px;
  10555. top:0px;
  10556. width:74px;
  10557. height:35px;
  10558. }
  10559. #u97772 {
  10560. border-width:0px;
  10561. position:absolute;
  10562. left:156px;
  10563. top:190px;
  10564. width:74px;
  10565. height:35px;
  10566. display:flex;
  10567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10568. font-weight:400;
  10569. font-style:normal;
  10570. font-size:12px;
  10571. color:#606266;
  10572. }
  10573. #u97772 .text {
  10574. position:absolute;
  10575. align-self:center;
  10576. padding:2px 2px 2px 0px;
  10577. box-sizing:border-box;
  10578. width:100%;
  10579. }
  10580. #u97772_text {
  10581. border-width:0px;
  10582. word-wrap:break-word;
  10583. text-transform:none;
  10584. visibility:hidden;
  10585. }
  10586. #u97773_img {
  10587. border-width:0px;
  10588. position:absolute;
  10589. left:0px;
  10590. top:0px;
  10591. width:83px;
  10592. height:35px;
  10593. }
  10594. #u97773 {
  10595. border-width:0px;
  10596. position:absolute;
  10597. left:230px;
  10598. top:190px;
  10599. width:83px;
  10600. height:35px;
  10601. display:flex;
  10602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10603. font-weight:400;
  10604. font-style:normal;
  10605. font-size:12px;
  10606. color:#606266;
  10607. }
  10608. #u97773 .text {
  10609. position:absolute;
  10610. align-self:center;
  10611. padding:2px 2px 2px 0px;
  10612. box-sizing:border-box;
  10613. width:100%;
  10614. }
  10615. #u97773_text {
  10616. border-width:0px;
  10617. word-wrap:break-word;
  10618. text-transform:none;
  10619. visibility:hidden;
  10620. }
  10621. #u97774_img {
  10622. border-width:0px;
  10623. position:absolute;
  10624. left:0px;
  10625. top:0px;
  10626. width:74px;
  10627. height:35px;
  10628. }
  10629. #u97774 {
  10630. border-width:0px;
  10631. position:absolute;
  10632. left:313px;
  10633. top:190px;
  10634. width:74px;
  10635. height:35px;
  10636. display:flex;
  10637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10638. font-weight:400;
  10639. font-style:normal;
  10640. font-size:12px;
  10641. color:#606266;
  10642. }
  10643. #u97774 .text {
  10644. position:absolute;
  10645. align-self:center;
  10646. padding:2px 2px 2px 0px;
  10647. box-sizing:border-box;
  10648. width:100%;
  10649. }
  10650. #u97774_text {
  10651. border-width:0px;
  10652. word-wrap:break-word;
  10653. text-transform:none;
  10654. visibility:hidden;
  10655. }
  10656. #u97775_img {
  10657. border-width:0px;
  10658. position:absolute;
  10659. left:0px;
  10660. top:0px;
  10661. width:82px;
  10662. height:35px;
  10663. }
  10664. #u97775 {
  10665. border-width:0px;
  10666. position:absolute;
  10667. left:387px;
  10668. top:190px;
  10669. width:82px;
  10670. height:35px;
  10671. display:flex;
  10672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10673. font-weight:400;
  10674. font-style:normal;
  10675. font-size:12px;
  10676. color:#606266;
  10677. }
  10678. #u97775 .text {
  10679. position:absolute;
  10680. align-self:center;
  10681. padding:2px 2px 2px 0px;
  10682. box-sizing:border-box;
  10683. width:100%;
  10684. }
  10685. #u97775_text {
  10686. border-width:0px;
  10687. word-wrap:break-word;
  10688. text-transform:none;
  10689. visibility:hidden;
  10690. }
  10691. #u97776_img {
  10692. border-width:0px;
  10693. position:absolute;
  10694. left:0px;
  10695. top:0px;
  10696. width:83px;
  10697. height:35px;
  10698. }
  10699. #u97776 {
  10700. border-width:0px;
  10701. position:absolute;
  10702. left:469px;
  10703. top:190px;
  10704. width:83px;
  10705. height:35px;
  10706. display:flex;
  10707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10708. font-weight:400;
  10709. font-style:normal;
  10710. font-size:12px;
  10711. color:#606266;
  10712. }
  10713. #u97776 .text {
  10714. position:absolute;
  10715. align-self:center;
  10716. padding:2px 2px 2px 0px;
  10717. box-sizing:border-box;
  10718. width:100%;
  10719. }
  10720. #u97776_text {
  10721. border-width:0px;
  10722. word-wrap:break-word;
  10723. text-transform:none;
  10724. visibility:hidden;
  10725. }
  10726. #u97777_img {
  10727. border-width:0px;
  10728. position:absolute;
  10729. left:0px;
  10730. top:0px;
  10731. width:82px;
  10732. height:35px;
  10733. }
  10734. #u97777 {
  10735. border-width:0px;
  10736. position:absolute;
  10737. left:552px;
  10738. top:190px;
  10739. width:82px;
  10740. height:35px;
  10741. display:flex;
  10742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10743. font-weight:400;
  10744. font-style:normal;
  10745. font-size:12px;
  10746. color:#606266;
  10747. }
  10748. #u97777 .text {
  10749. position:absolute;
  10750. align-self:center;
  10751. padding:2px 2px 2px 0px;
  10752. box-sizing:border-box;
  10753. width:100%;
  10754. }
  10755. #u97777_text {
  10756. border-width:0px;
  10757. word-wrap:break-word;
  10758. text-transform:none;
  10759. visibility:hidden;
  10760. }
  10761. #u97778_img {
  10762. border-width:0px;
  10763. position:absolute;
  10764. left:0px;
  10765. top:0px;
  10766. width:81px;
  10767. height:35px;
  10768. }
  10769. #u97778 {
  10770. border-width:0px;
  10771. position:absolute;
  10772. left:634px;
  10773. top:190px;
  10774. width:81px;
  10775. height:35px;
  10776. display:flex;
  10777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10778. font-weight:400;
  10779. font-style:normal;
  10780. font-size:12px;
  10781. color:#606266;
  10782. }
  10783. #u97778 .text {
  10784. position:absolute;
  10785. align-self:center;
  10786. padding:2px 2px 2px 0px;
  10787. box-sizing:border-box;
  10788. width:100%;
  10789. }
  10790. #u97778_text {
  10791. border-width:0px;
  10792. word-wrap:break-word;
  10793. text-transform:none;
  10794. visibility:hidden;
  10795. }
  10796. #u97779_img {
  10797. border-width:0px;
  10798. position:absolute;
  10799. left:0px;
  10800. top:0px;
  10801. width:81px;
  10802. height:35px;
  10803. }
  10804. #u97779 {
  10805. border-width:0px;
  10806. position:absolute;
  10807. left:715px;
  10808. top:190px;
  10809. width:81px;
  10810. height:35px;
  10811. display:flex;
  10812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10813. font-weight:400;
  10814. font-style:normal;
  10815. font-size:12px;
  10816. color:#606266;
  10817. }
  10818. #u97779 .text {
  10819. position:absolute;
  10820. align-self:center;
  10821. padding:2px 2px 2px 0px;
  10822. box-sizing:border-box;
  10823. width:100%;
  10824. }
  10825. #u97779_text {
  10826. border-width:0px;
  10827. word-wrap:break-word;
  10828. text-transform:none;
  10829. visibility:hidden;
  10830. }
  10831. #u97780_img {
  10832. border-width:0px;
  10833. position:absolute;
  10834. left:0px;
  10835. top:0px;
  10836. width:83px;
  10837. height:35px;
  10838. }
  10839. #u97780 {
  10840. border-width:0px;
  10841. position:absolute;
  10842. left:796px;
  10843. top:190px;
  10844. width:83px;
  10845. height:35px;
  10846. display:flex;
  10847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10848. font-weight:400;
  10849. font-style:normal;
  10850. font-size:12px;
  10851. color:#606266;
  10852. }
  10853. #u97780 .text {
  10854. position:absolute;
  10855. align-self:center;
  10856. padding:2px 2px 2px 0px;
  10857. box-sizing:border-box;
  10858. width:100%;
  10859. }
  10860. #u97780_text {
  10861. border-width:0px;
  10862. word-wrap:break-word;
  10863. text-transform:none;
  10864. visibility:hidden;
  10865. }
  10866. #u97781_img {
  10867. border-width:0px;
  10868. position:absolute;
  10869. left:0px;
  10870. top:0px;
  10871. width:83px;
  10872. height:35px;
  10873. }
  10874. #u97781 {
  10875. border-width:0px;
  10876. position:absolute;
  10877. left:879px;
  10878. top:190px;
  10879. width:83px;
  10880. height:35px;
  10881. display:flex;
  10882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10883. font-weight:400;
  10884. font-style:normal;
  10885. font-size:12px;
  10886. color:#606266;
  10887. }
  10888. #u97781 .text {
  10889. position:absolute;
  10890. align-self:center;
  10891. padding:2px 2px 2px 0px;
  10892. box-sizing:border-box;
  10893. width:100%;
  10894. }
  10895. #u97781_text {
  10896. border-width:0px;
  10897. word-wrap:break-word;
  10898. text-transform:none;
  10899. visibility:hidden;
  10900. }
  10901. #u97782_img {
  10902. border-width:0px;
  10903. position:absolute;
  10904. left:0px;
  10905. top:0px;
  10906. width:81px;
  10907. height:35px;
  10908. }
  10909. #u97782 {
  10910. border-width:0px;
  10911. position:absolute;
  10912. left:962px;
  10913. top:190px;
  10914. width:81px;
  10915. height:35px;
  10916. display:flex;
  10917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10918. font-weight:400;
  10919. font-style:normal;
  10920. font-size:12px;
  10921. color:#606266;
  10922. }
  10923. #u97782 .text {
  10924. position:absolute;
  10925. align-self:center;
  10926. padding:2px 2px 2px 0px;
  10927. box-sizing:border-box;
  10928. width:100%;
  10929. }
  10930. #u97782_text {
  10931. border-width:0px;
  10932. word-wrap:break-word;
  10933. text-transform:none;
  10934. visibility:hidden;
  10935. }
  10936. #u97783_img {
  10937. border-width:0px;
  10938. position:absolute;
  10939. left:0px;
  10940. top:0px;
  10941. width:81px;
  10942. height:35px;
  10943. }
  10944. #u97783 {
  10945. border-width:0px;
  10946. position:absolute;
  10947. left:1043px;
  10948. top:190px;
  10949. width:81px;
  10950. height:35px;
  10951. display:flex;
  10952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10953. font-weight:400;
  10954. font-style:normal;
  10955. font-size:12px;
  10956. color:#606266;
  10957. }
  10958. #u97783 .text {
  10959. position:absolute;
  10960. align-self:center;
  10961. padding:2px 2px 2px 0px;
  10962. box-sizing:border-box;
  10963. width:100%;
  10964. }
  10965. #u97783_text {
  10966. border-width:0px;
  10967. word-wrap:break-word;
  10968. text-transform:none;
  10969. visibility:hidden;
  10970. }
  10971. #u97784_img {
  10972. border-width:0px;
  10973. position:absolute;
  10974. left:0px;
  10975. top:0px;
  10976. width:98px;
  10977. height:35px;
  10978. }
  10979. #u97784 {
  10980. border-width:0px;
  10981. position:absolute;
  10982. left:1124px;
  10983. top:190px;
  10984. width:98px;
  10985. height:35px;
  10986. display:flex;
  10987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10988. font-weight:400;
  10989. font-style:normal;
  10990. font-size:12px;
  10991. color:#02A7F0;
  10992. }
  10993. #u97784 .text {
  10994. position:absolute;
  10995. align-self:center;
  10996. padding:2px 2px 2px 0px;
  10997. box-sizing:border-box;
  10998. width:100%;
  10999. }
  11000. #u97784_text {
  11001. border-width:0px;
  11002. word-wrap:break-word;
  11003. text-transform:none;
  11004. visibility:hidden;
  11005. }
  11006. #u97785_img {
  11007. border-width:0px;
  11008. position:absolute;
  11009. left:0px;
  11010. top:0px;
  11011. width:82px;
  11012. height:35px;
  11013. }
  11014. #u97785 {
  11015. border-width:0px;
  11016. position:absolute;
  11017. left:0px;
  11018. top:225px;
  11019. width:82px;
  11020. height:35px;
  11021. display:flex;
  11022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11023. font-weight:400;
  11024. font-style:normal;
  11025. font-size:12px;
  11026. color:#606266;
  11027. }
  11028. #u97785 .text {
  11029. position:absolute;
  11030. align-self:center;
  11031. padding:2px 2px 2px 0px;
  11032. box-sizing:border-box;
  11033. width:100%;
  11034. }
  11035. #u97785_text {
  11036. border-width:0px;
  11037. word-wrap:break-word;
  11038. text-transform:none;
  11039. visibility:hidden;
  11040. }
  11041. #u97786_img {
  11042. border-width:0px;
  11043. position:absolute;
  11044. left:0px;
  11045. top:0px;
  11046. width:74px;
  11047. height:35px;
  11048. }
  11049. #u97786 {
  11050. border-width:0px;
  11051. position:absolute;
  11052. left:82px;
  11053. top:225px;
  11054. width:74px;
  11055. height:35px;
  11056. display:flex;
  11057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11058. font-weight:400;
  11059. font-style:normal;
  11060. font-size:12px;
  11061. color:#606266;
  11062. }
  11063. #u97786 .text {
  11064. position:absolute;
  11065. align-self:center;
  11066. padding:2px 2px 2px 0px;
  11067. box-sizing:border-box;
  11068. width:100%;
  11069. }
  11070. #u97786_text {
  11071. border-width:0px;
  11072. word-wrap:break-word;
  11073. text-transform:none;
  11074. visibility:hidden;
  11075. }
  11076. #u97787_img {
  11077. border-width:0px;
  11078. position:absolute;
  11079. left:0px;
  11080. top:0px;
  11081. width:74px;
  11082. height:35px;
  11083. }
  11084. #u97787 {
  11085. border-width:0px;
  11086. position:absolute;
  11087. left:156px;
  11088. top:225px;
  11089. width:74px;
  11090. height:35px;
  11091. display:flex;
  11092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11093. font-weight:400;
  11094. font-style:normal;
  11095. font-size:12px;
  11096. color:#606266;
  11097. }
  11098. #u97787 .text {
  11099. position:absolute;
  11100. align-self:center;
  11101. padding:2px 2px 2px 0px;
  11102. box-sizing:border-box;
  11103. width:100%;
  11104. }
  11105. #u97787_text {
  11106. border-width:0px;
  11107. word-wrap:break-word;
  11108. text-transform:none;
  11109. visibility:hidden;
  11110. }
  11111. #u97788_img {
  11112. border-width:0px;
  11113. position:absolute;
  11114. left:0px;
  11115. top:0px;
  11116. width:83px;
  11117. height:35px;
  11118. }
  11119. #u97788 {
  11120. border-width:0px;
  11121. position:absolute;
  11122. left:230px;
  11123. top:225px;
  11124. width:83px;
  11125. height:35px;
  11126. display:flex;
  11127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11128. font-weight:400;
  11129. font-style:normal;
  11130. font-size:12px;
  11131. color:#606266;
  11132. }
  11133. #u97788 .text {
  11134. position:absolute;
  11135. align-self:center;
  11136. padding:2px 2px 2px 0px;
  11137. box-sizing:border-box;
  11138. width:100%;
  11139. }
  11140. #u97788_text {
  11141. border-width:0px;
  11142. word-wrap:break-word;
  11143. text-transform:none;
  11144. visibility:hidden;
  11145. }
  11146. #u97789_img {
  11147. border-width:0px;
  11148. position:absolute;
  11149. left:0px;
  11150. top:0px;
  11151. width:74px;
  11152. height:35px;
  11153. }
  11154. #u97789 {
  11155. border-width:0px;
  11156. position:absolute;
  11157. left:313px;
  11158. top:225px;
  11159. width:74px;
  11160. height:35px;
  11161. display:flex;
  11162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11163. font-weight:400;
  11164. font-style:normal;
  11165. font-size:12px;
  11166. color:#606266;
  11167. }
  11168. #u97789 .text {
  11169. position:absolute;
  11170. align-self:center;
  11171. padding:2px 2px 2px 0px;
  11172. box-sizing:border-box;
  11173. width:100%;
  11174. }
  11175. #u97789_text {
  11176. border-width:0px;
  11177. word-wrap:break-word;
  11178. text-transform:none;
  11179. visibility:hidden;
  11180. }
  11181. #u97790_img {
  11182. border-width:0px;
  11183. position:absolute;
  11184. left:0px;
  11185. top:0px;
  11186. width:82px;
  11187. height:35px;
  11188. }
  11189. #u97790 {
  11190. border-width:0px;
  11191. position:absolute;
  11192. left:387px;
  11193. top:225px;
  11194. width:82px;
  11195. height:35px;
  11196. display:flex;
  11197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11198. font-weight:400;
  11199. font-style:normal;
  11200. font-size:12px;
  11201. color:#606266;
  11202. }
  11203. #u97790 .text {
  11204. position:absolute;
  11205. align-self:center;
  11206. padding:2px 2px 2px 0px;
  11207. box-sizing:border-box;
  11208. width:100%;
  11209. }
  11210. #u97790_text {
  11211. border-width:0px;
  11212. word-wrap:break-word;
  11213. text-transform:none;
  11214. visibility:hidden;
  11215. }
  11216. #u97791_img {
  11217. border-width:0px;
  11218. position:absolute;
  11219. left:0px;
  11220. top:0px;
  11221. width:83px;
  11222. height:35px;
  11223. }
  11224. #u97791 {
  11225. border-width:0px;
  11226. position:absolute;
  11227. left:469px;
  11228. top:225px;
  11229. width:83px;
  11230. height:35px;
  11231. display:flex;
  11232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11233. font-weight:400;
  11234. font-style:normal;
  11235. font-size:12px;
  11236. color:#606266;
  11237. }
  11238. #u97791 .text {
  11239. position:absolute;
  11240. align-self:center;
  11241. padding:2px 2px 2px 0px;
  11242. box-sizing:border-box;
  11243. width:100%;
  11244. }
  11245. #u97791_text {
  11246. border-width:0px;
  11247. word-wrap:break-word;
  11248. text-transform:none;
  11249. visibility:hidden;
  11250. }
  11251. #u97792_img {
  11252. border-width:0px;
  11253. position:absolute;
  11254. left:0px;
  11255. top:0px;
  11256. width:82px;
  11257. height:35px;
  11258. }
  11259. #u97792 {
  11260. border-width:0px;
  11261. position:absolute;
  11262. left:552px;
  11263. top:225px;
  11264. width:82px;
  11265. height:35px;
  11266. display:flex;
  11267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11268. font-weight:400;
  11269. font-style:normal;
  11270. font-size:12px;
  11271. color:#606266;
  11272. }
  11273. #u97792 .text {
  11274. position:absolute;
  11275. align-self:center;
  11276. padding:2px 2px 2px 0px;
  11277. box-sizing:border-box;
  11278. width:100%;
  11279. }
  11280. #u97792_text {
  11281. border-width:0px;
  11282. word-wrap:break-word;
  11283. text-transform:none;
  11284. visibility:hidden;
  11285. }
  11286. #u97793_img {
  11287. border-width:0px;
  11288. position:absolute;
  11289. left:0px;
  11290. top:0px;
  11291. width:81px;
  11292. height:35px;
  11293. }
  11294. #u97793 {
  11295. border-width:0px;
  11296. position:absolute;
  11297. left:634px;
  11298. top:225px;
  11299. width:81px;
  11300. height:35px;
  11301. display:flex;
  11302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11303. font-weight:400;
  11304. font-style:normal;
  11305. font-size:12px;
  11306. color:#606266;
  11307. }
  11308. #u97793 .text {
  11309. position:absolute;
  11310. align-self:center;
  11311. padding:2px 2px 2px 0px;
  11312. box-sizing:border-box;
  11313. width:100%;
  11314. }
  11315. #u97793_text {
  11316. border-width:0px;
  11317. word-wrap:break-word;
  11318. text-transform:none;
  11319. visibility:hidden;
  11320. }
  11321. #u97794_img {
  11322. border-width:0px;
  11323. position:absolute;
  11324. left:0px;
  11325. top:0px;
  11326. width:81px;
  11327. height:35px;
  11328. }
  11329. #u97794 {
  11330. border-width:0px;
  11331. position:absolute;
  11332. left:715px;
  11333. top:225px;
  11334. width:81px;
  11335. height:35px;
  11336. display:flex;
  11337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11338. font-weight:400;
  11339. font-style:normal;
  11340. font-size:12px;
  11341. color:#606266;
  11342. }
  11343. #u97794 .text {
  11344. position:absolute;
  11345. align-self:center;
  11346. padding:2px 2px 2px 0px;
  11347. box-sizing:border-box;
  11348. width:100%;
  11349. }
  11350. #u97794_text {
  11351. border-width:0px;
  11352. word-wrap:break-word;
  11353. text-transform:none;
  11354. visibility:hidden;
  11355. }
  11356. #u97795_img {
  11357. border-width:0px;
  11358. position:absolute;
  11359. left:0px;
  11360. top:0px;
  11361. width:83px;
  11362. height:35px;
  11363. }
  11364. #u97795 {
  11365. border-width:0px;
  11366. position:absolute;
  11367. left:796px;
  11368. top:225px;
  11369. width:83px;
  11370. height:35px;
  11371. display:flex;
  11372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11373. font-weight:400;
  11374. font-style:normal;
  11375. font-size:12px;
  11376. color:#606266;
  11377. }
  11378. #u97795 .text {
  11379. position:absolute;
  11380. align-self:center;
  11381. padding:2px 2px 2px 0px;
  11382. box-sizing:border-box;
  11383. width:100%;
  11384. }
  11385. #u97795_text {
  11386. border-width:0px;
  11387. word-wrap:break-word;
  11388. text-transform:none;
  11389. visibility:hidden;
  11390. }
  11391. #u97796_img {
  11392. border-width:0px;
  11393. position:absolute;
  11394. left:0px;
  11395. top:0px;
  11396. width:83px;
  11397. height:35px;
  11398. }
  11399. #u97796 {
  11400. border-width:0px;
  11401. position:absolute;
  11402. left:879px;
  11403. top:225px;
  11404. width:83px;
  11405. height:35px;
  11406. display:flex;
  11407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11408. font-weight:400;
  11409. font-style:normal;
  11410. font-size:12px;
  11411. color:#606266;
  11412. }
  11413. #u97796 .text {
  11414. position:absolute;
  11415. align-self:center;
  11416. padding:2px 2px 2px 0px;
  11417. box-sizing:border-box;
  11418. width:100%;
  11419. }
  11420. #u97796_text {
  11421. border-width:0px;
  11422. word-wrap:break-word;
  11423. text-transform:none;
  11424. visibility:hidden;
  11425. }
  11426. #u97797_img {
  11427. border-width:0px;
  11428. position:absolute;
  11429. left:0px;
  11430. top:0px;
  11431. width:81px;
  11432. height:35px;
  11433. }
  11434. #u97797 {
  11435. border-width:0px;
  11436. position:absolute;
  11437. left:962px;
  11438. top:225px;
  11439. width:81px;
  11440. height:35px;
  11441. display:flex;
  11442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11443. font-weight:400;
  11444. font-style:normal;
  11445. font-size:12px;
  11446. color:#606266;
  11447. }
  11448. #u97797 .text {
  11449. position:absolute;
  11450. align-self:center;
  11451. padding:2px 2px 2px 0px;
  11452. box-sizing:border-box;
  11453. width:100%;
  11454. }
  11455. #u97797_text {
  11456. border-width:0px;
  11457. word-wrap:break-word;
  11458. text-transform:none;
  11459. visibility:hidden;
  11460. }
  11461. #u97798_img {
  11462. border-width:0px;
  11463. position:absolute;
  11464. left:0px;
  11465. top:0px;
  11466. width:81px;
  11467. height:35px;
  11468. }
  11469. #u97798 {
  11470. border-width:0px;
  11471. position:absolute;
  11472. left:1043px;
  11473. top:225px;
  11474. width:81px;
  11475. height:35px;
  11476. display:flex;
  11477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11478. font-weight:400;
  11479. font-style:normal;
  11480. font-size:12px;
  11481. color:#606266;
  11482. }
  11483. #u97798 .text {
  11484. position:absolute;
  11485. align-self:center;
  11486. padding:2px 2px 2px 0px;
  11487. box-sizing:border-box;
  11488. width:100%;
  11489. }
  11490. #u97798_text {
  11491. border-width:0px;
  11492. word-wrap:break-word;
  11493. text-transform:none;
  11494. visibility:hidden;
  11495. }
  11496. #u97799_img {
  11497. border-width:0px;
  11498. position:absolute;
  11499. left:0px;
  11500. top:0px;
  11501. width:98px;
  11502. height:35px;
  11503. }
  11504. #u97799 {
  11505. border-width:0px;
  11506. position:absolute;
  11507. left:1124px;
  11508. top:225px;
  11509. width:98px;
  11510. height:35px;
  11511. display:flex;
  11512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11513. font-weight:400;
  11514. font-style:normal;
  11515. font-size:12px;
  11516. color:#02A7F0;
  11517. }
  11518. #u97799 .text {
  11519. position:absolute;
  11520. align-self:center;
  11521. padding:2px 2px 2px 0px;
  11522. box-sizing:border-box;
  11523. width:100%;
  11524. }
  11525. #u97799_text {
  11526. border-width:0px;
  11527. word-wrap:break-word;
  11528. text-transform:none;
  11529. visibility:hidden;
  11530. }
  11531. #u97800_img {
  11532. border-width:0px;
  11533. position:absolute;
  11534. left:0px;
  11535. top:0px;
  11536. width:82px;
  11537. height:35px;
  11538. }
  11539. #u97800 {
  11540. border-width:0px;
  11541. position:absolute;
  11542. left:0px;
  11543. top:260px;
  11544. width:82px;
  11545. height:35px;
  11546. display:flex;
  11547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11548. font-weight:400;
  11549. font-style:normal;
  11550. font-size:12px;
  11551. color:#606266;
  11552. }
  11553. #u97800 .text {
  11554. position:absolute;
  11555. align-self:center;
  11556. padding:2px 2px 2px 0px;
  11557. box-sizing:border-box;
  11558. width:100%;
  11559. }
  11560. #u97800_text {
  11561. border-width:0px;
  11562. word-wrap:break-word;
  11563. text-transform:none;
  11564. visibility:hidden;
  11565. }
  11566. #u97801_img {
  11567. border-width:0px;
  11568. position:absolute;
  11569. left:0px;
  11570. top:0px;
  11571. width:74px;
  11572. height:35px;
  11573. }
  11574. #u97801 {
  11575. border-width:0px;
  11576. position:absolute;
  11577. left:82px;
  11578. top:260px;
  11579. width:74px;
  11580. height:35px;
  11581. display:flex;
  11582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11583. font-weight:400;
  11584. font-style:normal;
  11585. font-size:12px;
  11586. color:#606266;
  11587. }
  11588. #u97801 .text {
  11589. position:absolute;
  11590. align-self:center;
  11591. padding:2px 2px 2px 0px;
  11592. box-sizing:border-box;
  11593. width:100%;
  11594. }
  11595. #u97801_text {
  11596. border-width:0px;
  11597. word-wrap:break-word;
  11598. text-transform:none;
  11599. visibility:hidden;
  11600. }
  11601. #u97802_img {
  11602. border-width:0px;
  11603. position:absolute;
  11604. left:0px;
  11605. top:0px;
  11606. width:74px;
  11607. height:35px;
  11608. }
  11609. #u97802 {
  11610. border-width:0px;
  11611. position:absolute;
  11612. left:156px;
  11613. top:260px;
  11614. width:74px;
  11615. height:35px;
  11616. display:flex;
  11617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11618. font-weight:400;
  11619. font-style:normal;
  11620. font-size:12px;
  11621. color:#606266;
  11622. }
  11623. #u97802 .text {
  11624. position:absolute;
  11625. align-self:center;
  11626. padding:2px 2px 2px 0px;
  11627. box-sizing:border-box;
  11628. width:100%;
  11629. }
  11630. #u97802_text {
  11631. border-width:0px;
  11632. word-wrap:break-word;
  11633. text-transform:none;
  11634. visibility:hidden;
  11635. }
  11636. #u97803_img {
  11637. border-width:0px;
  11638. position:absolute;
  11639. left:0px;
  11640. top:0px;
  11641. width:83px;
  11642. height:35px;
  11643. }
  11644. #u97803 {
  11645. border-width:0px;
  11646. position:absolute;
  11647. left:230px;
  11648. top:260px;
  11649. width:83px;
  11650. height:35px;
  11651. display:flex;
  11652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11653. font-weight:400;
  11654. font-style:normal;
  11655. font-size:12px;
  11656. color:#606266;
  11657. }
  11658. #u97803 .text {
  11659. position:absolute;
  11660. align-self:center;
  11661. padding:2px 2px 2px 0px;
  11662. box-sizing:border-box;
  11663. width:100%;
  11664. }
  11665. #u97803_text {
  11666. border-width:0px;
  11667. word-wrap:break-word;
  11668. text-transform:none;
  11669. visibility:hidden;
  11670. }
  11671. #u97804_img {
  11672. border-width:0px;
  11673. position:absolute;
  11674. left:0px;
  11675. top:0px;
  11676. width:74px;
  11677. height:35px;
  11678. }
  11679. #u97804 {
  11680. border-width:0px;
  11681. position:absolute;
  11682. left:313px;
  11683. top:260px;
  11684. width:74px;
  11685. height:35px;
  11686. display:flex;
  11687. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11688. font-weight:400;
  11689. font-style:normal;
  11690. font-size:12px;
  11691. color:#606266;
  11692. }
  11693. #u97804 .text {
  11694. position:absolute;
  11695. align-self:center;
  11696. padding:2px 2px 2px 0px;
  11697. box-sizing:border-box;
  11698. width:100%;
  11699. }
  11700. #u97804_text {
  11701. border-width:0px;
  11702. word-wrap:break-word;
  11703. text-transform:none;
  11704. visibility:hidden;
  11705. }
  11706. #u97805_img {
  11707. border-width:0px;
  11708. position:absolute;
  11709. left:0px;
  11710. top:0px;
  11711. width:82px;
  11712. height:35px;
  11713. }
  11714. #u97805 {
  11715. border-width:0px;
  11716. position:absolute;
  11717. left:387px;
  11718. top:260px;
  11719. width:82px;
  11720. height:35px;
  11721. display:flex;
  11722. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11723. font-weight:400;
  11724. font-style:normal;
  11725. font-size:12px;
  11726. color:#606266;
  11727. }
  11728. #u97805 .text {
  11729. position:absolute;
  11730. align-self:center;
  11731. padding:2px 2px 2px 0px;
  11732. box-sizing:border-box;
  11733. width:100%;
  11734. }
  11735. #u97805_text {
  11736. border-width:0px;
  11737. word-wrap:break-word;
  11738. text-transform:none;
  11739. visibility:hidden;
  11740. }
  11741. #u97806_img {
  11742. border-width:0px;
  11743. position:absolute;
  11744. left:0px;
  11745. top:0px;
  11746. width:83px;
  11747. height:35px;
  11748. }
  11749. #u97806 {
  11750. border-width:0px;
  11751. position:absolute;
  11752. left:469px;
  11753. top:260px;
  11754. width:83px;
  11755. height:35px;
  11756. display:flex;
  11757. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11758. font-weight:400;
  11759. font-style:normal;
  11760. font-size:12px;
  11761. color:#606266;
  11762. }
  11763. #u97806 .text {
  11764. position:absolute;
  11765. align-self:center;
  11766. padding:2px 2px 2px 0px;
  11767. box-sizing:border-box;
  11768. width:100%;
  11769. }
  11770. #u97806_text {
  11771. border-width:0px;
  11772. word-wrap:break-word;
  11773. text-transform:none;
  11774. visibility:hidden;
  11775. }
  11776. #u97807_img {
  11777. border-width:0px;
  11778. position:absolute;
  11779. left:0px;
  11780. top:0px;
  11781. width:82px;
  11782. height:35px;
  11783. }
  11784. #u97807 {
  11785. border-width:0px;
  11786. position:absolute;
  11787. left:552px;
  11788. top:260px;
  11789. width:82px;
  11790. height:35px;
  11791. display:flex;
  11792. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11793. font-weight:400;
  11794. font-style:normal;
  11795. font-size:12px;
  11796. color:#606266;
  11797. }
  11798. #u97807 .text {
  11799. position:absolute;
  11800. align-self:center;
  11801. padding:2px 2px 2px 0px;
  11802. box-sizing:border-box;
  11803. width:100%;
  11804. }
  11805. #u97807_text {
  11806. border-width:0px;
  11807. word-wrap:break-word;
  11808. text-transform:none;
  11809. visibility:hidden;
  11810. }
  11811. #u97808_img {
  11812. border-width:0px;
  11813. position:absolute;
  11814. left:0px;
  11815. top:0px;
  11816. width:81px;
  11817. height:35px;
  11818. }
  11819. #u97808 {
  11820. border-width:0px;
  11821. position:absolute;
  11822. left:634px;
  11823. top:260px;
  11824. width:81px;
  11825. height:35px;
  11826. display:flex;
  11827. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11828. font-weight:400;
  11829. font-style:normal;
  11830. font-size:12px;
  11831. color:#606266;
  11832. }
  11833. #u97808 .text {
  11834. position:absolute;
  11835. align-self:center;
  11836. padding:2px 2px 2px 0px;
  11837. box-sizing:border-box;
  11838. width:100%;
  11839. }
  11840. #u97808_text {
  11841. border-width:0px;
  11842. word-wrap:break-word;
  11843. text-transform:none;
  11844. visibility:hidden;
  11845. }
  11846. #u97809_img {
  11847. border-width:0px;
  11848. position:absolute;
  11849. left:0px;
  11850. top:0px;
  11851. width:81px;
  11852. height:35px;
  11853. }
  11854. #u97809 {
  11855. border-width:0px;
  11856. position:absolute;
  11857. left:715px;
  11858. top:260px;
  11859. width:81px;
  11860. height:35px;
  11861. display:flex;
  11862. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11863. font-weight:400;
  11864. font-style:normal;
  11865. font-size:12px;
  11866. color:#606266;
  11867. }
  11868. #u97809 .text {
  11869. position:absolute;
  11870. align-self:center;
  11871. padding:2px 2px 2px 0px;
  11872. box-sizing:border-box;
  11873. width:100%;
  11874. }
  11875. #u97809_text {
  11876. border-width:0px;
  11877. word-wrap:break-word;
  11878. text-transform:none;
  11879. visibility:hidden;
  11880. }
  11881. #u97810_img {
  11882. border-width:0px;
  11883. position:absolute;
  11884. left:0px;
  11885. top:0px;
  11886. width:83px;
  11887. height:35px;
  11888. }
  11889. #u97810 {
  11890. border-width:0px;
  11891. position:absolute;
  11892. left:796px;
  11893. top:260px;
  11894. width:83px;
  11895. height:35px;
  11896. display:flex;
  11897. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11898. font-weight:400;
  11899. font-style:normal;
  11900. font-size:12px;
  11901. color:#606266;
  11902. }
  11903. #u97810 .text {
  11904. position:absolute;
  11905. align-self:center;
  11906. padding:2px 2px 2px 0px;
  11907. box-sizing:border-box;
  11908. width:100%;
  11909. }
  11910. #u97810_text {
  11911. border-width:0px;
  11912. word-wrap:break-word;
  11913. text-transform:none;
  11914. visibility:hidden;
  11915. }
  11916. #u97811_img {
  11917. border-width:0px;
  11918. position:absolute;
  11919. left:0px;
  11920. top:0px;
  11921. width:83px;
  11922. height:35px;
  11923. }
  11924. #u97811 {
  11925. border-width:0px;
  11926. position:absolute;
  11927. left:879px;
  11928. top:260px;
  11929. width:83px;
  11930. height:35px;
  11931. display:flex;
  11932. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11933. font-weight:400;
  11934. font-style:normal;
  11935. font-size:12px;
  11936. color:#606266;
  11937. }
  11938. #u97811 .text {
  11939. position:absolute;
  11940. align-self:center;
  11941. padding:2px 2px 2px 0px;
  11942. box-sizing:border-box;
  11943. width:100%;
  11944. }
  11945. #u97811_text {
  11946. border-width:0px;
  11947. word-wrap:break-word;
  11948. text-transform:none;
  11949. visibility:hidden;
  11950. }
  11951. #u97812_img {
  11952. border-width:0px;
  11953. position:absolute;
  11954. left:0px;
  11955. top:0px;
  11956. width:81px;
  11957. height:35px;
  11958. }
  11959. #u97812 {
  11960. border-width:0px;
  11961. position:absolute;
  11962. left:962px;
  11963. top:260px;
  11964. width:81px;
  11965. height:35px;
  11966. display:flex;
  11967. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11968. font-weight:400;
  11969. font-style:normal;
  11970. font-size:12px;
  11971. color:#606266;
  11972. }
  11973. #u97812 .text {
  11974. position:absolute;
  11975. align-self:center;
  11976. padding:2px 2px 2px 0px;
  11977. box-sizing:border-box;
  11978. width:100%;
  11979. }
  11980. #u97812_text {
  11981. border-width:0px;
  11982. word-wrap:break-word;
  11983. text-transform:none;
  11984. visibility:hidden;
  11985. }
  11986. #u97813_img {
  11987. border-width:0px;
  11988. position:absolute;
  11989. left:0px;
  11990. top:0px;
  11991. width:81px;
  11992. height:35px;
  11993. }
  11994. #u97813 {
  11995. border-width:0px;
  11996. position:absolute;
  11997. left:1043px;
  11998. top:260px;
  11999. width:81px;
  12000. height:35px;
  12001. display:flex;
  12002. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12003. font-weight:400;
  12004. font-style:normal;
  12005. font-size:12px;
  12006. color:#606266;
  12007. }
  12008. #u97813 .text {
  12009. position:absolute;
  12010. align-self:center;
  12011. padding:2px 2px 2px 0px;
  12012. box-sizing:border-box;
  12013. width:100%;
  12014. }
  12015. #u97813_text {
  12016. border-width:0px;
  12017. word-wrap:break-word;
  12018. text-transform:none;
  12019. visibility:hidden;
  12020. }
  12021. #u97814_img {
  12022. border-width:0px;
  12023. position:absolute;
  12024. left:0px;
  12025. top:0px;
  12026. width:98px;
  12027. height:35px;
  12028. }
  12029. #u97814 {
  12030. border-width:0px;
  12031. position:absolute;
  12032. left:1124px;
  12033. top:260px;
  12034. width:98px;
  12035. height:35px;
  12036. display:flex;
  12037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12038. font-weight:400;
  12039. font-style:normal;
  12040. font-size:12px;
  12041. color:#02A7F0;
  12042. }
  12043. #u97814 .text {
  12044. position:absolute;
  12045. align-self:center;
  12046. padding:2px 2px 2px 0px;
  12047. box-sizing:border-box;
  12048. width:100%;
  12049. }
  12050. #u97814_text {
  12051. border-width:0px;
  12052. word-wrap:break-word;
  12053. text-transform:none;
  12054. visibility:hidden;
  12055. }
  12056. #u97815_img {
  12057. border-width:0px;
  12058. position:absolute;
  12059. left:0px;
  12060. top:0px;
  12061. width:82px;
  12062. height:35px;
  12063. }
  12064. #u97815 {
  12065. border-width:0px;
  12066. position:absolute;
  12067. left:0px;
  12068. top:295px;
  12069. width:82px;
  12070. height:35px;
  12071. display:flex;
  12072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12073. font-weight:400;
  12074. font-style:normal;
  12075. font-size:12px;
  12076. color:#606266;
  12077. }
  12078. #u97815 .text {
  12079. position:absolute;
  12080. align-self:center;
  12081. padding:2px 2px 2px 0px;
  12082. box-sizing:border-box;
  12083. width:100%;
  12084. }
  12085. #u97815_text {
  12086. border-width:0px;
  12087. word-wrap:break-word;
  12088. text-transform:none;
  12089. visibility:hidden;
  12090. }
  12091. #u97816_img {
  12092. border-width:0px;
  12093. position:absolute;
  12094. left:0px;
  12095. top:0px;
  12096. width:74px;
  12097. height:35px;
  12098. }
  12099. #u97816 {
  12100. border-width:0px;
  12101. position:absolute;
  12102. left:82px;
  12103. top:295px;
  12104. width:74px;
  12105. height:35px;
  12106. display:flex;
  12107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12108. font-weight:400;
  12109. font-style:normal;
  12110. font-size:12px;
  12111. color:#606266;
  12112. }
  12113. #u97816 .text {
  12114. position:absolute;
  12115. align-self:center;
  12116. padding:2px 2px 2px 0px;
  12117. box-sizing:border-box;
  12118. width:100%;
  12119. }
  12120. #u97816_text {
  12121. border-width:0px;
  12122. word-wrap:break-word;
  12123. text-transform:none;
  12124. visibility:hidden;
  12125. }
  12126. #u97817_img {
  12127. border-width:0px;
  12128. position:absolute;
  12129. left:0px;
  12130. top:0px;
  12131. width:74px;
  12132. height:35px;
  12133. }
  12134. #u97817 {
  12135. border-width:0px;
  12136. position:absolute;
  12137. left:156px;
  12138. top:295px;
  12139. width:74px;
  12140. height:35px;
  12141. display:flex;
  12142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12143. font-weight:400;
  12144. font-style:normal;
  12145. font-size:12px;
  12146. color:#606266;
  12147. }
  12148. #u97817 .text {
  12149. position:absolute;
  12150. align-self:center;
  12151. padding:2px 2px 2px 0px;
  12152. box-sizing:border-box;
  12153. width:100%;
  12154. }
  12155. #u97817_text {
  12156. border-width:0px;
  12157. word-wrap:break-word;
  12158. text-transform:none;
  12159. visibility:hidden;
  12160. }
  12161. #u97818_img {
  12162. border-width:0px;
  12163. position:absolute;
  12164. left:0px;
  12165. top:0px;
  12166. width:83px;
  12167. height:35px;
  12168. }
  12169. #u97818 {
  12170. border-width:0px;
  12171. position:absolute;
  12172. left:230px;
  12173. top:295px;
  12174. width:83px;
  12175. height:35px;
  12176. display:flex;
  12177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12178. font-weight:400;
  12179. font-style:normal;
  12180. font-size:12px;
  12181. color:#606266;
  12182. }
  12183. #u97818 .text {
  12184. position:absolute;
  12185. align-self:center;
  12186. padding:2px 2px 2px 0px;
  12187. box-sizing:border-box;
  12188. width:100%;
  12189. }
  12190. #u97818_text {
  12191. border-width:0px;
  12192. word-wrap:break-word;
  12193. text-transform:none;
  12194. visibility:hidden;
  12195. }
  12196. #u97819_img {
  12197. border-width:0px;
  12198. position:absolute;
  12199. left:0px;
  12200. top:0px;
  12201. width:74px;
  12202. height:35px;
  12203. }
  12204. #u97819 {
  12205. border-width:0px;
  12206. position:absolute;
  12207. left:313px;
  12208. top:295px;
  12209. width:74px;
  12210. height:35px;
  12211. display:flex;
  12212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12213. font-weight:400;
  12214. font-style:normal;
  12215. font-size:12px;
  12216. color:#606266;
  12217. }
  12218. #u97819 .text {
  12219. position:absolute;
  12220. align-self:center;
  12221. padding:2px 2px 2px 0px;
  12222. box-sizing:border-box;
  12223. width:100%;
  12224. }
  12225. #u97819_text {
  12226. border-width:0px;
  12227. word-wrap:break-word;
  12228. text-transform:none;
  12229. visibility:hidden;
  12230. }
  12231. #u97820_img {
  12232. border-width:0px;
  12233. position:absolute;
  12234. left:0px;
  12235. top:0px;
  12236. width:82px;
  12237. height:35px;
  12238. }
  12239. #u97820 {
  12240. border-width:0px;
  12241. position:absolute;
  12242. left:387px;
  12243. top:295px;
  12244. width:82px;
  12245. height:35px;
  12246. display:flex;
  12247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12248. font-weight:400;
  12249. font-style:normal;
  12250. font-size:12px;
  12251. color:#606266;
  12252. }
  12253. #u97820 .text {
  12254. position:absolute;
  12255. align-self:center;
  12256. padding:2px 2px 2px 0px;
  12257. box-sizing:border-box;
  12258. width:100%;
  12259. }
  12260. #u97820_text {
  12261. border-width:0px;
  12262. word-wrap:break-word;
  12263. text-transform:none;
  12264. visibility:hidden;
  12265. }
  12266. #u97821_img {
  12267. border-width:0px;
  12268. position:absolute;
  12269. left:0px;
  12270. top:0px;
  12271. width:83px;
  12272. height:35px;
  12273. }
  12274. #u97821 {
  12275. border-width:0px;
  12276. position:absolute;
  12277. left:469px;
  12278. top:295px;
  12279. width:83px;
  12280. height:35px;
  12281. display:flex;
  12282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12283. font-weight:400;
  12284. font-style:normal;
  12285. font-size:12px;
  12286. color:#606266;
  12287. }
  12288. #u97821 .text {
  12289. position:absolute;
  12290. align-self:center;
  12291. padding:2px 2px 2px 0px;
  12292. box-sizing:border-box;
  12293. width:100%;
  12294. }
  12295. #u97821_text {
  12296. border-width:0px;
  12297. word-wrap:break-word;
  12298. text-transform:none;
  12299. visibility:hidden;
  12300. }
  12301. #u97822_img {
  12302. border-width:0px;
  12303. position:absolute;
  12304. left:0px;
  12305. top:0px;
  12306. width:82px;
  12307. height:35px;
  12308. }
  12309. #u97822 {
  12310. border-width:0px;
  12311. position:absolute;
  12312. left:552px;
  12313. top:295px;
  12314. width:82px;
  12315. height:35px;
  12316. display:flex;
  12317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12318. font-weight:400;
  12319. font-style:normal;
  12320. font-size:12px;
  12321. color:#606266;
  12322. }
  12323. #u97822 .text {
  12324. position:absolute;
  12325. align-self:center;
  12326. padding:2px 2px 2px 0px;
  12327. box-sizing:border-box;
  12328. width:100%;
  12329. }
  12330. #u97822_text {
  12331. border-width:0px;
  12332. word-wrap:break-word;
  12333. text-transform:none;
  12334. visibility:hidden;
  12335. }
  12336. #u97823_img {
  12337. border-width:0px;
  12338. position:absolute;
  12339. left:0px;
  12340. top:0px;
  12341. width:81px;
  12342. height:35px;
  12343. }
  12344. #u97823 {
  12345. border-width:0px;
  12346. position:absolute;
  12347. left:634px;
  12348. top:295px;
  12349. width:81px;
  12350. height:35px;
  12351. display:flex;
  12352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12353. font-weight:400;
  12354. font-style:normal;
  12355. font-size:12px;
  12356. color:#606266;
  12357. }
  12358. #u97823 .text {
  12359. position:absolute;
  12360. align-self:center;
  12361. padding:2px 2px 2px 0px;
  12362. box-sizing:border-box;
  12363. width:100%;
  12364. }
  12365. #u97823_text {
  12366. border-width:0px;
  12367. word-wrap:break-word;
  12368. text-transform:none;
  12369. visibility:hidden;
  12370. }
  12371. #u97824_img {
  12372. border-width:0px;
  12373. position:absolute;
  12374. left:0px;
  12375. top:0px;
  12376. width:81px;
  12377. height:35px;
  12378. }
  12379. #u97824 {
  12380. border-width:0px;
  12381. position:absolute;
  12382. left:715px;
  12383. top:295px;
  12384. width:81px;
  12385. height:35px;
  12386. display:flex;
  12387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12388. font-weight:400;
  12389. font-style:normal;
  12390. font-size:12px;
  12391. color:#606266;
  12392. }
  12393. #u97824 .text {
  12394. position:absolute;
  12395. align-self:center;
  12396. padding:2px 2px 2px 0px;
  12397. box-sizing:border-box;
  12398. width:100%;
  12399. }
  12400. #u97824_text {
  12401. border-width:0px;
  12402. word-wrap:break-word;
  12403. text-transform:none;
  12404. visibility:hidden;
  12405. }
  12406. #u97825_img {
  12407. border-width:0px;
  12408. position:absolute;
  12409. left:0px;
  12410. top:0px;
  12411. width:83px;
  12412. height:35px;
  12413. }
  12414. #u97825 {
  12415. border-width:0px;
  12416. position:absolute;
  12417. left:796px;
  12418. top:295px;
  12419. width:83px;
  12420. height:35px;
  12421. display:flex;
  12422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12423. font-weight:400;
  12424. font-style:normal;
  12425. font-size:12px;
  12426. color:#606266;
  12427. }
  12428. #u97825 .text {
  12429. position:absolute;
  12430. align-self:center;
  12431. padding:2px 2px 2px 0px;
  12432. box-sizing:border-box;
  12433. width:100%;
  12434. }
  12435. #u97825_text {
  12436. border-width:0px;
  12437. word-wrap:break-word;
  12438. text-transform:none;
  12439. visibility:hidden;
  12440. }
  12441. #u97826_img {
  12442. border-width:0px;
  12443. position:absolute;
  12444. left:0px;
  12445. top:0px;
  12446. width:83px;
  12447. height:35px;
  12448. }
  12449. #u97826 {
  12450. border-width:0px;
  12451. position:absolute;
  12452. left:879px;
  12453. top:295px;
  12454. width:83px;
  12455. height:35px;
  12456. display:flex;
  12457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12458. font-weight:400;
  12459. font-style:normal;
  12460. font-size:12px;
  12461. color:#606266;
  12462. }
  12463. #u97826 .text {
  12464. position:absolute;
  12465. align-self:center;
  12466. padding:2px 2px 2px 0px;
  12467. box-sizing:border-box;
  12468. width:100%;
  12469. }
  12470. #u97826_text {
  12471. border-width:0px;
  12472. word-wrap:break-word;
  12473. text-transform:none;
  12474. visibility:hidden;
  12475. }
  12476. #u97827_img {
  12477. border-width:0px;
  12478. position:absolute;
  12479. left:0px;
  12480. top:0px;
  12481. width:81px;
  12482. height:35px;
  12483. }
  12484. #u97827 {
  12485. border-width:0px;
  12486. position:absolute;
  12487. left:962px;
  12488. top:295px;
  12489. width:81px;
  12490. height:35px;
  12491. display:flex;
  12492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12493. font-weight:400;
  12494. font-style:normal;
  12495. font-size:12px;
  12496. color:#606266;
  12497. }
  12498. #u97827 .text {
  12499. position:absolute;
  12500. align-self:center;
  12501. padding:2px 2px 2px 0px;
  12502. box-sizing:border-box;
  12503. width:100%;
  12504. }
  12505. #u97827_text {
  12506. border-width:0px;
  12507. word-wrap:break-word;
  12508. text-transform:none;
  12509. visibility:hidden;
  12510. }
  12511. #u97828_img {
  12512. border-width:0px;
  12513. position:absolute;
  12514. left:0px;
  12515. top:0px;
  12516. width:81px;
  12517. height:35px;
  12518. }
  12519. #u97828 {
  12520. border-width:0px;
  12521. position:absolute;
  12522. left:1043px;
  12523. top:295px;
  12524. width:81px;
  12525. height:35px;
  12526. display:flex;
  12527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12528. font-weight:400;
  12529. font-style:normal;
  12530. font-size:12px;
  12531. color:#606266;
  12532. }
  12533. #u97828 .text {
  12534. position:absolute;
  12535. align-self:center;
  12536. padding:2px 2px 2px 0px;
  12537. box-sizing:border-box;
  12538. width:100%;
  12539. }
  12540. #u97828_text {
  12541. border-width:0px;
  12542. word-wrap:break-word;
  12543. text-transform:none;
  12544. visibility:hidden;
  12545. }
  12546. #u97829_img {
  12547. border-width:0px;
  12548. position:absolute;
  12549. left:0px;
  12550. top:0px;
  12551. width:98px;
  12552. height:35px;
  12553. }
  12554. #u97829 {
  12555. border-width:0px;
  12556. position:absolute;
  12557. left:1124px;
  12558. top:295px;
  12559. width:98px;
  12560. height:35px;
  12561. display:flex;
  12562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12563. font-weight:400;
  12564. font-style:normal;
  12565. font-size:12px;
  12566. color:#02A7F0;
  12567. }
  12568. #u97829 .text {
  12569. position:absolute;
  12570. align-self:center;
  12571. padding:2px 2px 2px 0px;
  12572. box-sizing:border-box;
  12573. width:100%;
  12574. }
  12575. #u97829_text {
  12576. border-width:0px;
  12577. word-wrap:break-word;
  12578. text-transform:none;
  12579. visibility:hidden;
  12580. }
  12581. #u97830_img {
  12582. border-width:0px;
  12583. position:absolute;
  12584. left:0px;
  12585. top:0px;
  12586. width:82px;
  12587. height:33px;
  12588. }
  12589. #u97830 {
  12590. border-width:0px;
  12591. position:absolute;
  12592. left:0px;
  12593. top:330px;
  12594. width:82px;
  12595. height:33px;
  12596. display:flex;
  12597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12598. font-weight:400;
  12599. font-style:normal;
  12600. font-size:12px;
  12601. color:#606266;
  12602. }
  12603. #u97830 .text {
  12604. position:absolute;
  12605. align-self:center;
  12606. padding:2px 2px 2px 0px;
  12607. box-sizing:border-box;
  12608. width:100%;
  12609. }
  12610. #u97830_text {
  12611. border-width:0px;
  12612. word-wrap:break-word;
  12613. text-transform:none;
  12614. visibility:hidden;
  12615. }
  12616. #u97831_img {
  12617. border-width:0px;
  12618. position:absolute;
  12619. left:0px;
  12620. top:0px;
  12621. width:74px;
  12622. height:33px;
  12623. }
  12624. #u97831 {
  12625. border-width:0px;
  12626. position:absolute;
  12627. left:82px;
  12628. top:330px;
  12629. width:74px;
  12630. height:33px;
  12631. display:flex;
  12632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12633. font-weight:400;
  12634. font-style:normal;
  12635. font-size:12px;
  12636. color:#606266;
  12637. }
  12638. #u97831 .text {
  12639. position:absolute;
  12640. align-self:center;
  12641. padding:2px 2px 2px 0px;
  12642. box-sizing:border-box;
  12643. width:100%;
  12644. }
  12645. #u97831_text {
  12646. border-width:0px;
  12647. word-wrap:break-word;
  12648. text-transform:none;
  12649. visibility:hidden;
  12650. }
  12651. #u97832_img {
  12652. border-width:0px;
  12653. position:absolute;
  12654. left:0px;
  12655. top:0px;
  12656. width:74px;
  12657. height:33px;
  12658. }
  12659. #u97832 {
  12660. border-width:0px;
  12661. position:absolute;
  12662. left:156px;
  12663. top:330px;
  12664. width:74px;
  12665. height:33px;
  12666. display:flex;
  12667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12668. font-weight:400;
  12669. font-style:normal;
  12670. font-size:12px;
  12671. color:#606266;
  12672. }
  12673. #u97832 .text {
  12674. position:absolute;
  12675. align-self:center;
  12676. padding:2px 2px 2px 0px;
  12677. box-sizing:border-box;
  12678. width:100%;
  12679. }
  12680. #u97832_text {
  12681. border-width:0px;
  12682. word-wrap:break-word;
  12683. text-transform:none;
  12684. visibility:hidden;
  12685. }
  12686. #u97833_img {
  12687. border-width:0px;
  12688. position:absolute;
  12689. left:0px;
  12690. top:0px;
  12691. width:83px;
  12692. height:33px;
  12693. }
  12694. #u97833 {
  12695. border-width:0px;
  12696. position:absolute;
  12697. left:230px;
  12698. top:330px;
  12699. width:83px;
  12700. height:33px;
  12701. display:flex;
  12702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12703. font-weight:400;
  12704. font-style:normal;
  12705. font-size:12px;
  12706. color:#606266;
  12707. }
  12708. #u97833 .text {
  12709. position:absolute;
  12710. align-self:center;
  12711. padding:2px 2px 2px 0px;
  12712. box-sizing:border-box;
  12713. width:100%;
  12714. }
  12715. #u97833_text {
  12716. border-width:0px;
  12717. word-wrap:break-word;
  12718. text-transform:none;
  12719. visibility:hidden;
  12720. }
  12721. #u97834_img {
  12722. border-width:0px;
  12723. position:absolute;
  12724. left:0px;
  12725. top:0px;
  12726. width:74px;
  12727. height:33px;
  12728. }
  12729. #u97834 {
  12730. border-width:0px;
  12731. position:absolute;
  12732. left:313px;
  12733. top:330px;
  12734. width:74px;
  12735. height:33px;
  12736. display:flex;
  12737. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12738. font-weight:400;
  12739. font-style:normal;
  12740. font-size:12px;
  12741. color:#606266;
  12742. }
  12743. #u97834 .text {
  12744. position:absolute;
  12745. align-self:center;
  12746. padding:2px 2px 2px 0px;
  12747. box-sizing:border-box;
  12748. width:100%;
  12749. }
  12750. #u97834_text {
  12751. border-width:0px;
  12752. word-wrap:break-word;
  12753. text-transform:none;
  12754. visibility:hidden;
  12755. }
  12756. #u97835_img {
  12757. border-width:0px;
  12758. position:absolute;
  12759. left:0px;
  12760. top:0px;
  12761. width:82px;
  12762. height:33px;
  12763. }
  12764. #u97835 {
  12765. border-width:0px;
  12766. position:absolute;
  12767. left:387px;
  12768. top:330px;
  12769. width:82px;
  12770. height:33px;
  12771. display:flex;
  12772. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12773. font-weight:400;
  12774. font-style:normal;
  12775. font-size:12px;
  12776. color:#606266;
  12777. }
  12778. #u97835 .text {
  12779. position:absolute;
  12780. align-self:center;
  12781. padding:2px 2px 2px 0px;
  12782. box-sizing:border-box;
  12783. width:100%;
  12784. }
  12785. #u97835_text {
  12786. border-width:0px;
  12787. word-wrap:break-word;
  12788. text-transform:none;
  12789. visibility:hidden;
  12790. }
  12791. #u97836_img {
  12792. border-width:0px;
  12793. position:absolute;
  12794. left:0px;
  12795. top:0px;
  12796. width:83px;
  12797. height:33px;
  12798. }
  12799. #u97836 {
  12800. border-width:0px;
  12801. position:absolute;
  12802. left:469px;
  12803. top:330px;
  12804. width:83px;
  12805. height:33px;
  12806. display:flex;
  12807. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12808. font-weight:400;
  12809. font-style:normal;
  12810. font-size:12px;
  12811. color:#606266;
  12812. }
  12813. #u97836 .text {
  12814. position:absolute;
  12815. align-self:center;
  12816. padding:2px 2px 2px 0px;
  12817. box-sizing:border-box;
  12818. width:100%;
  12819. }
  12820. #u97836_text {
  12821. border-width:0px;
  12822. word-wrap:break-word;
  12823. text-transform:none;
  12824. visibility:hidden;
  12825. }
  12826. #u97837_img {
  12827. border-width:0px;
  12828. position:absolute;
  12829. left:0px;
  12830. top:0px;
  12831. width:82px;
  12832. height:33px;
  12833. }
  12834. #u97837 {
  12835. border-width:0px;
  12836. position:absolute;
  12837. left:552px;
  12838. top:330px;
  12839. width:82px;
  12840. height:33px;
  12841. display:flex;
  12842. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12843. font-weight:400;
  12844. font-style:normal;
  12845. font-size:12px;
  12846. color:#606266;
  12847. }
  12848. #u97837 .text {
  12849. position:absolute;
  12850. align-self:center;
  12851. padding:2px 2px 2px 0px;
  12852. box-sizing:border-box;
  12853. width:100%;
  12854. }
  12855. #u97837_text {
  12856. border-width:0px;
  12857. word-wrap:break-word;
  12858. text-transform:none;
  12859. visibility:hidden;
  12860. }
  12861. #u97838_img {
  12862. border-width:0px;
  12863. position:absolute;
  12864. left:0px;
  12865. top:0px;
  12866. width:81px;
  12867. height:33px;
  12868. }
  12869. #u97838 {
  12870. border-width:0px;
  12871. position:absolute;
  12872. left:634px;
  12873. top:330px;
  12874. width:81px;
  12875. height:33px;
  12876. display:flex;
  12877. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12878. font-weight:400;
  12879. font-style:normal;
  12880. font-size:12px;
  12881. color:#606266;
  12882. }
  12883. #u97838 .text {
  12884. position:absolute;
  12885. align-self:center;
  12886. padding:2px 2px 2px 0px;
  12887. box-sizing:border-box;
  12888. width:100%;
  12889. }
  12890. #u97838_text {
  12891. border-width:0px;
  12892. word-wrap:break-word;
  12893. text-transform:none;
  12894. visibility:hidden;
  12895. }
  12896. #u97839_img {
  12897. border-width:0px;
  12898. position:absolute;
  12899. left:0px;
  12900. top:0px;
  12901. width:81px;
  12902. height:33px;
  12903. }
  12904. #u97839 {
  12905. border-width:0px;
  12906. position:absolute;
  12907. left:715px;
  12908. top:330px;
  12909. width:81px;
  12910. height:33px;
  12911. display:flex;
  12912. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12913. font-weight:400;
  12914. font-style:normal;
  12915. font-size:12px;
  12916. color:#606266;
  12917. }
  12918. #u97839 .text {
  12919. position:absolute;
  12920. align-self:center;
  12921. padding:2px 2px 2px 0px;
  12922. box-sizing:border-box;
  12923. width:100%;
  12924. }
  12925. #u97839_text {
  12926. border-width:0px;
  12927. word-wrap:break-word;
  12928. text-transform:none;
  12929. visibility:hidden;
  12930. }
  12931. #u97840_img {
  12932. border-width:0px;
  12933. position:absolute;
  12934. left:0px;
  12935. top:0px;
  12936. width:83px;
  12937. height:33px;
  12938. }
  12939. #u97840 {
  12940. border-width:0px;
  12941. position:absolute;
  12942. left:796px;
  12943. top:330px;
  12944. width:83px;
  12945. height:33px;
  12946. display:flex;
  12947. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12948. font-weight:400;
  12949. font-style:normal;
  12950. font-size:12px;
  12951. color:#606266;
  12952. }
  12953. #u97840 .text {
  12954. position:absolute;
  12955. align-self:center;
  12956. padding:2px 2px 2px 0px;
  12957. box-sizing:border-box;
  12958. width:100%;
  12959. }
  12960. #u97840_text {
  12961. border-width:0px;
  12962. word-wrap:break-word;
  12963. text-transform:none;
  12964. visibility:hidden;
  12965. }
  12966. #u97841_img {
  12967. border-width:0px;
  12968. position:absolute;
  12969. left:0px;
  12970. top:0px;
  12971. width:83px;
  12972. height:33px;
  12973. }
  12974. #u97841 {
  12975. border-width:0px;
  12976. position:absolute;
  12977. left:879px;
  12978. top:330px;
  12979. width:83px;
  12980. height:33px;
  12981. display:flex;
  12982. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12983. font-weight:400;
  12984. font-style:normal;
  12985. font-size:12px;
  12986. color:#606266;
  12987. }
  12988. #u97841 .text {
  12989. position:absolute;
  12990. align-self:center;
  12991. padding:2px 2px 2px 0px;
  12992. box-sizing:border-box;
  12993. width:100%;
  12994. }
  12995. #u97841_text {
  12996. border-width:0px;
  12997. word-wrap:break-word;
  12998. text-transform:none;
  12999. visibility:hidden;
  13000. }
  13001. #u97842_img {
  13002. border-width:0px;
  13003. position:absolute;
  13004. left:0px;
  13005. top:0px;
  13006. width:81px;
  13007. height:33px;
  13008. }
  13009. #u97842 {
  13010. border-width:0px;
  13011. position:absolute;
  13012. left:962px;
  13013. top:330px;
  13014. width:81px;
  13015. height:33px;
  13016. display:flex;
  13017. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  13018. font-weight:400;
  13019. font-style:normal;
  13020. font-size:12px;
  13021. color:#606266;
  13022. }
  13023. #u97842 .text {
  13024. position:absolute;
  13025. align-self:center;
  13026. padding:2px 2px 2px 0px;
  13027. box-sizing:border-box;
  13028. width:100%;
  13029. }
  13030. #u97842_text {
  13031. border-width:0px;
  13032. word-wrap:break-word;
  13033. text-transform:none;
  13034. visibility:hidden;
  13035. }
  13036. #u97843_img {
  13037. border-width:0px;
  13038. position:absolute;
  13039. left:0px;
  13040. top:0px;
  13041. width:81px;
  13042. height:33px;
  13043. }
  13044. #u97843 {
  13045. border-width:0px;
  13046. position:absolute;
  13047. left:1043px;
  13048. top:330px;
  13049. width:81px;
  13050. height:33px;
  13051. display:flex;
  13052. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  13053. font-weight:400;
  13054. font-style:normal;
  13055. font-size:12px;
  13056. color:#606266;
  13057. }
  13058. #u97843 .text {
  13059. position:absolute;
  13060. align-self:center;
  13061. padding:2px 2px 2px 0px;
  13062. box-sizing:border-box;
  13063. width:100%;
  13064. }
  13065. #u97843_text {
  13066. border-width:0px;
  13067. word-wrap:break-word;
  13068. text-transform:none;
  13069. visibility:hidden;
  13070. }
  13071. #u97844_img {
  13072. border-width:0px;
  13073. position:absolute;
  13074. left:0px;
  13075. top:0px;
  13076. width:98px;
  13077. height:33px;
  13078. }
  13079. #u97844 {
  13080. border-width:0px;
  13081. position:absolute;
  13082. left:1124px;
  13083. top:330px;
  13084. width:98px;
  13085. height:33px;
  13086. display:flex;
  13087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13088. font-weight:400;
  13089. font-style:normal;
  13090. font-size:12px;
  13091. color:#02A7F0;
  13092. }
  13093. #u97844 .text {
  13094. position:absolute;
  13095. align-self:center;
  13096. padding:2px 2px 2px 0px;
  13097. box-sizing:border-box;
  13098. width:100%;
  13099. }
  13100. #u97844_text {
  13101. border-width:0px;
  13102. word-wrap:break-word;
  13103. text-transform:none;
  13104. visibility:hidden;
  13105. }
  13106. #u97845_img {
  13107. border-width:0px;
  13108. position:absolute;
  13109. left:0px;
  13110. top:0px;
  13111. width:12px;
  13112. height:12px;
  13113. }
  13114. #u97845 {
  13115. border-width:0px;
  13116. position:absolute;
  13117. left:2545px;
  13118. top:360px;
  13119. width:12px;
  13120. height:12px;
  13121. display:flex;
  13122. }
  13123. #u97845 .text {
  13124. position:absolute;
  13125. align-self:center;
  13126. padding:2px 2px 2px 2px;
  13127. box-sizing:border-box;
  13128. width:100%;
  13129. }
  13130. #u97845_text {
  13131. border-width:0px;
  13132. word-wrap:break-word;
  13133. text-transform:none;
  13134. visibility:hidden;
  13135. }
  13136. #u97846_div {
  13137. border-width:0px;
  13138. position:absolute;
  13139. left:0px;
  13140. top:0px;
  13141. width:633px;
  13142. height:220px;
  13143. background:inherit;
  13144. background-color:rgba(255, 255, 255, 0);
  13145. border:none;
  13146. border-top:0px;
  13147. border-right:0px;
  13148. border-bottom:0px;
  13149. border-radius:0px;
  13150. border-top-left-radius:0px;
  13151. border-bottom-left-radius:0px;
  13152. -moz-box-shadow:none;
  13153. -webkit-box-shadow:none;
  13154. box-shadow:none;
  13155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13156. font-weight:400;
  13157. font-style:normal;
  13158. font-size:18px;
  13159. color:#D9001B;
  13160. line-height:30px;
  13161. }
  13162. #u97846 {
  13163. border-width:0px;
  13164. position:absolute;
  13165. left:2952px;
  13166. top:224px;
  13167. width:633px;
  13168. height:220px;
  13169. display:flex;
  13170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13171. font-weight:400;
  13172. font-style:normal;
  13173. font-size:18px;
  13174. color:#D9001B;
  13175. line-height:30px;
  13176. }
  13177. #u97846 .text {
  13178. position:absolute;
  13179. align-self:center;
  13180. padding:5px 10px 5px 0px;
  13181. box-sizing:border-box;
  13182. width:100%;
  13183. }
  13184. #u97846_text {
  13185. border-width:0px;
  13186. word-wrap:break-word;
  13187. text-transform:none;
  13188. }