styles.css 202 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1825px;
  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. #u24393_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u24393 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u24393 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u24393_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u24394_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u24394 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u24394 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u24394_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u24395 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u24396_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u24396 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u24396 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u24396_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u24397_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u24397 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u24397 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u24397_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u24398_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u24398 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u24398 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u24398_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u24399_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u24399 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u24399 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u24399_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u24400 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u24401_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u24401 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u24401 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u24401_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u24402_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u24402 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u24402 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u24402_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u24403 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u24404_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u24404 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u24404 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u24404_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u24405_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u24405 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u24405 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u24405_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u24406 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u24407_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u24407 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u24407 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u24407_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u24408_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u24408 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u24408 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u24408_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u24409 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u24410_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u24410 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u24410 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u24410_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u24411_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u24411 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u24411 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u24411_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u24412 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u24413_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u24413 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u24413 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u24413_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u24414_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u24414 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u24414 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u24414_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u24415 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u24416_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u24416 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u24416 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u24416_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u24417_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u24417 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u24417 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u24417_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u24418 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u24419_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u24419 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u24419 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u24419_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u24420_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u24420 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u24420 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u24420_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u24421 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u24422_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u24422 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u24422 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u24422_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u24423_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u24423 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u24423 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u24423_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u24424 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u24425_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u24425 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:529px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u24425 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u24425_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u24426_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u24426 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u24426 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u24426_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u24427_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:214px;
  1014. height:27px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'ArialMT', 'Arial', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#FFFFFF;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u24427_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:214px;
  1033. height:27px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'ArialMT', 'Arial', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#FFFFFF;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u24427_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:214px;
  1053. height:27px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-size:14px;
  1062. color:#FFFFFF;
  1063. }
  1064. #u24427 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:1221px;
  1068. top:10px;
  1069. width:214px;
  1070. height:27px;
  1071. display:flex;
  1072. font-size:14px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u24427 .text {
  1076. position:absolute;
  1077. align-self:flex-start;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u24427_div.disabled {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:214px;
  1088. height:27px;
  1089. background:inherit;
  1090. background-color:rgba(240, 240, 240, 1);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-size:14px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u24427.disabled {
  1100. }
  1101. .u24427_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u24428_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u24428 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u24428 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u24428_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u24429_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:100px;
  1140. height:24px;
  1141. background:inherit;
  1142. background-color:rgba(242, 242, 242, 0.2);
  1143. border:none;
  1144. border-radius:25px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. color:#FFFFFF;
  1152. text-align:center;
  1153. }
  1154. #u24429 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1480px;
  1158. top:12px;
  1159. width:100px;
  1160. height:24px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. color:#FFFFFF;
  1166. text-align:center;
  1167. }
  1168. #u24429 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u24429_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u24430_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u24430 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u24430 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u24430_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u24431 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u24432_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:33px;
  1224. height:22px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-radius:0px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:16px;
  1236. color:#FFFFFF;
  1237. }
  1238. #u24432 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:39px;
  1242. top:319px;
  1243. width:33px;
  1244. height:22px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. color:#FFFFFF;
  1251. }
  1252. #u24432 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u24432_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u24433_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u24433 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u24433 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u24433_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u24434 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u24435_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u24435 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:361px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u24435 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u24435_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u24436_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u24436 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u24436 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u24436_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u24437 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u24438_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u24438 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:151px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u24438 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u24438_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u24439_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u24439 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u24439 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u24439_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u24440 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u24441_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u24441 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:487px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u24441 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u24441_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u24442_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u24442 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u24442 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u24442_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u24443 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u24444_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u24444 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:193px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u24444 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u24444_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u24445_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u24445 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u24445 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u24445_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u24446_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:1259px;
  1636. height:100px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 1);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1642. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1643. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1644. }
  1645. #u24446 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:330px;
  1649. top:50px;
  1650. width:1259px;
  1651. height:100px;
  1652. display:flex;
  1653. }
  1654. #u24446 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u24446_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u24447_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:37px;
  1673. height:50px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 0);
  1676. border:none;
  1677. border-left:0px;
  1678. border-top:0px;
  1679. border-right:0px;
  1680. border-radius:0px;
  1681. border-bottom-right-radius:0px;
  1682. border-bottom-left-radius:0px;
  1683. -moz-box-shadow:none;
  1684. -webkit-box-shadow:none;
  1685. box-shadow:none;
  1686. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1687. font-weight:500;
  1688. font-style:normal;
  1689. font-size:18px;
  1690. color:#298FFF;
  1691. }
  1692. #u24447 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:358px;
  1696. top:100px;
  1697. width:37px;
  1698. height:50px;
  1699. display:flex;
  1700. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1701. font-weight:500;
  1702. font-style:normal;
  1703. font-size:18px;
  1704. color:#298FFF;
  1705. }
  1706. #u24447 .text {
  1707. position:absolute;
  1708. align-self:center;
  1709. padding:0px 0px 0px 0px;
  1710. box-sizing:border-box;
  1711. width:100%;
  1712. }
  1713. #u24447_text {
  1714. border-width:0px;
  1715. white-space:nowrap;
  1716. text-transform:none;
  1717. }
  1718. #u24448_div {
  1719. border-width:0px;
  1720. position:absolute;
  1721. left:0px;
  1722. top:0px;
  1723. width:73px;
  1724. height:50px;
  1725. background:inherit;
  1726. background-color:rgba(255, 255, 255, 0);
  1727. border:none;
  1728. border-left:0px;
  1729. border-top:0px;
  1730. border-right:0px;
  1731. border-radius:0px;
  1732. border-bottom-right-radius:0px;
  1733. border-bottom-left-radius:0px;
  1734. -moz-box-shadow:none;
  1735. -webkit-box-shadow:none;
  1736. box-shadow:none;
  1737. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1738. font-weight:500;
  1739. font-style:normal;
  1740. font-size:18px;
  1741. }
  1742. #u24448 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:425px;
  1746. top:100px;
  1747. width:73px;
  1748. height:50px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1751. font-weight:500;
  1752. font-style:normal;
  1753. font-size:18px;
  1754. }
  1755. #u24448 .text {
  1756. position:absolute;
  1757. align-self:center;
  1758. padding:0px 0px 0px 0px;
  1759. box-sizing:border-box;
  1760. width:100%;
  1761. }
  1762. #u24448_text {
  1763. border-width:0px;
  1764. white-space:nowrap;
  1765. text-transform:none;
  1766. }
  1767. #u24449_div {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:1259px;
  1773. height:1070px;
  1774. background:inherit;
  1775. background-color:rgba(255, 255, 255, 1);
  1776. border:none;
  1777. border-radius:0px;
  1778. -moz-box-shadow:none;
  1779. -webkit-box-shadow:none;
  1780. box-shadow:none;
  1781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1782. font-weight:400;
  1783. font-style:normal;
  1784. font-size:12px;
  1785. color:#FFFFFF;
  1786. text-align:left;
  1787. }
  1788. #u24449 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:330px;
  1792. top:160px;
  1793. width:1259px;
  1794. height:1070px;
  1795. display:flex;
  1796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1797. font-weight:400;
  1798. font-style:normal;
  1799. font-size:12px;
  1800. color:#FFFFFF;
  1801. text-align:left;
  1802. }
  1803. #u24449 .text {
  1804. position:absolute;
  1805. align-self:center;
  1806. padding:2px 2px 2px 50px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u24449_text {
  1811. border-width:0px;
  1812. word-wrap:break-word;
  1813. text-transform:none;
  1814. visibility:hidden;
  1815. }
  1816. #u24450 {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:350px;
  1820. top:318px;
  1821. width:1475px;
  1822. height:381px;
  1823. }
  1824. #u24451_img {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:65px;
  1830. height:38px;
  1831. }
  1832. #u24451 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:65px;
  1838. height:38px;
  1839. display:flex;
  1840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1841. font-weight:400;
  1842. font-style:normal;
  1843. font-size:12px;
  1844. color:#FFFFFF;
  1845. }
  1846. #u24451 .text {
  1847. position:absolute;
  1848. align-self:center;
  1849. padding:2px 2px 2px 0px;
  1850. box-sizing:border-box;
  1851. width:100%;
  1852. }
  1853. #u24451_text {
  1854. border-width:0px;
  1855. word-wrap:break-word;
  1856. text-transform:none;
  1857. }
  1858. #u24452_img {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:80px;
  1864. height:38px;
  1865. }
  1866. #u24452 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:65px;
  1870. top:0px;
  1871. width:80px;
  1872. height:38px;
  1873. display:flex;
  1874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1875. font-weight:400;
  1876. font-style:normal;
  1877. font-size:12px;
  1878. color:#FFFFFF;
  1879. }
  1880. #u24452 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 2px 2px 0px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u24452_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. }
  1892. #u24453_img {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:80px;
  1898. height:38px;
  1899. }
  1900. #u24453 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:145px;
  1904. top:0px;
  1905. width:80px;
  1906. height:38px;
  1907. display:flex;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:12px;
  1912. color:#FFFFFF;
  1913. }
  1914. #u24453 .text {
  1915. position:absolute;
  1916. align-self:center;
  1917. padding:2px 2px 2px 0px;
  1918. box-sizing:border-box;
  1919. width:100%;
  1920. }
  1921. #u24453_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. }
  1926. #u24454_img {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:80px;
  1932. height:38px;
  1933. }
  1934. #u24454 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:225px;
  1938. top:0px;
  1939. width:80px;
  1940. height:38px;
  1941. display:flex;
  1942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:12px;
  1946. color:#FFFFFF;
  1947. }
  1948. #u24454 .text {
  1949. position:absolute;
  1950. align-self:center;
  1951. padding:2px 2px 2px 0px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u24454_text {
  1956. border-width:0px;
  1957. word-wrap:break-word;
  1958. text-transform:none;
  1959. }
  1960. #u24455_img {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:80px;
  1966. height:38px;
  1967. }
  1968. #u24455 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:305px;
  1972. top:0px;
  1973. width:80px;
  1974. height:38px;
  1975. display:flex;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:12px;
  1980. color:#FFFFFF;
  1981. }
  1982. #u24455 .text {
  1983. position:absolute;
  1984. align-self:center;
  1985. padding:2px 2px 2px 0px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u24455_text {
  1990. border-width:0px;
  1991. word-wrap:break-word;
  1992. text-transform:none;
  1993. }
  1994. #u24456_img {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:81px;
  2000. height:38px;
  2001. }
  2002. #u24456 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:385px;
  2006. top:0px;
  2007. width:81px;
  2008. height:38px;
  2009. display:flex;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:12px;
  2014. color:#FFFFFF;
  2015. }
  2016. #u24456 .text {
  2017. position:absolute;
  2018. align-self:center;
  2019. padding:2px 2px 2px 0px;
  2020. box-sizing:border-box;
  2021. width:100%;
  2022. }
  2023. #u24456_text {
  2024. border-width:0px;
  2025. word-wrap:break-word;
  2026. text-transform:none;
  2027. }
  2028. #u24457_img {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:81px;
  2034. height:38px;
  2035. }
  2036. #u24457 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:466px;
  2040. top:0px;
  2041. width:81px;
  2042. height:38px;
  2043. display:flex;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. font-size:12px;
  2048. color:#FFFFFF;
  2049. }
  2050. #u24457 .text {
  2051. position:absolute;
  2052. align-self:center;
  2053. padding:2px 2px 2px 0px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u24457_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u24458_img {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:81px;
  2068. height:38px;
  2069. }
  2070. #u24458 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:547px;
  2074. top:0px;
  2075. width:81px;
  2076. height:38px;
  2077. display:flex;
  2078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:12px;
  2082. color:#FFFFFF;
  2083. }
  2084. #u24458 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 0px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u24458_text {
  2092. border-width:0px;
  2093. word-wrap:break-word;
  2094. text-transform:none;
  2095. }
  2096. #u24459_img {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:65px;
  2102. height:38px;
  2103. }
  2104. #u24459 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:628px;
  2108. top:0px;
  2109. width:65px;
  2110. height:38px;
  2111. display:flex;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:12px;
  2116. color:#FFFFFF;
  2117. }
  2118. #u24459 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u24459_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. }
  2130. #u24460_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:65px;
  2136. height:38px;
  2137. }
  2138. #u24460 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:693px;
  2142. top:0px;
  2143. width:65px;
  2144. height:38px;
  2145. display:flex;
  2146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:12px;
  2150. color:#FFFFFF;
  2151. }
  2152. #u24460 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:2px 2px 2px 0px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u24460_text {
  2160. border-width:0px;
  2161. word-wrap:break-word;
  2162. text-transform:none;
  2163. }
  2164. #u24461_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:65px;
  2170. height:38px;
  2171. }
  2172. #u24461 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:758px;
  2176. top:0px;
  2177. width:65px;
  2178. height:38px;
  2179. display:flex;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:12px;
  2184. color:#FFFFFF;
  2185. }
  2186. #u24461 .text {
  2187. position:absolute;
  2188. align-self:center;
  2189. padding:2px 2px 2px 0px;
  2190. box-sizing:border-box;
  2191. width:100%;
  2192. }
  2193. #u24461_text {
  2194. border-width:0px;
  2195. word-wrap:break-word;
  2196. text-transform:none;
  2197. }
  2198. #u24462_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:72px;
  2204. height:38px;
  2205. }
  2206. #u24462 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:823px;
  2210. top:0px;
  2211. width:72px;
  2212. height:38px;
  2213. display:flex;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:12px;
  2218. color:#FFFFFF;
  2219. }
  2220. #u24462 .text {
  2221. position:absolute;
  2222. align-self:center;
  2223. padding:2px 2px 2px 0px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u24462_text {
  2228. border-width:0px;
  2229. word-wrap:break-word;
  2230. text-transform:none;
  2231. }
  2232. #u24463_img {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:75px;
  2238. height:38px;
  2239. }
  2240. #u24463 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:895px;
  2244. top:0px;
  2245. width:75px;
  2246. height:38px;
  2247. display:flex;
  2248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:12px;
  2252. color:#FFFFFF;
  2253. }
  2254. #u24463 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 2px 2px 0px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u24463_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. }
  2266. #u24464_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:75px;
  2272. height:38px;
  2273. }
  2274. #u24464 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:970px;
  2278. top:0px;
  2279. width:75px;
  2280. height:38px;
  2281. display:flex;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:12px;
  2286. color:#FFFFFF;
  2287. }
  2288. #u24464 .text {
  2289. position:absolute;
  2290. align-self:center;
  2291. padding:2px 2px 2px 0px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u24464_text {
  2296. border-width:0px;
  2297. word-wrap:break-word;
  2298. text-transform:none;
  2299. }
  2300. #u24465_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:75px;
  2306. height:38px;
  2307. }
  2308. #u24465 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:1045px;
  2312. top:0px;
  2313. width:75px;
  2314. height:38px;
  2315. display:flex;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:12px;
  2320. color:#FFFFFF;
  2321. }
  2322. #u24465 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u24465_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. }
  2334. #u24466_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:75px;
  2340. height:38px;
  2341. }
  2342. #u24466 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:1120px;
  2346. top:0px;
  2347. width:75px;
  2348. height:38px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:12px;
  2354. color:#FFFFFF;
  2355. }
  2356. #u24466 .text {
  2357. position:absolute;
  2358. align-self:center;
  2359. padding:2px 2px 2px 0px;
  2360. box-sizing:border-box;
  2361. width:100%;
  2362. }
  2363. #u24466_text {
  2364. border-width:0px;
  2365. word-wrap:break-word;
  2366. text-transform:none;
  2367. }
  2368. #u24467_img {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:140px;
  2374. height:38px;
  2375. }
  2376. #u24467 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:1195px;
  2380. top:0px;
  2381. width:140px;
  2382. height:38px;
  2383. display:flex;
  2384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2385. font-weight:400;
  2386. font-style:normal;
  2387. font-size:12px;
  2388. color:#FFFFFF;
  2389. }
  2390. #u24467 .text {
  2391. position:absolute;
  2392. align-self:center;
  2393. padding:2px 2px 2px 0px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u24467_text {
  2398. border-width:0px;
  2399. word-wrap:break-word;
  2400. text-transform:none;
  2401. }
  2402. #u24468_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:140px;
  2408. height:38px;
  2409. }
  2410. #u24468 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:1335px;
  2414. top:0px;
  2415. width:140px;
  2416. height:38px;
  2417. display:flex;
  2418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:12px;
  2422. color:#FFFFFF;
  2423. }
  2424. #u24468 .text {
  2425. position:absolute;
  2426. align-self:center;
  2427. padding:2px 2px 2px 0px;
  2428. box-sizing:border-box;
  2429. width:100%;
  2430. }
  2431. #u24468_text {
  2432. border-width:0px;
  2433. word-wrap:break-word;
  2434. text-transform:none;
  2435. }
  2436. #u24469_img {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:65px;
  2442. height:38px;
  2443. }
  2444. #u24469 {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:38px;
  2449. width:65px;
  2450. height:38px;
  2451. display:flex;
  2452. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2453. font-weight:400;
  2454. font-style:normal;
  2455. font-size:12px;
  2456. }
  2457. #u24469 .text {
  2458. position:absolute;
  2459. align-self:center;
  2460. padding:2px 2px 2px 0px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u24469_text {
  2465. border-width:0px;
  2466. word-wrap:break-word;
  2467. text-transform:none;
  2468. visibility:hidden;
  2469. }
  2470. #u24470_img {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:80px;
  2476. height:38px;
  2477. }
  2478. #u24470 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:65px;
  2482. top:38px;
  2483. width:80px;
  2484. height:38px;
  2485. display:flex;
  2486. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:12px;
  2490. }
  2491. #u24470 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:2px 2px 2px 0px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u24470_text {
  2499. border-width:0px;
  2500. word-wrap:break-word;
  2501. text-transform:none;
  2502. visibility:hidden;
  2503. }
  2504. #u24471_img {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:80px;
  2510. height:38px;
  2511. }
  2512. #u24471 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:145px;
  2516. top:38px;
  2517. width:80px;
  2518. height:38px;
  2519. display:flex;
  2520. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:12px;
  2524. }
  2525. #u24471 .text {
  2526. position:absolute;
  2527. align-self:center;
  2528. padding:2px 2px 2px 0px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u24471_text {
  2533. border-width:0px;
  2534. word-wrap:break-word;
  2535. text-transform:none;
  2536. visibility:hidden;
  2537. }
  2538. #u24472_img {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:80px;
  2544. height:38px;
  2545. }
  2546. #u24472 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:225px;
  2550. top:38px;
  2551. width:80px;
  2552. height:38px;
  2553. display:flex;
  2554. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2555. font-weight:400;
  2556. font-style:normal;
  2557. font-size:12px;
  2558. }
  2559. #u24472 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:2px 2px 2px 0px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u24472_text {
  2567. border-width:0px;
  2568. word-wrap:break-word;
  2569. text-transform:none;
  2570. visibility:hidden;
  2571. }
  2572. #u24473_img {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:80px;
  2578. height:38px;
  2579. }
  2580. #u24473 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:305px;
  2584. top:38px;
  2585. width:80px;
  2586. height:38px;
  2587. display:flex;
  2588. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:12px;
  2592. }
  2593. #u24473 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:2px 2px 2px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u24473_text {
  2601. border-width:0px;
  2602. word-wrap:break-word;
  2603. text-transform:none;
  2604. visibility:hidden;
  2605. }
  2606. #u24474_img {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:0px;
  2611. width:81px;
  2612. height:38px;
  2613. }
  2614. #u24474 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:385px;
  2618. top:38px;
  2619. width:81px;
  2620. height:38px;
  2621. display:flex;
  2622. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:12px;
  2626. }
  2627. #u24474 .text {
  2628. position:absolute;
  2629. align-self:center;
  2630. padding:2px 2px 2px 0px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u24474_text {
  2635. border-width:0px;
  2636. word-wrap:break-word;
  2637. text-transform:none;
  2638. visibility:hidden;
  2639. }
  2640. #u24475_img {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:81px;
  2646. height:38px;
  2647. }
  2648. #u24475 {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:466px;
  2652. top:38px;
  2653. width:81px;
  2654. height:38px;
  2655. display:flex;
  2656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2657. font-weight:400;
  2658. font-style:normal;
  2659. font-size:12px;
  2660. color:#333333;
  2661. }
  2662. #u24475 .text {
  2663. position:absolute;
  2664. align-self:center;
  2665. padding:2px 2px 2px 0px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u24475_text {
  2670. border-width:0px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. }
  2674. #u24476_img {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:81px;
  2680. height:38px;
  2681. }
  2682. #u24476 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:547px;
  2686. top:38px;
  2687. width:81px;
  2688. height:38px;
  2689. display:flex;
  2690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2691. font-weight:400;
  2692. font-style:normal;
  2693. font-size:12px;
  2694. color:#333333;
  2695. }
  2696. #u24476 .text {
  2697. position:absolute;
  2698. align-self:center;
  2699. padding:2px 2px 2px 0px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u24476_text {
  2704. border-width:0px;
  2705. word-wrap:break-word;
  2706. text-transform:none;
  2707. visibility:hidden;
  2708. }
  2709. #u24477_img {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:65px;
  2715. height:38px;
  2716. }
  2717. #u24477 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:628px;
  2721. top:38px;
  2722. width:65px;
  2723. height:38px;
  2724. display:flex;
  2725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2726. font-weight:400;
  2727. font-style:normal;
  2728. font-size:12px;
  2729. color:#333333;
  2730. }
  2731. #u24477 .text {
  2732. position:absolute;
  2733. align-self:center;
  2734. padding:2px 2px 2px 0px;
  2735. box-sizing:border-box;
  2736. width:100%;
  2737. }
  2738. #u24477_text {
  2739. border-width:0px;
  2740. word-wrap:break-word;
  2741. text-transform:none;
  2742. visibility:hidden;
  2743. }
  2744. #u24478_img {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:0px;
  2748. top:0px;
  2749. width:65px;
  2750. height:38px;
  2751. }
  2752. #u24478 {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:693px;
  2756. top:38px;
  2757. width:65px;
  2758. height:38px;
  2759. display:flex;
  2760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2761. font-weight:400;
  2762. font-style:normal;
  2763. font-size:12px;
  2764. }
  2765. #u24478 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:2px 2px 2px 0px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u24478_text {
  2773. border-width:0px;
  2774. word-wrap:break-word;
  2775. text-transform:none;
  2776. visibility:hidden;
  2777. }
  2778. #u24479_img {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:0px;
  2782. top:0px;
  2783. width:65px;
  2784. height:38px;
  2785. }
  2786. #u24479 {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:758px;
  2790. top:38px;
  2791. width:65px;
  2792. height:38px;
  2793. display:flex;
  2794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2795. font-weight:400;
  2796. font-style:normal;
  2797. font-size:12px;
  2798. }
  2799. #u24479 .text {
  2800. position:absolute;
  2801. align-self:center;
  2802. padding:2px 2px 2px 0px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u24479_text {
  2807. border-width:0px;
  2808. word-wrap:break-word;
  2809. text-transform:none;
  2810. visibility:hidden;
  2811. }
  2812. #u24480_img {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:72px;
  2818. height:38px;
  2819. }
  2820. #u24480 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:823px;
  2824. top:38px;
  2825. width:72px;
  2826. height:38px;
  2827. display:flex;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:12px;
  2832. }
  2833. #u24480 .text {
  2834. position:absolute;
  2835. align-self:center;
  2836. padding:2px 2px 2px 0px;
  2837. box-sizing:border-box;
  2838. width:100%;
  2839. }
  2840. #u24480_text {
  2841. border-width:0px;
  2842. word-wrap:break-word;
  2843. text-transform:none;
  2844. }
  2845. #u24481_img {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:75px;
  2851. height:38px;
  2852. }
  2853. #u24481 {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:895px;
  2857. top:38px;
  2858. width:75px;
  2859. height:38px;
  2860. display:flex;
  2861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2862. font-weight:400;
  2863. font-style:normal;
  2864. font-size:12px;
  2865. color:#333333;
  2866. }
  2867. #u24481 .text {
  2868. position:absolute;
  2869. align-self:center;
  2870. padding:2px 2px 2px 0px;
  2871. box-sizing:border-box;
  2872. width:100%;
  2873. }
  2874. #u24481_text {
  2875. border-width:0px;
  2876. word-wrap:break-word;
  2877. text-transform:none;
  2878. visibility:hidden;
  2879. }
  2880. #u24482_img {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:75px;
  2886. height:38px;
  2887. }
  2888. #u24482 {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:970px;
  2892. top:38px;
  2893. width:75px;
  2894. height:38px;
  2895. display:flex;
  2896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2897. font-weight:400;
  2898. font-style:normal;
  2899. font-size:12px;
  2900. color:#333333;
  2901. }
  2902. #u24482 .text {
  2903. position:absolute;
  2904. align-self:center;
  2905. padding:2px 2px 2px 0px;
  2906. box-sizing:border-box;
  2907. width:100%;
  2908. }
  2909. #u24482_text {
  2910. border-width:0px;
  2911. word-wrap:break-word;
  2912. text-transform:none;
  2913. visibility:hidden;
  2914. }
  2915. #u24483_img {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:0px;
  2920. width:75px;
  2921. height:38px;
  2922. }
  2923. #u24483 {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:1045px;
  2927. top:38px;
  2928. width:75px;
  2929. height:38px;
  2930. display:flex;
  2931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2932. font-weight:400;
  2933. font-style:normal;
  2934. font-size:12px;
  2935. color:#333333;
  2936. }
  2937. #u24483 .text {
  2938. position:absolute;
  2939. align-self:center;
  2940. padding:2px 2px 2px 0px;
  2941. box-sizing:border-box;
  2942. width:100%;
  2943. }
  2944. #u24483_text {
  2945. border-width:0px;
  2946. word-wrap:break-word;
  2947. text-transform:none;
  2948. visibility:hidden;
  2949. }
  2950. #u24484_img {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:75px;
  2956. height:38px;
  2957. }
  2958. #u24484 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:1120px;
  2962. top:38px;
  2963. width:75px;
  2964. height:38px;
  2965. display:flex;
  2966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2967. font-weight:400;
  2968. font-style:normal;
  2969. font-size:12px;
  2970. color:#333333;
  2971. }
  2972. #u24484 .text {
  2973. position:absolute;
  2974. align-self:center;
  2975. padding:2px 2px 2px 0px;
  2976. box-sizing:border-box;
  2977. width:100%;
  2978. }
  2979. #u24484_text {
  2980. border-width:0px;
  2981. word-wrap:break-word;
  2982. text-transform:none;
  2983. }
  2984. #u24485_img {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:140px;
  2990. height:38px;
  2991. }
  2992. #u24485 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:1195px;
  2996. top:38px;
  2997. width:140px;
  2998. height:38px;
  2999. display:flex;
  3000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. font-size:12px;
  3004. color:#333333;
  3005. }
  3006. #u24485 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:2px 2px 2px 0px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u24485_text {
  3014. border-width:0px;
  3015. word-wrap:break-word;
  3016. text-transform:none;
  3017. }
  3018. #u24486_img {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:140px;
  3024. height:38px;
  3025. }
  3026. #u24486 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:1335px;
  3030. top:38px;
  3031. width:140px;
  3032. height:38px;
  3033. display:flex;
  3034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:12px;
  3038. color:#0089FE;
  3039. }
  3040. #u24486 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 2px 2px 0px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u24486_text {
  3048. border-width:0px;
  3049. word-wrap:break-word;
  3050. text-transform:none;
  3051. visibility:hidden;
  3052. }
  3053. #u24487_img {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:65px;
  3059. height:38px;
  3060. }
  3061. #u24487 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:76px;
  3066. width:65px;
  3067. height:38px;
  3068. display:flex;
  3069. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3070. font-weight:400;
  3071. font-style:normal;
  3072. font-size:12px;
  3073. color:#606266;
  3074. }
  3075. #u24487 .text {
  3076. position:absolute;
  3077. align-self:center;
  3078. padding:2px 2px 2px 0px;
  3079. box-sizing:border-box;
  3080. width:100%;
  3081. }
  3082. #u24487_text {
  3083. border-width:0px;
  3084. word-wrap:break-word;
  3085. text-transform:none;
  3086. visibility:hidden;
  3087. }
  3088. #u24488_img {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:80px;
  3094. height:38px;
  3095. }
  3096. #u24488 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:65px;
  3100. top:76px;
  3101. width:80px;
  3102. height:38px;
  3103. display:flex;
  3104. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. font-size:12px;
  3108. color:#606266;
  3109. }
  3110. #u24488 .text {
  3111. position:absolute;
  3112. align-self:center;
  3113. padding:2px 2px 2px 0px;
  3114. box-sizing:border-box;
  3115. width:100%;
  3116. }
  3117. #u24488_text {
  3118. border-width:0px;
  3119. word-wrap:break-word;
  3120. text-transform:none;
  3121. visibility:hidden;
  3122. }
  3123. #u24489_img {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:80px;
  3129. height:38px;
  3130. }
  3131. #u24489 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:145px;
  3135. top:76px;
  3136. width:80px;
  3137. height:38px;
  3138. display:flex;
  3139. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. font-size:12px;
  3143. color:#606266;
  3144. }
  3145. #u24489 .text {
  3146. position:absolute;
  3147. align-self:center;
  3148. padding:2px 2px 2px 0px;
  3149. box-sizing:border-box;
  3150. width:100%;
  3151. }
  3152. #u24489_text {
  3153. border-width:0px;
  3154. word-wrap:break-word;
  3155. text-transform:none;
  3156. visibility:hidden;
  3157. }
  3158. #u24490_img {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:0px;
  3162. top:0px;
  3163. width:80px;
  3164. height:38px;
  3165. }
  3166. #u24490 {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:225px;
  3170. top:76px;
  3171. width:80px;
  3172. height:38px;
  3173. display:flex;
  3174. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3175. font-weight:400;
  3176. font-style:normal;
  3177. font-size:12px;
  3178. color:#606266;
  3179. }
  3180. #u24490 .text {
  3181. position:absolute;
  3182. align-self:center;
  3183. padding:2px 2px 2px 0px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u24490_text {
  3188. border-width:0px;
  3189. word-wrap:break-word;
  3190. text-transform:none;
  3191. visibility:hidden;
  3192. }
  3193. #u24491_img {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:0px;
  3197. top:0px;
  3198. width:80px;
  3199. height:38px;
  3200. }
  3201. #u24491 {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:305px;
  3205. top:76px;
  3206. width:80px;
  3207. height:38px;
  3208. display:flex;
  3209. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3210. font-weight:400;
  3211. font-style:normal;
  3212. font-size:12px;
  3213. color:#606266;
  3214. }
  3215. #u24491 .text {
  3216. position:absolute;
  3217. align-self:center;
  3218. padding:2px 2px 2px 0px;
  3219. box-sizing:border-box;
  3220. width:100%;
  3221. }
  3222. #u24491_text {
  3223. border-width:0px;
  3224. word-wrap:break-word;
  3225. text-transform:none;
  3226. visibility:hidden;
  3227. }
  3228. #u24492_img {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:0px;
  3232. top:0px;
  3233. width:81px;
  3234. height:38px;
  3235. }
  3236. #u24492 {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:385px;
  3240. top:76px;
  3241. width:81px;
  3242. height:38px;
  3243. display:flex;
  3244. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3245. font-weight:400;
  3246. font-style:normal;
  3247. font-size:12px;
  3248. color:#606266;
  3249. }
  3250. #u24492 .text {
  3251. position:absolute;
  3252. align-self:center;
  3253. padding:2px 2px 2px 0px;
  3254. box-sizing:border-box;
  3255. width:100%;
  3256. }
  3257. #u24492_text {
  3258. border-width:0px;
  3259. word-wrap:break-word;
  3260. text-transform:none;
  3261. visibility:hidden;
  3262. }
  3263. #u24493_img {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:81px;
  3269. height:38px;
  3270. }
  3271. #u24493 {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:466px;
  3275. top:76px;
  3276. width:81px;
  3277. height:38px;
  3278. display:flex;
  3279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3280. font-weight:400;
  3281. font-style:normal;
  3282. font-size:12px;
  3283. color:#333333;
  3284. }
  3285. #u24493 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 0px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u24493_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. }
  3297. #u24494_img {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:81px;
  3303. height:38px;
  3304. }
  3305. #u24494 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:547px;
  3309. top:76px;
  3310. width:81px;
  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. color:#333333;
  3318. }
  3319. #u24494 .text {
  3320. position:absolute;
  3321. align-self:center;
  3322. padding:2px 2px 2px 0px;
  3323. box-sizing:border-box;
  3324. width:100%;
  3325. }
  3326. #u24494_text {
  3327. border-width:0px;
  3328. word-wrap:break-word;
  3329. text-transform:none;
  3330. visibility:hidden;
  3331. }
  3332. #u24495_img {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:65px;
  3338. height:38px;
  3339. }
  3340. #u24495 {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:628px;
  3344. top:76px;
  3345. width:65px;
  3346. height:38px;
  3347. display:flex;
  3348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3349. font-weight:400;
  3350. font-style:normal;
  3351. font-size:12px;
  3352. color:#606266;
  3353. }
  3354. #u24495 .text {
  3355. position:absolute;
  3356. align-self:center;
  3357. padding:2px 2px 2px 0px;
  3358. box-sizing:border-box;
  3359. width:100%;
  3360. }
  3361. #u24495_text {
  3362. border-width:0px;
  3363. word-wrap:break-word;
  3364. text-transform:none;
  3365. visibility:hidden;
  3366. }
  3367. #u24496_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:65px;
  3373. height:38px;
  3374. }
  3375. #u24496 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:693px;
  3379. top:76px;
  3380. width:65px;
  3381. height:38px;
  3382. display:flex;
  3383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3384. font-weight:400;
  3385. font-style:normal;
  3386. font-size:12px;
  3387. color:#606266;
  3388. }
  3389. #u24496 .text {
  3390. position:absolute;
  3391. align-self:center;
  3392. padding:2px 2px 2px 0px;
  3393. box-sizing:border-box;
  3394. width:100%;
  3395. }
  3396. #u24496_text {
  3397. border-width:0px;
  3398. word-wrap:break-word;
  3399. text-transform:none;
  3400. visibility:hidden;
  3401. }
  3402. #u24497_img {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:65px;
  3408. height:38px;
  3409. }
  3410. #u24497 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:758px;
  3414. top:76px;
  3415. width:65px;
  3416. height:38px;
  3417. display:flex;
  3418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3419. font-weight:400;
  3420. font-style:normal;
  3421. font-size:12px;
  3422. color:#606266;
  3423. }
  3424. #u24497 .text {
  3425. position:absolute;
  3426. align-self:center;
  3427. padding:2px 2px 2px 0px;
  3428. box-sizing:border-box;
  3429. width:100%;
  3430. }
  3431. #u24497_text {
  3432. border-width:0px;
  3433. word-wrap:break-word;
  3434. text-transform:none;
  3435. visibility:hidden;
  3436. }
  3437. #u24498_img {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:72px;
  3443. height:38px;
  3444. }
  3445. #u24498 {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:823px;
  3449. top:76px;
  3450. width:72px;
  3451. height:38px;
  3452. display:flex;
  3453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3454. font-weight:400;
  3455. font-style:normal;
  3456. font-size:12px;
  3457. color:#606266;
  3458. }
  3459. #u24498 .text {
  3460. position:absolute;
  3461. align-self:center;
  3462. padding:2px 2px 2px 0px;
  3463. box-sizing:border-box;
  3464. width:100%;
  3465. }
  3466. #u24498_text {
  3467. border-width:0px;
  3468. word-wrap:break-word;
  3469. text-transform:none;
  3470. }
  3471. #u24499_img {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:75px;
  3477. height:38px;
  3478. }
  3479. #u24499 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:895px;
  3483. top:76px;
  3484. width:75px;
  3485. height:38px;
  3486. display:flex;
  3487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3488. font-weight:400;
  3489. font-style:normal;
  3490. font-size:12px;
  3491. color:#333333;
  3492. }
  3493. #u24499 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 0px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u24499_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. visibility:hidden;
  3505. }
  3506. #u24500_img {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:75px;
  3512. height:38px;
  3513. }
  3514. #u24500 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:970px;
  3518. top:76px;
  3519. width:75px;
  3520. height:38px;
  3521. display:flex;
  3522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3523. font-weight:400;
  3524. font-style:normal;
  3525. font-size:12px;
  3526. color:#333333;
  3527. }
  3528. #u24500 .text {
  3529. position:absolute;
  3530. align-self:center;
  3531. padding:2px 2px 2px 0px;
  3532. box-sizing:border-box;
  3533. width:100%;
  3534. }
  3535. #u24500_text {
  3536. border-width:0px;
  3537. word-wrap:break-word;
  3538. text-transform:none;
  3539. visibility:hidden;
  3540. }
  3541. #u24501_img {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:75px;
  3547. height:38px;
  3548. }
  3549. #u24501 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:1045px;
  3553. top:76px;
  3554. width:75px;
  3555. height:38px;
  3556. display:flex;
  3557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3558. font-weight:400;
  3559. font-style:normal;
  3560. font-size:12px;
  3561. color:#333333;
  3562. }
  3563. #u24501 .text {
  3564. position:absolute;
  3565. align-self:center;
  3566. padding:2px 2px 2px 0px;
  3567. box-sizing:border-box;
  3568. width:100%;
  3569. }
  3570. #u24501_text {
  3571. border-width:0px;
  3572. word-wrap:break-word;
  3573. text-transform:none;
  3574. visibility:hidden;
  3575. }
  3576. #u24502_img {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:75px;
  3582. height:38px;
  3583. }
  3584. #u24502 {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:1120px;
  3588. top:76px;
  3589. width:75px;
  3590. height:38px;
  3591. display:flex;
  3592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3593. font-weight:400;
  3594. font-style:normal;
  3595. font-size:12px;
  3596. color:#D9001B;
  3597. }
  3598. #u24502 .text {
  3599. position:absolute;
  3600. align-self:center;
  3601. padding:2px 2px 2px 0px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u24502_text {
  3606. border-width:0px;
  3607. word-wrap:break-word;
  3608. text-transform:none;
  3609. }
  3610. #u24503_img {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:0px;
  3614. top:0px;
  3615. width:140px;
  3616. height:38px;
  3617. }
  3618. #u24503 {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:1195px;
  3622. top:76px;
  3623. width:140px;
  3624. height:38px;
  3625. display:flex;
  3626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3627. font-weight:400;
  3628. font-style:normal;
  3629. font-size:12px;
  3630. color:#333333;
  3631. }
  3632. #u24503 .text {
  3633. position:absolute;
  3634. align-self:center;
  3635. padding:2px 2px 2px 0px;
  3636. box-sizing:border-box;
  3637. width:100%;
  3638. }
  3639. #u24503_text {
  3640. border-width:0px;
  3641. word-wrap:break-word;
  3642. text-transform:none;
  3643. }
  3644. #u24504_img {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:140px;
  3650. height:38px;
  3651. }
  3652. #u24504 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:1335px;
  3656. top:76px;
  3657. width:140px;
  3658. height:38px;
  3659. display:flex;
  3660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3661. font-weight:400;
  3662. font-style:normal;
  3663. font-size:12px;
  3664. color:#0089FE;
  3665. }
  3666. #u24504 .text {
  3667. position:absolute;
  3668. align-self:center;
  3669. padding:2px 2px 2px 0px;
  3670. box-sizing:border-box;
  3671. width:100%;
  3672. }
  3673. #u24504_text {
  3674. border-width:0px;
  3675. word-wrap:break-word;
  3676. text-transform:none;
  3677. }
  3678. #u24505_img {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:65px;
  3684. height:31px;
  3685. }
  3686. #u24505 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:114px;
  3691. width:65px;
  3692. height:31px;
  3693. display:flex;
  3694. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3695. font-weight:400;
  3696. font-style:normal;
  3697. font-size:12px;
  3698. color:#606266;
  3699. }
  3700. #u24505 .text {
  3701. position:absolute;
  3702. align-self:center;
  3703. padding:2px 2px 2px 0px;
  3704. box-sizing:border-box;
  3705. width:100%;
  3706. }
  3707. #u24505_text {
  3708. border-width:0px;
  3709. word-wrap:break-word;
  3710. text-transform:none;
  3711. visibility:hidden;
  3712. }
  3713. #u24506_img {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:80px;
  3719. height:31px;
  3720. }
  3721. #u24506 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:65px;
  3725. top:114px;
  3726. width:80px;
  3727. height:31px;
  3728. display:flex;
  3729. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:12px;
  3733. color:#606266;
  3734. }
  3735. #u24506 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 2px 2px 0px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u24506_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u24507_img {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:80px;
  3754. height:31px;
  3755. }
  3756. #u24507 {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:145px;
  3760. top:114px;
  3761. width:80px;
  3762. height:31px;
  3763. display:flex;
  3764. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3765. font-weight:400;
  3766. font-style:normal;
  3767. font-size:12px;
  3768. color:#606266;
  3769. }
  3770. #u24507 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:2px 2px 2px 0px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u24507_text {
  3778. border-width:0px;
  3779. word-wrap:break-word;
  3780. text-transform:none;
  3781. visibility:hidden;
  3782. }
  3783. #u24508_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:80px;
  3789. height:31px;
  3790. }
  3791. #u24508 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:225px;
  3795. top:114px;
  3796. width:80px;
  3797. height:31px;
  3798. display:flex;
  3799. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:12px;
  3803. color:#606266;
  3804. }
  3805. #u24508 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u24508_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u24509_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:80px;
  3824. height:31px;
  3825. }
  3826. #u24509 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:305px;
  3830. top:114px;
  3831. width:80px;
  3832. height:31px;
  3833. display:flex;
  3834. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:12px;
  3838. color:#606266;
  3839. }
  3840. #u24509 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:2px 2px 2px 0px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u24509_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. visibility:hidden;
  3852. }
  3853. #u24510_img {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:81px;
  3859. height:31px;
  3860. }
  3861. #u24510 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:385px;
  3865. top:114px;
  3866. width:81px;
  3867. height:31px;
  3868. display:flex;
  3869. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:12px;
  3873. color:#606266;
  3874. }
  3875. #u24510 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 0px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u24510_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u24511_img {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:81px;
  3894. height:31px;
  3895. }
  3896. #u24511 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:466px;
  3900. top:114px;
  3901. width:81px;
  3902. height:31px;
  3903. display:flex;
  3904. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:12px;
  3908. color:#606266;
  3909. }
  3910. #u24511 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 2px 2px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u24511_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. visibility:hidden;
  3922. }
  3923. #u24512_img {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:81px;
  3929. height:31px;
  3930. }
  3931. #u24512 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:547px;
  3935. top:114px;
  3936. width:81px;
  3937. height:31px;
  3938. display:flex;
  3939. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:12px;
  3943. color:#606266;
  3944. }
  3945. #u24512 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 0px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u24512_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u24513_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:65px;
  3964. height:31px;
  3965. }
  3966. #u24513 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:628px;
  3970. top:114px;
  3971. width:65px;
  3972. height:31px;
  3973. display:flex;
  3974. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:12px;
  3978. color:#606266;
  3979. }
  3980. #u24513 .text {
  3981. position:absolute;
  3982. align-self:center;
  3983. padding:2px 2px 2px 0px;
  3984. box-sizing:border-box;
  3985. width:100%;
  3986. }
  3987. #u24513_text {
  3988. border-width:0px;
  3989. word-wrap:break-word;
  3990. text-transform:none;
  3991. visibility:hidden;
  3992. }
  3993. #u24514_img {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:65px;
  3999. height:31px;
  4000. }
  4001. #u24514 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:693px;
  4005. top:114px;
  4006. width:65px;
  4007. height:31px;
  4008. display:flex;
  4009. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:12px;
  4013. color:#606266;
  4014. }
  4015. #u24514 .text {
  4016. position:absolute;
  4017. align-self:center;
  4018. padding:2px 2px 2px 0px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u24514_text {
  4023. border-width:0px;
  4024. word-wrap:break-word;
  4025. text-transform:none;
  4026. visibility:hidden;
  4027. }
  4028. #u24515_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:65px;
  4034. height:31px;
  4035. }
  4036. #u24515 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:758px;
  4040. top:114px;
  4041. width:65px;
  4042. height:31px;
  4043. display:flex;
  4044. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:12px;
  4048. color:#606266;
  4049. }
  4050. #u24515 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 0px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u24515_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u24516_img {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:72px;
  4069. height:31px;
  4070. }
  4071. #u24516 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:823px;
  4075. top:114px;
  4076. width:72px;
  4077. height:31px;
  4078. display:flex;
  4079. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4080. font-weight:400;
  4081. font-style:normal;
  4082. font-size:12px;
  4083. color:#606266;
  4084. }
  4085. #u24516 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 2px 2px 0px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u24516_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u24517_img {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:75px;
  4104. height:31px;
  4105. }
  4106. #u24517 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:895px;
  4110. top:114px;
  4111. width:75px;
  4112. height:31px;
  4113. display:flex;
  4114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4115. font-weight:400;
  4116. font-style:normal;
  4117. font-size:12px;
  4118. color:#606266;
  4119. }
  4120. #u24517 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 0px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u24517_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u24518_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:75px;
  4139. height:31px;
  4140. }
  4141. #u24518 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:970px;
  4145. top:114px;
  4146. width:75px;
  4147. height:31px;
  4148. display:flex;
  4149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:12px;
  4153. color:#606266;
  4154. }
  4155. #u24518 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 0px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u24518_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. visibility:hidden;
  4167. }
  4168. #u24519_img {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:75px;
  4174. height:31px;
  4175. }
  4176. #u24519 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:1045px;
  4180. top:114px;
  4181. width:75px;
  4182. height:31px;
  4183. display:flex;
  4184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4185. font-weight:400;
  4186. font-style:normal;
  4187. font-size:12px;
  4188. color:#606266;
  4189. }
  4190. #u24519 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:2px 2px 2px 0px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u24519_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. visibility:hidden;
  4202. }
  4203. #u24520_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:75px;
  4209. height:31px;
  4210. }
  4211. #u24520 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:1120px;
  4215. top:114px;
  4216. width:75px;
  4217. height:31px;
  4218. display:flex;
  4219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. font-size:12px;
  4223. color:#333333;
  4224. }
  4225. #u24520 .text {
  4226. position:absolute;
  4227. align-self:center;
  4228. padding:2px 2px 2px 0px;
  4229. box-sizing:border-box;
  4230. width:100%;
  4231. }
  4232. #u24520_text {
  4233. border-width:0px;
  4234. word-wrap:break-word;
  4235. text-transform:none;
  4236. }
  4237. #u24521_img {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:0px;
  4241. top:0px;
  4242. width:140px;
  4243. height:31px;
  4244. }
  4245. #u24521 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:1195px;
  4249. top:114px;
  4250. width:140px;
  4251. height:31px;
  4252. display:flex;
  4253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:12px;
  4257. color:#333333;
  4258. }
  4259. #u24521 .text {
  4260. position:absolute;
  4261. align-self:center;
  4262. padding:2px 2px 2px 0px;
  4263. box-sizing:border-box;
  4264. width:100%;
  4265. }
  4266. #u24521_text {
  4267. border-width:0px;
  4268. word-wrap:break-word;
  4269. text-transform:none;
  4270. }
  4271. #u24522_img {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:140px;
  4277. height:31px;
  4278. }
  4279. #u24522 {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:1335px;
  4283. top:114px;
  4284. width:140px;
  4285. height:31px;
  4286. display:flex;
  4287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4288. font-weight:400;
  4289. font-style:normal;
  4290. font-size:12px;
  4291. color:#AAAAAA;
  4292. }
  4293. #u24522 .text {
  4294. position:absolute;
  4295. align-self:center;
  4296. padding:2px 2px 2px 0px;
  4297. box-sizing:border-box;
  4298. width:100%;
  4299. }
  4300. #u24522_text {
  4301. border-width:0px;
  4302. word-wrap:break-word;
  4303. text-transform:none;
  4304. visibility:hidden;
  4305. }
  4306. #u24523_img {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:0px;
  4310. top:0px;
  4311. width:65px;
  4312. height:38px;
  4313. }
  4314. #u24523 {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:145px;
  4319. width:65px;
  4320. height:38px;
  4321. display:flex;
  4322. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4323. font-weight:400;
  4324. font-style:normal;
  4325. font-size:12px;
  4326. color:#606266;
  4327. }
  4328. #u24523 .text {
  4329. position:absolute;
  4330. align-self:center;
  4331. padding:2px 2px 2px 0px;
  4332. box-sizing:border-box;
  4333. width:100%;
  4334. }
  4335. #u24523_text {
  4336. border-width:0px;
  4337. word-wrap:break-word;
  4338. text-transform:none;
  4339. visibility:hidden;
  4340. }
  4341. #u24524_img {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:0px;
  4345. top:0px;
  4346. width:80px;
  4347. height:38px;
  4348. }
  4349. #u24524 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:65px;
  4353. top:145px;
  4354. width:80px;
  4355. height:38px;
  4356. display:flex;
  4357. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4358. font-weight:400;
  4359. font-style:normal;
  4360. font-size:12px;
  4361. color:#606266;
  4362. }
  4363. #u24524 .text {
  4364. position:absolute;
  4365. align-self:center;
  4366. padding:2px 2px 2px 0px;
  4367. box-sizing:border-box;
  4368. width:100%;
  4369. }
  4370. #u24524_text {
  4371. border-width:0px;
  4372. word-wrap:break-word;
  4373. text-transform:none;
  4374. visibility:hidden;
  4375. }
  4376. #u24525_img {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:80px;
  4382. height:38px;
  4383. }
  4384. #u24525 {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:145px;
  4388. top:145px;
  4389. width:80px;
  4390. height:38px;
  4391. display:flex;
  4392. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4393. font-weight:400;
  4394. font-style:normal;
  4395. font-size:12px;
  4396. color:#606266;
  4397. }
  4398. #u24525 .text {
  4399. position:absolute;
  4400. align-self:center;
  4401. padding:2px 2px 2px 0px;
  4402. box-sizing:border-box;
  4403. width:100%;
  4404. }
  4405. #u24525_text {
  4406. border-width:0px;
  4407. word-wrap:break-word;
  4408. text-transform:none;
  4409. visibility:hidden;
  4410. }
  4411. #u24526_img {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:80px;
  4417. height:38px;
  4418. }
  4419. #u24526 {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:225px;
  4423. top:145px;
  4424. width:80px;
  4425. height:38px;
  4426. display:flex;
  4427. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4428. font-weight:400;
  4429. font-style:normal;
  4430. font-size:12px;
  4431. color:#606266;
  4432. }
  4433. #u24526 .text {
  4434. position:absolute;
  4435. align-self:center;
  4436. padding:2px 2px 2px 0px;
  4437. box-sizing:border-box;
  4438. width:100%;
  4439. }
  4440. #u24526_text {
  4441. border-width:0px;
  4442. word-wrap:break-word;
  4443. text-transform:none;
  4444. visibility:hidden;
  4445. }
  4446. #u24527_img {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:80px;
  4452. height:38px;
  4453. }
  4454. #u24527 {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:305px;
  4458. top:145px;
  4459. width:80px;
  4460. height:38px;
  4461. display:flex;
  4462. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4463. font-weight:400;
  4464. font-style:normal;
  4465. font-size:12px;
  4466. color:#606266;
  4467. }
  4468. #u24527 .text {
  4469. position:absolute;
  4470. align-self:center;
  4471. padding:2px 2px 2px 0px;
  4472. box-sizing:border-box;
  4473. width:100%;
  4474. }
  4475. #u24527_text {
  4476. border-width:0px;
  4477. word-wrap:break-word;
  4478. text-transform:none;
  4479. visibility:hidden;
  4480. }
  4481. #u24528_img {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:81px;
  4487. height:38px;
  4488. }
  4489. #u24528 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:385px;
  4493. top:145px;
  4494. width:81px;
  4495. height:38px;
  4496. display:flex;
  4497. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4498. font-weight:400;
  4499. font-style:normal;
  4500. font-size:12px;
  4501. color:#606266;
  4502. }
  4503. #u24528 .text {
  4504. position:absolute;
  4505. align-self:center;
  4506. padding:2px 2px 2px 0px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u24528_text {
  4511. border-width:0px;
  4512. word-wrap:break-word;
  4513. text-transform:none;
  4514. visibility:hidden;
  4515. }
  4516. #u24529_img {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:0px;
  4520. top:0px;
  4521. width:81px;
  4522. height:38px;
  4523. }
  4524. #u24529 {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:466px;
  4528. top:145px;
  4529. width:81px;
  4530. height:38px;
  4531. display:flex;
  4532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4533. font-weight:400;
  4534. font-style:normal;
  4535. font-size:12px;
  4536. color:#606266;
  4537. }
  4538. #u24529 .text {
  4539. position:absolute;
  4540. align-self:center;
  4541. padding:2px 2px 2px 0px;
  4542. box-sizing:border-box;
  4543. width:100%;
  4544. }
  4545. #u24529_text {
  4546. border-width:0px;
  4547. word-wrap:break-word;
  4548. text-transform:none;
  4549. visibility:hidden;
  4550. }
  4551. #u24530_img {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:0px;
  4555. top:0px;
  4556. width:81px;
  4557. height:38px;
  4558. }
  4559. #u24530 {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:547px;
  4563. top:145px;
  4564. width:81px;
  4565. height:38px;
  4566. display:flex;
  4567. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4568. font-weight:400;
  4569. font-style:normal;
  4570. font-size:12px;
  4571. color:#606266;
  4572. }
  4573. #u24530 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 0px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u24530_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. visibility:hidden;
  4585. }
  4586. #u24531_img {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:65px;
  4592. height:38px;
  4593. }
  4594. #u24531 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:628px;
  4598. top:145px;
  4599. width:65px;
  4600. height:38px;
  4601. display:flex;
  4602. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4603. font-weight:400;
  4604. font-style:normal;
  4605. font-size:12px;
  4606. color:#606266;
  4607. }
  4608. #u24531 .text {
  4609. position:absolute;
  4610. align-self:center;
  4611. padding:2px 2px 2px 0px;
  4612. box-sizing:border-box;
  4613. width:100%;
  4614. }
  4615. #u24531_text {
  4616. border-width:0px;
  4617. word-wrap:break-word;
  4618. text-transform:none;
  4619. visibility:hidden;
  4620. }
  4621. #u24532_img {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:0px;
  4625. top:0px;
  4626. width:65px;
  4627. height:38px;
  4628. }
  4629. #u24532 {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:693px;
  4633. top:145px;
  4634. width:65px;
  4635. height:38px;
  4636. display:flex;
  4637. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4638. font-weight:400;
  4639. font-style:normal;
  4640. font-size:12px;
  4641. color:#606266;
  4642. }
  4643. #u24532 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:2px 2px 2px 0px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u24532_text {
  4651. border-width:0px;
  4652. word-wrap:break-word;
  4653. text-transform:none;
  4654. visibility:hidden;
  4655. }
  4656. #u24533_img {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:0px;
  4660. top:0px;
  4661. width:65px;
  4662. height:38px;
  4663. }
  4664. #u24533 {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:758px;
  4668. top:145px;
  4669. width:65px;
  4670. height:38px;
  4671. display:flex;
  4672. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4673. font-weight:400;
  4674. font-style:normal;
  4675. font-size:12px;
  4676. color:#606266;
  4677. }
  4678. #u24533 .text {
  4679. position:absolute;
  4680. align-self:center;
  4681. padding:2px 2px 2px 0px;
  4682. box-sizing:border-box;
  4683. width:100%;
  4684. }
  4685. #u24533_text {
  4686. border-width:0px;
  4687. word-wrap:break-word;
  4688. text-transform:none;
  4689. visibility:hidden;
  4690. }
  4691. #u24534_img {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:72px;
  4697. height:38px;
  4698. }
  4699. #u24534 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:823px;
  4703. top:145px;
  4704. width:72px;
  4705. height:38px;
  4706. display:flex;
  4707. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4708. font-weight:400;
  4709. font-style:normal;
  4710. font-size:12px;
  4711. color:#606266;
  4712. }
  4713. #u24534 .text {
  4714. position:absolute;
  4715. align-self:center;
  4716. padding:2px 2px 2px 0px;
  4717. box-sizing:border-box;
  4718. width:100%;
  4719. }
  4720. #u24534_text {
  4721. border-width:0px;
  4722. word-wrap:break-word;
  4723. text-transform:none;
  4724. visibility:hidden;
  4725. }
  4726. #u24535_img {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:75px;
  4732. height:38px;
  4733. }
  4734. #u24535 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:895px;
  4738. top:145px;
  4739. width:75px;
  4740. height:38px;
  4741. display:flex;
  4742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4743. font-weight:400;
  4744. font-style:normal;
  4745. font-size:12px;
  4746. color:#606266;
  4747. }
  4748. #u24535 .text {
  4749. position:absolute;
  4750. align-self:center;
  4751. padding:2px 2px 2px 0px;
  4752. box-sizing:border-box;
  4753. width:100%;
  4754. }
  4755. #u24535_text {
  4756. border-width:0px;
  4757. word-wrap:break-word;
  4758. text-transform:none;
  4759. visibility:hidden;
  4760. }
  4761. #u24536_img {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:75px;
  4767. height:38px;
  4768. }
  4769. #u24536 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:970px;
  4773. top:145px;
  4774. width:75px;
  4775. height:38px;
  4776. display:flex;
  4777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:12px;
  4781. color:#606266;
  4782. }
  4783. #u24536 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 0px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u24536_text {
  4791. border-width:0px;
  4792. word-wrap:break-word;
  4793. text-transform:none;
  4794. visibility:hidden;
  4795. }
  4796. #u24537_img {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:75px;
  4802. height:38px;
  4803. }
  4804. #u24537 {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:1045px;
  4808. top:145px;
  4809. width:75px;
  4810. height:38px;
  4811. display:flex;
  4812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4813. font-weight:400;
  4814. font-style:normal;
  4815. font-size:12px;
  4816. color:#606266;
  4817. }
  4818. #u24537 .text {
  4819. position:absolute;
  4820. align-self:center;
  4821. padding:2px 2px 2px 0px;
  4822. box-sizing:border-box;
  4823. width:100%;
  4824. }
  4825. #u24537_text {
  4826. border-width:0px;
  4827. word-wrap:break-word;
  4828. text-transform:none;
  4829. visibility:hidden;
  4830. }
  4831. #u24538_img {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:0px;
  4835. top:0px;
  4836. width:75px;
  4837. height:38px;
  4838. }
  4839. #u24538 {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:1120px;
  4843. top:145px;
  4844. width:75px;
  4845. height:38px;
  4846. display:flex;
  4847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. font-size:12px;
  4851. color:#333333;
  4852. }
  4853. #u24538 .text {
  4854. position:absolute;
  4855. align-self:center;
  4856. padding:2px 2px 2px 0px;
  4857. box-sizing:border-box;
  4858. width:100%;
  4859. }
  4860. #u24538_text {
  4861. border-width:0px;
  4862. word-wrap:break-word;
  4863. text-transform:none;
  4864. visibility:hidden;
  4865. }
  4866. #u24539_img {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:0px;
  4870. top:0px;
  4871. width:140px;
  4872. height:38px;
  4873. }
  4874. #u24539 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:1195px;
  4878. top:145px;
  4879. width:140px;
  4880. height:38px;
  4881. display:flex;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:12px;
  4886. color:#333333;
  4887. }
  4888. #u24539 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:2px 2px 2px 0px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u24539_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. visibility:hidden;
  4900. }
  4901. #u24540_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:140px;
  4907. height:38px;
  4908. }
  4909. #u24540 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:1335px;
  4913. top:145px;
  4914. width:140px;
  4915. height:38px;
  4916. display:flex;
  4917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4918. font-weight:400;
  4919. font-style:normal;
  4920. font-size:12px;
  4921. color:#AAAAAA;
  4922. }
  4923. #u24540 .text {
  4924. position:absolute;
  4925. align-self:center;
  4926. padding:2px 2px 2px 0px;
  4927. box-sizing:border-box;
  4928. width:100%;
  4929. }
  4930. #u24540_text {
  4931. border-width:0px;
  4932. word-wrap:break-word;
  4933. text-transform:none;
  4934. visibility:hidden;
  4935. }
  4936. #u24541_img {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:65px;
  4942. height:35px;
  4943. }
  4944. #u24541 {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:183px;
  4949. width:65px;
  4950. height:35px;
  4951. display:flex;
  4952. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4953. font-weight:400;
  4954. font-style:normal;
  4955. font-size:12px;
  4956. color:#606266;
  4957. }
  4958. #u24541 .text {
  4959. position:absolute;
  4960. align-self:center;
  4961. padding:2px 2px 2px 0px;
  4962. box-sizing:border-box;
  4963. width:100%;
  4964. }
  4965. #u24541_text {
  4966. border-width:0px;
  4967. word-wrap:break-word;
  4968. text-transform:none;
  4969. visibility:hidden;
  4970. }
  4971. #u24542_img {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:0px;
  4976. width:80px;
  4977. height:35px;
  4978. }
  4979. #u24542 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:65px;
  4983. top:183px;
  4984. width:80px;
  4985. height:35px;
  4986. display:flex;
  4987. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4988. font-weight:400;
  4989. font-style:normal;
  4990. font-size:12px;
  4991. color:#606266;
  4992. }
  4993. #u24542 .text {
  4994. position:absolute;
  4995. align-self:center;
  4996. padding:2px 2px 2px 0px;
  4997. box-sizing:border-box;
  4998. width:100%;
  4999. }
  5000. #u24542_text {
  5001. border-width:0px;
  5002. word-wrap:break-word;
  5003. text-transform:none;
  5004. visibility:hidden;
  5005. }
  5006. #u24543_img {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:80px;
  5012. height:35px;
  5013. }
  5014. #u24543 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:145px;
  5018. top:183px;
  5019. width:80px;
  5020. height:35px;
  5021. display:flex;
  5022. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5023. font-weight:400;
  5024. font-style:normal;
  5025. font-size:12px;
  5026. color:#606266;
  5027. }
  5028. #u24543 .text {
  5029. position:absolute;
  5030. align-self:center;
  5031. padding:2px 2px 2px 0px;
  5032. box-sizing:border-box;
  5033. width:100%;
  5034. }
  5035. #u24543_text {
  5036. border-width:0px;
  5037. word-wrap:break-word;
  5038. text-transform:none;
  5039. visibility:hidden;
  5040. }
  5041. #u24544_img {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:0px;
  5045. top:0px;
  5046. width:80px;
  5047. height:35px;
  5048. }
  5049. #u24544 {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:225px;
  5053. top:183px;
  5054. width:80px;
  5055. height:35px;
  5056. display:flex;
  5057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5058. font-weight:400;
  5059. font-style:normal;
  5060. font-size:12px;
  5061. color:#606266;
  5062. }
  5063. #u24544 .text {
  5064. position:absolute;
  5065. align-self:center;
  5066. padding:2px 2px 2px 0px;
  5067. box-sizing:border-box;
  5068. width:100%;
  5069. }
  5070. #u24544_text {
  5071. border-width:0px;
  5072. word-wrap:break-word;
  5073. text-transform:none;
  5074. visibility:hidden;
  5075. }
  5076. #u24545_img {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:0px;
  5080. top:0px;
  5081. width:80px;
  5082. height:35px;
  5083. }
  5084. #u24545 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:305px;
  5088. top:183px;
  5089. width:80px;
  5090. height:35px;
  5091. display:flex;
  5092. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:12px;
  5096. color:#606266;
  5097. }
  5098. #u24545 .text {
  5099. position:absolute;
  5100. align-self:center;
  5101. padding:2px 2px 2px 0px;
  5102. box-sizing:border-box;
  5103. width:100%;
  5104. }
  5105. #u24545_text {
  5106. border-width:0px;
  5107. word-wrap:break-word;
  5108. text-transform:none;
  5109. visibility:hidden;
  5110. }
  5111. #u24546_img {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:81px;
  5117. height:35px;
  5118. }
  5119. #u24546 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:385px;
  5123. top:183px;
  5124. width:81px;
  5125. height:35px;
  5126. display:flex;
  5127. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:12px;
  5131. color:#606266;
  5132. }
  5133. #u24546 .text {
  5134. position:absolute;
  5135. align-self:center;
  5136. padding:2px 2px 2px 0px;
  5137. box-sizing:border-box;
  5138. width:100%;
  5139. }
  5140. #u24546_text {
  5141. border-width:0px;
  5142. word-wrap:break-word;
  5143. text-transform:none;
  5144. visibility:hidden;
  5145. }
  5146. #u24547_img {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:81px;
  5152. height:35px;
  5153. }
  5154. #u24547 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:466px;
  5158. top:183px;
  5159. width:81px;
  5160. height:35px;
  5161. display:flex;
  5162. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. font-size:12px;
  5166. color:#606266;
  5167. }
  5168. #u24547 .text {
  5169. position:absolute;
  5170. align-self:center;
  5171. padding:2px 2px 2px 0px;
  5172. box-sizing:border-box;
  5173. width:100%;
  5174. }
  5175. #u24547_text {
  5176. border-width:0px;
  5177. word-wrap:break-word;
  5178. text-transform:none;
  5179. visibility:hidden;
  5180. }
  5181. #u24548_img {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:81px;
  5187. height:35px;
  5188. }
  5189. #u24548 {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:547px;
  5193. top:183px;
  5194. width:81px;
  5195. height:35px;
  5196. display:flex;
  5197. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:12px;
  5201. color:#606266;
  5202. }
  5203. #u24548 .text {
  5204. position:absolute;
  5205. align-self:center;
  5206. padding:2px 2px 2px 0px;
  5207. box-sizing:border-box;
  5208. width:100%;
  5209. }
  5210. #u24548_text {
  5211. border-width:0px;
  5212. word-wrap:break-word;
  5213. text-transform:none;
  5214. visibility:hidden;
  5215. }
  5216. #u24549_img {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:65px;
  5222. height:35px;
  5223. }
  5224. #u24549 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:628px;
  5228. top:183px;
  5229. width:65px;
  5230. height:35px;
  5231. display:flex;
  5232. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. font-size:12px;
  5236. color:#606266;
  5237. }
  5238. #u24549 .text {
  5239. position:absolute;
  5240. align-self:center;
  5241. padding:2px 2px 2px 0px;
  5242. box-sizing:border-box;
  5243. width:100%;
  5244. }
  5245. #u24549_text {
  5246. border-width:0px;
  5247. word-wrap:break-word;
  5248. text-transform:none;
  5249. visibility:hidden;
  5250. }
  5251. #u24550_img {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:65px;
  5257. height:35px;
  5258. }
  5259. #u24550 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:693px;
  5263. top:183px;
  5264. width:65px;
  5265. height:35px;
  5266. display:flex;
  5267. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5268. font-weight:400;
  5269. font-style:normal;
  5270. font-size:12px;
  5271. color:#606266;
  5272. }
  5273. #u24550 .text {
  5274. position:absolute;
  5275. align-self:center;
  5276. padding:2px 2px 2px 0px;
  5277. box-sizing:border-box;
  5278. width:100%;
  5279. }
  5280. #u24550_text {
  5281. border-width:0px;
  5282. word-wrap:break-word;
  5283. text-transform:none;
  5284. visibility:hidden;
  5285. }
  5286. #u24551_img {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:65px;
  5292. height:35px;
  5293. }
  5294. #u24551 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:758px;
  5298. top:183px;
  5299. width:65px;
  5300. height:35px;
  5301. display:flex;
  5302. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5303. font-weight:400;
  5304. font-style:normal;
  5305. font-size:12px;
  5306. color:#606266;
  5307. }
  5308. #u24551 .text {
  5309. position:absolute;
  5310. align-self:center;
  5311. padding:2px 2px 2px 0px;
  5312. box-sizing:border-box;
  5313. width:100%;
  5314. }
  5315. #u24551_text {
  5316. border-width:0px;
  5317. word-wrap:break-word;
  5318. text-transform:none;
  5319. visibility:hidden;
  5320. }
  5321. #u24552_img {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:72px;
  5327. height:35px;
  5328. }
  5329. #u24552 {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:823px;
  5333. top:183px;
  5334. width:72px;
  5335. height:35px;
  5336. display:flex;
  5337. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5338. font-weight:400;
  5339. font-style:normal;
  5340. font-size:12px;
  5341. color:#606266;
  5342. }
  5343. #u24552 .text {
  5344. position:absolute;
  5345. align-self:center;
  5346. padding:2px 2px 2px 0px;
  5347. box-sizing:border-box;
  5348. width:100%;
  5349. }
  5350. #u24552_text {
  5351. border-width:0px;
  5352. word-wrap:break-word;
  5353. text-transform:none;
  5354. visibility:hidden;
  5355. }
  5356. #u24553_img {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:75px;
  5362. height:35px;
  5363. }
  5364. #u24553 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:895px;
  5368. top:183px;
  5369. width:75px;
  5370. height:35px;
  5371. display:flex;
  5372. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:12px;
  5376. color:#606266;
  5377. }
  5378. #u24553 .text {
  5379. position:absolute;
  5380. align-self:center;
  5381. padding:2px 2px 2px 0px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u24553_text {
  5386. border-width:0px;
  5387. word-wrap:break-word;
  5388. text-transform:none;
  5389. visibility:hidden;
  5390. }
  5391. #u24554_img {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:0px;
  5395. top:0px;
  5396. width:75px;
  5397. height:35px;
  5398. }
  5399. #u24554 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:970px;
  5403. top:183px;
  5404. width:75px;
  5405. height:35px;
  5406. display:flex;
  5407. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. font-size:12px;
  5411. color:#606266;
  5412. }
  5413. #u24554 .text {
  5414. position:absolute;
  5415. align-self:center;
  5416. padding:2px 2px 2px 0px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u24554_text {
  5421. border-width:0px;
  5422. word-wrap:break-word;
  5423. text-transform:none;
  5424. visibility:hidden;
  5425. }
  5426. #u24555_img {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:0px;
  5430. top:0px;
  5431. width:75px;
  5432. height:35px;
  5433. }
  5434. #u24555 {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:1045px;
  5438. top:183px;
  5439. width:75px;
  5440. height:35px;
  5441. display:flex;
  5442. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5443. font-weight:400;
  5444. font-style:normal;
  5445. font-size:12px;
  5446. color:#606266;
  5447. }
  5448. #u24555 .text {
  5449. position:absolute;
  5450. align-self:center;
  5451. padding:2px 2px 2px 0px;
  5452. box-sizing:border-box;
  5453. width:100%;
  5454. }
  5455. #u24555_text {
  5456. border-width:0px;
  5457. word-wrap:break-word;
  5458. text-transform:none;
  5459. visibility:hidden;
  5460. }
  5461. #u24556_img {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:0px;
  5465. top:0px;
  5466. width:75px;
  5467. height:35px;
  5468. }
  5469. #u24556 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:1120px;
  5473. top:183px;
  5474. width:75px;
  5475. height:35px;
  5476. display:flex;
  5477. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:12px;
  5481. color:#606266;
  5482. }
  5483. #u24556 .text {
  5484. position:absolute;
  5485. align-self:center;
  5486. padding:2px 2px 2px 0px;
  5487. box-sizing:border-box;
  5488. width:100%;
  5489. }
  5490. #u24556_text {
  5491. border-width:0px;
  5492. word-wrap:break-word;
  5493. text-transform:none;
  5494. visibility:hidden;
  5495. }
  5496. #u24557_img {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:140px;
  5502. height:35px;
  5503. }
  5504. #u24557 {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:1195px;
  5508. top:183px;
  5509. width:140px;
  5510. height:35px;
  5511. display:flex;
  5512. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5513. font-weight:400;
  5514. font-style:normal;
  5515. font-size:12px;
  5516. color:#606266;
  5517. }
  5518. #u24557 .text {
  5519. position:absolute;
  5520. align-self:center;
  5521. padding:2px 2px 2px 0px;
  5522. box-sizing:border-box;
  5523. width:100%;
  5524. }
  5525. #u24557_text {
  5526. border-width:0px;
  5527. word-wrap:break-word;
  5528. text-transform:none;
  5529. visibility:hidden;
  5530. }
  5531. #u24558_img {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:140px;
  5537. height:35px;
  5538. }
  5539. #u24558 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:1335px;
  5543. top:183px;
  5544. width:140px;
  5545. height:35px;
  5546. display:flex;
  5547. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:12px;
  5551. color:#606266;
  5552. }
  5553. #u24558 .text {
  5554. position:absolute;
  5555. align-self:center;
  5556. padding:2px 2px 2px 0px;
  5557. box-sizing:border-box;
  5558. width:100%;
  5559. }
  5560. #u24558_text {
  5561. border-width:0px;
  5562. word-wrap:break-word;
  5563. text-transform:none;
  5564. visibility:hidden;
  5565. }
  5566. #u24559_img {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:0px;
  5570. top:0px;
  5571. width:65px;
  5572. height:35px;
  5573. }
  5574. #u24559 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:218px;
  5579. width:65px;
  5580. height:35px;
  5581. display:flex;
  5582. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:12px;
  5586. color:#606266;
  5587. }
  5588. #u24559 .text {
  5589. position:absolute;
  5590. align-self:center;
  5591. padding:2px 2px 2px 0px;
  5592. box-sizing:border-box;
  5593. width:100%;
  5594. }
  5595. #u24559_text {
  5596. border-width:0px;
  5597. word-wrap:break-word;
  5598. text-transform:none;
  5599. visibility:hidden;
  5600. }
  5601. #u24560_img {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:0px;
  5605. top:0px;
  5606. width:80px;
  5607. height:35px;
  5608. }
  5609. #u24560 {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:65px;
  5613. top:218px;
  5614. width:80px;
  5615. height:35px;
  5616. display:flex;
  5617. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5618. font-weight:400;
  5619. font-style:normal;
  5620. font-size:12px;
  5621. color:#606266;
  5622. }
  5623. #u24560 .text {
  5624. position:absolute;
  5625. align-self:center;
  5626. padding:2px 2px 2px 0px;
  5627. box-sizing:border-box;
  5628. width:100%;
  5629. }
  5630. #u24560_text {
  5631. border-width:0px;
  5632. word-wrap:break-word;
  5633. text-transform:none;
  5634. visibility:hidden;
  5635. }
  5636. #u24561_img {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:0px;
  5640. top:0px;
  5641. width:80px;
  5642. height:35px;
  5643. }
  5644. #u24561 {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:145px;
  5648. top:218px;
  5649. width:80px;
  5650. height:35px;
  5651. display:flex;
  5652. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5653. font-weight:400;
  5654. font-style:normal;
  5655. font-size:12px;
  5656. color:#606266;
  5657. }
  5658. #u24561 .text {
  5659. position:absolute;
  5660. align-self:center;
  5661. padding:2px 2px 2px 0px;
  5662. box-sizing:border-box;
  5663. width:100%;
  5664. }
  5665. #u24561_text {
  5666. border-width:0px;
  5667. word-wrap:break-word;
  5668. text-transform:none;
  5669. visibility:hidden;
  5670. }
  5671. #u24562_img {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:0px;
  5675. top:0px;
  5676. width:80px;
  5677. height:35px;
  5678. }
  5679. #u24562 {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:225px;
  5683. top:218px;
  5684. width:80px;
  5685. height:35px;
  5686. display:flex;
  5687. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:12px;
  5691. color:#606266;
  5692. }
  5693. #u24562 .text {
  5694. position:absolute;
  5695. align-self:center;
  5696. padding:2px 2px 2px 0px;
  5697. box-sizing:border-box;
  5698. width:100%;
  5699. }
  5700. #u24562_text {
  5701. border-width:0px;
  5702. word-wrap:break-word;
  5703. text-transform:none;
  5704. visibility:hidden;
  5705. }
  5706. #u24563_img {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:80px;
  5712. height:35px;
  5713. }
  5714. #u24563 {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:305px;
  5718. top:218px;
  5719. width:80px;
  5720. height:35px;
  5721. display:flex;
  5722. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5723. font-weight:400;
  5724. font-style:normal;
  5725. font-size:12px;
  5726. color:#606266;
  5727. }
  5728. #u24563 .text {
  5729. position:absolute;
  5730. align-self:center;
  5731. padding:2px 2px 2px 0px;
  5732. box-sizing:border-box;
  5733. width:100%;
  5734. }
  5735. #u24563_text {
  5736. border-width:0px;
  5737. word-wrap:break-word;
  5738. text-transform:none;
  5739. visibility:hidden;
  5740. }
  5741. #u24564_img {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:0px;
  5745. top:0px;
  5746. width:81px;
  5747. height:35px;
  5748. }
  5749. #u24564 {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:385px;
  5753. top:218px;
  5754. width:81px;
  5755. height:35px;
  5756. display:flex;
  5757. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5758. font-weight:400;
  5759. font-style:normal;
  5760. font-size:12px;
  5761. color:#606266;
  5762. }
  5763. #u24564 .text {
  5764. position:absolute;
  5765. align-self:center;
  5766. padding:2px 2px 2px 0px;
  5767. box-sizing:border-box;
  5768. width:100%;
  5769. }
  5770. #u24564_text {
  5771. border-width:0px;
  5772. word-wrap:break-word;
  5773. text-transform:none;
  5774. visibility:hidden;
  5775. }
  5776. #u24565_img {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:81px;
  5782. height:35px;
  5783. }
  5784. #u24565 {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:466px;
  5788. top:218px;
  5789. width:81px;
  5790. height:35px;
  5791. display:flex;
  5792. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:12px;
  5796. color:#606266;
  5797. }
  5798. #u24565 .text {
  5799. position:absolute;
  5800. align-self:center;
  5801. padding:2px 2px 2px 0px;
  5802. box-sizing:border-box;
  5803. width:100%;
  5804. }
  5805. #u24565_text {
  5806. border-width:0px;
  5807. word-wrap:break-word;
  5808. text-transform:none;
  5809. visibility:hidden;
  5810. }
  5811. #u24566_img {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:0px;
  5815. top:0px;
  5816. width:81px;
  5817. height:35px;
  5818. }
  5819. #u24566 {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:547px;
  5823. top:218px;
  5824. width:81px;
  5825. height:35px;
  5826. display:flex;
  5827. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5828. font-weight:400;
  5829. font-style:normal;
  5830. font-size:12px;
  5831. color:#606266;
  5832. }
  5833. #u24566 .text {
  5834. position:absolute;
  5835. align-self:center;
  5836. padding:2px 2px 2px 0px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u24566_text {
  5841. border-width:0px;
  5842. word-wrap:break-word;
  5843. text-transform:none;
  5844. visibility:hidden;
  5845. }
  5846. #u24567_img {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:65px;
  5852. height:35px;
  5853. }
  5854. #u24567 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:628px;
  5858. top:218px;
  5859. width:65px;
  5860. height:35px;
  5861. display:flex;
  5862. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5863. font-weight:400;
  5864. font-style:normal;
  5865. font-size:12px;
  5866. color:#606266;
  5867. }
  5868. #u24567 .text {
  5869. position:absolute;
  5870. align-self:center;
  5871. padding:2px 2px 2px 0px;
  5872. box-sizing:border-box;
  5873. width:100%;
  5874. }
  5875. #u24567_text {
  5876. border-width:0px;
  5877. word-wrap:break-word;
  5878. text-transform:none;
  5879. visibility:hidden;
  5880. }
  5881. #u24568_img {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:65px;
  5887. height:35px;
  5888. }
  5889. #u24568 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:693px;
  5893. top:218px;
  5894. width:65px;
  5895. height:35px;
  5896. display:flex;
  5897. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5898. font-weight:400;
  5899. font-style:normal;
  5900. font-size:12px;
  5901. color:#606266;
  5902. }
  5903. #u24568 .text {
  5904. position:absolute;
  5905. align-self:center;
  5906. padding:2px 2px 2px 0px;
  5907. box-sizing:border-box;
  5908. width:100%;
  5909. }
  5910. #u24568_text {
  5911. border-width:0px;
  5912. word-wrap:break-word;
  5913. text-transform:none;
  5914. visibility:hidden;
  5915. }
  5916. #u24569_img {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:0px;
  5920. top:0px;
  5921. width:65px;
  5922. height:35px;
  5923. }
  5924. #u24569 {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:758px;
  5928. top:218px;
  5929. width:65px;
  5930. height:35px;
  5931. display:flex;
  5932. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5933. font-weight:400;
  5934. font-style:normal;
  5935. font-size:12px;
  5936. color:#606266;
  5937. }
  5938. #u24569 .text {
  5939. position:absolute;
  5940. align-self:center;
  5941. padding:2px 2px 2px 0px;
  5942. box-sizing:border-box;
  5943. width:100%;
  5944. }
  5945. #u24569_text {
  5946. border-width:0px;
  5947. word-wrap:break-word;
  5948. text-transform:none;
  5949. visibility:hidden;
  5950. }
  5951. #u24570_img {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:72px;
  5957. height:35px;
  5958. }
  5959. #u24570 {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:823px;
  5963. top:218px;
  5964. width:72px;
  5965. height:35px;
  5966. display:flex;
  5967. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5968. font-weight:400;
  5969. font-style:normal;
  5970. font-size:12px;
  5971. color:#606266;
  5972. }
  5973. #u24570 .text {
  5974. position:absolute;
  5975. align-self:center;
  5976. padding:2px 2px 2px 0px;
  5977. box-sizing:border-box;
  5978. width:100%;
  5979. }
  5980. #u24570_text {
  5981. border-width:0px;
  5982. word-wrap:break-word;
  5983. text-transform:none;
  5984. visibility:hidden;
  5985. }
  5986. #u24571_img {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:75px;
  5992. height:35px;
  5993. }
  5994. #u24571 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:895px;
  5998. top:218px;
  5999. width:75px;
  6000. height:35px;
  6001. display:flex;
  6002. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. font-size:12px;
  6006. color:#606266;
  6007. }
  6008. #u24571 .text {
  6009. position:absolute;
  6010. align-self:center;
  6011. padding:2px 2px 2px 0px;
  6012. box-sizing:border-box;
  6013. width:100%;
  6014. }
  6015. #u24571_text {
  6016. border-width:0px;
  6017. word-wrap:break-word;
  6018. text-transform:none;
  6019. visibility:hidden;
  6020. }
  6021. #u24572_img {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:75px;
  6027. height:35px;
  6028. }
  6029. #u24572 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:970px;
  6033. top:218px;
  6034. width:75px;
  6035. height:35px;
  6036. display:flex;
  6037. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. font-size:12px;
  6041. color:#606266;
  6042. }
  6043. #u24572 .text {
  6044. position:absolute;
  6045. align-self:center;
  6046. padding:2px 2px 2px 0px;
  6047. box-sizing:border-box;
  6048. width:100%;
  6049. }
  6050. #u24572_text {
  6051. border-width:0px;
  6052. word-wrap:break-word;
  6053. text-transform:none;
  6054. visibility:hidden;
  6055. }
  6056. #u24573_img {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:0px;
  6060. top:0px;
  6061. width:75px;
  6062. height:35px;
  6063. }
  6064. #u24573 {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:1045px;
  6068. top:218px;
  6069. width:75px;
  6070. height:35px;
  6071. display:flex;
  6072. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:12px;
  6076. color:#606266;
  6077. }
  6078. #u24573 .text {
  6079. position:absolute;
  6080. align-self:center;
  6081. padding:2px 2px 2px 0px;
  6082. box-sizing:border-box;
  6083. width:100%;
  6084. }
  6085. #u24573_text {
  6086. border-width:0px;
  6087. word-wrap:break-word;
  6088. text-transform:none;
  6089. visibility:hidden;
  6090. }
  6091. #u24574_img {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:75px;
  6097. height:35px;
  6098. }
  6099. #u24574 {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:1120px;
  6103. top:218px;
  6104. width:75px;
  6105. height:35px;
  6106. display:flex;
  6107. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6108. font-weight:400;
  6109. font-style:normal;
  6110. font-size:12px;
  6111. color:#606266;
  6112. }
  6113. #u24574 .text {
  6114. position:absolute;
  6115. align-self:center;
  6116. padding:2px 2px 2px 0px;
  6117. box-sizing:border-box;
  6118. width:100%;
  6119. }
  6120. #u24574_text {
  6121. border-width:0px;
  6122. word-wrap:break-word;
  6123. text-transform:none;
  6124. visibility:hidden;
  6125. }
  6126. #u24575_img {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:140px;
  6132. height:35px;
  6133. }
  6134. #u24575 {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:1195px;
  6138. top:218px;
  6139. width:140px;
  6140. height:35px;
  6141. display:flex;
  6142. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. font-size:12px;
  6146. color:#606266;
  6147. }
  6148. #u24575 .text {
  6149. position:absolute;
  6150. align-self:center;
  6151. padding:2px 2px 2px 0px;
  6152. box-sizing:border-box;
  6153. width:100%;
  6154. }
  6155. #u24575_text {
  6156. border-width:0px;
  6157. word-wrap:break-word;
  6158. text-transform:none;
  6159. visibility:hidden;
  6160. }
  6161. #u24576_img {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:0px;
  6165. top:0px;
  6166. width:140px;
  6167. height:35px;
  6168. }
  6169. #u24576 {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:1335px;
  6173. top:218px;
  6174. width:140px;
  6175. height:35px;
  6176. display:flex;
  6177. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6178. font-weight:400;
  6179. font-style:normal;
  6180. font-size:12px;
  6181. color:#606266;
  6182. }
  6183. #u24576 .text {
  6184. position:absolute;
  6185. align-self:center;
  6186. padding:2px 2px 2px 0px;
  6187. box-sizing:border-box;
  6188. width:100%;
  6189. }
  6190. #u24576_text {
  6191. border-width:0px;
  6192. word-wrap:break-word;
  6193. text-transform:none;
  6194. visibility:hidden;
  6195. }
  6196. #u24577_img {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:65px;
  6202. height:32px;
  6203. }
  6204. #u24577 {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:0px;
  6208. top:253px;
  6209. width:65px;
  6210. height:32px;
  6211. display:flex;
  6212. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6213. font-weight:400;
  6214. font-style:normal;
  6215. font-size:12px;
  6216. color:#606266;
  6217. }
  6218. #u24577 .text {
  6219. position:absolute;
  6220. align-self:center;
  6221. padding:2px 2px 2px 0px;
  6222. box-sizing:border-box;
  6223. width:100%;
  6224. }
  6225. #u24577_text {
  6226. border-width:0px;
  6227. word-wrap:break-word;
  6228. text-transform:none;
  6229. visibility:hidden;
  6230. }
  6231. #u24578_img {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:0px;
  6235. top:0px;
  6236. width:80px;
  6237. height:32px;
  6238. }
  6239. #u24578 {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:65px;
  6243. top:253px;
  6244. width:80px;
  6245. height:32px;
  6246. display:flex;
  6247. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:12px;
  6251. color:#606266;
  6252. }
  6253. #u24578 .text {
  6254. position:absolute;
  6255. align-self:center;
  6256. padding:2px 2px 2px 0px;
  6257. box-sizing:border-box;
  6258. width:100%;
  6259. }
  6260. #u24578_text {
  6261. border-width:0px;
  6262. word-wrap:break-word;
  6263. text-transform:none;
  6264. visibility:hidden;
  6265. }
  6266. #u24579_img {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:0px;
  6270. top:0px;
  6271. width:80px;
  6272. height:32px;
  6273. }
  6274. #u24579 {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:145px;
  6278. top:253px;
  6279. width:80px;
  6280. height:32px;
  6281. display:flex;
  6282. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6283. font-weight:400;
  6284. font-style:normal;
  6285. font-size:12px;
  6286. color:#606266;
  6287. }
  6288. #u24579 .text {
  6289. position:absolute;
  6290. align-self:center;
  6291. padding:2px 2px 2px 0px;
  6292. box-sizing:border-box;
  6293. width:100%;
  6294. }
  6295. #u24579_text {
  6296. border-width:0px;
  6297. word-wrap:break-word;
  6298. text-transform:none;
  6299. visibility:hidden;
  6300. }
  6301. #u24580_img {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:0px;
  6305. top:0px;
  6306. width:80px;
  6307. height:32px;
  6308. }
  6309. #u24580 {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:225px;
  6313. top:253px;
  6314. width:80px;
  6315. height:32px;
  6316. display:flex;
  6317. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6318. font-weight:400;
  6319. font-style:normal;
  6320. font-size:12px;
  6321. color:#606266;
  6322. }
  6323. #u24580 .text {
  6324. position:absolute;
  6325. align-self:center;
  6326. padding:2px 2px 2px 0px;
  6327. box-sizing:border-box;
  6328. width:100%;
  6329. }
  6330. #u24580_text {
  6331. border-width:0px;
  6332. word-wrap:break-word;
  6333. text-transform:none;
  6334. visibility:hidden;
  6335. }
  6336. #u24581_img {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:80px;
  6342. height:32px;
  6343. }
  6344. #u24581 {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:305px;
  6348. top:253px;
  6349. width:80px;
  6350. height:32px;
  6351. display:flex;
  6352. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6353. font-weight:400;
  6354. font-style:normal;
  6355. font-size:12px;
  6356. color:#606266;
  6357. }
  6358. #u24581 .text {
  6359. position:absolute;
  6360. align-self:center;
  6361. padding:2px 2px 2px 0px;
  6362. box-sizing:border-box;
  6363. width:100%;
  6364. }
  6365. #u24581_text {
  6366. border-width:0px;
  6367. word-wrap:break-word;
  6368. text-transform:none;
  6369. visibility:hidden;
  6370. }
  6371. #u24582_img {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:0px;
  6375. top:0px;
  6376. width:81px;
  6377. height:32px;
  6378. }
  6379. #u24582 {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:385px;
  6383. top:253px;
  6384. width:81px;
  6385. height:32px;
  6386. display:flex;
  6387. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6388. font-weight:400;
  6389. font-style:normal;
  6390. font-size:12px;
  6391. color:#606266;
  6392. }
  6393. #u24582 .text {
  6394. position:absolute;
  6395. align-self:center;
  6396. padding:2px 2px 2px 0px;
  6397. box-sizing:border-box;
  6398. width:100%;
  6399. }
  6400. #u24582_text {
  6401. border-width:0px;
  6402. word-wrap:break-word;
  6403. text-transform:none;
  6404. visibility:hidden;
  6405. }
  6406. #u24583_img {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:0px;
  6410. top:0px;
  6411. width:81px;
  6412. height:32px;
  6413. }
  6414. #u24583 {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:466px;
  6418. top:253px;
  6419. width:81px;
  6420. height:32px;
  6421. display:flex;
  6422. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6423. font-weight:400;
  6424. font-style:normal;
  6425. font-size:12px;
  6426. color:#606266;
  6427. }
  6428. #u24583 .text {
  6429. position:absolute;
  6430. align-self:center;
  6431. padding:2px 2px 2px 0px;
  6432. box-sizing:border-box;
  6433. width:100%;
  6434. }
  6435. #u24583_text {
  6436. border-width:0px;
  6437. word-wrap:break-word;
  6438. text-transform:none;
  6439. visibility:hidden;
  6440. }
  6441. #u24584_img {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:0px;
  6445. top:0px;
  6446. width:81px;
  6447. height:32px;
  6448. }
  6449. #u24584 {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:547px;
  6453. top:253px;
  6454. width:81px;
  6455. height:32px;
  6456. display:flex;
  6457. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6458. font-weight:400;
  6459. font-style:normal;
  6460. font-size:12px;
  6461. color:#606266;
  6462. }
  6463. #u24584 .text {
  6464. position:absolute;
  6465. align-self:center;
  6466. padding:2px 2px 2px 0px;
  6467. box-sizing:border-box;
  6468. width:100%;
  6469. }
  6470. #u24584_text {
  6471. border-width:0px;
  6472. word-wrap:break-word;
  6473. text-transform:none;
  6474. visibility:hidden;
  6475. }
  6476. #u24585_img {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:65px;
  6482. height:32px;
  6483. }
  6484. #u24585 {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:628px;
  6488. top:253px;
  6489. width:65px;
  6490. height:32px;
  6491. display:flex;
  6492. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6493. font-weight:400;
  6494. font-style:normal;
  6495. font-size:12px;
  6496. color:#606266;
  6497. }
  6498. #u24585 .text {
  6499. position:absolute;
  6500. align-self:center;
  6501. padding:2px 2px 2px 0px;
  6502. box-sizing:border-box;
  6503. width:100%;
  6504. }
  6505. #u24585_text {
  6506. border-width:0px;
  6507. word-wrap:break-word;
  6508. text-transform:none;
  6509. visibility:hidden;
  6510. }
  6511. #u24586_img {
  6512. border-width:0px;
  6513. position:absolute;
  6514. left:0px;
  6515. top:0px;
  6516. width:65px;
  6517. height:32px;
  6518. }
  6519. #u24586 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:693px;
  6523. top:253px;
  6524. width:65px;
  6525. height:32px;
  6526. display:flex;
  6527. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:12px;
  6531. color:#606266;
  6532. }
  6533. #u24586 .text {
  6534. position:absolute;
  6535. align-self:center;
  6536. padding:2px 2px 2px 0px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u24586_text {
  6541. border-width:0px;
  6542. word-wrap:break-word;
  6543. text-transform:none;
  6544. visibility:hidden;
  6545. }
  6546. #u24587_img {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:65px;
  6552. height:32px;
  6553. }
  6554. #u24587 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:758px;
  6558. top:253px;
  6559. width:65px;
  6560. height:32px;
  6561. display:flex;
  6562. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6563. font-weight:400;
  6564. font-style:normal;
  6565. font-size:12px;
  6566. color:#606266;
  6567. }
  6568. #u24587 .text {
  6569. position:absolute;
  6570. align-self:center;
  6571. padding:2px 2px 2px 0px;
  6572. box-sizing:border-box;
  6573. width:100%;
  6574. }
  6575. #u24587_text {
  6576. border-width:0px;
  6577. word-wrap:break-word;
  6578. text-transform:none;
  6579. visibility:hidden;
  6580. }
  6581. #u24588_img {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:0px;
  6585. top:0px;
  6586. width:72px;
  6587. height:32px;
  6588. }
  6589. #u24588 {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:823px;
  6593. top:253px;
  6594. width:72px;
  6595. height:32px;
  6596. display:flex;
  6597. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6598. font-weight:400;
  6599. font-style:normal;
  6600. font-size:12px;
  6601. color:#606266;
  6602. }
  6603. #u24588 .text {
  6604. position:absolute;
  6605. align-self:center;
  6606. padding:2px 2px 2px 0px;
  6607. box-sizing:border-box;
  6608. width:100%;
  6609. }
  6610. #u24588_text {
  6611. border-width:0px;
  6612. word-wrap:break-word;
  6613. text-transform:none;
  6614. visibility:hidden;
  6615. }
  6616. #u24589_img {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:0px;
  6620. top:0px;
  6621. width:75px;
  6622. height:32px;
  6623. }
  6624. #u24589 {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:895px;
  6628. top:253px;
  6629. width:75px;
  6630. height:32px;
  6631. display:flex;
  6632. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6633. font-weight:400;
  6634. font-style:normal;
  6635. font-size:12px;
  6636. color:#606266;
  6637. }
  6638. #u24589 .text {
  6639. position:absolute;
  6640. align-self:center;
  6641. padding:2px 2px 2px 0px;
  6642. box-sizing:border-box;
  6643. width:100%;
  6644. }
  6645. #u24589_text {
  6646. border-width:0px;
  6647. word-wrap:break-word;
  6648. text-transform:none;
  6649. visibility:hidden;
  6650. }
  6651. #u24590_img {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:75px;
  6657. height:32px;
  6658. }
  6659. #u24590 {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:970px;
  6663. top:253px;
  6664. width:75px;
  6665. height:32px;
  6666. display:flex;
  6667. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6668. font-weight:400;
  6669. font-style:normal;
  6670. font-size:12px;
  6671. color:#606266;
  6672. }
  6673. #u24590 .text {
  6674. position:absolute;
  6675. align-self:center;
  6676. padding:2px 2px 2px 0px;
  6677. box-sizing:border-box;
  6678. width:100%;
  6679. }
  6680. #u24590_text {
  6681. border-width:0px;
  6682. word-wrap:break-word;
  6683. text-transform:none;
  6684. visibility:hidden;
  6685. }
  6686. #u24591_img {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:75px;
  6692. height:32px;
  6693. }
  6694. #u24591 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:1045px;
  6698. top:253px;
  6699. width:75px;
  6700. height:32px;
  6701. display:flex;
  6702. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:12px;
  6706. color:#606266;
  6707. }
  6708. #u24591 .text {
  6709. position:absolute;
  6710. align-self:center;
  6711. padding:2px 2px 2px 0px;
  6712. box-sizing:border-box;
  6713. width:100%;
  6714. }
  6715. #u24591_text {
  6716. border-width:0px;
  6717. word-wrap:break-word;
  6718. text-transform:none;
  6719. visibility:hidden;
  6720. }
  6721. #u24592_img {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:0px;
  6725. top:0px;
  6726. width:75px;
  6727. height:32px;
  6728. }
  6729. #u24592 {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:1120px;
  6733. top:253px;
  6734. width:75px;
  6735. height:32px;
  6736. display:flex;
  6737. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6738. font-weight:400;
  6739. font-style:normal;
  6740. font-size:12px;
  6741. color:#606266;
  6742. }
  6743. #u24592 .text {
  6744. position:absolute;
  6745. align-self:center;
  6746. padding:2px 2px 2px 0px;
  6747. box-sizing:border-box;
  6748. width:100%;
  6749. }
  6750. #u24592_text {
  6751. border-width:0px;
  6752. word-wrap:break-word;
  6753. text-transform:none;
  6754. visibility:hidden;
  6755. }
  6756. #u24593_img {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:140px;
  6762. height:32px;
  6763. }
  6764. #u24593 {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:1195px;
  6768. top:253px;
  6769. width:140px;
  6770. height:32px;
  6771. display:flex;
  6772. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6773. font-weight:400;
  6774. font-style:normal;
  6775. font-size:12px;
  6776. color:#606266;
  6777. }
  6778. #u24593 .text {
  6779. position:absolute;
  6780. align-self:center;
  6781. padding:2px 2px 2px 0px;
  6782. box-sizing:border-box;
  6783. width:100%;
  6784. }
  6785. #u24593_text {
  6786. border-width:0px;
  6787. word-wrap:break-word;
  6788. text-transform:none;
  6789. visibility:hidden;
  6790. }
  6791. #u24594_img {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:0px;
  6795. top:0px;
  6796. width:140px;
  6797. height:32px;
  6798. }
  6799. #u24594 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:1335px;
  6803. top:253px;
  6804. width:140px;
  6805. height:32px;
  6806. display:flex;
  6807. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6808. font-weight:400;
  6809. font-style:normal;
  6810. font-size:12px;
  6811. color:#606266;
  6812. }
  6813. #u24594 .text {
  6814. position:absolute;
  6815. align-self:center;
  6816. padding:2px 2px 2px 0px;
  6817. box-sizing:border-box;
  6818. width:100%;
  6819. }
  6820. #u24594_text {
  6821. border-width:0px;
  6822. word-wrap:break-word;
  6823. text-transform:none;
  6824. visibility:hidden;
  6825. }
  6826. #u24595_img {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:65px;
  6832. height:32px;
  6833. }
  6834. #u24595 {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:285px;
  6839. width:65px;
  6840. height:32px;
  6841. display:flex;
  6842. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6843. font-weight:400;
  6844. font-style:normal;
  6845. font-size:12px;
  6846. color:#606266;
  6847. }
  6848. #u24595 .text {
  6849. position:absolute;
  6850. align-self:center;
  6851. padding:2px 2px 2px 0px;
  6852. box-sizing:border-box;
  6853. width:100%;
  6854. }
  6855. #u24595_text {
  6856. border-width:0px;
  6857. word-wrap:break-word;
  6858. text-transform:none;
  6859. visibility:hidden;
  6860. }
  6861. #u24596_img {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:0px;
  6865. top:0px;
  6866. width:80px;
  6867. height:32px;
  6868. }
  6869. #u24596 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:65px;
  6873. top:285px;
  6874. width:80px;
  6875. height:32px;
  6876. display:flex;
  6877. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:12px;
  6881. color:#606266;
  6882. }
  6883. #u24596 .text {
  6884. position:absolute;
  6885. align-self:center;
  6886. padding:2px 2px 2px 0px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u24596_text {
  6891. border-width:0px;
  6892. word-wrap:break-word;
  6893. text-transform:none;
  6894. visibility:hidden;
  6895. }
  6896. #u24597_img {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:0px;
  6900. top:0px;
  6901. width:80px;
  6902. height:32px;
  6903. }
  6904. #u24597 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:145px;
  6908. top:285px;
  6909. width:80px;
  6910. height:32px;
  6911. display:flex;
  6912. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6913. font-weight:400;
  6914. font-style:normal;
  6915. font-size:12px;
  6916. color:#606266;
  6917. }
  6918. #u24597 .text {
  6919. position:absolute;
  6920. align-self:center;
  6921. padding:2px 2px 2px 0px;
  6922. box-sizing:border-box;
  6923. width:100%;
  6924. }
  6925. #u24597_text {
  6926. border-width:0px;
  6927. word-wrap:break-word;
  6928. text-transform:none;
  6929. visibility:hidden;
  6930. }
  6931. #u24598_img {
  6932. border-width:0px;
  6933. position:absolute;
  6934. left:0px;
  6935. top:0px;
  6936. width:80px;
  6937. height:32px;
  6938. }
  6939. #u24598 {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:225px;
  6943. top:285px;
  6944. width:80px;
  6945. height:32px;
  6946. display:flex;
  6947. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6948. font-weight:400;
  6949. font-style:normal;
  6950. font-size:12px;
  6951. color:#606266;
  6952. }
  6953. #u24598 .text {
  6954. position:absolute;
  6955. align-self:center;
  6956. padding:2px 2px 2px 0px;
  6957. box-sizing:border-box;
  6958. width:100%;
  6959. }
  6960. #u24598_text {
  6961. border-width:0px;
  6962. word-wrap:break-word;
  6963. text-transform:none;
  6964. visibility:hidden;
  6965. }
  6966. #u24599_img {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:0px;
  6970. top:0px;
  6971. width:80px;
  6972. height:32px;
  6973. }
  6974. #u24599 {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:305px;
  6978. top:285px;
  6979. width:80px;
  6980. height:32px;
  6981. display:flex;
  6982. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6983. font-weight:400;
  6984. font-style:normal;
  6985. font-size:12px;
  6986. color:#606266;
  6987. }
  6988. #u24599 .text {
  6989. position:absolute;
  6990. align-self:center;
  6991. padding:2px 2px 2px 0px;
  6992. box-sizing:border-box;
  6993. width:100%;
  6994. }
  6995. #u24599_text {
  6996. border-width:0px;
  6997. word-wrap:break-word;
  6998. text-transform:none;
  6999. visibility:hidden;
  7000. }
  7001. #u24600_img {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:0px;
  7005. top:0px;
  7006. width:81px;
  7007. height:32px;
  7008. }
  7009. #u24600 {
  7010. border-width:0px;
  7011. position:absolute;
  7012. left:385px;
  7013. top:285px;
  7014. width:81px;
  7015. height:32px;
  7016. display:flex;
  7017. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7018. font-weight:400;
  7019. font-style:normal;
  7020. font-size:12px;
  7021. color:#606266;
  7022. }
  7023. #u24600 .text {
  7024. position:absolute;
  7025. align-self:center;
  7026. padding:2px 2px 2px 0px;
  7027. box-sizing:border-box;
  7028. width:100%;
  7029. }
  7030. #u24600_text {
  7031. border-width:0px;
  7032. word-wrap:break-word;
  7033. text-transform:none;
  7034. visibility:hidden;
  7035. }
  7036. #u24601_img {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:81px;
  7042. height:32px;
  7043. }
  7044. #u24601 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:466px;
  7048. top:285px;
  7049. width:81px;
  7050. height:32px;
  7051. display:flex;
  7052. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7053. font-weight:400;
  7054. font-style:normal;
  7055. font-size:12px;
  7056. color:#606266;
  7057. }
  7058. #u24601 .text {
  7059. position:absolute;
  7060. align-self:center;
  7061. padding:2px 2px 2px 0px;
  7062. box-sizing:border-box;
  7063. width:100%;
  7064. }
  7065. #u24601_text {
  7066. border-width:0px;
  7067. word-wrap:break-word;
  7068. text-transform:none;
  7069. visibility:hidden;
  7070. }
  7071. #u24602_img {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:0px;
  7075. top:0px;
  7076. width:81px;
  7077. height:32px;
  7078. }
  7079. #u24602 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:547px;
  7083. top:285px;
  7084. width:81px;
  7085. height:32px;
  7086. display:flex;
  7087. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7088. font-weight:400;
  7089. font-style:normal;
  7090. font-size:12px;
  7091. color:#606266;
  7092. }
  7093. #u24602 .text {
  7094. position:absolute;
  7095. align-self:center;
  7096. padding:2px 2px 2px 0px;
  7097. box-sizing:border-box;
  7098. width:100%;
  7099. }
  7100. #u24602_text {
  7101. border-width:0px;
  7102. word-wrap:break-word;
  7103. text-transform:none;
  7104. visibility:hidden;
  7105. }
  7106. #u24603_img {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:0px;
  7110. top:0px;
  7111. width:65px;
  7112. height:32px;
  7113. }
  7114. #u24603 {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:628px;
  7118. top:285px;
  7119. width:65px;
  7120. height:32px;
  7121. display:flex;
  7122. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7123. font-weight:400;
  7124. font-style:normal;
  7125. font-size:12px;
  7126. color:#606266;
  7127. }
  7128. #u24603 .text {
  7129. position:absolute;
  7130. align-self:center;
  7131. padding:2px 2px 2px 0px;
  7132. box-sizing:border-box;
  7133. width:100%;
  7134. }
  7135. #u24603_text {
  7136. border-width:0px;
  7137. word-wrap:break-word;
  7138. text-transform:none;
  7139. visibility:hidden;
  7140. }
  7141. #u24604_img {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:0px;
  7145. top:0px;
  7146. width:65px;
  7147. height:32px;
  7148. }
  7149. #u24604 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:693px;
  7153. top:285px;
  7154. width:65px;
  7155. height:32px;
  7156. display:flex;
  7157. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7158. font-weight:400;
  7159. font-style:normal;
  7160. font-size:12px;
  7161. color:#606266;
  7162. }
  7163. #u24604 .text {
  7164. position:absolute;
  7165. align-self:center;
  7166. padding:2px 2px 2px 0px;
  7167. box-sizing:border-box;
  7168. width:100%;
  7169. }
  7170. #u24604_text {
  7171. border-width:0px;
  7172. word-wrap:break-word;
  7173. text-transform:none;
  7174. visibility:hidden;
  7175. }
  7176. #u24605_img {
  7177. border-width:0px;
  7178. position:absolute;
  7179. left:0px;
  7180. top:0px;
  7181. width:65px;
  7182. height:32px;
  7183. }
  7184. #u24605 {
  7185. border-width:0px;
  7186. position:absolute;
  7187. left:758px;
  7188. top:285px;
  7189. width:65px;
  7190. height:32px;
  7191. display:flex;
  7192. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7193. font-weight:400;
  7194. font-style:normal;
  7195. font-size:12px;
  7196. color:#606266;
  7197. }
  7198. #u24605 .text {
  7199. position:absolute;
  7200. align-self:center;
  7201. padding:2px 2px 2px 0px;
  7202. box-sizing:border-box;
  7203. width:100%;
  7204. }
  7205. #u24605_text {
  7206. border-width:0px;
  7207. word-wrap:break-word;
  7208. text-transform:none;
  7209. visibility:hidden;
  7210. }
  7211. #u24606_img {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:0px;
  7215. top:0px;
  7216. width:72px;
  7217. height:32px;
  7218. }
  7219. #u24606 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:823px;
  7223. top:285px;
  7224. width:72px;
  7225. height:32px;
  7226. display:flex;
  7227. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7228. font-weight:400;
  7229. font-style:normal;
  7230. font-size:12px;
  7231. color:#606266;
  7232. }
  7233. #u24606 .text {
  7234. position:absolute;
  7235. align-self:center;
  7236. padding:2px 2px 2px 0px;
  7237. box-sizing:border-box;
  7238. width:100%;
  7239. }
  7240. #u24606_text {
  7241. border-width:0px;
  7242. word-wrap:break-word;
  7243. text-transform:none;
  7244. visibility:hidden;
  7245. }
  7246. #u24607_img {
  7247. border-width:0px;
  7248. position:absolute;
  7249. left:0px;
  7250. top:0px;
  7251. width:75px;
  7252. height:32px;
  7253. }
  7254. #u24607 {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:895px;
  7258. top:285px;
  7259. width:75px;
  7260. height:32px;
  7261. display:flex;
  7262. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7263. font-weight:400;
  7264. font-style:normal;
  7265. font-size:12px;
  7266. color:#606266;
  7267. }
  7268. #u24607 .text {
  7269. position:absolute;
  7270. align-self:center;
  7271. padding:2px 2px 2px 0px;
  7272. box-sizing:border-box;
  7273. width:100%;
  7274. }
  7275. #u24607_text {
  7276. border-width:0px;
  7277. word-wrap:break-word;
  7278. text-transform:none;
  7279. visibility:hidden;
  7280. }
  7281. #u24608_img {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:0px;
  7285. top:0px;
  7286. width:75px;
  7287. height:32px;
  7288. }
  7289. #u24608 {
  7290. border-width:0px;
  7291. position:absolute;
  7292. left:970px;
  7293. top:285px;
  7294. width:75px;
  7295. height:32px;
  7296. display:flex;
  7297. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7298. font-weight:400;
  7299. font-style:normal;
  7300. font-size:12px;
  7301. color:#606266;
  7302. }
  7303. #u24608 .text {
  7304. position:absolute;
  7305. align-self:center;
  7306. padding:2px 2px 2px 0px;
  7307. box-sizing:border-box;
  7308. width:100%;
  7309. }
  7310. #u24608_text {
  7311. border-width:0px;
  7312. word-wrap:break-word;
  7313. text-transform:none;
  7314. visibility:hidden;
  7315. }
  7316. #u24609_img {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:0px;
  7320. top:0px;
  7321. width:75px;
  7322. height:32px;
  7323. }
  7324. #u24609 {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:1045px;
  7328. top:285px;
  7329. width:75px;
  7330. height:32px;
  7331. display:flex;
  7332. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7333. font-weight:400;
  7334. font-style:normal;
  7335. font-size:12px;
  7336. color:#606266;
  7337. }
  7338. #u24609 .text {
  7339. position:absolute;
  7340. align-self:center;
  7341. padding:2px 2px 2px 0px;
  7342. box-sizing:border-box;
  7343. width:100%;
  7344. }
  7345. #u24609_text {
  7346. border-width:0px;
  7347. word-wrap:break-word;
  7348. text-transform:none;
  7349. visibility:hidden;
  7350. }
  7351. #u24610_img {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:0px;
  7355. top:0px;
  7356. width:75px;
  7357. height:32px;
  7358. }
  7359. #u24610 {
  7360. border-width:0px;
  7361. position:absolute;
  7362. left:1120px;
  7363. top:285px;
  7364. width:75px;
  7365. height:32px;
  7366. display:flex;
  7367. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7368. font-weight:400;
  7369. font-style:normal;
  7370. font-size:12px;
  7371. color:#606266;
  7372. }
  7373. #u24610 .text {
  7374. position:absolute;
  7375. align-self:center;
  7376. padding:2px 2px 2px 0px;
  7377. box-sizing:border-box;
  7378. width:100%;
  7379. }
  7380. #u24610_text {
  7381. border-width:0px;
  7382. word-wrap:break-word;
  7383. text-transform:none;
  7384. visibility:hidden;
  7385. }
  7386. #u24611_img {
  7387. border-width:0px;
  7388. position:absolute;
  7389. left:0px;
  7390. top:0px;
  7391. width:140px;
  7392. height:32px;
  7393. }
  7394. #u24611 {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:1195px;
  7398. top:285px;
  7399. width:140px;
  7400. height:32px;
  7401. display:flex;
  7402. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7403. font-weight:400;
  7404. font-style:normal;
  7405. font-size:12px;
  7406. color:#606266;
  7407. }
  7408. #u24611 .text {
  7409. position:absolute;
  7410. align-self:center;
  7411. padding:2px 2px 2px 0px;
  7412. box-sizing:border-box;
  7413. width:100%;
  7414. }
  7415. #u24611_text {
  7416. border-width:0px;
  7417. word-wrap:break-word;
  7418. text-transform:none;
  7419. visibility:hidden;
  7420. }
  7421. #u24612_img {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:0px;
  7425. top:0px;
  7426. width:140px;
  7427. height:32px;
  7428. }
  7429. #u24612 {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:1335px;
  7433. top:285px;
  7434. width:140px;
  7435. height:32px;
  7436. display:flex;
  7437. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7438. font-weight:400;
  7439. font-style:normal;
  7440. font-size:12px;
  7441. color:#606266;
  7442. }
  7443. #u24612 .text {
  7444. position:absolute;
  7445. align-self:center;
  7446. padding:2px 2px 2px 0px;
  7447. box-sizing:border-box;
  7448. width:100%;
  7449. }
  7450. #u24612_text {
  7451. border-width:0px;
  7452. word-wrap:break-word;
  7453. text-transform:none;
  7454. visibility:hidden;
  7455. }
  7456. #u24613_img {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:0px;
  7460. top:0px;
  7461. width:65px;
  7462. height:32px;
  7463. }
  7464. #u24613 {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:0px;
  7468. top:317px;
  7469. width:65px;
  7470. height:32px;
  7471. display:flex;
  7472. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7473. font-weight:400;
  7474. font-style:normal;
  7475. font-size:12px;
  7476. color:#606266;
  7477. }
  7478. #u24613 .text {
  7479. position:absolute;
  7480. align-self:center;
  7481. padding:2px 2px 2px 0px;
  7482. box-sizing:border-box;
  7483. width:100%;
  7484. }
  7485. #u24613_text {
  7486. border-width:0px;
  7487. word-wrap:break-word;
  7488. text-transform:none;
  7489. visibility:hidden;
  7490. }
  7491. #u24614_img {
  7492. border-width:0px;
  7493. position:absolute;
  7494. left:0px;
  7495. top:0px;
  7496. width:80px;
  7497. height:32px;
  7498. }
  7499. #u24614 {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:65px;
  7503. top:317px;
  7504. width:80px;
  7505. height:32px;
  7506. display:flex;
  7507. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7508. font-weight:400;
  7509. font-style:normal;
  7510. font-size:12px;
  7511. color:#606266;
  7512. }
  7513. #u24614 .text {
  7514. position:absolute;
  7515. align-self:center;
  7516. padding:2px 2px 2px 0px;
  7517. box-sizing:border-box;
  7518. width:100%;
  7519. }
  7520. #u24614_text {
  7521. border-width:0px;
  7522. word-wrap:break-word;
  7523. text-transform:none;
  7524. visibility:hidden;
  7525. }
  7526. #u24615_img {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:0px;
  7530. top:0px;
  7531. width:80px;
  7532. height:32px;
  7533. }
  7534. #u24615 {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:145px;
  7538. top:317px;
  7539. width:80px;
  7540. height:32px;
  7541. display:flex;
  7542. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7543. font-weight:400;
  7544. font-style:normal;
  7545. font-size:12px;
  7546. color:#606266;
  7547. }
  7548. #u24615 .text {
  7549. position:absolute;
  7550. align-self:center;
  7551. padding:2px 2px 2px 0px;
  7552. box-sizing:border-box;
  7553. width:100%;
  7554. }
  7555. #u24615_text {
  7556. border-width:0px;
  7557. word-wrap:break-word;
  7558. text-transform:none;
  7559. visibility:hidden;
  7560. }
  7561. #u24616_img {
  7562. border-width:0px;
  7563. position:absolute;
  7564. left:0px;
  7565. top:0px;
  7566. width:80px;
  7567. height:32px;
  7568. }
  7569. #u24616 {
  7570. border-width:0px;
  7571. position:absolute;
  7572. left:225px;
  7573. top:317px;
  7574. width:80px;
  7575. height:32px;
  7576. display:flex;
  7577. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7578. font-weight:400;
  7579. font-style:normal;
  7580. font-size:12px;
  7581. color:#606266;
  7582. }
  7583. #u24616 .text {
  7584. position:absolute;
  7585. align-self:center;
  7586. padding:2px 2px 2px 0px;
  7587. box-sizing:border-box;
  7588. width:100%;
  7589. }
  7590. #u24616_text {
  7591. border-width:0px;
  7592. word-wrap:break-word;
  7593. text-transform:none;
  7594. visibility:hidden;
  7595. }
  7596. #u24617_img {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:0px;
  7600. top:0px;
  7601. width:80px;
  7602. height:32px;
  7603. }
  7604. #u24617 {
  7605. border-width:0px;
  7606. position:absolute;
  7607. left:305px;
  7608. top:317px;
  7609. width:80px;
  7610. height:32px;
  7611. display:flex;
  7612. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7613. font-weight:400;
  7614. font-style:normal;
  7615. font-size:12px;
  7616. color:#606266;
  7617. }
  7618. #u24617 .text {
  7619. position:absolute;
  7620. align-self:center;
  7621. padding:2px 2px 2px 0px;
  7622. box-sizing:border-box;
  7623. width:100%;
  7624. }
  7625. #u24617_text {
  7626. border-width:0px;
  7627. word-wrap:break-word;
  7628. text-transform:none;
  7629. visibility:hidden;
  7630. }
  7631. #u24618_img {
  7632. border-width:0px;
  7633. position:absolute;
  7634. left:0px;
  7635. top:0px;
  7636. width:81px;
  7637. height:32px;
  7638. }
  7639. #u24618 {
  7640. border-width:0px;
  7641. position:absolute;
  7642. left:385px;
  7643. top:317px;
  7644. width:81px;
  7645. height:32px;
  7646. display:flex;
  7647. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7648. font-weight:400;
  7649. font-style:normal;
  7650. font-size:12px;
  7651. color:#606266;
  7652. }
  7653. #u24618 .text {
  7654. position:absolute;
  7655. align-self:center;
  7656. padding:2px 2px 2px 0px;
  7657. box-sizing:border-box;
  7658. width:100%;
  7659. }
  7660. #u24618_text {
  7661. border-width:0px;
  7662. word-wrap:break-word;
  7663. text-transform:none;
  7664. visibility:hidden;
  7665. }
  7666. #u24619_img {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:0px;
  7670. top:0px;
  7671. width:81px;
  7672. height:32px;
  7673. }
  7674. #u24619 {
  7675. border-width:0px;
  7676. position:absolute;
  7677. left:466px;
  7678. top:317px;
  7679. width:81px;
  7680. height:32px;
  7681. display:flex;
  7682. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7683. font-weight:400;
  7684. font-style:normal;
  7685. font-size:12px;
  7686. color:#606266;
  7687. }
  7688. #u24619 .text {
  7689. position:absolute;
  7690. align-self:center;
  7691. padding:2px 2px 2px 0px;
  7692. box-sizing:border-box;
  7693. width:100%;
  7694. }
  7695. #u24619_text {
  7696. border-width:0px;
  7697. word-wrap:break-word;
  7698. text-transform:none;
  7699. visibility:hidden;
  7700. }
  7701. #u24620_img {
  7702. border-width:0px;
  7703. position:absolute;
  7704. left:0px;
  7705. top:0px;
  7706. width:81px;
  7707. height:32px;
  7708. }
  7709. #u24620 {
  7710. border-width:0px;
  7711. position:absolute;
  7712. left:547px;
  7713. top:317px;
  7714. width:81px;
  7715. height:32px;
  7716. display:flex;
  7717. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7718. font-weight:400;
  7719. font-style:normal;
  7720. font-size:12px;
  7721. color:#606266;
  7722. }
  7723. #u24620 .text {
  7724. position:absolute;
  7725. align-self:center;
  7726. padding:2px 2px 2px 0px;
  7727. box-sizing:border-box;
  7728. width:100%;
  7729. }
  7730. #u24620_text {
  7731. border-width:0px;
  7732. word-wrap:break-word;
  7733. text-transform:none;
  7734. visibility:hidden;
  7735. }
  7736. #u24621_img {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:65px;
  7742. height:32px;
  7743. }
  7744. #u24621 {
  7745. border-width:0px;
  7746. position:absolute;
  7747. left:628px;
  7748. top:317px;
  7749. width:65px;
  7750. height:32px;
  7751. display:flex;
  7752. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7753. font-weight:400;
  7754. font-style:normal;
  7755. font-size:12px;
  7756. color:#606266;
  7757. }
  7758. #u24621 .text {
  7759. position:absolute;
  7760. align-self:center;
  7761. padding:2px 2px 2px 0px;
  7762. box-sizing:border-box;
  7763. width:100%;
  7764. }
  7765. #u24621_text {
  7766. border-width:0px;
  7767. word-wrap:break-word;
  7768. text-transform:none;
  7769. visibility:hidden;
  7770. }
  7771. #u24622_img {
  7772. border-width:0px;
  7773. position:absolute;
  7774. left:0px;
  7775. top:0px;
  7776. width:65px;
  7777. height:32px;
  7778. }
  7779. #u24622 {
  7780. border-width:0px;
  7781. position:absolute;
  7782. left:693px;
  7783. top:317px;
  7784. width:65px;
  7785. height:32px;
  7786. display:flex;
  7787. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7788. font-weight:400;
  7789. font-style:normal;
  7790. font-size:12px;
  7791. color:#606266;
  7792. }
  7793. #u24622 .text {
  7794. position:absolute;
  7795. align-self:center;
  7796. padding:2px 2px 2px 0px;
  7797. box-sizing:border-box;
  7798. width:100%;
  7799. }
  7800. #u24622_text {
  7801. border-width:0px;
  7802. word-wrap:break-word;
  7803. text-transform:none;
  7804. visibility:hidden;
  7805. }
  7806. #u24623_img {
  7807. border-width:0px;
  7808. position:absolute;
  7809. left:0px;
  7810. top:0px;
  7811. width:65px;
  7812. height:32px;
  7813. }
  7814. #u24623 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:758px;
  7818. top:317px;
  7819. width:65px;
  7820. height:32px;
  7821. display:flex;
  7822. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7823. font-weight:400;
  7824. font-style:normal;
  7825. font-size:12px;
  7826. color:#606266;
  7827. }
  7828. #u24623 .text {
  7829. position:absolute;
  7830. align-self:center;
  7831. padding:2px 2px 2px 0px;
  7832. box-sizing:border-box;
  7833. width:100%;
  7834. }
  7835. #u24623_text {
  7836. border-width:0px;
  7837. word-wrap:break-word;
  7838. text-transform:none;
  7839. visibility:hidden;
  7840. }
  7841. #u24624_img {
  7842. border-width:0px;
  7843. position:absolute;
  7844. left:0px;
  7845. top:0px;
  7846. width:72px;
  7847. height:32px;
  7848. }
  7849. #u24624 {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:823px;
  7853. top:317px;
  7854. width:72px;
  7855. height:32px;
  7856. display:flex;
  7857. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7858. font-weight:400;
  7859. font-style:normal;
  7860. font-size:12px;
  7861. color:#606266;
  7862. }
  7863. #u24624 .text {
  7864. position:absolute;
  7865. align-self:center;
  7866. padding:2px 2px 2px 0px;
  7867. box-sizing:border-box;
  7868. width:100%;
  7869. }
  7870. #u24624_text {
  7871. border-width:0px;
  7872. word-wrap:break-word;
  7873. text-transform:none;
  7874. visibility:hidden;
  7875. }
  7876. #u24625_img {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:0px;
  7880. top:0px;
  7881. width:75px;
  7882. height:32px;
  7883. }
  7884. #u24625 {
  7885. border-width:0px;
  7886. position:absolute;
  7887. left:895px;
  7888. top:317px;
  7889. width:75px;
  7890. height:32px;
  7891. display:flex;
  7892. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7893. font-weight:400;
  7894. font-style:normal;
  7895. font-size:12px;
  7896. color:#606266;
  7897. }
  7898. #u24625 .text {
  7899. position:absolute;
  7900. align-self:center;
  7901. padding:2px 2px 2px 0px;
  7902. box-sizing:border-box;
  7903. width:100%;
  7904. }
  7905. #u24625_text {
  7906. border-width:0px;
  7907. word-wrap:break-word;
  7908. text-transform:none;
  7909. visibility:hidden;
  7910. }
  7911. #u24626_img {
  7912. border-width:0px;
  7913. position:absolute;
  7914. left:0px;
  7915. top:0px;
  7916. width:75px;
  7917. height:32px;
  7918. }
  7919. #u24626 {
  7920. border-width:0px;
  7921. position:absolute;
  7922. left:970px;
  7923. top:317px;
  7924. width:75px;
  7925. height:32px;
  7926. display:flex;
  7927. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7928. font-weight:400;
  7929. font-style:normal;
  7930. font-size:12px;
  7931. color:#606266;
  7932. }
  7933. #u24626 .text {
  7934. position:absolute;
  7935. align-self:center;
  7936. padding:2px 2px 2px 0px;
  7937. box-sizing:border-box;
  7938. width:100%;
  7939. }
  7940. #u24626_text {
  7941. border-width:0px;
  7942. word-wrap:break-word;
  7943. text-transform:none;
  7944. visibility:hidden;
  7945. }
  7946. #u24627_img {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:0px;
  7950. top:0px;
  7951. width:75px;
  7952. height:32px;
  7953. }
  7954. #u24627 {
  7955. border-width:0px;
  7956. position:absolute;
  7957. left:1045px;
  7958. top:317px;
  7959. width:75px;
  7960. height:32px;
  7961. display:flex;
  7962. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7963. font-weight:400;
  7964. font-style:normal;
  7965. font-size:12px;
  7966. color:#606266;
  7967. }
  7968. #u24627 .text {
  7969. position:absolute;
  7970. align-self:center;
  7971. padding:2px 2px 2px 0px;
  7972. box-sizing:border-box;
  7973. width:100%;
  7974. }
  7975. #u24627_text {
  7976. border-width:0px;
  7977. word-wrap:break-word;
  7978. text-transform:none;
  7979. visibility:hidden;
  7980. }
  7981. #u24628_img {
  7982. border-width:0px;
  7983. position:absolute;
  7984. left:0px;
  7985. top:0px;
  7986. width:75px;
  7987. height:32px;
  7988. }
  7989. #u24628 {
  7990. border-width:0px;
  7991. position:absolute;
  7992. left:1120px;
  7993. top:317px;
  7994. width:75px;
  7995. height:32px;
  7996. display:flex;
  7997. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7998. font-weight:400;
  7999. font-style:normal;
  8000. font-size:12px;
  8001. color:#606266;
  8002. }
  8003. #u24628 .text {
  8004. position:absolute;
  8005. align-self:center;
  8006. padding:2px 2px 2px 0px;
  8007. box-sizing:border-box;
  8008. width:100%;
  8009. }
  8010. #u24628_text {
  8011. border-width:0px;
  8012. word-wrap:break-word;
  8013. text-transform:none;
  8014. visibility:hidden;
  8015. }
  8016. #u24629_img {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:0px;
  8020. top:0px;
  8021. width:140px;
  8022. height:32px;
  8023. }
  8024. #u24629 {
  8025. border-width:0px;
  8026. position:absolute;
  8027. left:1195px;
  8028. top:317px;
  8029. width:140px;
  8030. height:32px;
  8031. display:flex;
  8032. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8033. font-weight:400;
  8034. font-style:normal;
  8035. font-size:12px;
  8036. color:#606266;
  8037. }
  8038. #u24629 .text {
  8039. position:absolute;
  8040. align-self:center;
  8041. padding:2px 2px 2px 0px;
  8042. box-sizing:border-box;
  8043. width:100%;
  8044. }
  8045. #u24629_text {
  8046. border-width:0px;
  8047. word-wrap:break-word;
  8048. text-transform:none;
  8049. visibility:hidden;
  8050. }
  8051. #u24630_img {
  8052. border-width:0px;
  8053. position:absolute;
  8054. left:0px;
  8055. top:0px;
  8056. width:140px;
  8057. height:32px;
  8058. }
  8059. #u24630 {
  8060. border-width:0px;
  8061. position:absolute;
  8062. left:1335px;
  8063. top:317px;
  8064. width:140px;
  8065. height:32px;
  8066. display:flex;
  8067. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8068. font-weight:400;
  8069. font-style:normal;
  8070. font-size:12px;
  8071. color:#606266;
  8072. }
  8073. #u24630 .text {
  8074. position:absolute;
  8075. align-self:center;
  8076. padding:2px 2px 2px 0px;
  8077. box-sizing:border-box;
  8078. width:100%;
  8079. }
  8080. #u24630_text {
  8081. border-width:0px;
  8082. word-wrap:break-word;
  8083. text-transform:none;
  8084. visibility:hidden;
  8085. }
  8086. #u24631_img {
  8087. border-width:0px;
  8088. position:absolute;
  8089. left:0px;
  8090. top:0px;
  8091. width:65px;
  8092. height:32px;
  8093. }
  8094. #u24631 {
  8095. border-width:0px;
  8096. position:absolute;
  8097. left:0px;
  8098. top:349px;
  8099. width:65px;
  8100. height:32px;
  8101. display:flex;
  8102. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8103. font-weight:400;
  8104. font-style:normal;
  8105. font-size:12px;
  8106. color:#606266;
  8107. }
  8108. #u24631 .text {
  8109. position:absolute;
  8110. align-self:center;
  8111. padding:2px 2px 2px 0px;
  8112. box-sizing:border-box;
  8113. width:100%;
  8114. }
  8115. #u24631_text {
  8116. border-width:0px;
  8117. word-wrap:break-word;
  8118. text-transform:none;
  8119. visibility:hidden;
  8120. }
  8121. #u24632_img {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:0px;
  8125. top:0px;
  8126. width:80px;
  8127. height:32px;
  8128. }
  8129. #u24632 {
  8130. border-width:0px;
  8131. position:absolute;
  8132. left:65px;
  8133. top:349px;
  8134. width:80px;
  8135. height:32px;
  8136. display:flex;
  8137. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8138. font-weight:400;
  8139. font-style:normal;
  8140. font-size:12px;
  8141. color:#606266;
  8142. }
  8143. #u24632 .text {
  8144. position:absolute;
  8145. align-self:center;
  8146. padding:2px 2px 2px 0px;
  8147. box-sizing:border-box;
  8148. width:100%;
  8149. }
  8150. #u24632_text {
  8151. border-width:0px;
  8152. word-wrap:break-word;
  8153. text-transform:none;
  8154. visibility:hidden;
  8155. }
  8156. #u24633_img {
  8157. border-width:0px;
  8158. position:absolute;
  8159. left:0px;
  8160. top:0px;
  8161. width:80px;
  8162. height:32px;
  8163. }
  8164. #u24633 {
  8165. border-width:0px;
  8166. position:absolute;
  8167. left:145px;
  8168. top:349px;
  8169. width:80px;
  8170. height:32px;
  8171. display:flex;
  8172. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8173. font-weight:400;
  8174. font-style:normal;
  8175. font-size:12px;
  8176. color:#606266;
  8177. }
  8178. #u24633 .text {
  8179. position:absolute;
  8180. align-self:center;
  8181. padding:2px 2px 2px 0px;
  8182. box-sizing:border-box;
  8183. width:100%;
  8184. }
  8185. #u24633_text {
  8186. border-width:0px;
  8187. word-wrap:break-word;
  8188. text-transform:none;
  8189. visibility:hidden;
  8190. }
  8191. #u24634_img {
  8192. border-width:0px;
  8193. position:absolute;
  8194. left:0px;
  8195. top:0px;
  8196. width:80px;
  8197. height:32px;
  8198. }
  8199. #u24634 {
  8200. border-width:0px;
  8201. position:absolute;
  8202. left:225px;
  8203. top:349px;
  8204. width:80px;
  8205. height:32px;
  8206. display:flex;
  8207. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8208. font-weight:400;
  8209. font-style:normal;
  8210. font-size:12px;
  8211. color:#606266;
  8212. }
  8213. #u24634 .text {
  8214. position:absolute;
  8215. align-self:center;
  8216. padding:2px 2px 2px 0px;
  8217. box-sizing:border-box;
  8218. width:100%;
  8219. }
  8220. #u24634_text {
  8221. border-width:0px;
  8222. word-wrap:break-word;
  8223. text-transform:none;
  8224. visibility:hidden;
  8225. }
  8226. #u24635_img {
  8227. border-width:0px;
  8228. position:absolute;
  8229. left:0px;
  8230. top:0px;
  8231. width:80px;
  8232. height:32px;
  8233. }
  8234. #u24635 {
  8235. border-width:0px;
  8236. position:absolute;
  8237. left:305px;
  8238. top:349px;
  8239. width:80px;
  8240. height:32px;
  8241. display:flex;
  8242. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8243. font-weight:400;
  8244. font-style:normal;
  8245. font-size:12px;
  8246. color:#606266;
  8247. }
  8248. #u24635 .text {
  8249. position:absolute;
  8250. align-self:center;
  8251. padding:2px 2px 2px 0px;
  8252. box-sizing:border-box;
  8253. width:100%;
  8254. }
  8255. #u24635_text {
  8256. border-width:0px;
  8257. word-wrap:break-word;
  8258. text-transform:none;
  8259. visibility:hidden;
  8260. }
  8261. #u24636_img {
  8262. border-width:0px;
  8263. position:absolute;
  8264. left:0px;
  8265. top:0px;
  8266. width:81px;
  8267. height:32px;
  8268. }
  8269. #u24636 {
  8270. border-width:0px;
  8271. position:absolute;
  8272. left:385px;
  8273. top:349px;
  8274. width:81px;
  8275. height:32px;
  8276. display:flex;
  8277. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8278. font-weight:400;
  8279. font-style:normal;
  8280. font-size:12px;
  8281. color:#606266;
  8282. }
  8283. #u24636 .text {
  8284. position:absolute;
  8285. align-self:center;
  8286. padding:2px 2px 2px 0px;
  8287. box-sizing:border-box;
  8288. width:100%;
  8289. }
  8290. #u24636_text {
  8291. border-width:0px;
  8292. word-wrap:break-word;
  8293. text-transform:none;
  8294. visibility:hidden;
  8295. }
  8296. #u24637_img {
  8297. border-width:0px;
  8298. position:absolute;
  8299. left:0px;
  8300. top:0px;
  8301. width:81px;
  8302. height:32px;
  8303. }
  8304. #u24637 {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:466px;
  8308. top:349px;
  8309. width:81px;
  8310. height:32px;
  8311. display:flex;
  8312. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8313. font-weight:400;
  8314. font-style:normal;
  8315. font-size:12px;
  8316. color:#606266;
  8317. }
  8318. #u24637 .text {
  8319. position:absolute;
  8320. align-self:center;
  8321. padding:2px 2px 2px 0px;
  8322. box-sizing:border-box;
  8323. width:100%;
  8324. }
  8325. #u24637_text {
  8326. border-width:0px;
  8327. word-wrap:break-word;
  8328. text-transform:none;
  8329. visibility:hidden;
  8330. }
  8331. #u24638_img {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:0px;
  8335. top:0px;
  8336. width:81px;
  8337. height:32px;
  8338. }
  8339. #u24638 {
  8340. border-width:0px;
  8341. position:absolute;
  8342. left:547px;
  8343. top:349px;
  8344. width:81px;
  8345. height:32px;
  8346. display:flex;
  8347. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8348. font-weight:400;
  8349. font-style:normal;
  8350. font-size:12px;
  8351. color:#606266;
  8352. }
  8353. #u24638 .text {
  8354. position:absolute;
  8355. align-self:center;
  8356. padding:2px 2px 2px 0px;
  8357. box-sizing:border-box;
  8358. width:100%;
  8359. }
  8360. #u24638_text {
  8361. border-width:0px;
  8362. word-wrap:break-word;
  8363. text-transform:none;
  8364. visibility:hidden;
  8365. }
  8366. #u24639_img {
  8367. border-width:0px;
  8368. position:absolute;
  8369. left:0px;
  8370. top:0px;
  8371. width:65px;
  8372. height:32px;
  8373. }
  8374. #u24639 {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:628px;
  8378. top:349px;
  8379. width:65px;
  8380. height:32px;
  8381. display:flex;
  8382. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8383. font-weight:400;
  8384. font-style:normal;
  8385. font-size:12px;
  8386. color:#606266;
  8387. }
  8388. #u24639 .text {
  8389. position:absolute;
  8390. align-self:center;
  8391. padding:2px 2px 2px 0px;
  8392. box-sizing:border-box;
  8393. width:100%;
  8394. }
  8395. #u24639_text {
  8396. border-width:0px;
  8397. word-wrap:break-word;
  8398. text-transform:none;
  8399. visibility:hidden;
  8400. }
  8401. #u24640_img {
  8402. border-width:0px;
  8403. position:absolute;
  8404. left:0px;
  8405. top:0px;
  8406. width:65px;
  8407. height:32px;
  8408. }
  8409. #u24640 {
  8410. border-width:0px;
  8411. position:absolute;
  8412. left:693px;
  8413. top:349px;
  8414. width:65px;
  8415. height:32px;
  8416. display:flex;
  8417. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8418. font-weight:400;
  8419. font-style:normal;
  8420. font-size:12px;
  8421. color:#606266;
  8422. }
  8423. #u24640 .text {
  8424. position:absolute;
  8425. align-self:center;
  8426. padding:2px 2px 2px 0px;
  8427. box-sizing:border-box;
  8428. width:100%;
  8429. }
  8430. #u24640_text {
  8431. border-width:0px;
  8432. word-wrap:break-word;
  8433. text-transform:none;
  8434. visibility:hidden;
  8435. }
  8436. #u24641_img {
  8437. border-width:0px;
  8438. position:absolute;
  8439. left:0px;
  8440. top:0px;
  8441. width:65px;
  8442. height:32px;
  8443. }
  8444. #u24641 {
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:758px;
  8448. top:349px;
  8449. width:65px;
  8450. height:32px;
  8451. display:flex;
  8452. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8453. font-weight:400;
  8454. font-style:normal;
  8455. font-size:12px;
  8456. color:#606266;
  8457. }
  8458. #u24641 .text {
  8459. position:absolute;
  8460. align-self:center;
  8461. padding:2px 2px 2px 0px;
  8462. box-sizing:border-box;
  8463. width:100%;
  8464. }
  8465. #u24641_text {
  8466. border-width:0px;
  8467. word-wrap:break-word;
  8468. text-transform:none;
  8469. visibility:hidden;
  8470. }
  8471. #u24642_img {
  8472. border-width:0px;
  8473. position:absolute;
  8474. left:0px;
  8475. top:0px;
  8476. width:72px;
  8477. height:32px;
  8478. }
  8479. #u24642 {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:823px;
  8483. top:349px;
  8484. width:72px;
  8485. height:32px;
  8486. display:flex;
  8487. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8488. font-weight:400;
  8489. font-style:normal;
  8490. font-size:12px;
  8491. color:#606266;
  8492. }
  8493. #u24642 .text {
  8494. position:absolute;
  8495. align-self:center;
  8496. padding:2px 2px 2px 0px;
  8497. box-sizing:border-box;
  8498. width:100%;
  8499. }
  8500. #u24642_text {
  8501. border-width:0px;
  8502. word-wrap:break-word;
  8503. text-transform:none;
  8504. visibility:hidden;
  8505. }
  8506. #u24643_img {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:0px;
  8510. top:0px;
  8511. width:75px;
  8512. height:32px;
  8513. }
  8514. #u24643 {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:895px;
  8518. top:349px;
  8519. width:75px;
  8520. height:32px;
  8521. display:flex;
  8522. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8523. font-weight:400;
  8524. font-style:normal;
  8525. font-size:12px;
  8526. color:#606266;
  8527. }
  8528. #u24643 .text {
  8529. position:absolute;
  8530. align-self:center;
  8531. padding:2px 2px 2px 0px;
  8532. box-sizing:border-box;
  8533. width:100%;
  8534. }
  8535. #u24643_text {
  8536. border-width:0px;
  8537. word-wrap:break-word;
  8538. text-transform:none;
  8539. visibility:hidden;
  8540. }
  8541. #u24644_img {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:0px;
  8545. top:0px;
  8546. width:75px;
  8547. height:32px;
  8548. }
  8549. #u24644 {
  8550. border-width:0px;
  8551. position:absolute;
  8552. left:970px;
  8553. top:349px;
  8554. width:75px;
  8555. height:32px;
  8556. display:flex;
  8557. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8558. font-weight:400;
  8559. font-style:normal;
  8560. font-size:12px;
  8561. color:#606266;
  8562. }
  8563. #u24644 .text {
  8564. position:absolute;
  8565. align-self:center;
  8566. padding:2px 2px 2px 0px;
  8567. box-sizing:border-box;
  8568. width:100%;
  8569. }
  8570. #u24644_text {
  8571. border-width:0px;
  8572. word-wrap:break-word;
  8573. text-transform:none;
  8574. visibility:hidden;
  8575. }
  8576. #u24645_img {
  8577. border-width:0px;
  8578. position:absolute;
  8579. left:0px;
  8580. top:0px;
  8581. width:75px;
  8582. height:32px;
  8583. }
  8584. #u24645 {
  8585. border-width:0px;
  8586. position:absolute;
  8587. left:1045px;
  8588. top:349px;
  8589. width:75px;
  8590. height:32px;
  8591. display:flex;
  8592. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8593. font-weight:400;
  8594. font-style:normal;
  8595. font-size:12px;
  8596. color:#606266;
  8597. }
  8598. #u24645 .text {
  8599. position:absolute;
  8600. align-self:center;
  8601. padding:2px 2px 2px 0px;
  8602. box-sizing:border-box;
  8603. width:100%;
  8604. }
  8605. #u24645_text {
  8606. border-width:0px;
  8607. word-wrap:break-word;
  8608. text-transform:none;
  8609. visibility:hidden;
  8610. }
  8611. #u24646_img {
  8612. border-width:0px;
  8613. position:absolute;
  8614. left:0px;
  8615. top:0px;
  8616. width:75px;
  8617. height:32px;
  8618. }
  8619. #u24646 {
  8620. border-width:0px;
  8621. position:absolute;
  8622. left:1120px;
  8623. top:349px;
  8624. width:75px;
  8625. height:32px;
  8626. display:flex;
  8627. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8628. font-weight:400;
  8629. font-style:normal;
  8630. font-size:12px;
  8631. color:#606266;
  8632. }
  8633. #u24646 .text {
  8634. position:absolute;
  8635. align-self:center;
  8636. padding:2px 2px 2px 0px;
  8637. box-sizing:border-box;
  8638. width:100%;
  8639. }
  8640. #u24646_text {
  8641. border-width:0px;
  8642. word-wrap:break-word;
  8643. text-transform:none;
  8644. visibility:hidden;
  8645. }
  8646. #u24647_img {
  8647. border-width:0px;
  8648. position:absolute;
  8649. left:0px;
  8650. top:0px;
  8651. width:140px;
  8652. height:32px;
  8653. }
  8654. #u24647 {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:1195px;
  8658. top:349px;
  8659. width:140px;
  8660. height:32px;
  8661. display:flex;
  8662. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8663. font-weight:400;
  8664. font-style:normal;
  8665. font-size:12px;
  8666. color:#606266;
  8667. }
  8668. #u24647 .text {
  8669. position:absolute;
  8670. align-self:center;
  8671. padding:2px 2px 2px 0px;
  8672. box-sizing:border-box;
  8673. width:100%;
  8674. }
  8675. #u24647_text {
  8676. border-width:0px;
  8677. word-wrap:break-word;
  8678. text-transform:none;
  8679. visibility:hidden;
  8680. }
  8681. #u24648_img {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:0px;
  8685. top:0px;
  8686. width:140px;
  8687. height:32px;
  8688. }
  8689. #u24648 {
  8690. border-width:0px;
  8691. position:absolute;
  8692. left:1335px;
  8693. top:349px;
  8694. width:140px;
  8695. height:32px;
  8696. display:flex;
  8697. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8698. font-weight:400;
  8699. font-style:normal;
  8700. font-size:12px;
  8701. color:#606266;
  8702. }
  8703. #u24648 .text {
  8704. position:absolute;
  8705. align-self:center;
  8706. padding:2px 2px 2px 0px;
  8707. box-sizing:border-box;
  8708. width:100%;
  8709. }
  8710. #u24648_text {
  8711. border-width:0px;
  8712. word-wrap:break-word;
  8713. text-transform:none;
  8714. visibility:hidden;
  8715. }
  8716. #u24649 {
  8717. border-width:0px;
  8718. position:absolute;
  8719. left:0px;
  8720. top:0px;
  8721. width:0px;
  8722. height:0px;
  8723. }
  8724. #u24650_div {
  8725. border-width:0px;
  8726. position:absolute;
  8727. left:0px;
  8728. top:0px;
  8729. width:55px;
  8730. height:30px;
  8731. background:inherit;
  8732. background-color:rgba(255, 255, 255, 1);
  8733. box-sizing:border-box;
  8734. border-width:1px;
  8735. border-style:solid;
  8736. border-color:rgba(170, 170, 170, 1);
  8737. border-radius:4px;
  8738. -moz-box-shadow:none;
  8739. -webkit-box-shadow:none;
  8740. box-shadow:none;
  8741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8742. font-weight:400;
  8743. font-style:normal;
  8744. font-size:12px;
  8745. color:#555555;
  8746. }
  8747. #u24650 {
  8748. border-width:0px;
  8749. position:absolute;
  8750. left:719px;
  8751. top:220px;
  8752. width:55px;
  8753. height:30px;
  8754. display:flex;
  8755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8756. font-weight:400;
  8757. font-style:normal;
  8758. font-size:12px;
  8759. color:#555555;
  8760. }
  8761. #u24650 .text {
  8762. position:absolute;
  8763. align-self:center;
  8764. padding:5px 15px 5px 15px;
  8765. box-sizing:border-box;
  8766. width:100%;
  8767. }
  8768. #u24650_text {
  8769. border-width:0px;
  8770. white-space:nowrap;
  8771. text-transform:none;
  8772. }
  8773. #u24651_div {
  8774. border-width:0px;
  8775. position:absolute;
  8776. left:0px;
  8777. top:0px;
  8778. width:59px;
  8779. height:30px;
  8780. background:inherit;
  8781. background-color:rgba(24, 144, 255, 1);
  8782. box-sizing:border-box;
  8783. border-width:1px;
  8784. border-style:solid;
  8785. border-color:rgba(0, 153, 255, 1);
  8786. border-radius:4px;
  8787. -moz-box-shadow:none;
  8788. -webkit-box-shadow:none;
  8789. box-shadow:none;
  8790. font-family:'Microsoft YaHei', sans-serif;
  8791. font-weight:400;
  8792. font-style:normal;
  8793. font-size:14px;
  8794. color:#FFFFFF;
  8795. }
  8796. #u24651 {
  8797. border-width:0px;
  8798. position:absolute;
  8799. left:650px;
  8800. top:220px;
  8801. width:59px;
  8802. height:30px;
  8803. display:flex;
  8804. font-family:'Microsoft YaHei', sans-serif;
  8805. font-weight:400;
  8806. font-style:normal;
  8807. font-size:14px;
  8808. color:#FFFFFF;
  8809. }
  8810. #u24651 .text {
  8811. position:absolute;
  8812. align-self:center;
  8813. padding:5px 15px 5px 15px;
  8814. box-sizing:border-box;
  8815. width:100%;
  8816. }
  8817. #u24651_text {
  8818. border-width:0px;
  8819. white-space:nowrap;
  8820. text-transform:none;
  8821. }
  8822. #u24652 {
  8823. border-width:0px;
  8824. position:absolute;
  8825. left:0px;
  8826. top:0px;
  8827. width:0px;
  8828. height:0px;
  8829. }
  8830. #u24653_div {
  8831. border-width:0px;
  8832. position:absolute;
  8833. left:0px;
  8834. top:0px;
  8835. width:140px;
  8836. height:30px;
  8837. background:inherit;
  8838. background-color:rgba(255, 255, 255, 1);
  8839. box-sizing:border-box;
  8840. border-width:1px;
  8841. border-style:solid;
  8842. border-color:rgba(215, 215, 215, 1);
  8843. border-radius:4px;
  8844. -moz-box-shadow:none;
  8845. -webkit-box-shadow:none;
  8846. box-shadow:none;
  8847. font-size:11px;
  8848. }
  8849. #u24653 {
  8850. border-width:0px;
  8851. position:absolute;
  8852. left:500px;
  8853. top:180px;
  8854. width:140px;
  8855. height:30px;
  8856. display:flex;
  8857. font-size:11px;
  8858. }
  8859. #u24653 .text {
  8860. position:absolute;
  8861. align-self:center;
  8862. padding:2px 2px 2px 2px;
  8863. box-sizing:border-box;
  8864. width:100%;
  8865. }
  8866. #u24653_text {
  8867. border-width:0px;
  8868. word-wrap:break-word;
  8869. text-transform:none;
  8870. visibility:hidden;
  8871. }
  8872. #u24654_input {
  8873. position:absolute;
  8874. left:0px;
  8875. top:0px;
  8876. width:123px;
  8877. height:23px;
  8878. padding:2px 2px 2px 2px;
  8879. font-family:'ArialMT', 'Arial', sans-serif;
  8880. font-weight:400;
  8881. font-style:normal;
  8882. font-size:11px;
  8883. letter-spacing:normal;
  8884. color:#AAAAAA;
  8885. vertical-align:none;
  8886. text-align:left;
  8887. text-transform:none;
  8888. background-color:transparent;
  8889. border-color:transparent;
  8890. }
  8891. #u24654_input.disabled {
  8892. position:absolute;
  8893. left:0px;
  8894. top:0px;
  8895. width:123px;
  8896. height:23px;
  8897. padding:2px 2px 2px 2px;
  8898. font-family:'ArialMT', 'Arial', sans-serif;
  8899. font-weight:400;
  8900. font-style:normal;
  8901. font-size:11px;
  8902. letter-spacing:normal;
  8903. color:#AAAAAA;
  8904. vertical-align:none;
  8905. text-align:left;
  8906. text-transform:none;
  8907. background-color:transparent;
  8908. border-color:transparent;
  8909. }
  8910. #u24654_div {
  8911. border-width:0px;
  8912. position:absolute;
  8913. left:0px;
  8914. top:0px;
  8915. width:123px;
  8916. height:23px;
  8917. background:inherit;
  8918. background-color:rgba(255, 255, 255, 1);
  8919. border:none;
  8920. border-radius:0px;
  8921. -moz-box-shadow:none;
  8922. -webkit-box-shadow:none;
  8923. box-shadow:none;
  8924. font-size:11px;
  8925. color:#AAAAAA;
  8926. }
  8927. #u24654 {
  8928. border-width:0px;
  8929. position:absolute;
  8930. left:506px;
  8931. top:182px;
  8932. width:123px;
  8933. height:23px;
  8934. display:flex;
  8935. font-size:11px;
  8936. color:#AAAAAA;
  8937. }
  8938. #u24654 .text {
  8939. position:absolute;
  8940. align-self:flex-start;
  8941. padding:2px 2px 2px 2px;
  8942. box-sizing:border-box;
  8943. width:100%;
  8944. }
  8945. #u24654_div.disabled {
  8946. border-width:0px;
  8947. position:absolute;
  8948. left:0px;
  8949. top:0px;
  8950. width:123px;
  8951. height:23px;
  8952. background:inherit;
  8953. background-color:rgba(240, 240, 240, 1);
  8954. border:none;
  8955. border-radius:0px;
  8956. -moz-box-shadow:none;
  8957. -webkit-box-shadow:none;
  8958. box-shadow:none;
  8959. font-size:11px;
  8960. color:#AAAAAA;
  8961. }
  8962. #u24654.disabled {
  8963. }
  8964. .u24654_input_option {
  8965. font-size:11px;
  8966. }
  8967. #u24655 {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:0px;
  8971. top:0px;
  8972. width:0px;
  8973. height:0px;
  8974. }
  8975. #u24656_div {
  8976. border-width:0px;
  8977. position:absolute;
  8978. left:0px;
  8979. top:0px;
  8980. width:140px;
  8981. height:30px;
  8982. background:inherit;
  8983. background-color:rgba(255, 255, 255, 1);
  8984. box-sizing:border-box;
  8985. border-width:1px;
  8986. border-style:solid;
  8987. border-color:rgba(201, 201, 201, 1);
  8988. border-radius:4px;
  8989. -moz-box-shadow:none;
  8990. -webkit-box-shadow:none;
  8991. box-shadow:none;
  8992. font-family:'Microsoft YaHei', sans-serif;
  8993. font-weight:400;
  8994. font-style:normal;
  8995. font-size:14px;
  8996. color:#CCCCCC;
  8997. text-align:left;
  8998. }
  8999. #u24656 {
  9000. border-width:0px;
  9001. position:absolute;
  9002. left:1400px;
  9003. top:180px;
  9004. width:140px;
  9005. height:30px;
  9006. display:flex;
  9007. font-family:'Microsoft YaHei', sans-serif;
  9008. font-weight:400;
  9009. font-style:normal;
  9010. font-size:14px;
  9011. color:#CCCCCC;
  9012. text-align:left;
  9013. }
  9014. #u24656 .text {
  9015. position:absolute;
  9016. align-self:center;
  9017. padding:2px 8px 2px 8px;
  9018. box-sizing:border-box;
  9019. width:100%;
  9020. }
  9021. #u24656_text {
  9022. border-width:0px;
  9023. word-wrap:break-word;
  9024. text-transform:none;
  9025. visibility:hidden;
  9026. }
  9027. #u24657_input {
  9028. position:absolute;
  9029. left:0px;
  9030. top:0px;
  9031. width:127px;
  9032. height:25px;
  9033. padding:2px 2px 2px 2px;
  9034. font-family:'Microsoft YaHei', sans-serif;
  9035. font-weight:400;
  9036. font-style:normal;
  9037. font-size:10px;
  9038. letter-spacing:normal;
  9039. color:#000000;
  9040. vertical-align:none;
  9041. text-align:left;
  9042. text-transform:none;
  9043. background-color:transparent;
  9044. border-color:transparent;
  9045. }
  9046. #u24657_input.disabled {
  9047. position:absolute;
  9048. left:0px;
  9049. top:0px;
  9050. width:127px;
  9051. height:25px;
  9052. padding:2px 2px 2px 2px;
  9053. font-family:'Microsoft YaHei', sans-serif;
  9054. font-weight:400;
  9055. font-style:normal;
  9056. font-size:10px;
  9057. letter-spacing:normal;
  9058. color:#000000;
  9059. vertical-align:none;
  9060. text-align:left;
  9061. text-transform:none;
  9062. background-color:transparent;
  9063. border-color:transparent;
  9064. }
  9065. #u24657_div {
  9066. border-width:0px;
  9067. position:absolute;
  9068. left:0px;
  9069. top:0px;
  9070. width:127px;
  9071. height:25px;
  9072. background:inherit;
  9073. background-color:rgba(255, 255, 255, 1);
  9074. border:none;
  9075. border-radius:0px;
  9076. -moz-box-shadow:none;
  9077. -webkit-box-shadow:none;
  9078. box-shadow:none;
  9079. font-family:'Microsoft YaHei', sans-serif;
  9080. font-weight:400;
  9081. font-style:normal;
  9082. font-size:10px;
  9083. }
  9084. #u24657 {
  9085. border-width:0px;
  9086. position:absolute;
  9087. left:1408px;
  9088. top:181px;
  9089. width:127px;
  9090. height:25px;
  9091. display:flex;
  9092. font-family:'Microsoft YaHei', sans-serif;
  9093. font-weight:400;
  9094. font-style:normal;
  9095. font-size:10px;
  9096. }
  9097. #u24657 .text {
  9098. position:absolute;
  9099. align-self:center;
  9100. padding:2px 2px 2px 2px;
  9101. box-sizing:border-box;
  9102. width:100%;
  9103. }
  9104. #u24657_div.disabled {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:0px;
  9108. top:0px;
  9109. width:127px;
  9110. height:25px;
  9111. background:inherit;
  9112. background-color:rgba(240, 240, 240, 1);
  9113. border:none;
  9114. border-radius:0px;
  9115. -moz-box-shadow:none;
  9116. -webkit-box-shadow:none;
  9117. box-shadow:none;
  9118. font-family:'Microsoft YaHei', sans-serif;
  9119. font-weight:400;
  9120. font-style:normal;
  9121. font-size:10px;
  9122. }
  9123. #u24657.disabled {
  9124. }
  9125. #u24658 {
  9126. border-width:0px;
  9127. position:absolute;
  9128. left:0px;
  9129. top:0px;
  9130. width:0px;
  9131. height:0px;
  9132. }
  9133. #u24659_div {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:0px;
  9137. top:0px;
  9138. width:140px;
  9139. height:30px;
  9140. background:inherit;
  9141. background-color:rgba(255, 255, 255, 1);
  9142. box-sizing:border-box;
  9143. border-width:1px;
  9144. border-style:solid;
  9145. border-color:rgba(201, 201, 201, 1);
  9146. border-radius:4px;
  9147. -moz-box-shadow:none;
  9148. -webkit-box-shadow:none;
  9149. box-shadow:none;
  9150. font-family:'Microsoft YaHei', sans-serif;
  9151. font-weight:400;
  9152. font-style:normal;
  9153. font-size:14px;
  9154. color:#CCCCCC;
  9155. text-align:left;
  9156. }
  9157. #u24659 {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:950px;
  9161. top:180px;
  9162. width:140px;
  9163. height:30px;
  9164. display:flex;
  9165. font-family:'Microsoft YaHei', sans-serif;
  9166. font-weight:400;
  9167. font-style:normal;
  9168. font-size:14px;
  9169. color:#CCCCCC;
  9170. text-align:left;
  9171. }
  9172. #u24659 .text {
  9173. position:absolute;
  9174. align-self:center;
  9175. padding:2px 8px 2px 8px;
  9176. box-sizing:border-box;
  9177. width:100%;
  9178. }
  9179. #u24659_text {
  9180. border-width:0px;
  9181. word-wrap:break-word;
  9182. text-transform:none;
  9183. visibility:hidden;
  9184. }
  9185. #u24660_input {
  9186. position:absolute;
  9187. left:0px;
  9188. top:0px;
  9189. width:126px;
  9190. height:25px;
  9191. padding:2px 2px 2px 2px;
  9192. font-family:'Microsoft YaHei', sans-serif;
  9193. font-weight:400;
  9194. font-style:normal;
  9195. font-size:10px;
  9196. letter-spacing:normal;
  9197. color:#000000;
  9198. vertical-align:none;
  9199. text-align:left;
  9200. text-transform:none;
  9201. background-color:transparent;
  9202. border-color:transparent;
  9203. }
  9204. #u24660_input.disabled {
  9205. position:absolute;
  9206. left:0px;
  9207. top:0px;
  9208. width:126px;
  9209. height:25px;
  9210. padding:2px 2px 2px 2px;
  9211. font-family:'Microsoft YaHei', sans-serif;
  9212. font-weight:400;
  9213. font-style:normal;
  9214. font-size:10px;
  9215. letter-spacing:normal;
  9216. color:#000000;
  9217. vertical-align:none;
  9218. text-align:left;
  9219. text-transform:none;
  9220. background-color:transparent;
  9221. border-color:transparent;
  9222. }
  9223. #u24660_div {
  9224. border-width:0px;
  9225. position:absolute;
  9226. left:0px;
  9227. top:0px;
  9228. width:126px;
  9229. height:25px;
  9230. background:inherit;
  9231. background-color:rgba(255, 255, 255, 1);
  9232. border:none;
  9233. border-radius:0px;
  9234. -moz-box-shadow:none;
  9235. -webkit-box-shadow:none;
  9236. box-shadow:none;
  9237. font-family:'Microsoft YaHei', sans-serif;
  9238. font-weight:400;
  9239. font-style:normal;
  9240. font-size:10px;
  9241. }
  9242. #u24660 {
  9243. border-width:0px;
  9244. position:absolute;
  9245. left:958px;
  9246. top:181px;
  9247. width:126px;
  9248. height:25px;
  9249. display:flex;
  9250. font-family:'Microsoft YaHei', sans-serif;
  9251. font-weight:400;
  9252. font-style:normal;
  9253. font-size:10px;
  9254. }
  9255. #u24660 .text {
  9256. position:absolute;
  9257. align-self:center;
  9258. padding:2px 2px 2px 2px;
  9259. box-sizing:border-box;
  9260. width:100%;
  9261. }
  9262. #u24660_div.disabled {
  9263. border-width:0px;
  9264. position:absolute;
  9265. left:0px;
  9266. top:0px;
  9267. width:126px;
  9268. height:25px;
  9269. background:inherit;
  9270. background-color:rgba(240, 240, 240, 1);
  9271. border:none;
  9272. border-radius:0px;
  9273. -moz-box-shadow:none;
  9274. -webkit-box-shadow:none;
  9275. box-shadow:none;
  9276. font-family:'Microsoft YaHei', sans-serif;
  9277. font-weight:400;
  9278. font-style:normal;
  9279. font-size:10px;
  9280. }
  9281. #u24660.disabled {
  9282. }
  9283. #u24661 {
  9284. border-width:0px;
  9285. position:absolute;
  9286. left:0px;
  9287. top:0px;
  9288. width:0px;
  9289. height:0px;
  9290. }
  9291. #u24662_div {
  9292. border-width:0px;
  9293. position:absolute;
  9294. left:0px;
  9295. top:0px;
  9296. width:140px;
  9297. height:28px;
  9298. background:inherit;
  9299. background-color:rgba(255, 255, 255, 1);
  9300. box-sizing:border-box;
  9301. border-width:1px;
  9302. border-style:solid;
  9303. border-color:rgba(201, 201, 201, 1);
  9304. border-radius:4px;
  9305. -moz-box-shadow:none;
  9306. -webkit-box-shadow:none;
  9307. box-shadow:none;
  9308. font-family:'Microsoft YaHei', sans-serif;
  9309. font-weight:400;
  9310. font-style:normal;
  9311. font-size:14px;
  9312. color:#CCCCCC;
  9313. text-align:left;
  9314. }
  9315. #u24662 {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:350px;
  9319. top:221px;
  9320. width:140px;
  9321. height:28px;
  9322. display:flex;
  9323. font-family:'Microsoft YaHei', sans-serif;
  9324. font-weight:400;
  9325. font-style:normal;
  9326. font-size:14px;
  9327. color:#CCCCCC;
  9328. text-align:left;
  9329. }
  9330. #u24662 .text {
  9331. position:absolute;
  9332. align-self:center;
  9333. padding:2px 8px 2px 8px;
  9334. box-sizing:border-box;
  9335. width:100%;
  9336. }
  9337. #u24662_text {
  9338. border-width:0px;
  9339. word-wrap:break-word;
  9340. text-transform:none;
  9341. visibility:hidden;
  9342. }
  9343. #u24663_input {
  9344. position:absolute;
  9345. left:0px;
  9346. top:0px;
  9347. width:113px;
  9348. height:26px;
  9349. padding:2px 2px 2px 2px;
  9350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9351. font-weight:400;
  9352. font-style:normal;
  9353. font-size:14px;
  9354. letter-spacing:normal;
  9355. color:#000000;
  9356. vertical-align:none;
  9357. text-align:left;
  9358. text-transform:none;
  9359. background-color:transparent;
  9360. border-color:transparent;
  9361. }
  9362. #u24663_input.disabled {
  9363. position:absolute;
  9364. left:0px;
  9365. top:0px;
  9366. width:113px;
  9367. height:26px;
  9368. padding:2px 2px 2px 2px;
  9369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9370. font-weight:400;
  9371. font-style:normal;
  9372. font-size:14px;
  9373. letter-spacing:normal;
  9374. color:#000000;
  9375. vertical-align:none;
  9376. text-align:left;
  9377. text-transform:none;
  9378. background-color:transparent;
  9379. border-color:transparent;
  9380. }
  9381. #u24663_div {
  9382. border-width:0px;
  9383. position:absolute;
  9384. left:0px;
  9385. top:0px;
  9386. width:113px;
  9387. height:26px;
  9388. background:inherit;
  9389. background-color:rgba(255, 255, 255, 1);
  9390. border:none;
  9391. border-radius:0px;
  9392. -moz-box-shadow:none;
  9393. -webkit-box-shadow:none;
  9394. box-shadow:none;
  9395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9396. font-weight:400;
  9397. font-style:normal;
  9398. font-size:14px;
  9399. }
  9400. #u24663 {
  9401. border-width:0px;
  9402. position:absolute;
  9403. left:356px;
  9404. top:222px;
  9405. width:113px;
  9406. height:26px;
  9407. display:flex;
  9408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9409. font-weight:400;
  9410. font-style:normal;
  9411. font-size:14px;
  9412. }
  9413. #u24663 .text {
  9414. position:absolute;
  9415. align-self:center;
  9416. padding:2px 2px 2px 2px;
  9417. box-sizing:border-box;
  9418. width:100%;
  9419. }
  9420. #u24663_div.disabled {
  9421. border-width:0px;
  9422. position:absolute;
  9423. left:0px;
  9424. top:0px;
  9425. width:113px;
  9426. height:26px;
  9427. background:inherit;
  9428. background-color:rgba(240, 240, 240, 1);
  9429. border:none;
  9430. border-radius:0px;
  9431. -moz-box-shadow:none;
  9432. -webkit-box-shadow:none;
  9433. box-shadow:none;
  9434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9435. font-weight:400;
  9436. font-style:normal;
  9437. font-size:14px;
  9438. }
  9439. #u24663.disabled {
  9440. }
  9441. #u24664_img {
  9442. border-width:0px;
  9443. position:absolute;
  9444. left:0px;
  9445. top:0px;
  9446. width:12px;
  9447. height:15px;
  9448. }
  9449. #u24664 {
  9450. border-width:0px;
  9451. position:absolute;
  9452. left:469px;
  9453. top:228px;
  9454. width:12px;
  9455. height:15px;
  9456. display:flex;
  9457. }
  9458. #u24664 .text {
  9459. position:absolute;
  9460. align-self:center;
  9461. padding:2px 2px 2px 2px;
  9462. box-sizing:border-box;
  9463. width:100%;
  9464. }
  9465. #u24664_text {
  9466. border-width:0px;
  9467. word-wrap:break-word;
  9468. text-transform:none;
  9469. visibility:hidden;
  9470. }
  9471. #u24665 {
  9472. border-width:0px;
  9473. position:absolute;
  9474. left:0px;
  9475. top:0px;
  9476. width:0px;
  9477. height:0px;
  9478. }
  9479. #u24666_div {
  9480. border-width:0px;
  9481. position:absolute;
  9482. left:0px;
  9483. top:0px;
  9484. width:140px;
  9485. height:28px;
  9486. background:inherit;
  9487. background-color:rgba(255, 255, 255, 1);
  9488. box-sizing:border-box;
  9489. border-width:1px;
  9490. border-style:solid;
  9491. border-color:rgba(201, 201, 201, 1);
  9492. border-radius:4px;
  9493. -moz-box-shadow:none;
  9494. -webkit-box-shadow:none;
  9495. box-shadow:none;
  9496. font-family:'Microsoft YaHei', sans-serif;
  9497. font-weight:400;
  9498. font-style:normal;
  9499. font-size:14px;
  9500. color:#CCCCCC;
  9501. text-align:left;
  9502. }
  9503. #u24666 {
  9504. border-width:0px;
  9505. position:absolute;
  9506. left:500px;
  9507. top:221px;
  9508. width:140px;
  9509. height:28px;
  9510. display:flex;
  9511. font-family:'Microsoft YaHei', sans-serif;
  9512. font-weight:400;
  9513. font-style:normal;
  9514. font-size:14px;
  9515. color:#CCCCCC;
  9516. text-align:left;
  9517. }
  9518. #u24666 .text {
  9519. position:absolute;
  9520. align-self:center;
  9521. padding:2px 8px 2px 8px;
  9522. box-sizing:border-box;
  9523. width:100%;
  9524. }
  9525. #u24666_text {
  9526. border-width:0px;
  9527. word-wrap:break-word;
  9528. text-transform:none;
  9529. visibility:hidden;
  9530. }
  9531. #u24667_input {
  9532. position:absolute;
  9533. left:0px;
  9534. top:0px;
  9535. width:113px;
  9536. height:26px;
  9537. padding:2px 2px 2px 2px;
  9538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9539. font-weight:400;
  9540. font-style:normal;
  9541. font-size:14px;
  9542. letter-spacing:normal;
  9543. color:#000000;
  9544. vertical-align:none;
  9545. text-align:left;
  9546. text-transform:none;
  9547. background-color:transparent;
  9548. border-color:transparent;
  9549. }
  9550. #u24667_input.disabled {
  9551. position:absolute;
  9552. left:0px;
  9553. top:0px;
  9554. width:113px;
  9555. height:26px;
  9556. padding:2px 2px 2px 2px;
  9557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9558. font-weight:400;
  9559. font-style:normal;
  9560. font-size:14px;
  9561. letter-spacing:normal;
  9562. color:#000000;
  9563. vertical-align:none;
  9564. text-align:left;
  9565. text-transform:none;
  9566. background-color:transparent;
  9567. border-color:transparent;
  9568. }
  9569. #u24667_div {
  9570. border-width:0px;
  9571. position:absolute;
  9572. left:0px;
  9573. top:0px;
  9574. width:113px;
  9575. height:26px;
  9576. background:inherit;
  9577. background-color:rgba(255, 255, 255, 1);
  9578. border:none;
  9579. border-radius:0px;
  9580. -moz-box-shadow:none;
  9581. -webkit-box-shadow:none;
  9582. box-shadow:none;
  9583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9584. font-weight:400;
  9585. font-style:normal;
  9586. font-size:14px;
  9587. }
  9588. #u24667 {
  9589. border-width:0px;
  9590. position:absolute;
  9591. left:505px;
  9592. top:222px;
  9593. width:113px;
  9594. height:26px;
  9595. display:flex;
  9596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9597. font-weight:400;
  9598. font-style:normal;
  9599. font-size:14px;
  9600. }
  9601. #u24667 .text {
  9602. position:absolute;
  9603. align-self:center;
  9604. padding:2px 2px 2px 2px;
  9605. box-sizing:border-box;
  9606. width:100%;
  9607. }
  9608. #u24667_div.disabled {
  9609. border-width:0px;
  9610. position:absolute;
  9611. left:0px;
  9612. top:0px;
  9613. width:113px;
  9614. height:26px;
  9615. background:inherit;
  9616. background-color:rgba(240, 240, 240, 1);
  9617. border:none;
  9618. border-radius:0px;
  9619. -moz-box-shadow:none;
  9620. -webkit-box-shadow:none;
  9621. box-shadow:none;
  9622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9623. font-weight:400;
  9624. font-style:normal;
  9625. font-size:14px;
  9626. }
  9627. #u24667.disabled {
  9628. }
  9629. #u24668_img {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:0px;
  9633. top:0px;
  9634. width:12px;
  9635. height:15px;
  9636. }
  9637. #u24668 {
  9638. border-width:0px;
  9639. position:absolute;
  9640. left:618px;
  9641. top:228px;
  9642. width:12px;
  9643. height:15px;
  9644. display:flex;
  9645. }
  9646. #u24668 .text {
  9647. position:absolute;
  9648. align-self:center;
  9649. padding:2px 2px 2px 2px;
  9650. box-sizing:border-box;
  9651. width:100%;
  9652. }
  9653. #u24668_text {
  9654. border-width:0px;
  9655. word-wrap:break-word;
  9656. text-transform:none;
  9657. visibility:hidden;
  9658. }
  9659. #u24669 {
  9660. border-width:0px;
  9661. position:absolute;
  9662. left:0px;
  9663. top:0px;
  9664. width:0px;
  9665. height:0px;
  9666. }
  9667. #u24670_div {
  9668. border-width:0px;
  9669. position:absolute;
  9670. left:0px;
  9671. top:0px;
  9672. width:140px;
  9673. height:30px;
  9674. background:inherit;
  9675. background-color:rgba(255, 255, 255, 1);
  9676. box-sizing:border-box;
  9677. border-width:1px;
  9678. border-style:solid;
  9679. border-color:rgba(201, 201, 201, 1);
  9680. border-radius:4px;
  9681. -moz-box-shadow:none;
  9682. -webkit-box-shadow:none;
  9683. box-shadow:none;
  9684. font-family:'Microsoft YaHei', sans-serif;
  9685. font-weight:400;
  9686. font-style:normal;
  9687. font-size:14px;
  9688. color:#CCCCCC;
  9689. text-align:left;
  9690. }
  9691. #u24670 {
  9692. border-width:0px;
  9693. position:absolute;
  9694. left:1100px;
  9695. top:180px;
  9696. width:140px;
  9697. height:30px;
  9698. display:flex;
  9699. font-family:'Microsoft YaHei', sans-serif;
  9700. font-weight:400;
  9701. font-style:normal;
  9702. font-size:14px;
  9703. color:#CCCCCC;
  9704. text-align:left;
  9705. }
  9706. #u24670 .text {
  9707. position:absolute;
  9708. align-self:center;
  9709. padding:2px 8px 2px 8px;
  9710. box-sizing:border-box;
  9711. width:100%;
  9712. }
  9713. #u24670_text {
  9714. border-width:0px;
  9715. word-wrap:break-word;
  9716. text-transform:none;
  9717. visibility:hidden;
  9718. }
  9719. #u24671_input {
  9720. position:absolute;
  9721. left:0px;
  9722. top:0px;
  9723. width:126px;
  9724. height:25px;
  9725. padding:2px 2px 2px 2px;
  9726. font-family:'Microsoft YaHei', sans-serif;
  9727. font-weight:400;
  9728. font-style:normal;
  9729. font-size:10px;
  9730. letter-spacing:normal;
  9731. color:#000000;
  9732. vertical-align:none;
  9733. text-align:left;
  9734. text-transform:none;
  9735. background-color:transparent;
  9736. border-color:transparent;
  9737. }
  9738. #u24671_input.disabled {
  9739. position:absolute;
  9740. left:0px;
  9741. top:0px;
  9742. width:126px;
  9743. height:25px;
  9744. padding:2px 2px 2px 2px;
  9745. font-family:'Microsoft YaHei', sans-serif;
  9746. font-weight:400;
  9747. font-style:normal;
  9748. font-size:10px;
  9749. letter-spacing:normal;
  9750. color:#000000;
  9751. vertical-align:none;
  9752. text-align:left;
  9753. text-transform:none;
  9754. background-color:transparent;
  9755. border-color:transparent;
  9756. }
  9757. #u24671_div {
  9758. border-width:0px;
  9759. position:absolute;
  9760. left:0px;
  9761. top:0px;
  9762. width:126px;
  9763. height:25px;
  9764. background:inherit;
  9765. background-color:rgba(255, 255, 255, 1);
  9766. border:none;
  9767. border-radius:0px;
  9768. -moz-box-shadow:none;
  9769. -webkit-box-shadow:none;
  9770. box-shadow:none;
  9771. font-family:'Microsoft YaHei', sans-serif;
  9772. font-weight:400;
  9773. font-style:normal;
  9774. font-size:10px;
  9775. }
  9776. #u24671 {
  9777. border-width:0px;
  9778. position:absolute;
  9779. left:1109px;
  9780. top:181px;
  9781. width:126px;
  9782. height:25px;
  9783. display:flex;
  9784. font-family:'Microsoft YaHei', sans-serif;
  9785. font-weight:400;
  9786. font-style:normal;
  9787. font-size:10px;
  9788. }
  9789. #u24671 .text {
  9790. position:absolute;
  9791. align-self:center;
  9792. padding:2px 2px 2px 2px;
  9793. box-sizing:border-box;
  9794. width:100%;
  9795. }
  9796. #u24671_div.disabled {
  9797. border-width:0px;
  9798. position:absolute;
  9799. left:0px;
  9800. top:0px;
  9801. width:126px;
  9802. height:25px;
  9803. background:inherit;
  9804. background-color:rgba(240, 240, 240, 1);
  9805. border:none;
  9806. border-radius:0px;
  9807. -moz-box-shadow:none;
  9808. -webkit-box-shadow:none;
  9809. box-shadow:none;
  9810. font-family:'Microsoft YaHei', sans-serif;
  9811. font-weight:400;
  9812. font-style:normal;
  9813. font-size:10px;
  9814. }
  9815. #u24671.disabled {
  9816. }
  9817. #u24672 {
  9818. border-width:0px;
  9819. position:absolute;
  9820. left:0px;
  9821. top:0px;
  9822. width:0px;
  9823. height:0px;
  9824. }
  9825. #u24673_div {
  9826. border-width:0px;
  9827. position:absolute;
  9828. left:0px;
  9829. top:0px;
  9830. width:140px;
  9831. height:30px;
  9832. background:inherit;
  9833. background-color:rgba(255, 255, 255, 1);
  9834. box-sizing:border-box;
  9835. border-width:1px;
  9836. border-style:solid;
  9837. border-color:rgba(215, 215, 215, 1);
  9838. border-radius:4px;
  9839. -moz-box-shadow:none;
  9840. -webkit-box-shadow:none;
  9841. box-shadow:none;
  9842. font-size:11px;
  9843. }
  9844. #u24673 {
  9845. border-width:0px;
  9846. position:absolute;
  9847. left:350px;
  9848. top:180px;
  9849. width:140px;
  9850. height:30px;
  9851. display:flex;
  9852. font-size:11px;
  9853. }
  9854. #u24673 .text {
  9855. position:absolute;
  9856. align-self:center;
  9857. padding:2px 2px 2px 2px;
  9858. box-sizing:border-box;
  9859. width:100%;
  9860. }
  9861. #u24673_text {
  9862. border-width:0px;
  9863. word-wrap:break-word;
  9864. text-transform:none;
  9865. visibility:hidden;
  9866. }
  9867. #u24674_input {
  9868. position:absolute;
  9869. left:0px;
  9870. top:0px;
  9871. width:125px;
  9872. height:23px;
  9873. padding:2px 2px 2px 2px;
  9874. font-family:'ArialMT', 'Arial', sans-serif;
  9875. font-weight:400;
  9876. font-style:normal;
  9877. font-size:11px;
  9878. letter-spacing:normal;
  9879. color:#AAAAAA;
  9880. vertical-align:none;
  9881. text-align:left;
  9882. text-transform:none;
  9883. background-color:transparent;
  9884. border-color:transparent;
  9885. }
  9886. #u24674_input.disabled {
  9887. position:absolute;
  9888. left:0px;
  9889. top:0px;
  9890. width:125px;
  9891. height:23px;
  9892. padding:2px 2px 2px 2px;
  9893. font-family:'ArialMT', 'Arial', sans-serif;
  9894. font-weight:400;
  9895. font-style:normal;
  9896. font-size:11px;
  9897. letter-spacing:normal;
  9898. color:#AAAAAA;
  9899. vertical-align:none;
  9900. text-align:left;
  9901. text-transform:none;
  9902. background-color:transparent;
  9903. border-color:transparent;
  9904. }
  9905. #u24674_div {
  9906. border-width:0px;
  9907. position:absolute;
  9908. left:0px;
  9909. top:0px;
  9910. width:125px;
  9911. height:23px;
  9912. background:inherit;
  9913. background-color:rgba(255, 255, 255, 1);
  9914. border:none;
  9915. border-radius:0px;
  9916. -moz-box-shadow:none;
  9917. -webkit-box-shadow:none;
  9918. box-shadow:none;
  9919. font-size:11px;
  9920. color:#AAAAAA;
  9921. }
  9922. #u24674 {
  9923. border-width:0px;
  9924. position:absolute;
  9925. left:356px;
  9926. top:182px;
  9927. width:125px;
  9928. height:23px;
  9929. display:flex;
  9930. font-size:11px;
  9931. color:#AAAAAA;
  9932. }
  9933. #u24674 .text {
  9934. position:absolute;
  9935. align-self:flex-start;
  9936. padding:2px 2px 2px 2px;
  9937. box-sizing:border-box;
  9938. width:100%;
  9939. }
  9940. #u24674_div.disabled {
  9941. border-width:0px;
  9942. position:absolute;
  9943. left:0px;
  9944. top:0px;
  9945. width:125px;
  9946. height:23px;
  9947. background:inherit;
  9948. background-color:rgba(240, 240, 240, 1);
  9949. border:none;
  9950. border-radius:0px;
  9951. -moz-box-shadow:none;
  9952. -webkit-box-shadow:none;
  9953. box-shadow:none;
  9954. font-size:11px;
  9955. color:#AAAAAA;
  9956. }
  9957. #u24674.disabled {
  9958. }
  9959. .u24674_input_option {
  9960. font-size:11px;
  9961. }
  9962. #u24675 {
  9963. border-width:0px;
  9964. position:absolute;
  9965. left:0px;
  9966. top:0px;
  9967. width:0px;
  9968. height:0px;
  9969. }
  9970. #u24676_div {
  9971. border-width:0px;
  9972. position:absolute;
  9973. left:0px;
  9974. top:0px;
  9975. width:140px;
  9976. height:30px;
  9977. background:inherit;
  9978. background-color:rgba(255, 255, 255, 1);
  9979. box-sizing:border-box;
  9980. border-width:1px;
  9981. border-style:solid;
  9982. border-color:rgba(215, 215, 215, 1);
  9983. border-radius:4px;
  9984. -moz-box-shadow:none;
  9985. -webkit-box-shadow:none;
  9986. box-shadow:none;
  9987. font-size:11px;
  9988. }
  9989. #u24676 {
  9990. border-width:0px;
  9991. position:absolute;
  9992. left:650px;
  9993. top:180px;
  9994. width:140px;
  9995. height:30px;
  9996. display:flex;
  9997. font-size:11px;
  9998. }
  9999. #u24676 .text {
  10000. position:absolute;
  10001. align-self:center;
  10002. padding:2px 2px 2px 2px;
  10003. box-sizing:border-box;
  10004. width:100%;
  10005. }
  10006. #u24676_text {
  10007. border-width:0px;
  10008. word-wrap:break-word;
  10009. text-transform:none;
  10010. visibility:hidden;
  10011. }
  10012. #u24677_input {
  10013. position:absolute;
  10014. left:0px;
  10015. top:0px;
  10016. width:125px;
  10017. height:23px;
  10018. padding:2px 2px 2px 2px;
  10019. font-family:'ArialMT', 'Arial', sans-serif;
  10020. font-weight:400;
  10021. font-style:normal;
  10022. font-size:11px;
  10023. letter-spacing:normal;
  10024. color:#AAAAAA;
  10025. vertical-align:none;
  10026. text-align:left;
  10027. text-transform:none;
  10028. background-color:transparent;
  10029. border-color:transparent;
  10030. }
  10031. #u24677_input.disabled {
  10032. position:absolute;
  10033. left:0px;
  10034. top:0px;
  10035. width:125px;
  10036. height:23px;
  10037. padding:2px 2px 2px 2px;
  10038. font-family:'ArialMT', 'Arial', sans-serif;
  10039. font-weight:400;
  10040. font-style:normal;
  10041. font-size:11px;
  10042. letter-spacing:normal;
  10043. color:#AAAAAA;
  10044. vertical-align:none;
  10045. text-align:left;
  10046. text-transform:none;
  10047. background-color:transparent;
  10048. border-color:transparent;
  10049. }
  10050. #u24677_div {
  10051. border-width:0px;
  10052. position:absolute;
  10053. left:0px;
  10054. top:0px;
  10055. width:125px;
  10056. height:23px;
  10057. background:inherit;
  10058. background-color:rgba(255, 255, 255, 1);
  10059. border:none;
  10060. border-radius:0px;
  10061. -moz-box-shadow:none;
  10062. -webkit-box-shadow:none;
  10063. box-shadow:none;
  10064. font-size:11px;
  10065. color:#AAAAAA;
  10066. }
  10067. #u24677 {
  10068. border-width:0px;
  10069. position:absolute;
  10070. left:656px;
  10071. top:182px;
  10072. width:125px;
  10073. height:23px;
  10074. display:flex;
  10075. font-size:11px;
  10076. color:#AAAAAA;
  10077. }
  10078. #u24677 .text {
  10079. position:absolute;
  10080. align-self:flex-start;
  10081. padding:2px 2px 2px 2px;
  10082. box-sizing:border-box;
  10083. width:100%;
  10084. }
  10085. #u24677_div.disabled {
  10086. border-width:0px;
  10087. position:absolute;
  10088. left:0px;
  10089. top:0px;
  10090. width:125px;
  10091. height:23px;
  10092. background:inherit;
  10093. background-color:rgba(240, 240, 240, 1);
  10094. border:none;
  10095. border-radius:0px;
  10096. -moz-box-shadow:none;
  10097. -webkit-box-shadow:none;
  10098. box-shadow:none;
  10099. font-size:11px;
  10100. color:#AAAAAA;
  10101. }
  10102. #u24677.disabled {
  10103. }
  10104. .u24677_input_option {
  10105. font-size:11px;
  10106. }
  10107. #u24678 {
  10108. border-width:0px;
  10109. position:absolute;
  10110. left:0px;
  10111. top:0px;
  10112. width:0px;
  10113. height:0px;
  10114. }
  10115. #u24679_div {
  10116. border-width:0px;
  10117. position:absolute;
  10118. left:0px;
  10119. top:0px;
  10120. width:140px;
  10121. height:30px;
  10122. background:inherit;
  10123. background-color:rgba(255, 255, 255, 1);
  10124. box-sizing:border-box;
  10125. border-width:1px;
  10126. border-style:solid;
  10127. border-color:rgba(215, 215, 215, 1);
  10128. border-radius:4px;
  10129. -moz-box-shadow:none;
  10130. -webkit-box-shadow:none;
  10131. box-shadow:none;
  10132. font-size:11px;
  10133. }
  10134. #u24679 {
  10135. border-width:0px;
  10136. position:absolute;
  10137. left:800px;
  10138. top:180px;
  10139. width:140px;
  10140. height:30px;
  10141. display:flex;
  10142. font-size:11px;
  10143. }
  10144. #u24679 .text {
  10145. position:absolute;
  10146. align-self:center;
  10147. padding:2px 2px 2px 2px;
  10148. box-sizing:border-box;
  10149. width:100%;
  10150. }
  10151. #u24679_text {
  10152. border-width:0px;
  10153. word-wrap:break-word;
  10154. text-transform:none;
  10155. visibility:hidden;
  10156. }
  10157. #u24680_input {
  10158. position:absolute;
  10159. left:0px;
  10160. top:0px;
  10161. width:125px;
  10162. height:23px;
  10163. padding:2px 2px 2px 2px;
  10164. font-family:'ArialMT', 'Arial', sans-serif;
  10165. font-weight:400;
  10166. font-style:normal;
  10167. font-size:11px;
  10168. letter-spacing:normal;
  10169. color:#AAAAAA;
  10170. vertical-align:none;
  10171. text-align:left;
  10172. text-transform:none;
  10173. background-color:transparent;
  10174. border-color:transparent;
  10175. }
  10176. #u24680_input.disabled {
  10177. position:absolute;
  10178. left:0px;
  10179. top:0px;
  10180. width:125px;
  10181. height:23px;
  10182. padding:2px 2px 2px 2px;
  10183. font-family:'ArialMT', 'Arial', sans-serif;
  10184. font-weight:400;
  10185. font-style:normal;
  10186. font-size:11px;
  10187. letter-spacing:normal;
  10188. color:#AAAAAA;
  10189. vertical-align:none;
  10190. text-align:left;
  10191. text-transform:none;
  10192. background-color:transparent;
  10193. border-color:transparent;
  10194. }
  10195. #u24680_div {
  10196. border-width:0px;
  10197. position:absolute;
  10198. left:0px;
  10199. top:0px;
  10200. width:125px;
  10201. height:23px;
  10202. background:inherit;
  10203. background-color:rgba(255, 255, 255, 1);
  10204. border:none;
  10205. border-radius:0px;
  10206. -moz-box-shadow:none;
  10207. -webkit-box-shadow:none;
  10208. box-shadow:none;
  10209. font-size:11px;
  10210. color:#AAAAAA;
  10211. }
  10212. #u24680 {
  10213. border-width:0px;
  10214. position:absolute;
  10215. left:806px;
  10216. top:182px;
  10217. width:125px;
  10218. height:23px;
  10219. display:flex;
  10220. font-size:11px;
  10221. color:#AAAAAA;
  10222. }
  10223. #u24680 .text {
  10224. position:absolute;
  10225. align-self:flex-start;
  10226. padding:2px 2px 2px 2px;
  10227. box-sizing:border-box;
  10228. width:100%;
  10229. }
  10230. #u24680_div.disabled {
  10231. border-width:0px;
  10232. position:absolute;
  10233. left:0px;
  10234. top:0px;
  10235. width:125px;
  10236. height:23px;
  10237. background:inherit;
  10238. background-color:rgba(240, 240, 240, 1);
  10239. border:none;
  10240. border-radius:0px;
  10241. -moz-box-shadow:none;
  10242. -webkit-box-shadow:none;
  10243. box-shadow:none;
  10244. font-size:11px;
  10245. color:#AAAAAA;
  10246. }
  10247. #u24680.disabled {
  10248. }
  10249. .u24680_input_option {
  10250. font-size:11px;
  10251. }
  10252. #u24681 {
  10253. border-width:0px;
  10254. position:absolute;
  10255. left:0px;
  10256. top:0px;
  10257. width:0px;
  10258. height:0px;
  10259. }
  10260. #u24682_div {
  10261. border-width:0px;
  10262. position:absolute;
  10263. left:0px;
  10264. top:0px;
  10265. width:140px;
  10266. height:30px;
  10267. background:inherit;
  10268. background-color:rgba(255, 255, 255, 1);
  10269. box-sizing:border-box;
  10270. border-width:1px;
  10271. border-style:solid;
  10272. border-color:rgba(201, 201, 201, 1);
  10273. border-radius:4px;
  10274. -moz-box-shadow:none;
  10275. -webkit-box-shadow:none;
  10276. box-shadow:none;
  10277. font-family:'Microsoft YaHei', sans-serif;
  10278. font-weight:400;
  10279. font-style:normal;
  10280. font-size:14px;
  10281. color:#CCCCCC;
  10282. text-align:left;
  10283. }
  10284. #u24682 {
  10285. border-width:0px;
  10286. position:absolute;
  10287. left:1250px;
  10288. top:180px;
  10289. width:140px;
  10290. height:30px;
  10291. display:flex;
  10292. font-family:'Microsoft YaHei', sans-serif;
  10293. font-weight:400;
  10294. font-style:normal;
  10295. font-size:14px;
  10296. color:#CCCCCC;
  10297. text-align:left;
  10298. }
  10299. #u24682 .text {
  10300. position:absolute;
  10301. align-self:center;
  10302. padding:2px 8px 2px 8px;
  10303. box-sizing:border-box;
  10304. width:100%;
  10305. }
  10306. #u24682_text {
  10307. border-width:0px;
  10308. word-wrap:break-word;
  10309. text-transform:none;
  10310. visibility:hidden;
  10311. }
  10312. #u24683_input {
  10313. position:absolute;
  10314. left:0px;
  10315. top:0px;
  10316. width:126px;
  10317. height:25px;
  10318. padding:2px 2px 2px 2px;
  10319. font-family:'Microsoft YaHei', sans-serif;
  10320. font-weight:400;
  10321. font-style:normal;
  10322. font-size:10px;
  10323. letter-spacing:normal;
  10324. color:#000000;
  10325. vertical-align:none;
  10326. text-align:left;
  10327. text-transform:none;
  10328. background-color:transparent;
  10329. border-color:transparent;
  10330. }
  10331. #u24683_input.disabled {
  10332. position:absolute;
  10333. left:0px;
  10334. top:0px;
  10335. width:126px;
  10336. height:25px;
  10337. padding:2px 2px 2px 2px;
  10338. font-family:'Microsoft YaHei', sans-serif;
  10339. font-weight:400;
  10340. font-style:normal;
  10341. font-size:10px;
  10342. letter-spacing:normal;
  10343. color:#000000;
  10344. vertical-align:none;
  10345. text-align:left;
  10346. text-transform:none;
  10347. background-color:transparent;
  10348. border-color:transparent;
  10349. }
  10350. #u24683_div {
  10351. border-width:0px;
  10352. position:absolute;
  10353. left:0px;
  10354. top:0px;
  10355. width:126px;
  10356. height:25px;
  10357. background:inherit;
  10358. background-color:rgba(255, 255, 255, 1);
  10359. border:none;
  10360. border-radius:0px;
  10361. -moz-box-shadow:none;
  10362. -webkit-box-shadow:none;
  10363. box-shadow:none;
  10364. font-family:'Microsoft YaHei', sans-serif;
  10365. font-weight:400;
  10366. font-style:normal;
  10367. font-size:10px;
  10368. }
  10369. #u24683 {
  10370. border-width:0px;
  10371. position:absolute;
  10372. left:1259px;
  10373. top:181px;
  10374. width:126px;
  10375. height:25px;
  10376. display:flex;
  10377. font-family:'Microsoft YaHei', sans-serif;
  10378. font-weight:400;
  10379. font-style:normal;
  10380. font-size:10px;
  10381. }
  10382. #u24683 .text {
  10383. position:absolute;
  10384. align-self:center;
  10385. padding:2px 2px 2px 2px;
  10386. box-sizing:border-box;
  10387. width:100%;
  10388. }
  10389. #u24683_div.disabled {
  10390. border-width:0px;
  10391. position:absolute;
  10392. left:0px;
  10393. top:0px;
  10394. width:126px;
  10395. height:25px;
  10396. background:inherit;
  10397. background-color:rgba(240, 240, 240, 1);
  10398. border:none;
  10399. border-radius:0px;
  10400. -moz-box-shadow:none;
  10401. -webkit-box-shadow:none;
  10402. box-shadow:none;
  10403. font-family:'Microsoft YaHei', sans-serif;
  10404. font-weight:400;
  10405. font-style:normal;
  10406. font-size:10px;
  10407. }
  10408. #u24683.disabled {
  10409. }
  10410. #u24684_div {
  10411. border-width:0px;
  10412. position:absolute;
  10413. left:0px;
  10414. top:0px;
  10415. width:55px;
  10416. height:30px;
  10417. background:inherit;
  10418. background-color:rgba(255, 255, 255, 1);
  10419. box-sizing:border-box;
  10420. border-width:1px;
  10421. border-style:solid;
  10422. border-color:rgba(170, 170, 170, 1);
  10423. border-radius:4px;
  10424. -moz-box-shadow:none;
  10425. -webkit-box-shadow:none;
  10426. box-shadow:none;
  10427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10428. font-weight:400;
  10429. font-style:normal;
  10430. font-size:12px;
  10431. color:#555555;
  10432. }
  10433. #u24684 {
  10434. border-width:0px;
  10435. position:absolute;
  10436. left:350px;
  10437. top:269px;
  10438. width:55px;
  10439. height:30px;
  10440. display:flex;
  10441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10442. font-weight:400;
  10443. font-style:normal;
  10444. font-size:12px;
  10445. color:#555555;
  10446. }
  10447. #u24684 .text {
  10448. position:absolute;
  10449. align-self:center;
  10450. padding:5px 15px 5px 15px;
  10451. box-sizing:border-box;
  10452. width:100%;
  10453. }
  10454. #u24684_text {
  10455. border-width:0px;
  10456. white-space:nowrap;
  10457. text-transform:none;
  10458. }
  10459. #u24685_div {
  10460. border-width:0px;
  10461. position:absolute;
  10462. left:0px;
  10463. top:0px;
  10464. width:15px;
  10465. height:17px;
  10466. background:inherit;
  10467. background-color:rgba(217, 0, 27, 1);
  10468. border:none;
  10469. border-radius:8px;
  10470. -moz-box-shadow:none;
  10471. -webkit-box-shadow:none;
  10472. box-shadow:none;
  10473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10474. font-weight:400;
  10475. font-style:normal;
  10476. font-size:12px;
  10477. color:#FFFFFF;
  10478. }
  10479. #u24685 {
  10480. border-width:0px;
  10481. position:absolute;
  10482. left:498px;
  10483. top:106px;
  10484. width:15px;
  10485. height:17px;
  10486. display:flex;
  10487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10488. font-weight:400;
  10489. font-style:normal;
  10490. font-size:12px;
  10491. color:#FFFFFF;
  10492. }
  10493. #u24685 .text {
  10494. position:absolute;
  10495. align-self:center;
  10496. padding:0px 0px 0px 0px;
  10497. box-sizing:border-box;
  10498. width:100%;
  10499. }
  10500. #u24685_text {
  10501. border-width:0px;
  10502. word-wrap:break-word;
  10503. text-transform:none;
  10504. }
  10505. #u24686_div {
  10506. border-width:0px;
  10507. position:absolute;
  10508. left:0px;
  10509. top:0px;
  10510. width:73px;
  10511. height:50px;
  10512. background:inherit;
  10513. background-color:rgba(255, 255, 255, 0);
  10514. border:none;
  10515. border-left:0px;
  10516. border-top:0px;
  10517. border-right:0px;
  10518. border-radius:0px;
  10519. border-bottom-right-radius:0px;
  10520. border-bottom-left-radius:0px;
  10521. -moz-box-shadow:none;
  10522. -webkit-box-shadow:none;
  10523. box-shadow:none;
  10524. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10525. font-weight:500;
  10526. font-style:normal;
  10527. font-size:18px;
  10528. color:#1890FF;
  10529. }
  10530. #u24686 {
  10531. border-width:0px;
  10532. position:absolute;
  10533. left:350px;
  10534. top:50px;
  10535. width:73px;
  10536. height:50px;
  10537. display:flex;
  10538. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10539. font-weight:500;
  10540. font-style:normal;
  10541. font-size:18px;
  10542. color:#1890FF;
  10543. }
  10544. #u24686 .text {
  10545. position:absolute;
  10546. align-self:center;
  10547. padding:0px 0px 0px 0px;
  10548. box-sizing:border-box;
  10549. width:100%;
  10550. }
  10551. #u24686_text {
  10552. border-width:0px;
  10553. white-space:nowrap;
  10554. text-transform:none;
  10555. }
  10556. #u24687_div {
  10557. border-width:0px;
  10558. position:absolute;
  10559. left:0px;
  10560. top:0px;
  10561. width:73px;
  10562. height:50px;
  10563. background:inherit;
  10564. background-color:rgba(255, 255, 255, 0);
  10565. border:none;
  10566. border-left:0px;
  10567. border-top:0px;
  10568. border-right:0px;
  10569. border-radius:0px;
  10570. border-bottom-right-radius:0px;
  10571. border-bottom-left-radius:0px;
  10572. -moz-box-shadow:none;
  10573. -webkit-box-shadow:none;
  10574. box-shadow:none;
  10575. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10576. font-weight:500;
  10577. font-style:normal;
  10578. font-size:18px;
  10579. }
  10580. #u24687 {
  10581. border-width:0px;
  10582. position:absolute;
  10583. left:453px;
  10584. top:50px;
  10585. width:73px;
  10586. height:50px;
  10587. display:flex;
  10588. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10589. font-weight:500;
  10590. font-style:normal;
  10591. font-size:18px;
  10592. }
  10593. #u24687 .text {
  10594. position:absolute;
  10595. align-self:center;
  10596. padding:0px 0px 0px 0px;
  10597. box-sizing:border-box;
  10598. width:100%;
  10599. }
  10600. #u24687_text {
  10601. border-width:0px;
  10602. white-space:nowrap;
  10603. text-transform:none;
  10604. }
  10605. #u24688 {
  10606. border-width:0px;
  10607. position:absolute;
  10608. left:0px;
  10609. top:0px;
  10610. width:0px;
  10611. height:0px;
  10612. }
  10613. #u24689_div {
  10614. border-width:0px;
  10615. position:absolute;
  10616. left:0px;
  10617. top:0px;
  10618. width:200px;
  10619. height:1180px;
  10620. background:inherit;
  10621. background-color:rgba(255, 255, 255, 1);
  10622. border:none;
  10623. border-radius:0px;
  10624. -moz-box-shadow:none;
  10625. -webkit-box-shadow:none;
  10626. box-shadow:none;
  10627. }
  10628. #u24689 {
  10629. border-width:0px;
  10630. position:absolute;
  10631. left:120px;
  10632. top:50px;
  10633. width:200px;
  10634. height:1180px;
  10635. display:flex;
  10636. }
  10637. #u24689 .text {
  10638. position:absolute;
  10639. align-self:center;
  10640. padding:2px 2px 2px 2px;
  10641. box-sizing:border-box;
  10642. width:100%;
  10643. }
  10644. #u24689_text {
  10645. border-width:0px;
  10646. word-wrap:break-word;
  10647. text-transform:none;
  10648. visibility:hidden;
  10649. }
  10650. #u24690_div {
  10651. border-width:0px;
  10652. position:absolute;
  10653. left:0px;
  10654. top:0px;
  10655. width:200px;
  10656. height:60px;
  10657. background:inherit;
  10658. background-color:rgba(224, 231, 247, 1);
  10659. border:none;
  10660. border-radius:0px;
  10661. -moz-box-shadow:none;
  10662. -webkit-box-shadow:none;
  10663. box-shadow:none;
  10664. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10665. font-weight:500;
  10666. font-style:normal;
  10667. font-size:18px;
  10668. }
  10669. #u24690 {
  10670. border-width:0px;
  10671. position:absolute;
  10672. left:120px;
  10673. top:50px;
  10674. width:200px;
  10675. height:60px;
  10676. display:flex;
  10677. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10678. font-weight:500;
  10679. font-style:normal;
  10680. font-size:18px;
  10681. }
  10682. #u24690 .text {
  10683. position:absolute;
  10684. align-self:center;
  10685. padding:0px 0px 0px 20px;
  10686. box-sizing:border-box;
  10687. width:100%;
  10688. }
  10689. #u24690_text {
  10690. border-width:0px;
  10691. word-wrap:break-word;
  10692. text-transform:none;
  10693. }
  10694. #u24691_div {
  10695. border-width:0px;
  10696. position:absolute;
  10697. left:0px;
  10698. top:0px;
  10699. width:97px;
  10700. height:22px;
  10701. background:inherit;
  10702. background-color:rgba(255, 255, 255, 0);
  10703. border:none;
  10704. border-radius:0px;
  10705. -moz-box-shadow:none;
  10706. -webkit-box-shadow:none;
  10707. box-shadow:none;
  10708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10709. font-weight:400;
  10710. font-style:normal;
  10711. font-size:16px;
  10712. }
  10713. #u24691 {
  10714. border-width:0px;
  10715. position:absolute;
  10716. left:146px;
  10717. top:167px;
  10718. width:97px;
  10719. height:22px;
  10720. display:flex;
  10721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10722. font-weight:400;
  10723. font-style:normal;
  10724. font-size:16px;
  10725. }
  10726. #u24691 .text {
  10727. position:absolute;
  10728. align-self:flex-start;
  10729. padding:0px 0px 0px 0px;
  10730. box-sizing:border-box;
  10731. width:100%;
  10732. }
  10733. #u24691_text {
  10734. border-width:0px;
  10735. white-space:nowrap;
  10736. text-transform:none;
  10737. }
  10738. #u24692_div {
  10739. border-width:0px;
  10740. position:absolute;
  10741. left:0px;
  10742. top:0px;
  10743. width:97px;
  10744. height:22px;
  10745. background:inherit;
  10746. background-color:rgba(255, 255, 255, 0);
  10747. border:none;
  10748. border-radius:0px;
  10749. -moz-box-shadow:none;
  10750. -webkit-box-shadow:none;
  10751. box-shadow:none;
  10752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10753. font-weight:400;
  10754. font-style:normal;
  10755. font-size:16px;
  10756. }
  10757. #u24692 {
  10758. border-width:0px;
  10759. position:absolute;
  10760. left:146px;
  10761. top:209px;
  10762. width:97px;
  10763. height:22px;
  10764. display:flex;
  10765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10766. font-weight:400;
  10767. font-style:normal;
  10768. font-size:16px;
  10769. }
  10770. #u24692 .text {
  10771. position:absolute;
  10772. align-self:flex-start;
  10773. padding:0px 0px 0px 0px;
  10774. box-sizing:border-box;
  10775. width:100%;
  10776. }
  10777. #u24692_text {
  10778. border-width:0px;
  10779. white-space:nowrap;
  10780. text-transform:none;
  10781. }
  10782. #u24693_div {
  10783. border-width:0px;
  10784. position:absolute;
  10785. left:0px;
  10786. top:0px;
  10787. width:73px;
  10788. height:17px;
  10789. background:inherit;
  10790. background-color:rgba(255, 255, 255, 0);
  10791. border:none;
  10792. border-radius:0px;
  10793. -moz-box-shadow:none;
  10794. -webkit-box-shadow:none;
  10795. box-shadow:none;
  10796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10797. font-weight:400;
  10798. font-style:normal;
  10799. font-size:12px;
  10800. color:#AAAAAA;
  10801. }
  10802. #u24693 {
  10803. border-width:0px;
  10804. position:absolute;
  10805. left:146px;
  10806. top:130px;
  10807. width:73px;
  10808. height:17px;
  10809. display:flex;
  10810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10811. font-weight:400;
  10812. font-style:normal;
  10813. font-size:12px;
  10814. color:#AAAAAA;
  10815. }
  10816. #u24693 .text {
  10817. position:absolute;
  10818. align-self:flex-start;
  10819. padding:0px 0px 0px 0px;
  10820. box-sizing:border-box;
  10821. width:100%;
  10822. }
  10823. #u24693_text {
  10824. border-width:0px;
  10825. white-space:nowrap;
  10826. text-transform:none;
  10827. }
  10828. #u24694_div {
  10829. border-width:0px;
  10830. position:absolute;
  10831. left:0px;
  10832. top:0px;
  10833. width:73px;
  10834. height:17px;
  10835. background:inherit;
  10836. background-color:rgba(255, 255, 255, 0);
  10837. border:none;
  10838. border-radius:0px;
  10839. -moz-box-shadow:none;
  10840. -webkit-box-shadow:none;
  10841. box-shadow:none;
  10842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10843. font-weight:400;
  10844. font-style:normal;
  10845. font-size:12px;
  10846. color:#AAAAAA;
  10847. }
  10848. #u24694 {
  10849. border-width:0px;
  10850. position:absolute;
  10851. left:146px;
  10852. top:397px;
  10853. width:73px;
  10854. height:17px;
  10855. display:flex;
  10856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10857. font-weight:400;
  10858. font-style:normal;
  10859. font-size:12px;
  10860. color:#AAAAAA;
  10861. }
  10862. #u24694 .text {
  10863. position:absolute;
  10864. align-self:flex-start;
  10865. padding:0px 0px 0px 0px;
  10866. box-sizing:border-box;
  10867. width:100%;
  10868. }
  10869. #u24694_text {
  10870. border-width:0px;
  10871. white-space:nowrap;
  10872. text-transform:none;
  10873. }
  10874. #u24695_img {
  10875. border-width:0px;
  10876. position:absolute;
  10877. left:0px;
  10878. top:0px;
  10879. width:201px;
  10880. height:2px;
  10881. }
  10882. #u24695 {
  10883. border-width:0px;
  10884. position:absolute;
  10885. left:120px;
  10886. top:375px;
  10887. width:200px;
  10888. height:1px;
  10889. display:flex;
  10890. }
  10891. #u24695 .text {
  10892. position:absolute;
  10893. align-self:center;
  10894. padding:2px 2px 2px 2px;
  10895. box-sizing:border-box;
  10896. width:100%;
  10897. }
  10898. #u24695_text {
  10899. border-width:0px;
  10900. word-wrap:break-word;
  10901. text-transform:none;
  10902. visibility:hidden;
  10903. }
  10904. #u24696_div {
  10905. border-width:0px;
  10906. position:absolute;
  10907. left:0px;
  10908. top:0px;
  10909. width:65px;
  10910. height:22px;
  10911. background:inherit;
  10912. background-color:rgba(255, 255, 255, 0);
  10913. border:none;
  10914. border-radius:0px;
  10915. -moz-box-shadow:none;
  10916. -webkit-box-shadow:none;
  10917. box-shadow:none;
  10918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10919. font-weight:400;
  10920. font-style:normal;
  10921. font-size:16px;
  10922. }
  10923. #u24696 {
  10924. border-width:0px;
  10925. position:absolute;
  10926. left:146px;
  10927. top:435px;
  10928. width:65px;
  10929. height:22px;
  10930. display:flex;
  10931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10932. font-weight:400;
  10933. font-style:normal;
  10934. font-size:16px;
  10935. }
  10936. #u24696 .text {
  10937. position:absolute;
  10938. align-self:flex-start;
  10939. padding:0px 0px 0px 0px;
  10940. box-sizing:border-box;
  10941. width:100%;
  10942. }
  10943. #u24696_text {
  10944. border-width:0px;
  10945. white-space:nowrap;
  10946. text-transform:none;
  10947. }
  10948. #u24697_div {
  10949. border-width:0px;
  10950. position:absolute;
  10951. left:0px;
  10952. top:0px;
  10953. width:97px;
  10954. height:22px;
  10955. background:inherit;
  10956. background-color:rgba(255, 255, 255, 0);
  10957. border:none;
  10958. border-radius:0px;
  10959. -moz-box-shadow:none;
  10960. -webkit-box-shadow:none;
  10961. box-shadow:none;
  10962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10963. font-weight:400;
  10964. font-style:normal;
  10965. font-size:16px;
  10966. }
  10967. #u24697 {
  10968. border-width:0px;
  10969. position:absolute;
  10970. left:146px;
  10971. top:477px;
  10972. width:97px;
  10973. height:22px;
  10974. display:flex;
  10975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10976. font-weight:400;
  10977. font-style:normal;
  10978. font-size:16px;
  10979. }
  10980. #u24697 .text {
  10981. position:absolute;
  10982. align-self:flex-start;
  10983. padding:0px 0px 0px 0px;
  10984. box-sizing:border-box;
  10985. width:100%;
  10986. }
  10987. #u24697_text {
  10988. border-width:0px;
  10989. white-space:nowrap;
  10990. text-transform:none;
  10991. }
  10992. #u24698_div {
  10993. border-width:0px;
  10994. position:absolute;
  10995. left:0px;
  10996. top:0px;
  10997. width:97px;
  10998. height:22px;
  10999. background:inherit;
  11000. background-color:rgba(255, 255, 255, 0);
  11001. border:none;
  11002. border-radius:0px;
  11003. -moz-box-shadow:none;
  11004. -webkit-box-shadow:none;
  11005. box-shadow:none;
  11006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11007. font-weight:400;
  11008. font-style:normal;
  11009. font-size:16px;
  11010. }
  11011. #u24698 {
  11012. border-width:0px;
  11013. position:absolute;
  11014. left:146px;
  11015. top:251px;
  11016. width:97px;
  11017. height:22px;
  11018. display:flex;
  11019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11020. font-weight:400;
  11021. font-style:normal;
  11022. font-size:16px;
  11023. }
  11024. #u24698 .text {
  11025. position:absolute;
  11026. align-self:flex-start;
  11027. padding:0px 0px 0px 0px;
  11028. box-sizing:border-box;
  11029. width:100%;
  11030. }
  11031. #u24698_text {
  11032. border-width:0px;
  11033. white-space:nowrap;
  11034. text-transform:none;
  11035. }
  11036. #u24699_div {
  11037. border-width:0px;
  11038. position:absolute;
  11039. left:0px;
  11040. top:0px;
  11041. width:97px;
  11042. height:22px;
  11043. background:inherit;
  11044. background-color:rgba(255, 255, 255, 0);
  11045. border:none;
  11046. border-radius:0px;
  11047. -moz-box-shadow:none;
  11048. -webkit-box-shadow:none;
  11049. box-shadow:none;
  11050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11051. font-weight:400;
  11052. font-style:normal;
  11053. font-size:16px;
  11054. }
  11055. #u24699 {
  11056. border-width:0px;
  11057. position:absolute;
  11058. left:146px;
  11059. top:293px;
  11060. width:97px;
  11061. height:22px;
  11062. display:flex;
  11063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11064. font-weight:400;
  11065. font-style:normal;
  11066. font-size:16px;
  11067. }
  11068. #u24699 .text {
  11069. position:absolute;
  11070. align-self:flex-start;
  11071. padding:0px 0px 0px 0px;
  11072. box-sizing:border-box;
  11073. width:100%;
  11074. }
  11075. #u24699_text {
  11076. border-width:0px;
  11077. white-space:nowrap;
  11078. text-transform:none;
  11079. }
  11080. #u24700_div {
  11081. border-width:0px;
  11082. position:absolute;
  11083. left:0px;
  11084. top:0px;
  11085. width:97px;
  11086. height:22px;
  11087. background:inherit;
  11088. background-color:rgba(255, 255, 255, 0);
  11089. border:none;
  11090. border-radius:0px;
  11091. -moz-box-shadow:none;
  11092. -webkit-box-shadow:none;
  11093. box-shadow:none;
  11094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11095. font-weight:400;
  11096. font-style:normal;
  11097. font-size:16px;
  11098. }
  11099. #u24700 {
  11100. border-width:0px;
  11101. position:absolute;
  11102. left:146px;
  11103. top:519px;
  11104. width:97px;
  11105. height:22px;
  11106. display:flex;
  11107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11108. font-weight:400;
  11109. font-style:normal;
  11110. font-size:16px;
  11111. }
  11112. #u24700 .text {
  11113. position:absolute;
  11114. align-self:flex-start;
  11115. padding:0px 0px 0px 0px;
  11116. box-sizing:border-box;
  11117. width:100%;
  11118. }
  11119. #u24700_text {
  11120. border-width:0px;
  11121. white-space:nowrap;
  11122. text-transform:none;
  11123. }
  11124. #u24701_div {
  11125. border-width:0px;
  11126. position:absolute;
  11127. left:0px;
  11128. top:0px;
  11129. width:97px;
  11130. height:22px;
  11131. background:inherit;
  11132. background-color:rgba(255, 255, 255, 0);
  11133. border:none;
  11134. border-radius:0px;
  11135. -moz-box-shadow:none;
  11136. -webkit-box-shadow:none;
  11137. box-shadow:none;
  11138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11139. font-weight:400;
  11140. font-style:normal;
  11141. font-size:16px;
  11142. }
  11143. #u24701 {
  11144. border-width:0px;
  11145. position:absolute;
  11146. left:146px;
  11147. top:561px;
  11148. width:97px;
  11149. height:22px;
  11150. display:flex;
  11151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11152. font-weight:400;
  11153. font-style:normal;
  11154. font-size:16px;
  11155. }
  11156. #u24701 .text {
  11157. position:absolute;
  11158. align-self:flex-start;
  11159. padding:0px 0px 0px 0px;
  11160. box-sizing:border-box;
  11161. width:100%;
  11162. }
  11163. #u24701_text {
  11164. border-width:0px;
  11165. white-space:nowrap;
  11166. text-transform:none;
  11167. }
  11168. #u24702_div {
  11169. border-width:0px;
  11170. position:absolute;
  11171. left:0px;
  11172. top:0px;
  11173. width:97px;
  11174. height:22px;
  11175. background:inherit;
  11176. background-color:rgba(255, 255, 255, 0);
  11177. border:none;
  11178. border-radius:0px;
  11179. -moz-box-shadow:none;
  11180. -webkit-box-shadow:none;
  11181. box-shadow:none;
  11182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11183. font-weight:400;
  11184. font-style:normal;
  11185. font-size:16px;
  11186. }
  11187. #u24702 {
  11188. border-width:0px;
  11189. position:absolute;
  11190. left:146px;
  11191. top:603px;
  11192. width:97px;
  11193. height:22px;
  11194. display:flex;
  11195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11196. font-weight:400;
  11197. font-style:normal;
  11198. font-size:16px;
  11199. }
  11200. #u24702 .text {
  11201. position:absolute;
  11202. align-self:flex-start;
  11203. padding:0px 0px 0px 0px;
  11204. box-sizing:border-box;
  11205. width:100%;
  11206. }
  11207. #u24702_text {
  11208. border-width:0px;
  11209. white-space:nowrap;
  11210. text-transform:none;
  11211. }
  11212. #u24703_div {
  11213. border-width:0px;
  11214. position:absolute;
  11215. left:0px;
  11216. top:0px;
  11217. width:49px;
  11218. height:17px;
  11219. background:inherit;
  11220. background-color:rgba(255, 255, 255, 0);
  11221. border:none;
  11222. border-radius:0px;
  11223. -moz-box-shadow:none;
  11224. -webkit-box-shadow:none;
  11225. box-shadow:none;
  11226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11227. font-weight:400;
  11228. font-style:normal;
  11229. font-size:12px;
  11230. color:#AAAAAA;
  11231. }
  11232. #u24703 {
  11233. border-width:0px;
  11234. position:absolute;
  11235. left:146px;
  11236. top:670px;
  11237. width:49px;
  11238. height:17px;
  11239. display:flex;
  11240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11241. font-weight:400;
  11242. font-style:normal;
  11243. font-size:12px;
  11244. color:#AAAAAA;
  11245. }
  11246. #u24703 .text {
  11247. position:absolute;
  11248. align-self:flex-start;
  11249. padding:0px 0px 0px 0px;
  11250. box-sizing:border-box;
  11251. width:100%;
  11252. }
  11253. #u24703_text {
  11254. border-width:0px;
  11255. white-space:nowrap;
  11256. text-transform:none;
  11257. }
  11258. #u24704_img {
  11259. border-width:0px;
  11260. position:absolute;
  11261. left:0px;
  11262. top:0px;
  11263. width:201px;
  11264. height:2px;
  11265. }
  11266. #u24704 {
  11267. border-width:0px;
  11268. position:absolute;
  11269. left:120px;
  11270. top:648px;
  11271. width:200px;
  11272. height:1px;
  11273. display:flex;
  11274. }
  11275. #u24704 .text {
  11276. position:absolute;
  11277. align-self:center;
  11278. padding:2px 2px 2px 2px;
  11279. box-sizing:border-box;
  11280. width:100%;
  11281. }
  11282. #u24704_text {
  11283. border-width:0px;
  11284. word-wrap:break-word;
  11285. text-transform:none;
  11286. visibility:hidden;
  11287. }
  11288. #u24705_div {
  11289. border-width:0px;
  11290. position:absolute;
  11291. left:0px;
  11292. top:0px;
  11293. width:97px;
  11294. height:22px;
  11295. background:inherit;
  11296. background-color:rgba(255, 255, 255, 0);
  11297. border:none;
  11298. border-radius:0px;
  11299. -moz-box-shadow:none;
  11300. -webkit-box-shadow:none;
  11301. box-shadow:none;
  11302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11303. font-weight:400;
  11304. font-style:normal;
  11305. font-size:16px;
  11306. }
  11307. #u24705 {
  11308. border-width:0px;
  11309. position:absolute;
  11310. left:146px;
  11311. top:708px;
  11312. width:97px;
  11313. height:22px;
  11314. display:flex;
  11315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11316. font-weight:400;
  11317. font-style:normal;
  11318. font-size:16px;
  11319. }
  11320. #u24705 .text {
  11321. position:absolute;
  11322. align-self:flex-start;
  11323. padding:0px 0px 0px 0px;
  11324. box-sizing:border-box;
  11325. width:100%;
  11326. }
  11327. #u24705_text {
  11328. border-width:0px;
  11329. white-space:nowrap;
  11330. text-transform:none;
  11331. }
  11332. #u24706_div {
  11333. border-width:0px;
  11334. position:absolute;
  11335. left:0px;
  11336. top:0px;
  11337. width:97px;
  11338. height:22px;
  11339. background:inherit;
  11340. background-color:rgba(255, 255, 255, 0);
  11341. border:none;
  11342. border-radius:0px;
  11343. -moz-box-shadow:none;
  11344. -webkit-box-shadow:none;
  11345. box-shadow:none;
  11346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11347. font-weight:400;
  11348. font-style:normal;
  11349. font-size:16px;
  11350. }
  11351. #u24706 {
  11352. border-width:0px;
  11353. position:absolute;
  11354. left:146px;
  11355. top:750px;
  11356. width:97px;
  11357. height:22px;
  11358. display:flex;
  11359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11360. font-weight:400;
  11361. font-style:normal;
  11362. font-size:16px;
  11363. }
  11364. #u24706 .text {
  11365. position:absolute;
  11366. align-self:flex-start;
  11367. padding:0px 0px 0px 0px;
  11368. box-sizing:border-box;
  11369. width:100%;
  11370. }
  11371. #u24706_text {
  11372. border-width:0px;
  11373. white-space:nowrap;
  11374. text-transform:none;
  11375. }
  11376. #u24707_div {
  11377. border-width:0px;
  11378. position:absolute;
  11379. left:0px;
  11380. top:0px;
  11381. width:97px;
  11382. height:22px;
  11383. background:inherit;
  11384. background-color:rgba(255, 255, 255, 0);
  11385. border:none;
  11386. border-radius:0px;
  11387. -moz-box-shadow:none;
  11388. -webkit-box-shadow:none;
  11389. box-shadow:none;
  11390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11391. font-weight:400;
  11392. font-style:normal;
  11393. font-size:16px;
  11394. }
  11395. #u24707 {
  11396. border-width:0px;
  11397. position:absolute;
  11398. left:146px;
  11399. top:335px;
  11400. width:97px;
  11401. height:22px;
  11402. display:flex;
  11403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11404. font-weight:400;
  11405. font-style:normal;
  11406. font-size:16px;
  11407. }
  11408. #u24707 .text {
  11409. position:absolute;
  11410. align-self:flex-start;
  11411. padding:0px 0px 0px 0px;
  11412. box-sizing:border-box;
  11413. width:100%;
  11414. }
  11415. #u24707_text {
  11416. border-width:0px;
  11417. white-space:nowrap;
  11418. text-transform:none;
  11419. }
  11420. #u24708_div {
  11421. border-width:0px;
  11422. position:absolute;
  11423. left:0px;
  11424. top:0px;
  11425. width:97px;
  11426. height:22px;
  11427. background:inherit;
  11428. background-color:rgba(255, 255, 255, 0);
  11429. border:none;
  11430. border-radius:0px;
  11431. -moz-box-shadow:none;
  11432. -webkit-box-shadow:none;
  11433. box-shadow:none;
  11434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11435. font-weight:400;
  11436. font-style:normal;
  11437. font-size:16px;
  11438. }
  11439. #u24708 {
  11440. border-width:0px;
  11441. position:absolute;
  11442. left:146px;
  11443. top:792px;
  11444. width:97px;
  11445. height:22px;
  11446. display:flex;
  11447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11448. font-weight:400;
  11449. font-style:normal;
  11450. font-size:16px;
  11451. }
  11452. #u24708 .text {
  11453. position:absolute;
  11454. align-self:flex-start;
  11455. padding:0px 0px 0px 0px;
  11456. box-sizing:border-box;
  11457. width:100%;
  11458. }
  11459. #u24708_text {
  11460. border-width:0px;
  11461. white-space:nowrap;
  11462. text-transform:none;
  11463. }
  11464. #u24709_div {
  11465. border-width:0px;
  11466. position:absolute;
  11467. left:0px;
  11468. top:0px;
  11469. width:49px;
  11470. height:17px;
  11471. background:inherit;
  11472. background-color:rgba(255, 255, 255, 0);
  11473. border:none;
  11474. border-radius:0px;
  11475. -moz-box-shadow:none;
  11476. -webkit-box-shadow:none;
  11477. box-shadow:none;
  11478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11479. font-weight:400;
  11480. font-style:normal;
  11481. font-size:12px;
  11482. color:#AAAAAA;
  11483. }
  11484. #u24709 {
  11485. border-width:0px;
  11486. position:absolute;
  11487. left:146px;
  11488. top:856px;
  11489. width:49px;
  11490. height:17px;
  11491. display:flex;
  11492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11493. font-weight:400;
  11494. font-style:normal;
  11495. font-size:12px;
  11496. color:#AAAAAA;
  11497. }
  11498. #u24709 .text {
  11499. position:absolute;
  11500. align-self:flex-start;
  11501. padding:0px 0px 0px 0px;
  11502. box-sizing:border-box;
  11503. width:100%;
  11504. }
  11505. #u24709_text {
  11506. border-width:0px;
  11507. white-space:nowrap;
  11508. text-transform:none;
  11509. }
  11510. #u24710_img {
  11511. border-width:0px;
  11512. position:absolute;
  11513. left:0px;
  11514. top:0px;
  11515. width:201px;
  11516. height:2px;
  11517. }
  11518. #u24710 {
  11519. border-width:0px;
  11520. position:absolute;
  11521. left:120px;
  11522. top:834px;
  11523. width:200px;
  11524. height:1px;
  11525. display:flex;
  11526. }
  11527. #u24710 .text {
  11528. position:absolute;
  11529. align-self:center;
  11530. padding:2px 2px 2px 2px;
  11531. box-sizing:border-box;
  11532. width:100%;
  11533. }
  11534. #u24710_text {
  11535. border-width:0px;
  11536. word-wrap:break-word;
  11537. text-transform:none;
  11538. visibility:hidden;
  11539. }
  11540. #u24711_div {
  11541. border-width:0px;
  11542. position:absolute;
  11543. left:0px;
  11544. top:0px;
  11545. width:97px;
  11546. height:22px;
  11547. background:inherit;
  11548. background-color:rgba(255, 255, 255, 0);
  11549. border:none;
  11550. border-radius:0px;
  11551. -moz-box-shadow:none;
  11552. -webkit-box-shadow:none;
  11553. box-shadow:none;
  11554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11555. font-weight:400;
  11556. font-style:normal;
  11557. font-size:16px;
  11558. }
  11559. #u24711 {
  11560. border-width:0px;
  11561. position:absolute;
  11562. left:146px;
  11563. top:894px;
  11564. width:97px;
  11565. height:22px;
  11566. display:flex;
  11567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11568. font-weight:400;
  11569. font-style:normal;
  11570. font-size:16px;
  11571. }
  11572. #u24711 .text {
  11573. position:absolute;
  11574. align-self:flex-start;
  11575. padding:0px 0px 0px 0px;
  11576. box-sizing:border-box;
  11577. width:100%;
  11578. }
  11579. #u24711_text {
  11580. border-width:0px;
  11581. white-space:nowrap;
  11582. text-transform:none;
  11583. }