styles.css 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-73px;
  6. width:2838px;
  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. #u25055_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1381px;
  25. height:1150px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  31. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  32. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  33. }
  34. #u25055 {
  35. border-width:0px;
  36. position:absolute;
  37. left:73px;
  38. top:38px;
  39. width:1381px;
  40. height:1150px;
  41. display:flex;
  42. }
  43. #u25055 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u25055_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u25056 {
  57. border-width:0px;
  58. position:absolute;
  59. left:97px;
  60. top:178px;
  61. width:1333px;
  62. height:321px;
  63. }
  64. #u25057_img {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:62px;
  70. height:38px;
  71. }
  72. #u25057 {
  73. border-width:0px;
  74. position:absolute;
  75. left:0px;
  76. top:0px;
  77. width:62px;
  78. height:38px;
  79. display:flex;
  80. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  81. font-weight:400;
  82. font-style:normal;
  83. font-size:12px;
  84. color:#FFFFFF;
  85. }
  86. #u25057 .text {
  87. position:absolute;
  88. align-self:center;
  89. padding:2px 2px 2px 0px;
  90. box-sizing:border-box;
  91. width:100%;
  92. }
  93. #u25057_text {
  94. border-width:0px;
  95. word-wrap:break-word;
  96. text-transform:none;
  97. }
  98. #u25058_img {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:100px;
  104. height:38px;
  105. }
  106. #u25058 {
  107. border-width:0px;
  108. position:absolute;
  109. left:62px;
  110. top:0px;
  111. width:100px;
  112. height:38px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:12px;
  118. color:#FFFFFF;
  119. }
  120. #u25058 .text {
  121. position:absolute;
  122. align-self:center;
  123. padding:2px 2px 2px 0px;
  124. box-sizing:border-box;
  125. width:100%;
  126. }
  127. #u25058_text {
  128. border-width:0px;
  129. word-wrap:break-word;
  130. text-transform:none;
  131. }
  132. #u25059_img {
  133. border-width:0px;
  134. position:absolute;
  135. left:0px;
  136. top:0px;
  137. width:100px;
  138. height:38px;
  139. }
  140. #u25059 {
  141. border-width:0px;
  142. position:absolute;
  143. left:162px;
  144. top:0px;
  145. width:100px;
  146. height:38px;
  147. display:flex;
  148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  149. font-weight:400;
  150. font-style:normal;
  151. font-size:12px;
  152. color:#FFFFFF;
  153. }
  154. #u25059 .text {
  155. position:absolute;
  156. align-self:center;
  157. padding:2px 2px 2px 0px;
  158. box-sizing:border-box;
  159. width:100%;
  160. }
  161. #u25059_text {
  162. border-width:0px;
  163. word-wrap:break-word;
  164. text-transform:none;
  165. }
  166. #u25060_img {
  167. border-width:0px;
  168. position:absolute;
  169. left:0px;
  170. top:0px;
  171. width:97px;
  172. height:38px;
  173. }
  174. #u25060 {
  175. border-width:0px;
  176. position:absolute;
  177. left:262px;
  178. top:0px;
  179. width:97px;
  180. height:38px;
  181. display:flex;
  182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  183. font-weight:400;
  184. font-style:normal;
  185. font-size:12px;
  186. color:#FFFFFF;
  187. }
  188. #u25060 .text {
  189. position:absolute;
  190. align-self:center;
  191. padding:2px 2px 2px 0px;
  192. box-sizing:border-box;
  193. width:100%;
  194. }
  195. #u25060_text {
  196. border-width:0px;
  197. word-wrap:break-word;
  198. text-transform:none;
  199. }
  200. #u25061_img {
  201. border-width:0px;
  202. position:absolute;
  203. left:0px;
  204. top:0px;
  205. width:100px;
  206. height:38px;
  207. }
  208. #u25061 {
  209. border-width:0px;
  210. position:absolute;
  211. left:359px;
  212. top:0px;
  213. width:100px;
  214. height:38px;
  215. display:flex;
  216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  217. font-weight:400;
  218. font-style:normal;
  219. font-size:12px;
  220. color:#FFFFFF;
  221. }
  222. #u25061 .text {
  223. position:absolute;
  224. align-self:center;
  225. padding:2px 2px 2px 0px;
  226. box-sizing:border-box;
  227. width:100%;
  228. }
  229. #u25061_text {
  230. border-width:0px;
  231. word-wrap:break-word;
  232. text-transform:none;
  233. }
  234. #u25062_img {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:0px;
  239. width:97px;
  240. height:38px;
  241. }
  242. #u25062 {
  243. border-width:0px;
  244. position:absolute;
  245. left:459px;
  246. top:0px;
  247. width:97px;
  248. height:38px;
  249. display:flex;
  250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  251. font-weight:400;
  252. font-style:normal;
  253. font-size:12px;
  254. color:#FFFFFF;
  255. }
  256. #u25062 .text {
  257. position:absolute;
  258. align-self:center;
  259. padding:2px 2px 2px 0px;
  260. box-sizing:border-box;
  261. width:100%;
  262. }
  263. #u25062_text {
  264. border-width:0px;
  265. word-wrap:break-word;
  266. text-transform:none;
  267. }
  268. #u25063_img {
  269. border-width:0px;
  270. position:absolute;
  271. left:0px;
  272. top:0px;
  273. width:97px;
  274. height:38px;
  275. }
  276. #u25063 {
  277. border-width:0px;
  278. position:absolute;
  279. left:556px;
  280. top:0px;
  281. width:97px;
  282. height:38px;
  283. display:flex;
  284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  285. font-weight:400;
  286. font-style:normal;
  287. font-size:12px;
  288. color:#FFFFFF;
  289. }
  290. #u25063 .text {
  291. position:absolute;
  292. align-self:center;
  293. padding:2px 2px 2px 0px;
  294. box-sizing:border-box;
  295. width:100%;
  296. }
  297. #u25063_text {
  298. border-width:0px;
  299. word-wrap:break-word;
  300. text-transform:none;
  301. }
  302. #u25064_img {
  303. border-width:0px;
  304. position:absolute;
  305. left:0px;
  306. top:0px;
  307. width:96px;
  308. height:38px;
  309. }
  310. #u25064 {
  311. border-width:0px;
  312. position:absolute;
  313. left:653px;
  314. top:0px;
  315. width:96px;
  316. height:38px;
  317. display:flex;
  318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  319. font-weight:400;
  320. font-style:normal;
  321. font-size:12px;
  322. color:#FFFFFF;
  323. }
  324. #u25064 .text {
  325. position:absolute;
  326. align-self:center;
  327. padding:2px 2px 2px 0px;
  328. box-sizing:border-box;
  329. width:100%;
  330. }
  331. #u25064_text {
  332. border-width:0px;
  333. word-wrap:break-word;
  334. text-transform:none;
  335. }
  336. #u25065_img {
  337. border-width:0px;
  338. position:absolute;
  339. left:0px;
  340. top:0px;
  341. width:96px;
  342. height:38px;
  343. }
  344. #u25065 {
  345. border-width:0px;
  346. position:absolute;
  347. left:749px;
  348. top:0px;
  349. width:96px;
  350. height:38px;
  351. display:flex;
  352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  353. font-weight:400;
  354. font-style:normal;
  355. font-size:12px;
  356. color:#FFFFFF;
  357. }
  358. #u25065 .text {
  359. position:absolute;
  360. align-self:center;
  361. padding:2px 2px 2px 0px;
  362. box-sizing:border-box;
  363. width:100%;
  364. }
  365. #u25065_text {
  366. border-width:0px;
  367. word-wrap:break-word;
  368. text-transform:none;
  369. }
  370. #u25066_img {
  371. border-width:0px;
  372. position:absolute;
  373. left:0px;
  374. top:0px;
  375. width:95px;
  376. height:38px;
  377. }
  378. #u25066 {
  379. border-width:0px;
  380. position:absolute;
  381. left:845px;
  382. top:0px;
  383. width:95px;
  384. height:38px;
  385. display:flex;
  386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  387. font-weight:400;
  388. font-style:normal;
  389. font-size:12px;
  390. color:#FFFFFF;
  391. }
  392. #u25066 .text {
  393. position:absolute;
  394. align-self:center;
  395. padding:2px 2px 2px 0px;
  396. box-sizing:border-box;
  397. width:100%;
  398. }
  399. #u25066_text {
  400. border-width:0px;
  401. word-wrap:break-word;
  402. text-transform:none;
  403. }
  404. #u25067_img {
  405. border-width:0px;
  406. position:absolute;
  407. left:0px;
  408. top:0px;
  409. width:95px;
  410. height:38px;
  411. }
  412. #u25067 {
  413. border-width:0px;
  414. position:absolute;
  415. left:940px;
  416. top:0px;
  417. width:95px;
  418. height:38px;
  419. display:flex;
  420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  421. font-weight:400;
  422. font-style:normal;
  423. font-size:12px;
  424. color:#FFFFFF;
  425. }
  426. #u25067 .text {
  427. position:absolute;
  428. align-self:center;
  429. padding:2px 2px 2px 0px;
  430. box-sizing:border-box;
  431. width:100%;
  432. }
  433. #u25067_text {
  434. border-width:0px;
  435. word-wrap:break-word;
  436. text-transform:none;
  437. }
  438. #u25068_img {
  439. border-width:0px;
  440. position:absolute;
  441. left:0px;
  442. top:0px;
  443. width:100px;
  444. height:38px;
  445. }
  446. #u25068 {
  447. border-width:0px;
  448. position:absolute;
  449. left:1035px;
  450. top:0px;
  451. width:100px;
  452. height:38px;
  453. display:flex;
  454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  455. font-weight:400;
  456. font-style:normal;
  457. font-size:12px;
  458. color:#FFFFFF;
  459. }
  460. #u25068 .text {
  461. position:absolute;
  462. align-self:center;
  463. padding:2px 2px 2px 0px;
  464. box-sizing:border-box;
  465. width:100%;
  466. }
  467. #u25068_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u25069_img {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:100px;
  478. height:38px;
  479. }
  480. #u25069 {
  481. border-width:0px;
  482. position:absolute;
  483. left:1135px;
  484. top:0px;
  485. width:100px;
  486. height:38px;
  487. display:flex;
  488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  489. font-weight:400;
  490. font-style:normal;
  491. font-size:12px;
  492. color:#FFFFFF;
  493. }
  494. #u25069 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 0px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u25069_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. }
  506. #u25070_img {
  507. border-width:0px;
  508. position:absolute;
  509. left:0px;
  510. top:0px;
  511. width:98px;
  512. height:38px;
  513. }
  514. #u25070 {
  515. border-width:0px;
  516. position:absolute;
  517. left:1235px;
  518. top:0px;
  519. width:98px;
  520. height:38px;
  521. display:flex;
  522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  523. font-weight:400;
  524. font-style:normal;
  525. font-size:12px;
  526. color:#FFFFFF;
  527. }
  528. #u25070 .text {
  529. position:absolute;
  530. align-self:center;
  531. padding:2px 2px 2px 0px;
  532. box-sizing:border-box;
  533. width:100%;
  534. }
  535. #u25070_text {
  536. border-width:0px;
  537. word-wrap:break-word;
  538. text-transform:none;
  539. }
  540. #u25071_img {
  541. border-width:0px;
  542. position:absolute;
  543. left:0px;
  544. top:0px;
  545. width:62px;
  546. height:38px;
  547. }
  548. #u25071 {
  549. border-width:0px;
  550. position:absolute;
  551. left:0px;
  552. top:38px;
  553. width:62px;
  554. height:38px;
  555. display:flex;
  556. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  557. font-weight:400;
  558. font-style:normal;
  559. font-size:12px;
  560. }
  561. #u25071 .text {
  562. position:absolute;
  563. align-self:center;
  564. padding:2px 2px 2px 0px;
  565. box-sizing:border-box;
  566. width:100%;
  567. }
  568. #u25071_text {
  569. border-width:0px;
  570. word-wrap:break-word;
  571. text-transform:none;
  572. }
  573. #u25072_img {
  574. border-width:0px;
  575. position:absolute;
  576. left:0px;
  577. top:0px;
  578. width:100px;
  579. height:38px;
  580. }
  581. #u25072 {
  582. border-width:0px;
  583. position:absolute;
  584. left:62px;
  585. top:38px;
  586. width:100px;
  587. height:38px;
  588. display:flex;
  589. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  590. font-weight:400;
  591. font-style:normal;
  592. font-size:12px;
  593. }
  594. #u25072 .text {
  595. position:absolute;
  596. align-self:center;
  597. padding:2px 2px 2px 0px;
  598. box-sizing:border-box;
  599. width:100%;
  600. }
  601. #u25072_text {
  602. border-width:0px;
  603. word-wrap:break-word;
  604. text-transform:none;
  605. visibility:hidden;
  606. }
  607. #u25073_img {
  608. border-width:0px;
  609. position:absolute;
  610. left:0px;
  611. top:0px;
  612. width:100px;
  613. height:38px;
  614. }
  615. #u25073 {
  616. border-width:0px;
  617. position:absolute;
  618. left:162px;
  619. top:38px;
  620. width:100px;
  621. height:38px;
  622. display:flex;
  623. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  624. font-weight:400;
  625. font-style:normal;
  626. font-size:12px;
  627. }
  628. #u25073 .text {
  629. position:absolute;
  630. align-self:center;
  631. padding:2px 2px 2px 0px;
  632. box-sizing:border-box;
  633. width:100%;
  634. }
  635. #u25073_text {
  636. border-width:0px;
  637. word-wrap:break-word;
  638. text-transform:none;
  639. visibility:hidden;
  640. }
  641. #u25074_img {
  642. border-width:0px;
  643. position:absolute;
  644. left:0px;
  645. top:0px;
  646. width:97px;
  647. height:38px;
  648. }
  649. #u25074 {
  650. border-width:0px;
  651. position:absolute;
  652. left:262px;
  653. top:38px;
  654. width:97px;
  655. height:38px;
  656. display:flex;
  657. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  658. font-weight:400;
  659. font-style:normal;
  660. font-size:12px;
  661. }
  662. #u25074 .text {
  663. position:absolute;
  664. align-self:center;
  665. padding:2px 2px 2px 0px;
  666. box-sizing:border-box;
  667. width:100%;
  668. }
  669. #u25074_text {
  670. border-width:0px;
  671. word-wrap:break-word;
  672. text-transform:none;
  673. visibility:hidden;
  674. }
  675. #u25075_img {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:100px;
  681. height:38px;
  682. }
  683. #u25075 {
  684. border-width:0px;
  685. position:absolute;
  686. left:359px;
  687. top:38px;
  688. width:100px;
  689. height:38px;
  690. display:flex;
  691. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  692. font-weight:400;
  693. font-style:normal;
  694. font-size:12px;
  695. }
  696. #u25075 .text {
  697. position:absolute;
  698. align-self:center;
  699. padding:2px 2px 2px 0px;
  700. box-sizing:border-box;
  701. width:100%;
  702. }
  703. #u25075_text {
  704. border-width:0px;
  705. word-wrap:break-word;
  706. text-transform:none;
  707. visibility:hidden;
  708. }
  709. #u25076_img {
  710. border-width:0px;
  711. position:absolute;
  712. left:0px;
  713. top:0px;
  714. width:97px;
  715. height:38px;
  716. }
  717. #u25076 {
  718. border-width:0px;
  719. position:absolute;
  720. left:459px;
  721. top:38px;
  722. width:97px;
  723. height:38px;
  724. display:flex;
  725. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  726. font-weight:400;
  727. font-style:normal;
  728. font-size:12px;
  729. }
  730. #u25076 .text {
  731. position:absolute;
  732. align-self:center;
  733. padding:2px 2px 2px 0px;
  734. box-sizing:border-box;
  735. width:100%;
  736. }
  737. #u25076_text {
  738. border-width:0px;
  739. word-wrap:break-word;
  740. text-transform:none;
  741. visibility:hidden;
  742. }
  743. #u25077_img {
  744. border-width:0px;
  745. position:absolute;
  746. left:0px;
  747. top:0px;
  748. width:97px;
  749. height:38px;
  750. }
  751. #u25077 {
  752. border-width:0px;
  753. position:absolute;
  754. left:556px;
  755. top:38px;
  756. width:97px;
  757. height:38px;
  758. display:flex;
  759. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:12px;
  763. }
  764. #u25077 .text {
  765. position:absolute;
  766. align-self:center;
  767. padding:2px 2px 2px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u25077_text {
  772. border-width:0px;
  773. word-wrap:break-word;
  774. text-transform:none;
  775. visibility:hidden;
  776. }
  777. #u25078_img {
  778. border-width:0px;
  779. position:absolute;
  780. left:0px;
  781. top:0px;
  782. width:96px;
  783. height:38px;
  784. }
  785. #u25078 {
  786. border-width:0px;
  787. position:absolute;
  788. left:653px;
  789. top:38px;
  790. width:96px;
  791. height:38px;
  792. display:flex;
  793. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:12px;
  797. }
  798. #u25078 .text {
  799. position:absolute;
  800. align-self:center;
  801. padding:2px 2px 2px 0px;
  802. box-sizing:border-box;
  803. width:100%;
  804. }
  805. #u25078_text {
  806. border-width:0px;
  807. word-wrap:break-word;
  808. text-transform:none;
  809. visibility:hidden;
  810. }
  811. #u25079_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:96px;
  817. height:38px;
  818. }
  819. #u25079 {
  820. border-width:0px;
  821. position:absolute;
  822. left:749px;
  823. top:38px;
  824. width:96px;
  825. height:38px;
  826. display:flex;
  827. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  828. font-weight:400;
  829. font-style:normal;
  830. font-size:12px;
  831. }
  832. #u25079 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 0px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u25079_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u25080_img {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:95px;
  851. height:38px;
  852. }
  853. #u25080 {
  854. border-width:0px;
  855. position:absolute;
  856. left:845px;
  857. top:38px;
  858. width:95px;
  859. height:38px;
  860. display:flex;
  861. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  862. font-weight:400;
  863. font-style:normal;
  864. font-size:12px;
  865. }
  866. #u25080 .text {
  867. position:absolute;
  868. align-self:center;
  869. padding:2px 2px 2px 0px;
  870. box-sizing:border-box;
  871. width:100%;
  872. }
  873. #u25080_text {
  874. border-width:0px;
  875. word-wrap:break-word;
  876. text-transform:none;
  877. visibility:hidden;
  878. }
  879. #u25081_img {
  880. border-width:0px;
  881. position:absolute;
  882. left:0px;
  883. top:0px;
  884. width:95px;
  885. height:38px;
  886. }
  887. #u25081 {
  888. border-width:0px;
  889. position:absolute;
  890. left:940px;
  891. top:38px;
  892. width:95px;
  893. height:38px;
  894. display:flex;
  895. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  896. font-weight:400;
  897. font-style:normal;
  898. font-size:12px;
  899. }
  900. #u25081 .text {
  901. position:absolute;
  902. align-self:center;
  903. padding:2px 2px 2px 0px;
  904. box-sizing:border-box;
  905. width:100%;
  906. }
  907. #u25081_text {
  908. border-width:0px;
  909. word-wrap:break-word;
  910. text-transform:none;
  911. visibility:hidden;
  912. }
  913. #u25082_img {
  914. border-width:0px;
  915. position:absolute;
  916. left:0px;
  917. top:0px;
  918. width:100px;
  919. height:38px;
  920. }
  921. #u25082 {
  922. border-width:0px;
  923. position:absolute;
  924. left:1035px;
  925. top:38px;
  926. width:100px;
  927. height:38px;
  928. display:flex;
  929. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  930. font-weight:400;
  931. font-style:normal;
  932. font-size:12px;
  933. }
  934. #u25082 .text {
  935. position:absolute;
  936. align-self:center;
  937. padding:2px 2px 2px 0px;
  938. box-sizing:border-box;
  939. width:100%;
  940. }
  941. #u25082_text {
  942. border-width:0px;
  943. word-wrap:break-word;
  944. text-transform:none;
  945. visibility:hidden;
  946. }
  947. #u25083_img {
  948. border-width:0px;
  949. position:absolute;
  950. left:0px;
  951. top:0px;
  952. width:100px;
  953. height:38px;
  954. }
  955. #u25083 {
  956. border-width:0px;
  957. position:absolute;
  958. left:1135px;
  959. top:38px;
  960. width:100px;
  961. height:38px;
  962. display:flex;
  963. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  964. font-weight:400;
  965. font-style:normal;
  966. font-size:12px;
  967. }
  968. #u25083 .text {
  969. position:absolute;
  970. align-self:center;
  971. padding:2px 2px 2px 0px;
  972. box-sizing:border-box;
  973. width:100%;
  974. }
  975. #u25083_text {
  976. border-width:0px;
  977. word-wrap:break-word;
  978. text-transform:none;
  979. visibility:hidden;
  980. }
  981. #u25084_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:98px;
  987. height:38px;
  988. }
  989. #u25084 {
  990. border-width:0px;
  991. position:absolute;
  992. left:1235px;
  993. top:38px;
  994. width:98px;
  995. height:38px;
  996. display:flex;
  997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  998. font-weight:400;
  999. font-style:normal;
  1000. font-size:12px;
  1001. color:#1890FF;
  1002. }
  1003. #u25084 .text {
  1004. position:absolute;
  1005. align-self:center;
  1006. padding:2px 2px 2px 0px;
  1007. box-sizing:border-box;
  1008. width:100%;
  1009. }
  1010. #u25084_text {
  1011. border-width:0px;
  1012. word-wrap:break-word;
  1013. text-transform:none;
  1014. }
  1015. #u25085_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:62px;
  1021. height:38px;
  1022. }
  1023. #u25085 {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:76px;
  1028. width:62px;
  1029. height:38px;
  1030. display:flex;
  1031. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:12px;
  1035. color:#606266;
  1036. }
  1037. #u25085 .text {
  1038. position:absolute;
  1039. align-self:center;
  1040. padding:2px 2px 2px 0px;
  1041. box-sizing:border-box;
  1042. width:100%;
  1043. }
  1044. #u25085_text {
  1045. border-width:0px;
  1046. word-wrap:break-word;
  1047. text-transform:none;
  1048. visibility:hidden;
  1049. }
  1050. #u25086_img {
  1051. border-width:0px;
  1052. position:absolute;
  1053. left:0px;
  1054. top:0px;
  1055. width:100px;
  1056. height:38px;
  1057. }
  1058. #u25086 {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:62px;
  1062. top:76px;
  1063. width:100px;
  1064. height:38px;
  1065. display:flex;
  1066. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1067. font-weight:400;
  1068. font-style:normal;
  1069. font-size:12px;
  1070. color:#606266;
  1071. }
  1072. #u25086 .text {
  1073. position:absolute;
  1074. align-self:center;
  1075. padding:2px 2px 2px 0px;
  1076. box-sizing:border-box;
  1077. width:100%;
  1078. }
  1079. #u25086_text {
  1080. border-width:0px;
  1081. word-wrap:break-word;
  1082. text-transform:none;
  1083. visibility:hidden;
  1084. }
  1085. #u25087_img {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:0px;
  1089. top:0px;
  1090. width:100px;
  1091. height:38px;
  1092. }
  1093. #u25087 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:162px;
  1097. top:76px;
  1098. width:100px;
  1099. height:38px;
  1100. display:flex;
  1101. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. font-size:12px;
  1105. color:#606266;
  1106. }
  1107. #u25087 .text {
  1108. position:absolute;
  1109. align-self:center;
  1110. padding:2px 2px 2px 0px;
  1111. box-sizing:border-box;
  1112. width:100%;
  1113. }
  1114. #u25087_text {
  1115. border-width:0px;
  1116. word-wrap:break-word;
  1117. text-transform:none;
  1118. visibility:hidden;
  1119. }
  1120. #u25088_img {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:97px;
  1126. height:38px;
  1127. }
  1128. #u25088 {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:262px;
  1132. top:76px;
  1133. width:97px;
  1134. height:38px;
  1135. display:flex;
  1136. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1137. font-weight:400;
  1138. font-style:normal;
  1139. font-size:12px;
  1140. color:#606266;
  1141. }
  1142. #u25088 .text {
  1143. position:absolute;
  1144. align-self:center;
  1145. padding:2px 2px 2px 0px;
  1146. box-sizing:border-box;
  1147. width:100%;
  1148. }
  1149. #u25088_text {
  1150. border-width:0px;
  1151. word-wrap:break-word;
  1152. text-transform:none;
  1153. visibility:hidden;
  1154. }
  1155. #u25089_img {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:100px;
  1161. height:38px;
  1162. }
  1163. #u25089 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:359px;
  1167. top:76px;
  1168. width:100px;
  1169. height:38px;
  1170. display:flex;
  1171. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1172. font-weight:400;
  1173. font-style:normal;
  1174. font-size:12px;
  1175. color:#606266;
  1176. }
  1177. #u25089 .text {
  1178. position:absolute;
  1179. align-self:center;
  1180. padding:2px 2px 2px 0px;
  1181. box-sizing:border-box;
  1182. width:100%;
  1183. }
  1184. #u25089_text {
  1185. border-width:0px;
  1186. word-wrap:break-word;
  1187. text-transform:none;
  1188. visibility:hidden;
  1189. }
  1190. #u25090_img {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:0px;
  1194. top:0px;
  1195. width:97px;
  1196. height:38px;
  1197. }
  1198. #u25090 {
  1199. border-width:0px;
  1200. position:absolute;
  1201. left:459px;
  1202. top:76px;
  1203. width:97px;
  1204. height:38px;
  1205. display:flex;
  1206. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1207. font-weight:400;
  1208. font-style:normal;
  1209. font-size:12px;
  1210. color:#606266;
  1211. }
  1212. #u25090 .text {
  1213. position:absolute;
  1214. align-self:center;
  1215. padding:2px 2px 2px 0px;
  1216. box-sizing:border-box;
  1217. width:100%;
  1218. }
  1219. #u25090_text {
  1220. border-width:0px;
  1221. word-wrap:break-word;
  1222. text-transform:none;
  1223. visibility:hidden;
  1224. }
  1225. #u25091_img {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:0px;
  1229. top:0px;
  1230. width:97px;
  1231. height:38px;
  1232. }
  1233. #u25091 {
  1234. border-width:0px;
  1235. position:absolute;
  1236. left:556px;
  1237. top:76px;
  1238. width:97px;
  1239. height:38px;
  1240. display:flex;
  1241. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1242. font-weight:400;
  1243. font-style:normal;
  1244. font-size:12px;
  1245. color:#606266;
  1246. }
  1247. #u25091 .text {
  1248. position:absolute;
  1249. align-self:center;
  1250. padding:2px 2px 2px 0px;
  1251. box-sizing:border-box;
  1252. width:100%;
  1253. }
  1254. #u25091_text {
  1255. border-width:0px;
  1256. word-wrap:break-word;
  1257. text-transform:none;
  1258. visibility:hidden;
  1259. }
  1260. #u25092_img {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:0px;
  1264. top:0px;
  1265. width:96px;
  1266. height:38px;
  1267. }
  1268. #u25092 {
  1269. border-width:0px;
  1270. position:absolute;
  1271. left:653px;
  1272. top:76px;
  1273. width:96px;
  1274. height:38px;
  1275. display:flex;
  1276. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1277. font-weight:400;
  1278. font-style:normal;
  1279. font-size:12px;
  1280. color:#606266;
  1281. }
  1282. #u25092 .text {
  1283. position:absolute;
  1284. align-self:center;
  1285. padding:2px 2px 2px 0px;
  1286. box-sizing:border-box;
  1287. width:100%;
  1288. }
  1289. #u25092_text {
  1290. border-width:0px;
  1291. word-wrap:break-word;
  1292. text-transform:none;
  1293. visibility:hidden;
  1294. }
  1295. #u25093_img {
  1296. border-width:0px;
  1297. position:absolute;
  1298. left:0px;
  1299. top:0px;
  1300. width:96px;
  1301. height:38px;
  1302. }
  1303. #u25093 {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:749px;
  1307. top:76px;
  1308. width:96px;
  1309. height:38px;
  1310. display:flex;
  1311. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1312. font-weight:400;
  1313. font-style:normal;
  1314. font-size:12px;
  1315. color:#606266;
  1316. }
  1317. #u25093 .text {
  1318. position:absolute;
  1319. align-self:center;
  1320. padding:2px 2px 2px 0px;
  1321. box-sizing:border-box;
  1322. width:100%;
  1323. }
  1324. #u25093_text {
  1325. border-width:0px;
  1326. word-wrap:break-word;
  1327. text-transform:none;
  1328. visibility:hidden;
  1329. }
  1330. #u25094_img {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:0px;
  1335. width:95px;
  1336. height:38px;
  1337. }
  1338. #u25094 {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:845px;
  1342. top:76px;
  1343. width:95px;
  1344. height:38px;
  1345. display:flex;
  1346. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1347. font-weight:400;
  1348. font-style:normal;
  1349. font-size:12px;
  1350. color:#606266;
  1351. }
  1352. #u25094 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 0px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u25094_text {
  1360. border-width:0px;
  1361. word-wrap:break-word;
  1362. text-transform:none;
  1363. visibility:hidden;
  1364. }
  1365. #u25095_img {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:0px;
  1369. top:0px;
  1370. width:95px;
  1371. height:38px;
  1372. }
  1373. #u25095 {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:940px;
  1377. top:76px;
  1378. width:95px;
  1379. height:38px;
  1380. display:flex;
  1381. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1382. font-weight:400;
  1383. font-style:normal;
  1384. font-size:12px;
  1385. color:#606266;
  1386. }
  1387. #u25095 .text {
  1388. position:absolute;
  1389. align-self:center;
  1390. padding:2px 2px 2px 0px;
  1391. box-sizing:border-box;
  1392. width:100%;
  1393. }
  1394. #u25095_text {
  1395. border-width:0px;
  1396. word-wrap:break-word;
  1397. text-transform:none;
  1398. visibility:hidden;
  1399. }
  1400. #u25096_img {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:0px;
  1404. top:0px;
  1405. width:100px;
  1406. height:38px;
  1407. }
  1408. #u25096 {
  1409. border-width:0px;
  1410. position:absolute;
  1411. left:1035px;
  1412. top:76px;
  1413. width:100px;
  1414. height:38px;
  1415. display:flex;
  1416. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1417. font-weight:400;
  1418. font-style:normal;
  1419. font-size:12px;
  1420. color:#606266;
  1421. }
  1422. #u25096 .text {
  1423. position:absolute;
  1424. align-self:center;
  1425. padding:2px 2px 2px 0px;
  1426. box-sizing:border-box;
  1427. width:100%;
  1428. }
  1429. #u25096_text {
  1430. border-width:0px;
  1431. word-wrap:break-word;
  1432. text-transform:none;
  1433. visibility:hidden;
  1434. }
  1435. #u25097_img {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:0px;
  1439. top:0px;
  1440. width:100px;
  1441. height:38px;
  1442. }
  1443. #u25097 {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:1135px;
  1447. top:76px;
  1448. width:100px;
  1449. height:38px;
  1450. display:flex;
  1451. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1452. font-weight:400;
  1453. font-style:normal;
  1454. font-size:12px;
  1455. color:#606266;
  1456. }
  1457. #u25097 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 0px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u25097_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u25098_img {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:98px;
  1476. height:38px;
  1477. }
  1478. #u25098 {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:1235px;
  1482. top:76px;
  1483. width:98px;
  1484. height:38px;
  1485. display:flex;
  1486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1487. font-weight:400;
  1488. font-style:normal;
  1489. font-size:12px;
  1490. color:#1890FF;
  1491. }
  1492. #u25098 .text {
  1493. position:absolute;
  1494. align-self:center;
  1495. padding:2px 2px 2px 0px;
  1496. box-sizing:border-box;
  1497. width:100%;
  1498. }
  1499. #u25098_text {
  1500. border-width:0px;
  1501. word-wrap:break-word;
  1502. text-transform:none;
  1503. }
  1504. #u25099_img {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:62px;
  1510. height:38px;
  1511. }
  1512. #u25099 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:114px;
  1517. width:62px;
  1518. height:38px;
  1519. display:flex;
  1520. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1521. font-weight:400;
  1522. font-style:normal;
  1523. font-size:12px;
  1524. color:#606266;
  1525. }
  1526. #u25099 .text {
  1527. position:absolute;
  1528. align-self:center;
  1529. padding:2px 2px 2px 0px;
  1530. box-sizing:border-box;
  1531. width:100%;
  1532. }
  1533. #u25099_text {
  1534. border-width:0px;
  1535. word-wrap:break-word;
  1536. text-transform:none;
  1537. visibility:hidden;
  1538. }
  1539. #u25100_img {
  1540. border-width:0px;
  1541. position:absolute;
  1542. left:0px;
  1543. top:0px;
  1544. width:100px;
  1545. height:38px;
  1546. }
  1547. #u25100 {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:62px;
  1551. top:114px;
  1552. width:100px;
  1553. height:38px;
  1554. display:flex;
  1555. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1556. font-weight:400;
  1557. font-style:normal;
  1558. font-size:12px;
  1559. color:#606266;
  1560. }
  1561. #u25100 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 0px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u25100_text {
  1569. border-width:0px;
  1570. word-wrap:break-word;
  1571. text-transform:none;
  1572. visibility:hidden;
  1573. }
  1574. #u25101_img {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:100px;
  1580. height:38px;
  1581. }
  1582. #u25101 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:162px;
  1586. top:114px;
  1587. width:100px;
  1588. height:38px;
  1589. display:flex;
  1590. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:12px;
  1594. color:#606266;
  1595. }
  1596. #u25101 .text {
  1597. position:absolute;
  1598. align-self:center;
  1599. padding:2px 2px 2px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u25101_text {
  1604. border-width:0px;
  1605. word-wrap:break-word;
  1606. text-transform:none;
  1607. visibility:hidden;
  1608. }
  1609. #u25102_img {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:0px;
  1613. top:0px;
  1614. width:97px;
  1615. height:38px;
  1616. }
  1617. #u25102 {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:262px;
  1621. top:114px;
  1622. width:97px;
  1623. height:38px;
  1624. display:flex;
  1625. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1626. font-weight:400;
  1627. font-style:normal;
  1628. font-size:12px;
  1629. color:#606266;
  1630. }
  1631. #u25102 .text {
  1632. position:absolute;
  1633. align-self:center;
  1634. padding:2px 2px 2px 0px;
  1635. box-sizing:border-box;
  1636. width:100%;
  1637. }
  1638. #u25102_text {
  1639. border-width:0px;
  1640. word-wrap:break-word;
  1641. text-transform:none;
  1642. visibility:hidden;
  1643. }
  1644. #u25103_img {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:0px;
  1648. top:0px;
  1649. width:100px;
  1650. height:38px;
  1651. }
  1652. #u25103 {
  1653. border-width:0px;
  1654. position:absolute;
  1655. left:359px;
  1656. top:114px;
  1657. width:100px;
  1658. height:38px;
  1659. display:flex;
  1660. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:12px;
  1664. color:#606266;
  1665. }
  1666. #u25103 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 0px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u25103_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u25104_img {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:97px;
  1685. height:38px;
  1686. }
  1687. #u25104 {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:459px;
  1691. top:114px;
  1692. width:97px;
  1693. height:38px;
  1694. display:flex;
  1695. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1696. font-weight:400;
  1697. font-style:normal;
  1698. font-size:12px;
  1699. color:#606266;
  1700. }
  1701. #u25104 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 0px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u25104_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u25105_img {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:97px;
  1720. height:38px;
  1721. }
  1722. #u25105 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:556px;
  1726. top:114px;
  1727. width:97px;
  1728. height:38px;
  1729. display:flex;
  1730. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1731. font-weight:400;
  1732. font-style:normal;
  1733. font-size:12px;
  1734. color:#606266;
  1735. }
  1736. #u25105 .text {
  1737. position:absolute;
  1738. align-self:center;
  1739. padding:2px 2px 2px 0px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u25105_text {
  1744. border-width:0px;
  1745. word-wrap:break-word;
  1746. text-transform:none;
  1747. visibility:hidden;
  1748. }
  1749. #u25106_img {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:0px;
  1753. top:0px;
  1754. width:96px;
  1755. height:38px;
  1756. }
  1757. #u25106 {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:653px;
  1761. top:114px;
  1762. width:96px;
  1763. height:38px;
  1764. display:flex;
  1765. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1766. font-weight:400;
  1767. font-style:normal;
  1768. font-size:12px;
  1769. color:#606266;
  1770. }
  1771. #u25106 .text {
  1772. position:absolute;
  1773. align-self:center;
  1774. padding:2px 2px 2px 0px;
  1775. box-sizing:border-box;
  1776. width:100%;
  1777. }
  1778. #u25106_text {
  1779. border-width:0px;
  1780. word-wrap:break-word;
  1781. text-transform:none;
  1782. visibility:hidden;
  1783. }
  1784. #u25107_img {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:0px;
  1788. top:0px;
  1789. width:96px;
  1790. height:38px;
  1791. }
  1792. #u25107 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:749px;
  1796. top:114px;
  1797. width:96px;
  1798. height:38px;
  1799. display:flex;
  1800. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1801. font-weight:400;
  1802. font-style:normal;
  1803. font-size:12px;
  1804. color:#606266;
  1805. }
  1806. #u25107 .text {
  1807. position:absolute;
  1808. align-self:center;
  1809. padding:2px 2px 2px 0px;
  1810. box-sizing:border-box;
  1811. width:100%;
  1812. }
  1813. #u25107_text {
  1814. border-width:0px;
  1815. word-wrap:break-word;
  1816. text-transform:none;
  1817. visibility:hidden;
  1818. }
  1819. #u25108_img {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:95px;
  1825. height:38px;
  1826. }
  1827. #u25108 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:845px;
  1831. top:114px;
  1832. width:95px;
  1833. height:38px;
  1834. display:flex;
  1835. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:12px;
  1839. color:#606266;
  1840. }
  1841. #u25108 .text {
  1842. position:absolute;
  1843. align-self:center;
  1844. padding:2px 2px 2px 0px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u25108_text {
  1849. border-width:0px;
  1850. word-wrap:break-word;
  1851. text-transform:none;
  1852. visibility:hidden;
  1853. }
  1854. #u25109_img {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:95px;
  1860. height:38px;
  1861. }
  1862. #u25109 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:940px;
  1866. top:114px;
  1867. width:95px;
  1868. height:38px;
  1869. display:flex;
  1870. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1871. font-weight:400;
  1872. font-style:normal;
  1873. font-size:12px;
  1874. color:#606266;
  1875. }
  1876. #u25109 .text {
  1877. position:absolute;
  1878. align-self:center;
  1879. padding:2px 2px 2px 0px;
  1880. box-sizing:border-box;
  1881. width:100%;
  1882. }
  1883. #u25109_text {
  1884. border-width:0px;
  1885. word-wrap:break-word;
  1886. text-transform:none;
  1887. visibility:hidden;
  1888. }
  1889. #u25110_img {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:100px;
  1895. height:38px;
  1896. }
  1897. #u25110 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:1035px;
  1901. top:114px;
  1902. width:100px;
  1903. height:38px;
  1904. display:flex;
  1905. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1906. font-weight:400;
  1907. font-style:normal;
  1908. font-size:12px;
  1909. color:#606266;
  1910. }
  1911. #u25110 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 0px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u25110_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. visibility:hidden;
  1923. }
  1924. #u25111_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:100px;
  1930. height:38px;
  1931. }
  1932. #u25111 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:1135px;
  1936. top:114px;
  1937. width:100px;
  1938. height:38px;
  1939. display:flex;
  1940. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1941. font-weight:400;
  1942. font-style:normal;
  1943. font-size:12px;
  1944. color:#606266;
  1945. }
  1946. #u25111 .text {
  1947. position:absolute;
  1948. align-self:center;
  1949. padding:2px 2px 2px 0px;
  1950. box-sizing:border-box;
  1951. width:100%;
  1952. }
  1953. #u25111_text {
  1954. border-width:0px;
  1955. word-wrap:break-word;
  1956. text-transform:none;
  1957. visibility:hidden;
  1958. }
  1959. #u25112_img {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:98px;
  1965. height:38px;
  1966. }
  1967. #u25112 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:1235px;
  1971. top:114px;
  1972. width:98px;
  1973. height:38px;
  1974. display:flex;
  1975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1976. font-weight:400;
  1977. font-style:normal;
  1978. font-size:12px;
  1979. color:#02A7F0;
  1980. }
  1981. #u25112 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:2px 2px 2px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u25112_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. visibility:hidden;
  1993. }
  1994. #u25113_img {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:62px;
  2000. height:38px;
  2001. }
  2002. #u25113 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:152px;
  2007. width:62px;
  2008. height:38px;
  2009. display:flex;
  2010. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:12px;
  2014. color:#606266;
  2015. }
  2016. #u25113 .text {
  2017. position:absolute;
  2018. align-self:center;
  2019. padding:2px 2px 2px 0px;
  2020. box-sizing:border-box;
  2021. width:100%;
  2022. }
  2023. #u25113_text {
  2024. border-width:0px;
  2025. word-wrap:break-word;
  2026. text-transform:none;
  2027. visibility:hidden;
  2028. }
  2029. #u25114_img {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:100px;
  2035. height:38px;
  2036. }
  2037. #u25114 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:62px;
  2041. top:152px;
  2042. width:100px;
  2043. height:38px;
  2044. display:flex;
  2045. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2046. font-weight:400;
  2047. font-style:normal;
  2048. font-size:12px;
  2049. color:#606266;
  2050. }
  2051. #u25114 .text {
  2052. position:absolute;
  2053. align-self:center;
  2054. padding:2px 2px 2px 0px;
  2055. box-sizing:border-box;
  2056. width:100%;
  2057. }
  2058. #u25114_text {
  2059. border-width:0px;
  2060. word-wrap:break-word;
  2061. text-transform:none;
  2062. visibility:hidden;
  2063. }
  2064. #u25115_img {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:0px;
  2068. top:0px;
  2069. width:100px;
  2070. height:38px;
  2071. }
  2072. #u25115 {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:162px;
  2076. top:152px;
  2077. width:100px;
  2078. height:38px;
  2079. display:flex;
  2080. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2081. font-weight:400;
  2082. font-style:normal;
  2083. font-size:12px;
  2084. color:#606266;
  2085. }
  2086. #u25115 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 2px 2px 0px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u25115_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. visibility:hidden;
  2098. }
  2099. #u25116_img {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:97px;
  2105. height:38px;
  2106. }
  2107. #u25116 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:262px;
  2111. top:152px;
  2112. width:97px;
  2113. height:38px;
  2114. display:flex;
  2115. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2116. font-weight:400;
  2117. font-style:normal;
  2118. font-size:12px;
  2119. color:#606266;
  2120. }
  2121. #u25116 .text {
  2122. position:absolute;
  2123. align-self:center;
  2124. padding:2px 2px 2px 0px;
  2125. box-sizing:border-box;
  2126. width:100%;
  2127. }
  2128. #u25116_text {
  2129. border-width:0px;
  2130. word-wrap:break-word;
  2131. text-transform:none;
  2132. visibility:hidden;
  2133. }
  2134. #u25117_img {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:0px;
  2139. width:100px;
  2140. height:38px;
  2141. }
  2142. #u25117 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:359px;
  2146. top:152px;
  2147. width:100px;
  2148. height:38px;
  2149. display:flex;
  2150. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2151. font-weight:400;
  2152. font-style:normal;
  2153. font-size:12px;
  2154. color:#606266;
  2155. }
  2156. #u25117 .text {
  2157. position:absolute;
  2158. align-self:center;
  2159. padding:2px 2px 2px 0px;
  2160. box-sizing:border-box;
  2161. width:100%;
  2162. }
  2163. #u25117_text {
  2164. border-width:0px;
  2165. word-wrap:break-word;
  2166. text-transform:none;
  2167. visibility:hidden;
  2168. }
  2169. #u25118_img {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:97px;
  2175. height:38px;
  2176. }
  2177. #u25118 {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:459px;
  2181. top:152px;
  2182. width:97px;
  2183. height:38px;
  2184. display:flex;
  2185. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2186. font-weight:400;
  2187. font-style:normal;
  2188. font-size:12px;
  2189. color:#606266;
  2190. }
  2191. #u25118 .text {
  2192. position:absolute;
  2193. align-self:center;
  2194. padding:2px 2px 2px 0px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u25118_text {
  2199. border-width:0px;
  2200. word-wrap:break-word;
  2201. text-transform:none;
  2202. visibility:hidden;
  2203. }
  2204. #u25119_img {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:97px;
  2210. height:38px;
  2211. }
  2212. #u25119 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:556px;
  2216. top:152px;
  2217. width:97px;
  2218. height:38px;
  2219. display:flex;
  2220. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. font-size:12px;
  2224. color:#606266;
  2225. }
  2226. #u25119 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:2px 2px 2px 0px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u25119_text {
  2234. border-width:0px;
  2235. word-wrap:break-word;
  2236. text-transform:none;
  2237. visibility:hidden;
  2238. }
  2239. #u25120_img {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:96px;
  2245. height:38px;
  2246. }
  2247. #u25120 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:653px;
  2251. top:152px;
  2252. width:96px;
  2253. height:38px;
  2254. display:flex;
  2255. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. font-size:12px;
  2259. color:#606266;
  2260. }
  2261. #u25120 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u25120_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. visibility:hidden;
  2273. }
  2274. #u25121_img {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:96px;
  2280. height:38px;
  2281. }
  2282. #u25121 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:749px;
  2286. top:152px;
  2287. width:96px;
  2288. height:38px;
  2289. display:flex;
  2290. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:12px;
  2294. color:#606266;
  2295. }
  2296. #u25121 .text {
  2297. position:absolute;
  2298. align-self:center;
  2299. padding:2px 2px 2px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u25121_text {
  2304. border-width:0px;
  2305. word-wrap:break-word;
  2306. text-transform:none;
  2307. visibility:hidden;
  2308. }
  2309. #u25122_img {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:95px;
  2315. height:38px;
  2316. }
  2317. #u25122 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:845px;
  2321. top:152px;
  2322. width:95px;
  2323. height:38px;
  2324. display:flex;
  2325. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2326. font-weight:400;
  2327. font-style:normal;
  2328. font-size:12px;
  2329. color:#606266;
  2330. }
  2331. #u25122 .text {
  2332. position:absolute;
  2333. align-self:center;
  2334. padding:2px 2px 2px 0px;
  2335. box-sizing:border-box;
  2336. width:100%;
  2337. }
  2338. #u25122_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. visibility:hidden;
  2343. }
  2344. #u25123_img {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:95px;
  2350. height:38px;
  2351. }
  2352. #u25123 {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:940px;
  2356. top:152px;
  2357. width:95px;
  2358. height:38px;
  2359. display:flex;
  2360. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2361. font-weight:400;
  2362. font-style:normal;
  2363. font-size:12px;
  2364. color:#606266;
  2365. }
  2366. #u25123 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 0px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u25123_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. visibility:hidden;
  2378. }
  2379. #u25124_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:100px;
  2385. height:38px;
  2386. }
  2387. #u25124 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:1035px;
  2391. top:152px;
  2392. width:100px;
  2393. height:38px;
  2394. display:flex;
  2395. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:12px;
  2399. color:#606266;
  2400. }
  2401. #u25124 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 0px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u25124_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. visibility:hidden;
  2413. }
  2414. #u25125_img {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:100px;
  2420. height:38px;
  2421. }
  2422. #u25125 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:1135px;
  2426. top:152px;
  2427. width:100px;
  2428. height:38px;
  2429. display:flex;
  2430. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2431. font-weight:400;
  2432. font-style:normal;
  2433. font-size:12px;
  2434. color:#606266;
  2435. }
  2436. #u25125 .text {
  2437. position:absolute;
  2438. align-self:center;
  2439. padding:2px 2px 2px 0px;
  2440. box-sizing:border-box;
  2441. width:100%;
  2442. }
  2443. #u25125_text {
  2444. border-width:0px;
  2445. word-wrap:break-word;
  2446. text-transform:none;
  2447. visibility:hidden;
  2448. }
  2449. #u25126_img {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:0px;
  2453. top:0px;
  2454. width:98px;
  2455. height:38px;
  2456. }
  2457. #u25126 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:1235px;
  2461. top:152px;
  2462. width:98px;
  2463. height:38px;
  2464. display:flex;
  2465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2466. font-weight:400;
  2467. font-style:normal;
  2468. font-size:12px;
  2469. color:#02A7F0;
  2470. }
  2471. #u25126 .text {
  2472. position:absolute;
  2473. align-self:center;
  2474. padding:2px 2px 2px 0px;
  2475. box-sizing:border-box;
  2476. width:100%;
  2477. }
  2478. #u25126_text {
  2479. border-width:0px;
  2480. word-wrap:break-word;
  2481. text-transform:none;
  2482. visibility:hidden;
  2483. }
  2484. #u25127_img {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:0px;
  2488. top:0px;
  2489. width:62px;
  2490. height:35px;
  2491. }
  2492. #u25127 {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:0px;
  2496. top:190px;
  2497. width:62px;
  2498. height:35px;
  2499. display:flex;
  2500. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2501. font-weight:400;
  2502. font-style:normal;
  2503. font-size:12px;
  2504. color:#606266;
  2505. }
  2506. #u25127 .text {
  2507. position:absolute;
  2508. align-self:center;
  2509. padding:2px 2px 2px 0px;
  2510. box-sizing:border-box;
  2511. width:100%;
  2512. }
  2513. #u25127_text {
  2514. border-width:0px;
  2515. word-wrap:break-word;
  2516. text-transform:none;
  2517. visibility:hidden;
  2518. }
  2519. #u25128_img {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:100px;
  2525. height:35px;
  2526. }
  2527. #u25128 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:62px;
  2531. top:190px;
  2532. width:100px;
  2533. height:35px;
  2534. display:flex;
  2535. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. font-size:12px;
  2539. color:#606266;
  2540. }
  2541. #u25128 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:2px 2px 2px 0px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u25128_text {
  2549. border-width:0px;
  2550. word-wrap:break-word;
  2551. text-transform:none;
  2552. visibility:hidden;
  2553. }
  2554. #u25129_img {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:100px;
  2560. height:35px;
  2561. }
  2562. #u25129 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:162px;
  2566. top:190px;
  2567. width:100px;
  2568. height:35px;
  2569. display:flex;
  2570. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:12px;
  2574. color:#606266;
  2575. }
  2576. #u25129 .text {
  2577. position:absolute;
  2578. align-self:center;
  2579. padding:2px 2px 2px 0px;
  2580. box-sizing:border-box;
  2581. width:100%;
  2582. }
  2583. #u25129_text {
  2584. border-width:0px;
  2585. word-wrap:break-word;
  2586. text-transform:none;
  2587. visibility:hidden;
  2588. }
  2589. #u25130_img {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:0px;
  2593. top:0px;
  2594. width:97px;
  2595. height:35px;
  2596. }
  2597. #u25130 {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:262px;
  2601. top:190px;
  2602. width:97px;
  2603. height:35px;
  2604. display:flex;
  2605. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2606. font-weight:400;
  2607. font-style:normal;
  2608. font-size:12px;
  2609. color:#606266;
  2610. }
  2611. #u25130 .text {
  2612. position:absolute;
  2613. align-self:center;
  2614. padding:2px 2px 2px 0px;
  2615. box-sizing:border-box;
  2616. width:100%;
  2617. }
  2618. #u25130_text {
  2619. border-width:0px;
  2620. word-wrap:break-word;
  2621. text-transform:none;
  2622. visibility:hidden;
  2623. }
  2624. #u25131_img {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:100px;
  2630. height:35px;
  2631. }
  2632. #u25131 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:359px;
  2636. top:190px;
  2637. width:100px;
  2638. height:35px;
  2639. display:flex;
  2640. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2641. font-weight:400;
  2642. font-style:normal;
  2643. font-size:12px;
  2644. color:#606266;
  2645. }
  2646. #u25131 .text {
  2647. position:absolute;
  2648. align-self:center;
  2649. padding:2px 2px 2px 0px;
  2650. box-sizing:border-box;
  2651. width:100%;
  2652. }
  2653. #u25131_text {
  2654. border-width:0px;
  2655. word-wrap:break-word;
  2656. text-transform:none;
  2657. visibility:hidden;
  2658. }
  2659. #u25132_img {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:0px;
  2663. top:0px;
  2664. width:97px;
  2665. height:35px;
  2666. }
  2667. #u25132 {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:459px;
  2671. top:190px;
  2672. width:97px;
  2673. height:35px;
  2674. display:flex;
  2675. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2676. font-weight:400;
  2677. font-style:normal;
  2678. font-size:12px;
  2679. color:#606266;
  2680. }
  2681. #u25132 .text {
  2682. position:absolute;
  2683. align-self:center;
  2684. padding:2px 2px 2px 0px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u25132_text {
  2689. border-width:0px;
  2690. word-wrap:break-word;
  2691. text-transform:none;
  2692. visibility:hidden;
  2693. }
  2694. #u25133_img {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:97px;
  2700. height:35px;
  2701. }
  2702. #u25133 {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:556px;
  2706. top:190px;
  2707. width:97px;
  2708. height:35px;
  2709. display:flex;
  2710. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2711. font-weight:400;
  2712. font-style:normal;
  2713. font-size:12px;
  2714. color:#606266;
  2715. }
  2716. #u25133 .text {
  2717. position:absolute;
  2718. align-self:center;
  2719. padding:2px 2px 2px 0px;
  2720. box-sizing:border-box;
  2721. width:100%;
  2722. }
  2723. #u25133_text {
  2724. border-width:0px;
  2725. word-wrap:break-word;
  2726. text-transform:none;
  2727. visibility:hidden;
  2728. }
  2729. #u25134_img {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:96px;
  2735. height:35px;
  2736. }
  2737. #u25134 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:653px;
  2741. top:190px;
  2742. width:96px;
  2743. height:35px;
  2744. display:flex;
  2745. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:12px;
  2749. color:#606266;
  2750. }
  2751. #u25134 .text {
  2752. position:absolute;
  2753. align-self:center;
  2754. padding:2px 2px 2px 0px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u25134_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. visibility:hidden;
  2763. }
  2764. #u25135_img {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:96px;
  2770. height:35px;
  2771. }
  2772. #u25135 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:749px;
  2776. top:190px;
  2777. width:96px;
  2778. height:35px;
  2779. display:flex;
  2780. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2781. font-weight:400;
  2782. font-style:normal;
  2783. font-size:12px;
  2784. color:#606266;
  2785. }
  2786. #u25135 .text {
  2787. position:absolute;
  2788. align-self:center;
  2789. padding:2px 2px 2px 0px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u25135_text {
  2794. border-width:0px;
  2795. word-wrap:break-word;
  2796. text-transform:none;
  2797. visibility:hidden;
  2798. }
  2799. #u25136_img {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:95px;
  2805. height:35px;
  2806. }
  2807. #u25136 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:845px;
  2811. top:190px;
  2812. width:95px;
  2813. height:35px;
  2814. display:flex;
  2815. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:12px;
  2819. color:#606266;
  2820. }
  2821. #u25136 .text {
  2822. position:absolute;
  2823. align-self:center;
  2824. padding:2px 2px 2px 0px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u25136_text {
  2829. border-width:0px;
  2830. word-wrap:break-word;
  2831. text-transform:none;
  2832. visibility:hidden;
  2833. }
  2834. #u25137_img {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:95px;
  2840. height:35px;
  2841. }
  2842. #u25137 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:940px;
  2846. top:190px;
  2847. width:95px;
  2848. height:35px;
  2849. display:flex;
  2850. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:12px;
  2854. color:#606266;
  2855. }
  2856. #u25137 .text {
  2857. position:absolute;
  2858. align-self:center;
  2859. padding:2px 2px 2px 0px;
  2860. box-sizing:border-box;
  2861. width:100%;
  2862. }
  2863. #u25137_text {
  2864. border-width:0px;
  2865. word-wrap:break-word;
  2866. text-transform:none;
  2867. visibility:hidden;
  2868. }
  2869. #u25138_img {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:100px;
  2875. height:35px;
  2876. }
  2877. #u25138 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:1035px;
  2881. top:190px;
  2882. width:100px;
  2883. height:35px;
  2884. display:flex;
  2885. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:12px;
  2889. color:#606266;
  2890. }
  2891. #u25138 .text {
  2892. position:absolute;
  2893. align-self:center;
  2894. padding:2px 2px 2px 0px;
  2895. box-sizing:border-box;
  2896. width:100%;
  2897. }
  2898. #u25138_text {
  2899. border-width:0px;
  2900. word-wrap:break-word;
  2901. text-transform:none;
  2902. visibility:hidden;
  2903. }
  2904. #u25139_img {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:100px;
  2910. height:35px;
  2911. }
  2912. #u25139 {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:1135px;
  2916. top:190px;
  2917. width:100px;
  2918. height:35px;
  2919. display:flex;
  2920. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2921. font-weight:400;
  2922. font-style:normal;
  2923. font-size:12px;
  2924. color:#606266;
  2925. }
  2926. #u25139 .text {
  2927. position:absolute;
  2928. align-self:center;
  2929. padding:2px 2px 2px 0px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u25139_text {
  2934. border-width:0px;
  2935. word-wrap:break-word;
  2936. text-transform:none;
  2937. visibility:hidden;
  2938. }
  2939. #u25140_img {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:98px;
  2945. height:35px;
  2946. }
  2947. #u25140 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:1235px;
  2951. top:190px;
  2952. width:98px;
  2953. height:35px;
  2954. display:flex;
  2955. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2956. font-weight:400;
  2957. font-style:normal;
  2958. font-size:12px;
  2959. color:#606266;
  2960. }
  2961. #u25140 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 2px 2px 0px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u25140_text {
  2969. border-width:0px;
  2970. word-wrap:break-word;
  2971. text-transform:none;
  2972. visibility:hidden;
  2973. }
  2974. #u25141_img {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:62px;
  2980. height:34px;
  2981. }
  2982. #u25141 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:225px;
  2987. width:62px;
  2988. height:34px;
  2989. display:flex;
  2990. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. color:#606266;
  2995. }
  2996. #u25141 .text {
  2997. position:absolute;
  2998. align-self:center;
  2999. padding:2px 2px 2px 0px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u25141_text {
  3004. border-width:0px;
  3005. word-wrap:break-word;
  3006. text-transform:none;
  3007. visibility:hidden;
  3008. }
  3009. #u25142_img {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:100px;
  3015. height:34px;
  3016. }
  3017. #u25142 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:62px;
  3021. top:225px;
  3022. width:100px;
  3023. height:34px;
  3024. display:flex;
  3025. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:12px;
  3029. color:#606266;
  3030. }
  3031. #u25142 .text {
  3032. position:absolute;
  3033. align-self:center;
  3034. padding:2px 2px 2px 0px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u25142_text {
  3039. border-width:0px;
  3040. word-wrap:break-word;
  3041. text-transform:none;
  3042. visibility:hidden;
  3043. }
  3044. #u25143_img {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:0px;
  3048. top:0px;
  3049. width:100px;
  3050. height:34px;
  3051. }
  3052. #u25143 {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:162px;
  3056. top:225px;
  3057. width:100px;
  3058. height:34px;
  3059. display:flex;
  3060. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3061. font-weight:400;
  3062. font-style:normal;
  3063. font-size:12px;
  3064. color:#606266;
  3065. }
  3066. #u25143 .text {
  3067. position:absolute;
  3068. align-self:center;
  3069. padding:2px 2px 2px 0px;
  3070. box-sizing:border-box;
  3071. width:100%;
  3072. }
  3073. #u25143_text {
  3074. border-width:0px;
  3075. word-wrap:break-word;
  3076. text-transform:none;
  3077. visibility:hidden;
  3078. }
  3079. #u25144_img {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:97px;
  3085. height:34px;
  3086. }
  3087. #u25144 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:262px;
  3091. top:225px;
  3092. width:97px;
  3093. height:34px;
  3094. display:flex;
  3095. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3096. font-weight:400;
  3097. font-style:normal;
  3098. font-size:12px;
  3099. color:#606266;
  3100. }
  3101. #u25144 .text {
  3102. position:absolute;
  3103. align-self:center;
  3104. padding:2px 2px 2px 0px;
  3105. box-sizing:border-box;
  3106. width:100%;
  3107. }
  3108. #u25144_text {
  3109. border-width:0px;
  3110. word-wrap:break-word;
  3111. text-transform:none;
  3112. visibility:hidden;
  3113. }
  3114. #u25145_img {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:100px;
  3120. height:34px;
  3121. }
  3122. #u25145 {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:359px;
  3126. top:225px;
  3127. width:100px;
  3128. height:34px;
  3129. display:flex;
  3130. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3131. font-weight:400;
  3132. font-style:normal;
  3133. font-size:12px;
  3134. color:#606266;
  3135. }
  3136. #u25145 .text {
  3137. position:absolute;
  3138. align-self:center;
  3139. padding:2px 2px 2px 0px;
  3140. box-sizing:border-box;
  3141. width:100%;
  3142. }
  3143. #u25145_text {
  3144. border-width:0px;
  3145. word-wrap:break-word;
  3146. text-transform:none;
  3147. visibility:hidden;
  3148. }
  3149. #u25146_img {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:0px;
  3153. top:0px;
  3154. width:97px;
  3155. height:34px;
  3156. }
  3157. #u25146 {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:459px;
  3161. top:225px;
  3162. width:97px;
  3163. height:34px;
  3164. display:flex;
  3165. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3166. font-weight:400;
  3167. font-style:normal;
  3168. font-size:12px;
  3169. color:#606266;
  3170. }
  3171. #u25146 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:2px 2px 2px 0px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u25146_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. visibility:hidden;
  3183. }
  3184. #u25147_img {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:97px;
  3190. height:34px;
  3191. }
  3192. #u25147 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:556px;
  3196. top:225px;
  3197. width:97px;
  3198. height:34px;
  3199. display:flex;
  3200. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3201. font-weight:400;
  3202. font-style:normal;
  3203. font-size:12px;
  3204. color:#606266;
  3205. }
  3206. #u25147 .text {
  3207. position:absolute;
  3208. align-self:center;
  3209. padding:2px 2px 2px 0px;
  3210. box-sizing:border-box;
  3211. width:100%;
  3212. }
  3213. #u25147_text {
  3214. border-width:0px;
  3215. word-wrap:break-word;
  3216. text-transform:none;
  3217. visibility:hidden;
  3218. }
  3219. #u25148_img {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:96px;
  3225. height:34px;
  3226. }
  3227. #u25148 {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:653px;
  3231. top:225px;
  3232. width:96px;
  3233. height:34px;
  3234. display:flex;
  3235. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3236. font-weight:400;
  3237. font-style:normal;
  3238. font-size:12px;
  3239. color:#606266;
  3240. }
  3241. #u25148 .text {
  3242. position:absolute;
  3243. align-self:center;
  3244. padding:2px 2px 2px 0px;
  3245. box-sizing:border-box;
  3246. width:100%;
  3247. }
  3248. #u25148_text {
  3249. border-width:0px;
  3250. word-wrap:break-word;
  3251. text-transform:none;
  3252. visibility:hidden;
  3253. }
  3254. #u25149_img {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:96px;
  3260. height:34px;
  3261. }
  3262. #u25149 {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:749px;
  3266. top:225px;
  3267. width:96px;
  3268. height:34px;
  3269. display:flex;
  3270. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3271. font-weight:400;
  3272. font-style:normal;
  3273. font-size:12px;
  3274. color:#606266;
  3275. }
  3276. #u25149 .text {
  3277. position:absolute;
  3278. align-self:center;
  3279. padding:2px 2px 2px 0px;
  3280. box-sizing:border-box;
  3281. width:100%;
  3282. }
  3283. #u25149_text {
  3284. border-width:0px;
  3285. word-wrap:break-word;
  3286. text-transform:none;
  3287. visibility:hidden;
  3288. }
  3289. #u25150_img {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:0px;
  3293. top:0px;
  3294. width:95px;
  3295. height:34px;
  3296. }
  3297. #u25150 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:845px;
  3301. top:225px;
  3302. width:95px;
  3303. height:34px;
  3304. display:flex;
  3305. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3306. font-weight:400;
  3307. font-style:normal;
  3308. font-size:12px;
  3309. color:#606266;
  3310. }
  3311. #u25150 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:2px 2px 2px 0px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u25150_text {
  3319. border-width:0px;
  3320. word-wrap:break-word;
  3321. text-transform:none;
  3322. visibility:hidden;
  3323. }
  3324. #u25151_img {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:0px;
  3328. top:0px;
  3329. width:95px;
  3330. height:34px;
  3331. }
  3332. #u25151 {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:940px;
  3336. top:225px;
  3337. width:95px;
  3338. height:34px;
  3339. display:flex;
  3340. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3341. font-weight:400;
  3342. font-style:normal;
  3343. font-size:12px;
  3344. color:#606266;
  3345. }
  3346. #u25151 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 2px 2px 0px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u25151_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. visibility:hidden;
  3358. }
  3359. #u25152_img {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:100px;
  3365. height:34px;
  3366. }
  3367. #u25152 {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:1035px;
  3371. top:225px;
  3372. width:100px;
  3373. height:34px;
  3374. display:flex;
  3375. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3376. font-weight:400;
  3377. font-style:normal;
  3378. font-size:12px;
  3379. color:#606266;
  3380. }
  3381. #u25152 .text {
  3382. position:absolute;
  3383. align-self:center;
  3384. padding:2px 2px 2px 0px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u25152_text {
  3389. border-width:0px;
  3390. word-wrap:break-word;
  3391. text-transform:none;
  3392. visibility:hidden;
  3393. }
  3394. #u25153_img {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:0px;
  3398. top:0px;
  3399. width:100px;
  3400. height:34px;
  3401. }
  3402. #u25153 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:1135px;
  3406. top:225px;
  3407. width:100px;
  3408. height:34px;
  3409. display:flex;
  3410. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. font-size:12px;
  3414. color:#606266;
  3415. }
  3416. #u25153 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 2px 2px 0px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u25153_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. visibility:hidden;
  3428. }
  3429. #u25154_img {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:0px;
  3433. top:0px;
  3434. width:98px;
  3435. height:34px;
  3436. }
  3437. #u25154 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:1235px;
  3441. top:225px;
  3442. width:98px;
  3443. height:34px;
  3444. display:flex;
  3445. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:12px;
  3449. color:#606266;
  3450. }
  3451. #u25154 .text {
  3452. position:absolute;
  3453. align-self:center;
  3454. padding:2px 2px 2px 0px;
  3455. box-sizing:border-box;
  3456. width:100%;
  3457. }
  3458. #u25154_text {
  3459. border-width:0px;
  3460. word-wrap:break-word;
  3461. text-transform:none;
  3462. visibility:hidden;
  3463. }
  3464. #u25155_img {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:0px;
  3468. top:0px;
  3469. width:62px;
  3470. height:32px;
  3471. }
  3472. #u25155 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:0px;
  3476. top:259px;
  3477. width:62px;
  3478. height:32px;
  3479. display:flex;
  3480. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3481. font-weight:400;
  3482. font-style:normal;
  3483. font-size:12px;
  3484. color:#606266;
  3485. }
  3486. #u25155 .text {
  3487. position:absolute;
  3488. align-self:center;
  3489. padding:2px 2px 2px 0px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u25155_text {
  3494. border-width:0px;
  3495. word-wrap:break-word;
  3496. text-transform:none;
  3497. visibility:hidden;
  3498. }
  3499. #u25156_img {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:100px;
  3505. height:32px;
  3506. }
  3507. #u25156 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:62px;
  3511. top:259px;
  3512. width:100px;
  3513. height:32px;
  3514. display:flex;
  3515. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3516. font-weight:400;
  3517. font-style:normal;
  3518. font-size:12px;
  3519. color:#606266;
  3520. }
  3521. #u25156 .text {
  3522. position:absolute;
  3523. align-self:center;
  3524. padding:2px 2px 2px 0px;
  3525. box-sizing:border-box;
  3526. width:100%;
  3527. }
  3528. #u25156_text {
  3529. border-width:0px;
  3530. word-wrap:break-word;
  3531. text-transform:none;
  3532. visibility:hidden;
  3533. }
  3534. #u25157_img {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:100px;
  3540. height:32px;
  3541. }
  3542. #u25157 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:162px;
  3546. top:259px;
  3547. width:100px;
  3548. height:32px;
  3549. display:flex;
  3550. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:12px;
  3554. color:#606266;
  3555. }
  3556. #u25157 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 2px 2px 0px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u25157_text {
  3564. border-width:0px;
  3565. word-wrap:break-word;
  3566. text-transform:none;
  3567. visibility:hidden;
  3568. }
  3569. #u25158_img {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:97px;
  3575. height:32px;
  3576. }
  3577. #u25158 {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:262px;
  3581. top:259px;
  3582. width:97px;
  3583. height:32px;
  3584. display:flex;
  3585. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3586. font-weight:400;
  3587. font-style:normal;
  3588. font-size:12px;
  3589. color:#606266;
  3590. }
  3591. #u25158 .text {
  3592. position:absolute;
  3593. align-self:center;
  3594. padding:2px 2px 2px 0px;
  3595. box-sizing:border-box;
  3596. width:100%;
  3597. }
  3598. #u25158_text {
  3599. border-width:0px;
  3600. word-wrap:break-word;
  3601. text-transform:none;
  3602. visibility:hidden;
  3603. }
  3604. #u25159_img {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:100px;
  3610. height:32px;
  3611. }
  3612. #u25159 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:359px;
  3616. top:259px;
  3617. width:100px;
  3618. height:32px;
  3619. display:flex;
  3620. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3621. font-weight:400;
  3622. font-style:normal;
  3623. font-size:12px;
  3624. color:#606266;
  3625. }
  3626. #u25159 .text {
  3627. position:absolute;
  3628. align-self:center;
  3629. padding:2px 2px 2px 0px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u25159_text {
  3634. border-width:0px;
  3635. word-wrap:break-word;
  3636. text-transform:none;
  3637. visibility:hidden;
  3638. }
  3639. #u25160_img {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:97px;
  3645. height:32px;
  3646. }
  3647. #u25160 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:459px;
  3651. top:259px;
  3652. width:97px;
  3653. height:32px;
  3654. display:flex;
  3655. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. font-size:12px;
  3659. color:#606266;
  3660. }
  3661. #u25160 .text {
  3662. position:absolute;
  3663. align-self:center;
  3664. padding:2px 2px 2px 0px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u25160_text {
  3669. border-width:0px;
  3670. word-wrap:break-word;
  3671. text-transform:none;
  3672. visibility:hidden;
  3673. }
  3674. #u25161_img {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:97px;
  3680. height:32px;
  3681. }
  3682. #u25161 {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:556px;
  3686. top:259px;
  3687. width:97px;
  3688. height:32px;
  3689. display:flex;
  3690. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3691. font-weight:400;
  3692. font-style:normal;
  3693. font-size:12px;
  3694. color:#606266;
  3695. }
  3696. #u25161 .text {
  3697. position:absolute;
  3698. align-self:center;
  3699. padding:2px 2px 2px 0px;
  3700. box-sizing:border-box;
  3701. width:100%;
  3702. }
  3703. #u25161_text {
  3704. border-width:0px;
  3705. word-wrap:break-word;
  3706. text-transform:none;
  3707. visibility:hidden;
  3708. }
  3709. #u25162_img {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:96px;
  3715. height:32px;
  3716. }
  3717. #u25162 {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:653px;
  3721. top:259px;
  3722. width:96px;
  3723. height:32px;
  3724. display:flex;
  3725. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3726. font-weight:400;
  3727. font-style:normal;
  3728. font-size:12px;
  3729. color:#606266;
  3730. }
  3731. #u25162 .text {
  3732. position:absolute;
  3733. align-self:center;
  3734. padding:2px 2px 2px 0px;
  3735. box-sizing:border-box;
  3736. width:100%;
  3737. }
  3738. #u25162_text {
  3739. border-width:0px;
  3740. word-wrap:break-word;
  3741. text-transform:none;
  3742. visibility:hidden;
  3743. }
  3744. #u25163_img {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:0px;
  3748. top:0px;
  3749. width:96px;
  3750. height:32px;
  3751. }
  3752. #u25163 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:749px;
  3756. top:259px;
  3757. width:96px;
  3758. height:32px;
  3759. display:flex;
  3760. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3761. font-weight:400;
  3762. font-style:normal;
  3763. font-size:12px;
  3764. color:#606266;
  3765. }
  3766. #u25163 .text {
  3767. position:absolute;
  3768. align-self:center;
  3769. padding:2px 2px 2px 0px;
  3770. box-sizing:border-box;
  3771. width:100%;
  3772. }
  3773. #u25163_text {
  3774. border-width:0px;
  3775. word-wrap:break-word;
  3776. text-transform:none;
  3777. visibility:hidden;
  3778. }
  3779. #u25164_img {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:0px;
  3783. top:0px;
  3784. width:95px;
  3785. height:32px;
  3786. }
  3787. #u25164 {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:845px;
  3791. top:259px;
  3792. width:95px;
  3793. height:32px;
  3794. display:flex;
  3795. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3796. font-weight:400;
  3797. font-style:normal;
  3798. font-size:12px;
  3799. color:#606266;
  3800. }
  3801. #u25164 .text {
  3802. position:absolute;
  3803. align-self:center;
  3804. padding:2px 2px 2px 0px;
  3805. box-sizing:border-box;
  3806. width:100%;
  3807. }
  3808. #u25164_text {
  3809. border-width:0px;
  3810. word-wrap:break-word;
  3811. text-transform:none;
  3812. visibility:hidden;
  3813. }
  3814. #u25165_img {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:0px;
  3818. top:0px;
  3819. width:95px;
  3820. height:32px;
  3821. }
  3822. #u25165 {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:940px;
  3826. top:259px;
  3827. width:95px;
  3828. height:32px;
  3829. display:flex;
  3830. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:12px;
  3834. color:#606266;
  3835. }
  3836. #u25165 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:2px 2px 2px 0px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u25165_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. visibility:hidden;
  3848. }
  3849. #u25166_img {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:100px;
  3855. height:32px;
  3856. }
  3857. #u25166 {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:1035px;
  3861. top:259px;
  3862. width:100px;
  3863. height:32px;
  3864. display:flex;
  3865. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3866. font-weight:400;
  3867. font-style:normal;
  3868. font-size:12px;
  3869. color:#606266;
  3870. }
  3871. #u25166 .text {
  3872. position:absolute;
  3873. align-self:center;
  3874. padding:2px 2px 2px 0px;
  3875. box-sizing:border-box;
  3876. width:100%;
  3877. }
  3878. #u25166_text {
  3879. border-width:0px;
  3880. word-wrap:break-word;
  3881. text-transform:none;
  3882. visibility:hidden;
  3883. }
  3884. #u25167_img {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:0px;
  3888. top:0px;
  3889. width:100px;
  3890. height:32px;
  3891. }
  3892. #u25167 {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:1135px;
  3896. top:259px;
  3897. width:100px;
  3898. height:32px;
  3899. display:flex;
  3900. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3901. font-weight:400;
  3902. font-style:normal;
  3903. font-size:12px;
  3904. color:#606266;
  3905. }
  3906. #u25167 .text {
  3907. position:absolute;
  3908. align-self:center;
  3909. padding:2px 2px 2px 0px;
  3910. box-sizing:border-box;
  3911. width:100%;
  3912. }
  3913. #u25167_text {
  3914. border-width:0px;
  3915. word-wrap:break-word;
  3916. text-transform:none;
  3917. visibility:hidden;
  3918. }
  3919. #u25168_img {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:98px;
  3925. height:32px;
  3926. }
  3927. #u25168 {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:1235px;
  3931. top:259px;
  3932. width:98px;
  3933. height:32px;
  3934. display:flex;
  3935. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3936. font-weight:400;
  3937. font-style:normal;
  3938. font-size:12px;
  3939. color:#606266;
  3940. }
  3941. #u25168 .text {
  3942. position:absolute;
  3943. align-self:center;
  3944. padding:2px 2px 2px 0px;
  3945. box-sizing:border-box;
  3946. width:100%;
  3947. }
  3948. #u25168_text {
  3949. border-width:0px;
  3950. word-wrap:break-word;
  3951. text-transform:none;
  3952. visibility:hidden;
  3953. }
  3954. #u25169_img {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:62px;
  3960. height:30px;
  3961. }
  3962. #u25169 {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:0px;
  3966. top:291px;
  3967. width:62px;
  3968. height:30px;
  3969. display:flex;
  3970. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:12px;
  3974. color:#606266;
  3975. }
  3976. #u25169 .text {
  3977. position:absolute;
  3978. align-self:center;
  3979. padding:2px 2px 2px 0px;
  3980. box-sizing:border-box;
  3981. width:100%;
  3982. }
  3983. #u25169_text {
  3984. border-width:0px;
  3985. word-wrap:break-word;
  3986. text-transform:none;
  3987. visibility:hidden;
  3988. }
  3989. #u25170_img {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:100px;
  3995. height:30px;
  3996. }
  3997. #u25170 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:62px;
  4001. top:291px;
  4002. width:100px;
  4003. height:30px;
  4004. display:flex;
  4005. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4006. font-weight:400;
  4007. font-style:normal;
  4008. font-size:12px;
  4009. color:#606266;
  4010. }
  4011. #u25170 .text {
  4012. position:absolute;
  4013. align-self:center;
  4014. padding:2px 2px 2px 0px;
  4015. box-sizing:border-box;
  4016. width:100%;
  4017. }
  4018. #u25170_text {
  4019. border-width:0px;
  4020. word-wrap:break-word;
  4021. text-transform:none;
  4022. visibility:hidden;
  4023. }
  4024. #u25171_img {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:100px;
  4030. height:30px;
  4031. }
  4032. #u25171 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:162px;
  4036. top:291px;
  4037. width:100px;
  4038. height:30px;
  4039. display:flex;
  4040. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. font-size:12px;
  4044. color:#606266;
  4045. }
  4046. #u25171 .text {
  4047. position:absolute;
  4048. align-self:center;
  4049. padding:2px 2px 2px 0px;
  4050. box-sizing:border-box;
  4051. width:100%;
  4052. }
  4053. #u25171_text {
  4054. border-width:0px;
  4055. word-wrap:break-word;
  4056. text-transform:none;
  4057. visibility:hidden;
  4058. }
  4059. #u25172_img {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:97px;
  4065. height:30px;
  4066. }
  4067. #u25172 {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:262px;
  4071. top:291px;
  4072. width:97px;
  4073. height:30px;
  4074. display:flex;
  4075. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4076. font-weight:400;
  4077. font-style:normal;
  4078. font-size:12px;
  4079. color:#606266;
  4080. }
  4081. #u25172 .text {
  4082. position:absolute;
  4083. align-self:center;
  4084. padding:2px 2px 2px 0px;
  4085. box-sizing:border-box;
  4086. width:100%;
  4087. }
  4088. #u25172_text {
  4089. border-width:0px;
  4090. word-wrap:break-word;
  4091. text-transform:none;
  4092. visibility:hidden;
  4093. }
  4094. #u25173_img {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:0px;
  4098. top:0px;
  4099. width:100px;
  4100. height:30px;
  4101. }
  4102. #u25173 {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:359px;
  4106. top:291px;
  4107. width:100px;
  4108. height:30px;
  4109. display:flex;
  4110. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4111. font-weight:400;
  4112. font-style:normal;
  4113. font-size:12px;
  4114. color:#606266;
  4115. }
  4116. #u25173 .text {
  4117. position:absolute;
  4118. align-self:center;
  4119. padding:2px 2px 2px 0px;
  4120. box-sizing:border-box;
  4121. width:100%;
  4122. }
  4123. #u25173_text {
  4124. border-width:0px;
  4125. word-wrap:break-word;
  4126. text-transform:none;
  4127. visibility:hidden;
  4128. }
  4129. #u25174_img {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:97px;
  4135. height:30px;
  4136. }
  4137. #u25174 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:459px;
  4141. top:291px;
  4142. width:97px;
  4143. height:30px;
  4144. display:flex;
  4145. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4146. font-weight:400;
  4147. font-style:normal;
  4148. font-size:12px;
  4149. color:#606266;
  4150. }
  4151. #u25174 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 0px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u25174_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. visibility:hidden;
  4163. }
  4164. #u25175_img {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:97px;
  4170. height:30px;
  4171. }
  4172. #u25175 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:556px;
  4176. top:291px;
  4177. width:97px;
  4178. height:30px;
  4179. display:flex;
  4180. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4181. font-weight:400;
  4182. font-style:normal;
  4183. font-size:12px;
  4184. color:#606266;
  4185. }
  4186. #u25175 .text {
  4187. position:absolute;
  4188. align-self:center;
  4189. padding:2px 2px 2px 0px;
  4190. box-sizing:border-box;
  4191. width:100%;
  4192. }
  4193. #u25175_text {
  4194. border-width:0px;
  4195. word-wrap:break-word;
  4196. text-transform:none;
  4197. visibility:hidden;
  4198. }
  4199. #u25176_img {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:0px;
  4203. top:0px;
  4204. width:96px;
  4205. height:30px;
  4206. }
  4207. #u25176 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:653px;
  4211. top:291px;
  4212. width:96px;
  4213. height:30px;
  4214. display:flex;
  4215. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4216. font-weight:400;
  4217. font-style:normal;
  4218. font-size:12px;
  4219. color:#606266;
  4220. }
  4221. #u25176 .text {
  4222. position:absolute;
  4223. align-self:center;
  4224. padding:2px 2px 2px 0px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u25176_text {
  4229. border-width:0px;
  4230. word-wrap:break-word;
  4231. text-transform:none;
  4232. visibility:hidden;
  4233. }
  4234. #u25177_img {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:0px;
  4238. top:0px;
  4239. width:96px;
  4240. height:30px;
  4241. }
  4242. #u25177 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:749px;
  4246. top:291px;
  4247. width:96px;
  4248. height:30px;
  4249. display:flex;
  4250. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4251. font-weight:400;
  4252. font-style:normal;
  4253. font-size:12px;
  4254. color:#606266;
  4255. }
  4256. #u25177 .text {
  4257. position:absolute;
  4258. align-self:center;
  4259. padding:2px 2px 2px 0px;
  4260. box-sizing:border-box;
  4261. width:100%;
  4262. }
  4263. #u25177_text {
  4264. border-width:0px;
  4265. word-wrap:break-word;
  4266. text-transform:none;
  4267. visibility:hidden;
  4268. }
  4269. #u25178_img {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:95px;
  4275. height:30px;
  4276. }
  4277. #u25178 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:845px;
  4281. top:291px;
  4282. width:95px;
  4283. height:30px;
  4284. display:flex;
  4285. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4286. font-weight:400;
  4287. font-style:normal;
  4288. font-size:12px;
  4289. color:#606266;
  4290. }
  4291. #u25178 .text {
  4292. position:absolute;
  4293. align-self:center;
  4294. padding:2px 2px 2px 0px;
  4295. box-sizing:border-box;
  4296. width:100%;
  4297. }
  4298. #u25178_text {
  4299. border-width:0px;
  4300. word-wrap:break-word;
  4301. text-transform:none;
  4302. visibility:hidden;
  4303. }
  4304. #u25179_img {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:0px;
  4308. top:0px;
  4309. width:95px;
  4310. height:30px;
  4311. }
  4312. #u25179 {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:940px;
  4316. top:291px;
  4317. width:95px;
  4318. height:30px;
  4319. display:flex;
  4320. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4321. font-weight:400;
  4322. font-style:normal;
  4323. font-size:12px;
  4324. color:#606266;
  4325. }
  4326. #u25179 .text {
  4327. position:absolute;
  4328. align-self:center;
  4329. padding:2px 2px 2px 0px;
  4330. box-sizing:border-box;
  4331. width:100%;
  4332. }
  4333. #u25179_text {
  4334. border-width:0px;
  4335. word-wrap:break-word;
  4336. text-transform:none;
  4337. visibility:hidden;
  4338. }
  4339. #u25180_img {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:100px;
  4345. height:30px;
  4346. }
  4347. #u25180 {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:1035px;
  4351. top:291px;
  4352. width:100px;
  4353. height:30px;
  4354. display:flex;
  4355. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. font-size:12px;
  4359. color:#606266;
  4360. }
  4361. #u25180 .text {
  4362. position:absolute;
  4363. align-self:center;
  4364. padding:2px 2px 2px 0px;
  4365. box-sizing:border-box;
  4366. width:100%;
  4367. }
  4368. #u25180_text {
  4369. border-width:0px;
  4370. word-wrap:break-word;
  4371. text-transform:none;
  4372. visibility:hidden;
  4373. }
  4374. #u25181_img {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:100px;
  4380. height:30px;
  4381. }
  4382. #u25181 {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:1135px;
  4386. top:291px;
  4387. width:100px;
  4388. height:30px;
  4389. display:flex;
  4390. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4391. font-weight:400;
  4392. font-style:normal;
  4393. font-size:12px;
  4394. color:#606266;
  4395. }
  4396. #u25181 .text {
  4397. position:absolute;
  4398. align-self:center;
  4399. padding:2px 2px 2px 0px;
  4400. box-sizing:border-box;
  4401. width:100%;
  4402. }
  4403. #u25181_text {
  4404. border-width:0px;
  4405. word-wrap:break-word;
  4406. text-transform:none;
  4407. visibility:hidden;
  4408. }
  4409. #u25182_img {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:98px;
  4415. height:30px;
  4416. }
  4417. #u25182 {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:1235px;
  4421. top:291px;
  4422. width:98px;
  4423. height:30px;
  4424. display:flex;
  4425. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:12px;
  4429. color:#606266;
  4430. }
  4431. #u25182 .text {
  4432. position:absolute;
  4433. align-self:center;
  4434. padding:2px 2px 2px 0px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u25182_text {
  4439. border-width:0px;
  4440. word-wrap:break-word;
  4441. text-transform:none;
  4442. visibility:hidden;
  4443. }
  4444. #u25183_div {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:59px;
  4450. height:30px;
  4451. background:inherit;
  4452. background-color:rgba(24, 144, 255, 1);
  4453. box-sizing:border-box;
  4454. border-width:1px;
  4455. border-style:solid;
  4456. border-color:rgba(0, 153, 255, 1);
  4457. border-radius:4px;
  4458. -moz-box-shadow:none;
  4459. -webkit-box-shadow:none;
  4460. box-shadow:none;
  4461. font-family:'Microsoft YaHei', sans-serif;
  4462. font-weight:400;
  4463. font-style:normal;
  4464. font-size:14px;
  4465. color:#FFFFFF;
  4466. }
  4467. #u25183 {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:846px;
  4471. top:89px;
  4472. width:59px;
  4473. height:30px;
  4474. display:flex;
  4475. font-family:'Microsoft YaHei', sans-serif;
  4476. font-weight:400;
  4477. font-style:normal;
  4478. font-size:14px;
  4479. color:#FFFFFF;
  4480. }
  4481. #u25183 .text {
  4482. position:absolute;
  4483. align-self:center;
  4484. padding:5px 15px 5px 15px;
  4485. box-sizing:border-box;
  4486. width:100%;
  4487. }
  4488. #u25183_text {
  4489. border-width:0px;
  4490. white-space:nowrap;
  4491. text-transform:none;
  4492. }
  4493. #u25184_div {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:0px;
  4497. top:0px;
  4498. width:55px;
  4499. height:30px;
  4500. background:inherit;
  4501. background-color:rgba(255, 255, 255, 1);
  4502. box-sizing:border-box;
  4503. border-width:1px;
  4504. border-style:solid;
  4505. border-color:rgba(170, 170, 170, 1);
  4506. border-radius:4px;
  4507. -moz-box-shadow:none;
  4508. -webkit-box-shadow:none;
  4509. box-shadow:none;
  4510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4511. font-weight:400;
  4512. font-style:normal;
  4513. font-size:12px;
  4514. color:#555555;
  4515. }
  4516. #u25184 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:915px;
  4520. top:89px;
  4521. width:55px;
  4522. height:30px;
  4523. display:flex;
  4524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. font-size:12px;
  4528. color:#555555;
  4529. }
  4530. #u25184 .text {
  4531. position:absolute;
  4532. align-self:center;
  4533. padding:5px 15px 5px 15px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u25184_text {
  4538. border-width:0px;
  4539. white-space:nowrap;
  4540. text-transform:none;
  4541. }
  4542. #u25185 {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:0px;
  4546. top:0px;
  4547. width:0px;
  4548. height:0px;
  4549. }
  4550. #u25186_div {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:140px;
  4556. height:30px;
  4557. background:inherit;
  4558. background-color:rgba(255, 255, 255, 1);
  4559. box-sizing:border-box;
  4560. border-width:1px;
  4561. border-style:solid;
  4562. border-color:rgba(201, 201, 201, 1);
  4563. border-radius:4px;
  4564. -moz-box-shadow:none;
  4565. -webkit-box-shadow:none;
  4566. box-shadow:none;
  4567. font-family:'Microsoft YaHei', sans-serif;
  4568. font-weight:400;
  4569. font-style:normal;
  4570. font-size:14px;
  4571. color:#CCCCCC;
  4572. text-align:left;
  4573. }
  4574. #u25186 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:97px;
  4578. top:89px;
  4579. width:140px;
  4580. height:30px;
  4581. display:flex;
  4582. font-family:'Microsoft YaHei', sans-serif;
  4583. font-weight:400;
  4584. font-style:normal;
  4585. font-size:14px;
  4586. color:#CCCCCC;
  4587. text-align:left;
  4588. }
  4589. #u25186 .text {
  4590. position:absolute;
  4591. align-self:center;
  4592. padding:2px 8px 2px 8px;
  4593. box-sizing:border-box;
  4594. width:100%;
  4595. }
  4596. #u25186_text {
  4597. border-width:0px;
  4598. word-wrap:break-word;
  4599. text-transform:none;
  4600. visibility:hidden;
  4601. }
  4602. #u25187_input {
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:126px;
  4607. height:25px;
  4608. padding:2px 2px 2px 2px;
  4609. font-family:'Microsoft YaHei', sans-serif;
  4610. font-weight:400;
  4611. font-style:normal;
  4612. font-size:10px;
  4613. letter-spacing:normal;
  4614. color:#000000;
  4615. vertical-align:none;
  4616. text-align:left;
  4617. text-transform:none;
  4618. background-color:transparent;
  4619. border-color:transparent;
  4620. }
  4621. #u25187_input.disabled {
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:126px;
  4626. height:25px;
  4627. padding:2px 2px 2px 2px;
  4628. font-family:'Microsoft YaHei', sans-serif;
  4629. font-weight:400;
  4630. font-style:normal;
  4631. font-size:10px;
  4632. letter-spacing:normal;
  4633. color:#000000;
  4634. vertical-align:none;
  4635. text-align:left;
  4636. text-transform:none;
  4637. background-color:transparent;
  4638. border-color:transparent;
  4639. }
  4640. #u25187_div {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:0px;
  4644. top:0px;
  4645. width:126px;
  4646. height:25px;
  4647. background:inherit;
  4648. background-color:rgba(255, 255, 255, 1);
  4649. border:none;
  4650. border-radius:0px;
  4651. -moz-box-shadow:none;
  4652. -webkit-box-shadow:none;
  4653. box-shadow:none;
  4654. font-family:'Microsoft YaHei', sans-serif;
  4655. font-weight:400;
  4656. font-style:normal;
  4657. font-size:10px;
  4658. }
  4659. #u25187 {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:105px;
  4663. top:90px;
  4664. width:126px;
  4665. height:25px;
  4666. display:flex;
  4667. font-family:'Microsoft YaHei', sans-serif;
  4668. font-weight:400;
  4669. font-style:normal;
  4670. font-size:10px;
  4671. }
  4672. #u25187 .text {
  4673. position:absolute;
  4674. align-self:center;
  4675. padding:2px 2px 2px 2px;
  4676. box-sizing:border-box;
  4677. width:100%;
  4678. }
  4679. #u25187_div.disabled {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:126px;
  4685. height:25px;
  4686. background:inherit;
  4687. background-color:rgba(240, 240, 240, 1);
  4688. border:none;
  4689. border-radius:0px;
  4690. -moz-box-shadow:none;
  4691. -webkit-box-shadow:none;
  4692. box-shadow:none;
  4693. font-family:'Microsoft YaHei', sans-serif;
  4694. font-weight:400;
  4695. font-style:normal;
  4696. font-size:10px;
  4697. }
  4698. #u25187.disabled {
  4699. }
  4700. #u25188 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:0px;
  4706. height:0px;
  4707. }
  4708. #u25189_div {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:140px;
  4714. height:28px;
  4715. background:inherit;
  4716. background-color:rgba(255, 255, 255, 1);
  4717. box-sizing:border-box;
  4718. border-width:1px;
  4719. border-style:solid;
  4720. border-color:rgba(201, 201, 201, 1);
  4721. border-radius:4px;
  4722. -moz-box-shadow:none;
  4723. -webkit-box-shadow:none;
  4724. box-shadow:none;
  4725. font-family:'Microsoft YaHei', sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:14px;
  4729. color:#CCCCCC;
  4730. text-align:left;
  4731. }
  4732. #u25189 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:696px;
  4736. top:89px;
  4737. width:140px;
  4738. height:28px;
  4739. display:flex;
  4740. font-family:'Microsoft YaHei', sans-serif;
  4741. font-weight:400;
  4742. font-style:normal;
  4743. font-size:14px;
  4744. color:#CCCCCC;
  4745. text-align:left;
  4746. }
  4747. #u25189 .text {
  4748. position:absolute;
  4749. align-self:center;
  4750. padding:2px 8px 2px 8px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u25189_text {
  4755. border-width:0px;
  4756. word-wrap:break-word;
  4757. text-transform:none;
  4758. visibility:hidden;
  4759. }
  4760. #u25190_input {
  4761. position:absolute;
  4762. left:0px;
  4763. top:0px;
  4764. width:113px;
  4765. height:26px;
  4766. padding:2px 2px 2px 2px;
  4767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4768. font-weight:400;
  4769. font-style:normal;
  4770. font-size:14px;
  4771. letter-spacing:normal;
  4772. color:#000000;
  4773. vertical-align:none;
  4774. text-align:left;
  4775. text-transform:none;
  4776. background-color:transparent;
  4777. border-color:transparent;
  4778. }
  4779. #u25190_input.disabled {
  4780. position:absolute;
  4781. left:0px;
  4782. top:0px;
  4783. width:113px;
  4784. height:26px;
  4785. padding:2px 2px 2px 2px;
  4786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4787. font-weight:400;
  4788. font-style:normal;
  4789. font-size:14px;
  4790. letter-spacing:normal;
  4791. color:#000000;
  4792. vertical-align:none;
  4793. text-align:left;
  4794. text-transform:none;
  4795. background-color:transparent;
  4796. border-color:transparent;
  4797. }
  4798. #u25190_div {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:113px;
  4804. height:26px;
  4805. background:inherit;
  4806. background-color:rgba(255, 255, 255, 1);
  4807. border:none;
  4808. border-radius:0px;
  4809. -moz-box-shadow:none;
  4810. -webkit-box-shadow:none;
  4811. box-shadow:none;
  4812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4813. font-weight:400;
  4814. font-style:normal;
  4815. font-size:14px;
  4816. }
  4817. #u25190 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:702px;
  4821. top:90px;
  4822. width:113px;
  4823. height:26px;
  4824. display:flex;
  4825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4826. font-weight:400;
  4827. font-style:normal;
  4828. font-size:14px;
  4829. }
  4830. #u25190 .text {
  4831. position:absolute;
  4832. align-self:center;
  4833. padding:2px 2px 2px 2px;
  4834. box-sizing:border-box;
  4835. width:100%;
  4836. }
  4837. #u25190_div.disabled {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:113px;
  4843. height:26px;
  4844. background:inherit;
  4845. background-color:rgba(240, 240, 240, 1);
  4846. border:none;
  4847. border-radius:0px;
  4848. -moz-box-shadow:none;
  4849. -webkit-box-shadow:none;
  4850. box-shadow:none;
  4851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4852. font-weight:400;
  4853. font-style:normal;
  4854. font-size:14px;
  4855. }
  4856. #u25190.disabled {
  4857. }
  4858. #u25191_img {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:12px;
  4864. height:15px;
  4865. }
  4866. #u25191 {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:815px;
  4870. top:96px;
  4871. width:12px;
  4872. height:15px;
  4873. display:flex;
  4874. }
  4875. #u25191 .text {
  4876. position:absolute;
  4877. align-self:center;
  4878. padding:2px 2px 2px 2px;
  4879. box-sizing:border-box;
  4880. width:100%;
  4881. }
  4882. #u25191_text {
  4883. border-width:0px;
  4884. word-wrap:break-word;
  4885. text-transform:none;
  4886. visibility:hidden;
  4887. }
  4888. #u25192 {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:0px;
  4892. top:0px;
  4893. width:0px;
  4894. height:0px;
  4895. }
  4896. #u25193_div {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:140px;
  4902. height:30px;
  4903. background:inherit;
  4904. background-color:rgba(255, 255, 255, 1);
  4905. box-sizing:border-box;
  4906. border-width:1px;
  4907. border-style:solid;
  4908. border-color:rgba(201, 201, 201, 1);
  4909. border-radius:4px;
  4910. -moz-box-shadow:none;
  4911. -webkit-box-shadow:none;
  4912. box-shadow:none;
  4913. font-family:'Microsoft YaHei', sans-serif;
  4914. font-weight:400;
  4915. font-style:normal;
  4916. font-size:14px;
  4917. color:#CCCCCC;
  4918. text-align:left;
  4919. }
  4920. #u25193 {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:246px;
  4924. top:88px;
  4925. width:140px;
  4926. height:30px;
  4927. display:flex;
  4928. font-family:'Microsoft YaHei', sans-serif;
  4929. font-weight:400;
  4930. font-style:normal;
  4931. font-size:14px;
  4932. color:#CCCCCC;
  4933. text-align:left;
  4934. }
  4935. #u25193 .text {
  4936. position:absolute;
  4937. align-self:center;
  4938. padding:2px 8px 2px 8px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u25193_text {
  4943. border-width:0px;
  4944. word-wrap:break-word;
  4945. text-transform:none;
  4946. visibility:hidden;
  4947. }
  4948. #u25194_input {
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:126px;
  4953. height:25px;
  4954. padding:2px 2px 2px 2px;
  4955. font-family:'Microsoft YaHei', sans-serif;
  4956. font-weight:400;
  4957. font-style:normal;
  4958. font-size:10px;
  4959. letter-spacing:normal;
  4960. color:#000000;
  4961. vertical-align:none;
  4962. text-align:left;
  4963. text-transform:none;
  4964. background-color:transparent;
  4965. border-color:transparent;
  4966. }
  4967. #u25194_input.disabled {
  4968. position:absolute;
  4969. left:0px;
  4970. top:0px;
  4971. width:126px;
  4972. height:25px;
  4973. padding:2px 2px 2px 2px;
  4974. font-family:'Microsoft YaHei', sans-serif;
  4975. font-weight:400;
  4976. font-style:normal;
  4977. font-size:10px;
  4978. letter-spacing:normal;
  4979. color:#000000;
  4980. vertical-align:none;
  4981. text-align:left;
  4982. text-transform:none;
  4983. background-color:transparent;
  4984. border-color:transparent;
  4985. }
  4986. #u25194_div {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:0px;
  4990. top:0px;
  4991. width:126px;
  4992. height:25px;
  4993. background:inherit;
  4994. background-color:rgba(255, 255, 255, 1);
  4995. border:none;
  4996. border-radius:0px;
  4997. -moz-box-shadow:none;
  4998. -webkit-box-shadow:none;
  4999. box-shadow:none;
  5000. font-family:'Microsoft YaHei', sans-serif;
  5001. font-weight:400;
  5002. font-style:normal;
  5003. font-size:10px;
  5004. }
  5005. #u25194 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:255px;
  5009. top:89px;
  5010. width:126px;
  5011. height:25px;
  5012. display:flex;
  5013. font-family:'Microsoft YaHei', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:10px;
  5017. }
  5018. #u25194 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 2px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u25194_div.disabled {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:126px;
  5031. height:25px;
  5032. background:inherit;
  5033. background-color:rgba(240, 240, 240, 1);
  5034. border:none;
  5035. border-radius:0px;
  5036. -moz-box-shadow:none;
  5037. -webkit-box-shadow:none;
  5038. box-shadow:none;
  5039. font-family:'Microsoft YaHei', sans-serif;
  5040. font-weight:400;
  5041. font-style:normal;
  5042. font-size:10px;
  5043. }
  5044. #u25194.disabled {
  5045. }
  5046. #u25195_div {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:0px;
  5050. top:0px;
  5051. width:173px;
  5052. height:50px;
  5053. background:inherit;
  5054. background-color:rgba(255, 255, 255, 0);
  5055. border:none;
  5056. border-left:0px;
  5057. border-top:0px;
  5058. border-right:0px;
  5059. border-radius:0px;
  5060. border-bottom-right-radius:0px;
  5061. border-bottom-left-radius:0px;
  5062. -moz-box-shadow:none;
  5063. -webkit-box-shadow:none;
  5064. box-shadow:none;
  5065. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5066. font-weight:500;
  5067. font-style:normal;
  5068. }
  5069. #u25195 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:97px;
  5073. top:38px;
  5074. width:173px;
  5075. height:50px;
  5076. display:flex;
  5077. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5078. font-weight:500;
  5079. font-style:normal;
  5080. }
  5081. #u25195 .text {
  5082. position:absolute;
  5083. align-self:center;
  5084. padding:0px 0px 0px 0px;
  5085. box-sizing:border-box;
  5086. width:100%;
  5087. }
  5088. #u25195_text {
  5089. border-width:0px;
  5090. white-space:nowrap;
  5091. text-transform:none;
  5092. }
  5093. #u25196 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:0px;
  5099. height:0px;
  5100. }
  5101. #u25197_div {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:120px;
  5107. height:100px;
  5108. background:inherit;
  5109. background-color:rgba(255, 255, 255, 1);
  5110. box-sizing:border-box;
  5111. border-width:1px;
  5112. border-style:solid;
  5113. border-color:rgba(242, 242, 242, 1);
  5114. border-left:0px;
  5115. border-right:0px;
  5116. border-radius:3px;
  5117. border-top-left-radius:0px;
  5118. border-top-right-radius:0px;
  5119. border-bottom-right-radius:0px;
  5120. border-bottom-left-radius:0px;
  5121. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5122. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5123. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5124. }
  5125. #u25197 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:1272px;
  5129. top:289px;
  5130. width:120px;
  5131. height:100px;
  5132. display:flex;
  5133. }
  5134. #u25197 .text {
  5135. position:absolute;
  5136. align-self:center;
  5137. padding:2px 2px 2px 2px;
  5138. box-sizing:border-box;
  5139. width:100%;
  5140. }
  5141. #u25197_text {
  5142. border-width:0px;
  5143. word-wrap:break-word;
  5144. text-transform:none;
  5145. visibility:hidden;
  5146. }
  5147. #u25198_div {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:100px;
  5153. height:40px;
  5154. background:inherit;
  5155. background-color:rgba(255, 255, 255, 1);
  5156. box-sizing:border-box;
  5157. border-width:1px;
  5158. border-style:solid;
  5159. border-color:rgba(242, 242, 242, 1);
  5160. border-left:0px;
  5161. border-top:0px;
  5162. border-right:0px;
  5163. border-radius:4px;
  5164. border-bottom-right-radius:0px;
  5165. border-bottom-left-radius:0px;
  5166. -moz-box-shadow:none;
  5167. -webkit-box-shadow:none;
  5168. box-shadow:none;
  5169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. font-size:14px;
  5173. }
  5174. #u25198 {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:1282px;
  5178. top:300px;
  5179. width:100px;
  5180. height:40px;
  5181. display:flex;
  5182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5183. font-weight:400;
  5184. font-style:normal;
  5185. font-size:14px;
  5186. }
  5187. #u25198 .text {
  5188. position:absolute;
  5189. align-self:center;
  5190. padding:5px 0px 5px 0px;
  5191. box-sizing:border-box;
  5192. width:100%;
  5193. }
  5194. #u25198_text {
  5195. border-width:0px;
  5196. word-wrap:break-word;
  5197. text-transform:none;
  5198. }
  5199. #u25199_div {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:100px;
  5205. height:40px;
  5206. background:inherit;
  5207. background-color:rgba(255, 255, 255, 1);
  5208. border:none;
  5209. border-left:0px;
  5210. border-top:0px;
  5211. border-right:0px;
  5212. border-radius:4px;
  5213. border-bottom-right-radius:0px;
  5214. border-bottom-left-radius:0px;
  5215. -moz-box-shadow:none;
  5216. -webkit-box-shadow:none;
  5217. box-shadow:none;
  5218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:14px;
  5222. }
  5223. #u25199 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:1282px;
  5227. top:340px;
  5228. width:100px;
  5229. height:40px;
  5230. display:flex;
  5231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:14px;
  5235. }
  5236. #u25199 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:5px 0px 5px 0px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u25199_text {
  5244. border-width:0px;
  5245. word-wrap:break-word;
  5246. text-transform:none;
  5247. }
  5248. #u25200_div {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:55px;
  5254. height:30px;
  5255. background:inherit;
  5256. background-color:rgba(255, 255, 255, 1);
  5257. box-sizing:border-box;
  5258. border-width:1px;
  5259. border-style:solid;
  5260. border-color:rgba(170, 170, 170, 1);
  5261. border-radius:4px;
  5262. -moz-box-shadow:none;
  5263. -webkit-box-shadow:none;
  5264. box-shadow:none;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:12px;
  5269. color:#555555;
  5270. }
  5271. #u25200 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:97px;
  5275. top:139px;
  5276. width:55px;
  5277. height:30px;
  5278. display:flex;
  5279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5280. font-weight:400;
  5281. font-style:normal;
  5282. font-size:12px;
  5283. color:#555555;
  5284. }
  5285. #u25200 .text {
  5286. position:absolute;
  5287. align-self:center;
  5288. padding:5px 15px 5px 15px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u25200_text {
  5293. border-width:0px;
  5294. white-space:nowrap;
  5295. text-transform:none;
  5296. }
  5297. #u25201 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:0px;
  5303. height:0px;
  5304. }
  5305. #u25202_div {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:0px;
  5309. top:0px;
  5310. width:140px;
  5311. height:30px;
  5312. background:inherit;
  5313. background-color:rgba(255, 255, 255, 1);
  5314. box-sizing:border-box;
  5315. border-width:1px;
  5316. border-style:solid;
  5317. border-color:rgba(215, 215, 215, 1);
  5318. border-radius:4px;
  5319. -moz-box-shadow:none;
  5320. -webkit-box-shadow:none;
  5321. box-shadow:none;
  5322. font-size:11px;
  5323. }
  5324. #u25202 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:396px;
  5328. top:89px;
  5329. width:140px;
  5330. height:30px;
  5331. display:flex;
  5332. font-size:11px;
  5333. }
  5334. #u25202 .text {
  5335. position:absolute;
  5336. align-self:center;
  5337. padding:2px 2px 2px 2px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u25202_text {
  5342. border-width:0px;
  5343. word-wrap:break-word;
  5344. text-transform:none;
  5345. visibility:hidden;
  5346. }
  5347. #u25203_input {
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:125px;
  5352. height:23px;
  5353. padding:2px 2px 2px 2px;
  5354. font-family:'ArialMT', 'Arial', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:11px;
  5358. letter-spacing:normal;
  5359. color:#AAAAAA;
  5360. vertical-align:none;
  5361. text-align:left;
  5362. text-transform:none;
  5363. background-color:transparent;
  5364. border-color:transparent;
  5365. }
  5366. #u25203_input.disabled {
  5367. position:absolute;
  5368. left:0px;
  5369. top:0px;
  5370. width:125px;
  5371. height:23px;
  5372. padding:2px 2px 2px 2px;
  5373. font-family:'ArialMT', 'Arial', sans-serif;
  5374. font-weight:400;
  5375. font-style:normal;
  5376. font-size:11px;
  5377. letter-spacing:normal;
  5378. color:#AAAAAA;
  5379. vertical-align:none;
  5380. text-align:left;
  5381. text-transform:none;
  5382. background-color:transparent;
  5383. border-color:transparent;
  5384. }
  5385. #u25203_div {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:0px;
  5389. top:0px;
  5390. width:125px;
  5391. height:23px;
  5392. background:inherit;
  5393. background-color:rgba(255, 255, 255, 1);
  5394. border:none;
  5395. border-radius:0px;
  5396. -moz-box-shadow:none;
  5397. -webkit-box-shadow:none;
  5398. box-shadow:none;
  5399. font-size:11px;
  5400. color:#AAAAAA;
  5401. }
  5402. #u25203 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:402px;
  5406. top:91px;
  5407. width:125px;
  5408. height:23px;
  5409. display:flex;
  5410. font-size:11px;
  5411. color:#AAAAAA;
  5412. }
  5413. #u25203 .text {
  5414. position:absolute;
  5415. align-self:flex-start;
  5416. padding:2px 2px 2px 2px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u25203_div.disabled {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:0px;
  5424. top:0px;
  5425. width:125px;
  5426. height:23px;
  5427. background:inherit;
  5428. background-color:rgba(240, 240, 240, 1);
  5429. border:none;
  5430. border-radius:0px;
  5431. -moz-box-shadow:none;
  5432. -webkit-box-shadow:none;
  5433. box-shadow:none;
  5434. font-size:11px;
  5435. color:#AAAAAA;
  5436. }
  5437. #u25203.disabled {
  5438. }
  5439. .u25203_input_option {
  5440. font-size:11px;
  5441. }
  5442. #u25204 {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:0px;
  5446. top:0px;
  5447. width:0px;
  5448. height:0px;
  5449. }
  5450. #u25205_div {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:140px;
  5456. height:30px;
  5457. background:inherit;
  5458. background-color:rgba(255, 255, 255, 1);
  5459. box-sizing:border-box;
  5460. border-width:1px;
  5461. border-style:solid;
  5462. border-color:rgba(215, 215, 215, 1);
  5463. border-radius:4px;
  5464. -moz-box-shadow:none;
  5465. -webkit-box-shadow:none;
  5466. box-shadow:none;
  5467. font-size:11px;
  5468. }
  5469. #u25205 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:546px;
  5473. top:89px;
  5474. width:140px;
  5475. height:30px;
  5476. display:flex;
  5477. font-size:11px;
  5478. }
  5479. #u25205 .text {
  5480. position:absolute;
  5481. align-self:center;
  5482. padding:2px 2px 2px 2px;
  5483. box-sizing:border-box;
  5484. width:100%;
  5485. }
  5486. #u25205_text {
  5487. border-width:0px;
  5488. word-wrap:break-word;
  5489. text-transform:none;
  5490. visibility:hidden;
  5491. }
  5492. #u25206_input {
  5493. position:absolute;
  5494. left:0px;
  5495. top:0px;
  5496. width:125px;
  5497. height:23px;
  5498. padding:2px 2px 2px 2px;
  5499. font-family:'ArialMT', 'Arial', sans-serif;
  5500. font-weight:400;
  5501. font-style:normal;
  5502. font-size:11px;
  5503. letter-spacing:normal;
  5504. color:#AAAAAA;
  5505. vertical-align:none;
  5506. text-align:left;
  5507. text-transform:none;
  5508. background-color:transparent;
  5509. border-color:transparent;
  5510. }
  5511. #u25206_input.disabled {
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:125px;
  5516. height:23px;
  5517. padding:2px 2px 2px 2px;
  5518. font-family:'ArialMT', 'Arial', sans-serif;
  5519. font-weight:400;
  5520. font-style:normal;
  5521. font-size:11px;
  5522. letter-spacing:normal;
  5523. color:#AAAAAA;
  5524. vertical-align:none;
  5525. text-align:left;
  5526. text-transform:none;
  5527. background-color:transparent;
  5528. border-color:transparent;
  5529. }
  5530. #u25206_div {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:0px;
  5534. top:0px;
  5535. width:125px;
  5536. height:23px;
  5537. background:inherit;
  5538. background-color:rgba(255, 255, 255, 1);
  5539. border:none;
  5540. border-radius:0px;
  5541. -moz-box-shadow:none;
  5542. -webkit-box-shadow:none;
  5543. box-shadow:none;
  5544. font-size:11px;
  5545. color:#AAAAAA;
  5546. }
  5547. #u25206 {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:552px;
  5551. top:91px;
  5552. width:125px;
  5553. height:23px;
  5554. display:flex;
  5555. font-size:11px;
  5556. color:#AAAAAA;
  5557. }
  5558. #u25206 .text {
  5559. position:absolute;
  5560. align-self:flex-start;
  5561. padding:2px 2px 2px 2px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u25206_div.disabled {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:125px;
  5571. height:23px;
  5572. background:inherit;
  5573. background-color:rgba(240, 240, 240, 1);
  5574. border:none;
  5575. border-radius:0px;
  5576. -moz-box-shadow:none;
  5577. -webkit-box-shadow:none;
  5578. box-shadow:none;
  5579. font-size:11px;
  5580. color:#AAAAAA;
  5581. }
  5582. #u25206.disabled {
  5583. }
  5584. .u25206_input_option {
  5585. font-size:11px;
  5586. }
  5587. #u25207_div {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:1381px;
  5593. height:1158px;
  5594. background:inherit;
  5595. background-color:rgba(255, 255, 255, 1);
  5596. border:none;
  5597. border-radius:0px;
  5598. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5599. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5600. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5601. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5602. font-weight:700;
  5603. font-style:normal;
  5604. }
  5605. #u25207 {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:1530px;
  5609. top:38px;
  5610. width:1381px;
  5611. height:1158px;
  5612. display:flex;
  5613. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5614. font-weight:700;
  5615. font-style:normal;
  5616. }
  5617. #u25207 .text {
  5618. position:absolute;
  5619. align-self:center;
  5620. padding:2px 2px 2px 2px;
  5621. box-sizing:border-box;
  5622. width:100%;
  5623. }
  5624. #u25207_text {
  5625. border-width:0px;
  5626. word-wrap:break-word;
  5627. text-transform:none;
  5628. visibility:hidden;
  5629. }
  5630. #u25208_img {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:1380px;
  5636. height:2px;
  5637. }
  5638. #u25208 {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:1530px;
  5642. top:108px;
  5643. width:1379px;
  5644. height:1px;
  5645. display:flex;
  5646. }
  5647. #u25208 .text {
  5648. position:absolute;
  5649. align-self:center;
  5650. padding:2px 2px 2px 2px;
  5651. box-sizing:border-box;
  5652. width:100%;
  5653. }
  5654. #u25208_text {
  5655. border-width:0px;
  5656. word-wrap:break-word;
  5657. text-transform:none;
  5658. visibility:hidden;
  5659. }
  5660. #u25209_div {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:0px;
  5664. top:0px;
  5665. width:109px;
  5666. height:25px;
  5667. background:inherit;
  5668. background-color:rgba(255, 255, 255, 0);
  5669. border:none;
  5670. border-radius:0px;
  5671. -moz-box-shadow:none;
  5672. -webkit-box-shadow:none;
  5673. box-shadow:none;
  5674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5675. font-weight:400;
  5676. font-style:normal;
  5677. font-size:18px;
  5678. }
  5679. #u25209 {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:1581px;
  5683. top:61px;
  5684. width:109px;
  5685. height:25px;
  5686. display:flex;
  5687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:18px;
  5691. }
  5692. #u25209 .text {
  5693. position:absolute;
  5694. align-self:flex-start;
  5695. padding:0px 0px 0px 0px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u25209_text {
  5700. border-width:0px;
  5701. white-space:nowrap;
  5702. text-transform:none;
  5703. }
  5704. #u25210_img {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:8px;
  5710. height:14px;
  5711. }
  5712. #u25210 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:1551px;
  5716. top:66px;
  5717. width:8px;
  5718. height:14px;
  5719. display:flex;
  5720. }
  5721. #u25210 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 2px 2px 2px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u25210_text {
  5729. border-width:0px;
  5730. word-wrap:break-word;
  5731. text-transform:none;
  5732. visibility:hidden;
  5733. }
  5734. #u25211_div {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:57px;
  5740. height:30px;
  5741. background:inherit;
  5742. background-color:rgba(255, 255, 255, 0);
  5743. border:none;
  5744. border-radius:0px;
  5745. -moz-box-shadow:none;
  5746. -webkit-box-shadow:none;
  5747. box-shadow:none;
  5748. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5749. font-weight:500;
  5750. font-style:normal;
  5751. color:#000000;
  5752. line-height:30px;
  5753. }
  5754. #u25211 {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:1581px;
  5758. top:145px;
  5759. width:57px;
  5760. height:30px;
  5761. display:flex;
  5762. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5763. font-weight:500;
  5764. font-style:normal;
  5765. color:#000000;
  5766. line-height:30px;
  5767. }
  5768. #u25211 .text {
  5769. position:absolute;
  5770. align-self:flex-start;
  5771. padding:0px 0px 0px 0px;
  5772. box-sizing:border-box;
  5773. width:100%;
  5774. }
  5775. #u25211_text {
  5776. border-width:0px;
  5777. white-space:nowrap;
  5778. text-transform:none;
  5779. }
  5780. #u25212_img {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:1244px;
  5786. height:2px;
  5787. }
  5788. #u25212 {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:1581px;
  5792. top:234px;
  5793. width:1243px;
  5794. height:1px;
  5795. display:flex;
  5796. }
  5797. #u25212 .text {
  5798. position:absolute;
  5799. align-self:center;
  5800. padding:2px 2px 2px 2px;
  5801. box-sizing:border-box;
  5802. width:100%;
  5803. }
  5804. #u25212_text {
  5805. border-width:0px;
  5806. word-wrap:break-word;
  5807. text-transform:none;
  5808. visibility:hidden;
  5809. }
  5810. #u25213 {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:0px;
  5816. height:0px;
  5817. }
  5818. #u25214_img {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:10px;
  5824. height:10px;
  5825. }
  5826. #u25214 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:1648px;
  5830. top:230px;
  5831. width:10px;
  5832. height:10px;
  5833. display:flex;
  5834. font-size:12px;
  5835. }
  5836. #u25214 .text {
  5837. position:absolute;
  5838. align-self:center;
  5839. padding:2px 2px 2px 2px;
  5840. box-sizing:border-box;
  5841. width:100%;
  5842. }
  5843. #u25214_text {
  5844. border-width:0px;
  5845. word-wrap:break-word;
  5846. text-transform:none;
  5847. visibility:hidden;
  5848. }
  5849. #u25215_div {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:49px;
  5855. height:30px;
  5856. background:inherit;
  5857. background-color:rgba(255, 255, 255, 0);
  5858. border:none;
  5859. border-radius:0px;
  5860. -moz-box-shadow:none;
  5861. -webkit-box-shadow:none;
  5862. box-shadow:none;
  5863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5864. font-weight:400;
  5865. font-style:normal;
  5866. font-size:12px;
  5867. line-height:30px;
  5868. }
  5869. #u25215 {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:1629px;
  5873. top:191px;
  5874. width:49px;
  5875. height:30px;
  5876. display:flex;
  5877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5878. font-weight:400;
  5879. font-style:normal;
  5880. font-size:12px;
  5881. line-height:30px;
  5882. }
  5883. #u25215 .text {
  5884. position:absolute;
  5885. align-self:flex-start;
  5886. padding:0px 0px 0px 0px;
  5887. box-sizing:border-box;
  5888. width:100%;
  5889. }
  5890. #u25215_text {
  5891. border-width:0px;
  5892. white-space:nowrap;
  5893. text-transform:none;
  5894. }
  5895. #u25216_div {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:0px;
  5899. top:0px;
  5900. width:104px;
  5901. height:17px;
  5902. background:inherit;
  5903. background-color:rgba(255, 255, 255, 0);
  5904. border:none;
  5905. border-radius:0px;
  5906. -moz-box-shadow:none;
  5907. -webkit-box-shadow:none;
  5908. box-shadow:none;
  5909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:12px;
  5913. text-align:center;
  5914. }
  5915. #u25216 {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:1601px;
  5919. top:250px;
  5920. width:104px;
  5921. height:17px;
  5922. display:flex;
  5923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5924. font-weight:400;
  5925. font-style:normal;
  5926. font-size:12px;
  5927. text-align:center;
  5928. }
  5929. #u25216 .text {
  5930. position:absolute;
  5931. align-self:flex-start;
  5932. padding:0px 0px 0px 0px;
  5933. box-sizing:border-box;
  5934. width:100%;
  5935. }
  5936. #u25216_text {
  5937. border-width:0px;
  5938. white-space:nowrap;
  5939. text-transform:none;
  5940. }
  5941. #u25217 {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:0px;
  5947. height:0px;
  5948. }
  5949. #u25218_div {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:1243px;
  5955. height:100px;
  5956. background:inherit;
  5957. background-color:rgba(242, 242, 242, 0.6);
  5958. border:none;
  5959. border-radius:0px;
  5960. -moz-box-shadow:none;
  5961. -webkit-box-shadow:none;
  5962. box-shadow:none;
  5963. }
  5964. #u25218 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:1581px;
  5968. top:315px;
  5969. width:1243px;
  5970. height:100px;
  5971. display:flex;
  5972. }
  5973. #u25218 .text {
  5974. position:absolute;
  5975. align-self:center;
  5976. padding:2px 2px 2px 2px;
  5977. box-sizing:border-box;
  5978. width:100%;
  5979. }
  5980. #u25218_text {
  5981. border-width:0px;
  5982. word-wrap:break-word;
  5983. text-transform:none;
  5984. visibility:hidden;
  5985. }
  5986. #u25219_div {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:57px;
  5992. height:30px;
  5993. background:inherit;
  5994. background-color:rgba(255, 255, 255, 0);
  5995. border:none;
  5996. border-radius:0px;
  5997. -moz-box-shadow:none;
  5998. -webkit-box-shadow:none;
  5999. box-shadow:none;
  6000. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6001. font-weight:500;
  6002. font-style:normal;
  6003. line-height:30px;
  6004. }
  6005. #u25219 {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:1595px;
  6009. top:330px;
  6010. width:57px;
  6011. height:30px;
  6012. display:flex;
  6013. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6014. font-weight:500;
  6015. font-style:normal;
  6016. line-height:30px;
  6017. }
  6018. #u25219 .text {
  6019. position:absolute;
  6020. align-self:flex-start;
  6021. padding:0px 0px 0px 0px;
  6022. box-sizing:border-box;
  6023. width:100%;
  6024. }
  6025. #u25219_text {
  6026. border-width:0px;
  6027. white-space:nowrap;
  6028. text-transform:none;
  6029. }
  6030. #u25220_div {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:280px;
  6036. height:30px;
  6037. background:inherit;
  6038. background-color:rgba(255, 255, 255, 0);
  6039. border:none;
  6040. border-radius:0px;
  6041. -moz-box-shadow:none;
  6042. -webkit-box-shadow:none;
  6043. box-shadow:none;
  6044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6045. font-weight:400;
  6046. font-style:normal;
  6047. line-height:30px;
  6048. }
  6049. #u25220 {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:1601px;
  6053. top:365px;
  6054. width:280px;
  6055. height:30px;
  6056. display:flex;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. line-height:30px;
  6061. }
  6062. #u25220 .text {
  6063. position:absolute;
  6064. align-self:flex-start;
  6065. padding:0px 0px 0px 0px;
  6066. box-sizing:border-box;
  6067. width:100%;
  6068. }
  6069. #u25220_text {
  6070. border-width:0px;
  6071. word-wrap:break-word;
  6072. text-transform:none;
  6073. }
  6074. #u25221_div {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:280px;
  6080. height:30px;
  6081. background:inherit;
  6082. background-color:rgba(255, 255, 255, 0);
  6083. border:none;
  6084. border-radius:0px;
  6085. -moz-box-shadow:none;
  6086. -webkit-box-shadow:none;
  6087. box-shadow:none;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. line-height:30px;
  6092. }
  6093. #u25221 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:1881px;
  6097. top:365px;
  6098. width:280px;
  6099. height:30px;
  6100. display:flex;
  6101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. line-height:30px;
  6105. }
  6106. #u25221 .text {
  6107. position:absolute;
  6108. align-self:flex-start;
  6109. padding:0px 0px 0px 0px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u25221_text {
  6114. border-width:0px;
  6115. word-wrap:break-word;
  6116. text-transform:none;
  6117. }
  6118. #u25222_div {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:280px;
  6124. height:30px;
  6125. background:inherit;
  6126. background-color:rgba(255, 255, 255, 0);
  6127. border:none;
  6128. border-radius:0px;
  6129. -moz-box-shadow:none;
  6130. -webkit-box-shadow:none;
  6131. box-shadow:none;
  6132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6133. font-style:normal;
  6134. line-height:30px;
  6135. }
  6136. #u25222 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:2431px;
  6140. top:365px;
  6141. width:280px;
  6142. height:30px;
  6143. display:flex;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-style:normal;
  6146. line-height:30px;
  6147. }
  6148. #u25222 .text {
  6149. position:absolute;
  6150. align-self:flex-start;
  6151. padding:0px 0px 0px 0px;
  6152. box-sizing:border-box;
  6153. width:100%;
  6154. }
  6155. #u25222_text {
  6156. border-width:0px;
  6157. word-wrap:break-word;
  6158. text-transform:none;
  6159. }
  6160. #u25223_div {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:0px;
  6164. top:0px;
  6165. width:280px;
  6166. height:30px;
  6167. background:inherit;
  6168. background-color:rgba(255, 255, 255, 0);
  6169. border:none;
  6170. border-radius:0px;
  6171. -moz-box-shadow:none;
  6172. -webkit-box-shadow:none;
  6173. box-shadow:none;
  6174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6175. font-weight:400;
  6176. font-style:normal;
  6177. line-height:30px;
  6178. }
  6179. #u25223 {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:2161px;
  6183. top:365px;
  6184. width:280px;
  6185. height:30px;
  6186. display:flex;
  6187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6188. font-weight:400;
  6189. font-style:normal;
  6190. line-height:30px;
  6191. }
  6192. #u25223 .text {
  6193. position:absolute;
  6194. align-self:flex-start;
  6195. padding:0px 0px 0px 0px;
  6196. box-sizing:border-box;
  6197. width:100%;
  6198. }
  6199. #u25223_text {
  6200. border-width:0px;
  6201. word-wrap:break-word;
  6202. text-transform:none;
  6203. }
  6204. #u25224_div {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:0px;
  6208. top:0px;
  6209. width:57px;
  6210. height:30px;
  6211. background:inherit;
  6212. background-color:rgba(255, 255, 255, 0);
  6213. border:none;
  6214. border-radius:0px;
  6215. -moz-box-shadow:none;
  6216. -webkit-box-shadow:none;
  6217. box-shadow:none;
  6218. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6219. font-weight:500;
  6220. font-style:normal;
  6221. color:#000000;
  6222. line-height:30px;
  6223. }
  6224. #u25224 {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:1581px;
  6228. top:435px;
  6229. width:57px;
  6230. height:30px;
  6231. display:flex;
  6232. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6233. font-weight:500;
  6234. font-style:normal;
  6235. color:#000000;
  6236. line-height:30px;
  6237. }
  6238. #u25224 .text {
  6239. position:absolute;
  6240. align-self:flex-start;
  6241. padding:0px 0px 0px 0px;
  6242. box-sizing:border-box;
  6243. width:100%;
  6244. }
  6245. #u25224_text {
  6246. border-width:0px;
  6247. white-space:nowrap;
  6248. text-transform:none;
  6249. }
  6250. #u25225 {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:1581px;
  6254. top:475px;
  6255. width:1243px;
  6256. height:198px;
  6257. }
  6258. #u25226_img {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:250px;
  6264. height:40px;
  6265. }
  6266. #u25226 {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:0px;
  6270. top:0px;
  6271. width:250px;
  6272. height:40px;
  6273. display:flex;
  6274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6275. font-weight:400;
  6276. font-style:normal;
  6277. font-size:14px;
  6278. }
  6279. #u25226 .text {
  6280. position:absolute;
  6281. align-self:center;
  6282. padding:2px 2px 2px 2px;
  6283. box-sizing:border-box;
  6284. width:100%;
  6285. }
  6286. #u25226_text {
  6287. border-width:0px;
  6288. word-wrap:break-word;
  6289. text-transform:none;
  6290. }
  6291. #u25227_img {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:0px;
  6296. width:250px;
  6297. height:40px;
  6298. }
  6299. #u25227 {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:250px;
  6303. top:0px;
  6304. width:250px;
  6305. height:40px;
  6306. display:flex;
  6307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6308. font-weight:400;
  6309. font-style:normal;
  6310. font-size:14px;
  6311. }
  6312. #u25227 .text {
  6313. position:absolute;
  6314. align-self:center;
  6315. padding:2px 2px 2px 2px;
  6316. box-sizing:border-box;
  6317. width:100%;
  6318. }
  6319. #u25227_text {
  6320. border-width:0px;
  6321. word-wrap:break-word;
  6322. text-transform:none;
  6323. }
  6324. #u25228_img {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:0px;
  6328. top:0px;
  6329. width:250px;
  6330. height:40px;
  6331. }
  6332. #u25228 {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:500px;
  6336. top:0px;
  6337. width:250px;
  6338. height:40px;
  6339. display:flex;
  6340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6341. font-weight:400;
  6342. font-style:normal;
  6343. font-size:14px;
  6344. }
  6345. #u25228 .text {
  6346. position:absolute;
  6347. align-self:center;
  6348. padding:2px 2px 2px 2px;
  6349. box-sizing:border-box;
  6350. width:100%;
  6351. }
  6352. #u25228_text {
  6353. border-width:0px;
  6354. word-wrap:break-word;
  6355. text-transform:none;
  6356. }
  6357. #u25229_img {
  6358. border-width:0px;
  6359. position:absolute;
  6360. left:0px;
  6361. top:0px;
  6362. width:250px;
  6363. height:40px;
  6364. }
  6365. #u25229 {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:750px;
  6369. top:0px;
  6370. width:250px;
  6371. height:40px;
  6372. display:flex;
  6373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6374. font-weight:400;
  6375. font-style:normal;
  6376. font-size:14px;
  6377. }
  6378. #u25229 .text {
  6379. position:absolute;
  6380. align-self:center;
  6381. padding:2px 2px 2px 2px;
  6382. box-sizing:border-box;
  6383. width:100%;
  6384. }
  6385. #u25229_text {
  6386. border-width:0px;
  6387. word-wrap:break-word;
  6388. text-transform:none;
  6389. }
  6390. #u25230_img {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:243px;
  6396. height:40px;
  6397. }
  6398. #u25230 {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:1000px;
  6402. top:0px;
  6403. width:243px;
  6404. height:40px;
  6405. display:flex;
  6406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6407. font-weight:400;
  6408. font-style:normal;
  6409. font-size:14px;
  6410. }
  6411. #u25230 .text {
  6412. position:absolute;
  6413. align-self:center;
  6414. padding:2px 2px 2px 2px;
  6415. box-sizing:border-box;
  6416. width:100%;
  6417. }
  6418. #u25230_text {
  6419. border-width:0px;
  6420. word-wrap:break-word;
  6421. text-transform:none;
  6422. }
  6423. #u25231_img {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:250px;
  6429. height:40px;
  6430. }
  6431. #u25231 {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:0px;
  6435. top:40px;
  6436. width:250px;
  6437. height:40px;
  6438. display:flex;
  6439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6440. font-weight:400;
  6441. font-style:normal;
  6442. font-size:14px;
  6443. }
  6444. #u25231 .text {
  6445. position:absolute;
  6446. align-self:center;
  6447. padding:2px 2px 2px 2px;
  6448. box-sizing:border-box;
  6449. width:100%;
  6450. }
  6451. #u25231_text {
  6452. border-width:0px;
  6453. word-wrap:break-word;
  6454. text-transform:none;
  6455. }
  6456. #u25232_img {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:250px;
  6462. height:40px;
  6463. }
  6464. #u25232 {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:250px;
  6468. top:40px;
  6469. width:250px;
  6470. height:40px;
  6471. display:flex;
  6472. font-size:14px;
  6473. }
  6474. #u25232 .text {
  6475. position:absolute;
  6476. align-self:center;
  6477. padding:2px 2px 2px 2px;
  6478. box-sizing:border-box;
  6479. width:100%;
  6480. }
  6481. #u25232_text {
  6482. border-width:0px;
  6483. word-wrap:break-word;
  6484. text-transform:none;
  6485. }
  6486. #u25233_img {
  6487. border-width:0px;
  6488. position:absolute;
  6489. left:0px;
  6490. top:0px;
  6491. width:250px;
  6492. height:40px;
  6493. }
  6494. #u25233 {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:500px;
  6498. top:40px;
  6499. width:250px;
  6500. height:40px;
  6501. display:flex;
  6502. font-size:14px;
  6503. }
  6504. #u25233 .text {
  6505. position:absolute;
  6506. align-self:center;
  6507. padding:2px 2px 2px 2px;
  6508. box-sizing:border-box;
  6509. width:100%;
  6510. }
  6511. #u25233_text {
  6512. border-width:0px;
  6513. word-wrap:break-word;
  6514. text-transform:none;
  6515. }
  6516. #u25234_img {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:250px;
  6522. height:40px;
  6523. }
  6524. #u25234 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:750px;
  6528. top:40px;
  6529. width:250px;
  6530. height:40px;
  6531. display:flex;
  6532. font-size:14px;
  6533. }
  6534. #u25234 .text {
  6535. position:absolute;
  6536. align-self:center;
  6537. padding:2px 2px 2px 2px;
  6538. box-sizing:border-box;
  6539. width:100%;
  6540. }
  6541. #u25234_text {
  6542. border-width:0px;
  6543. word-wrap:break-word;
  6544. text-transform:none;
  6545. }
  6546. #u25235_img {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:243px;
  6552. height:40px;
  6553. }
  6554. #u25235 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:1000px;
  6558. top:40px;
  6559. width:243px;
  6560. height:40px;
  6561. display:flex;
  6562. font-size:14px;
  6563. }
  6564. #u25235 .text {
  6565. position:absolute;
  6566. align-self:center;
  6567. padding:2px 2px 2px 2px;
  6568. box-sizing:border-box;
  6569. width:100%;
  6570. }
  6571. #u25235_text {
  6572. border-width:0px;
  6573. word-wrap:break-word;
  6574. text-transform:none;
  6575. }
  6576. #u25236_img {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:0px;
  6580. top:0px;
  6581. width:250px;
  6582. height:40px;
  6583. }
  6584. #u25236 {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:0px;
  6588. top:80px;
  6589. width:250px;
  6590. height:40px;
  6591. display:flex;
  6592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6593. font-weight:400;
  6594. font-style:normal;
  6595. font-size:14px;
  6596. }
  6597. #u25236 .text {
  6598. position:absolute;
  6599. align-self:center;
  6600. padding:2px 2px 2px 2px;
  6601. box-sizing:border-box;
  6602. width:100%;
  6603. }
  6604. #u25236_text {
  6605. border-width:0px;
  6606. word-wrap:break-word;
  6607. text-transform:none;
  6608. }
  6609. #u25237_img {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:0px;
  6613. top:0px;
  6614. width:250px;
  6615. height:40px;
  6616. }
  6617. #u25237 {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:250px;
  6621. top:80px;
  6622. width:250px;
  6623. height:40px;
  6624. display:flex;
  6625. font-size:14px;
  6626. }
  6627. #u25237 .text {
  6628. position:absolute;
  6629. align-self:center;
  6630. padding:2px 2px 2px 2px;
  6631. box-sizing:border-box;
  6632. width:100%;
  6633. }
  6634. #u25237_text {
  6635. border-width:0px;
  6636. word-wrap:break-word;
  6637. text-transform:none;
  6638. }
  6639. #u25238_img {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:0px;
  6643. top:0px;
  6644. width:250px;
  6645. height:40px;
  6646. }
  6647. #u25238 {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:500px;
  6651. top:80px;
  6652. width:250px;
  6653. height:40px;
  6654. display:flex;
  6655. font-size:14px;
  6656. }
  6657. #u25238 .text {
  6658. position:absolute;
  6659. align-self:center;
  6660. padding:2px 2px 2px 2px;
  6661. box-sizing:border-box;
  6662. width:100%;
  6663. }
  6664. #u25238_text {
  6665. border-width:0px;
  6666. word-wrap:break-word;
  6667. text-transform:none;
  6668. }
  6669. #u25239_img {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:0px;
  6673. top:0px;
  6674. width:250px;
  6675. height:40px;
  6676. }
  6677. #u25239 {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:750px;
  6681. top:80px;
  6682. width:250px;
  6683. height:40px;
  6684. display:flex;
  6685. font-size:14px;
  6686. }
  6687. #u25239 .text {
  6688. position:absolute;
  6689. align-self:center;
  6690. padding:2px 2px 2px 2px;
  6691. box-sizing:border-box;
  6692. width:100%;
  6693. }
  6694. #u25239_text {
  6695. border-width:0px;
  6696. word-wrap:break-word;
  6697. text-transform:none;
  6698. }
  6699. #u25240_img {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:0px;
  6703. top:0px;
  6704. width:243px;
  6705. height:40px;
  6706. }
  6707. #u25240 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:1000px;
  6711. top:80px;
  6712. width:243px;
  6713. height:40px;
  6714. display:flex;
  6715. font-size:14px;
  6716. }
  6717. #u25240 .text {
  6718. position:absolute;
  6719. align-self:center;
  6720. padding:2px 2px 2px 2px;
  6721. box-sizing:border-box;
  6722. width:100%;
  6723. }
  6724. #u25240_text {
  6725. border-width:0px;
  6726. word-wrap:break-word;
  6727. text-transform:none;
  6728. }
  6729. #u25241_img {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:0px;
  6733. top:0px;
  6734. width:250px;
  6735. height:40px;
  6736. }
  6737. #u25241 {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:0px;
  6741. top:120px;
  6742. width:250px;
  6743. height:40px;
  6744. display:flex;
  6745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:14px;
  6749. }
  6750. #u25241 .text {
  6751. position:absolute;
  6752. align-self:center;
  6753. padding:2px 2px 2px 2px;
  6754. box-sizing:border-box;
  6755. width:100%;
  6756. }
  6757. #u25241_text {
  6758. border-width:0px;
  6759. word-wrap:break-word;
  6760. text-transform:none;
  6761. }
  6762. #u25242_img {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:250px;
  6768. height:40px;
  6769. }
  6770. #u25242 {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:250px;
  6774. top:120px;
  6775. width:250px;
  6776. height:40px;
  6777. display:flex;
  6778. font-size:14px;
  6779. }
  6780. #u25242 .text {
  6781. position:absolute;
  6782. align-self:center;
  6783. padding:2px 2px 2px 2px;
  6784. box-sizing:border-box;
  6785. width:100%;
  6786. }
  6787. #u25242_text {
  6788. border-width:0px;
  6789. word-wrap:break-word;
  6790. text-transform:none;
  6791. }
  6792. #u25243_img {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:0px;
  6796. top:0px;
  6797. width:250px;
  6798. height:40px;
  6799. }
  6800. #u25243 {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:500px;
  6804. top:120px;
  6805. width:250px;
  6806. height:40px;
  6807. display:flex;
  6808. font-size:14px;
  6809. }
  6810. #u25243 .text {
  6811. position:absolute;
  6812. align-self:center;
  6813. padding:2px 2px 2px 2px;
  6814. box-sizing:border-box;
  6815. width:100%;
  6816. }
  6817. #u25243_text {
  6818. border-width:0px;
  6819. word-wrap:break-word;
  6820. text-transform:none;
  6821. }
  6822. #u25244_img {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:0px;
  6826. top:0px;
  6827. width:250px;
  6828. height:40px;
  6829. }
  6830. #u25244 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:750px;
  6834. top:120px;
  6835. width:250px;
  6836. height:40px;
  6837. display:flex;
  6838. font-size:14px;
  6839. }
  6840. #u25244 .text {
  6841. position:absolute;
  6842. align-self:center;
  6843. padding:2px 2px 2px 2px;
  6844. box-sizing:border-box;
  6845. width:100%;
  6846. }
  6847. #u25244_text {
  6848. border-width:0px;
  6849. word-wrap:break-word;
  6850. text-transform:none;
  6851. }
  6852. #u25245_img {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:243px;
  6858. height:40px;
  6859. }
  6860. #u25245 {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:1000px;
  6864. top:120px;
  6865. width:243px;
  6866. height:40px;
  6867. display:flex;
  6868. font-size:14px;
  6869. }
  6870. #u25245 .text {
  6871. position:absolute;
  6872. align-self:center;
  6873. padding:2px 2px 2px 2px;
  6874. box-sizing:border-box;
  6875. width:100%;
  6876. }
  6877. #u25245_text {
  6878. border-width:0px;
  6879. word-wrap:break-word;
  6880. text-transform:none;
  6881. }
  6882. #u25246_img {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:250px;
  6888. height:38px;
  6889. }
  6890. #u25246 {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:0px;
  6894. top:160px;
  6895. width:250px;
  6896. height:38px;
  6897. display:flex;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:14px;
  6902. color:#0099FF;
  6903. }
  6904. #u25246 .text {
  6905. position:absolute;
  6906. align-self:center;
  6907. padding:2px 2px 2px 2px;
  6908. box-sizing:border-box;
  6909. width:100%;
  6910. }
  6911. #u25246_text {
  6912. border-width:0px;
  6913. word-wrap:break-word;
  6914. text-transform:none;
  6915. visibility:hidden;
  6916. }
  6917. #u25247_img {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:0px;
  6921. top:0px;
  6922. width:250px;
  6923. height:38px;
  6924. }
  6925. #u25247 {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:250px;
  6929. top:160px;
  6930. width:250px;
  6931. height:38px;
  6932. display:flex;
  6933. font-size:14px;
  6934. color:#0099FF;
  6935. }
  6936. #u25247 .text {
  6937. position:absolute;
  6938. align-self:center;
  6939. padding:2px 2px 2px 2px;
  6940. box-sizing:border-box;
  6941. width:100%;
  6942. }
  6943. #u25247_text {
  6944. border-width:0px;
  6945. word-wrap:break-word;
  6946. text-transform:none;
  6947. visibility:hidden;
  6948. }
  6949. #u25248_img {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:0px;
  6953. top:0px;
  6954. width:250px;
  6955. height:38px;
  6956. }
  6957. #u25248 {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:500px;
  6961. top:160px;
  6962. width:250px;
  6963. height:38px;
  6964. display:flex;
  6965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6966. font-weight:400;
  6967. font-style:normal;
  6968. font-size:14px;
  6969. color:#0099FF;
  6970. }
  6971. #u25248 .text {
  6972. position:absolute;
  6973. align-self:center;
  6974. padding:2px 2px 2px 2px;
  6975. box-sizing:border-box;
  6976. width:100%;
  6977. }
  6978. #u25248_text {
  6979. border-width:0px;
  6980. word-wrap:break-word;
  6981. text-transform:none;
  6982. visibility:hidden;
  6983. }
  6984. #u25249_img {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:0px;
  6988. top:0px;
  6989. width:250px;
  6990. height:38px;
  6991. }
  6992. #u25249 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:750px;
  6996. top:160px;
  6997. width:250px;
  6998. height:38px;
  6999. display:flex;
  7000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. font-size:14px;
  7004. color:#0099FF;
  7005. }
  7006. #u25249 .text {
  7007. position:absolute;
  7008. align-self:center;
  7009. padding:2px 2px 2px 2px;
  7010. box-sizing:border-box;
  7011. width:100%;
  7012. }
  7013. #u25249_text {
  7014. border-width:0px;
  7015. word-wrap:break-word;
  7016. text-transform:none;
  7017. visibility:hidden;
  7018. }
  7019. #u25250_img {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:0px;
  7023. top:0px;
  7024. width:243px;
  7025. height:38px;
  7026. }
  7027. #u25250 {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:1000px;
  7031. top:160px;
  7032. width:243px;
  7033. height:38px;
  7034. display:flex;
  7035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7036. font-weight:400;
  7037. font-style:normal;
  7038. font-size:14px;
  7039. color:#0099FF;
  7040. }
  7041. #u25250 .text {
  7042. position:absolute;
  7043. align-self:center;
  7044. padding:2px 2px 2px 2px;
  7045. box-sizing:border-box;
  7046. width:100%;
  7047. }
  7048. #u25250_text {
  7049. border-width:0px;
  7050. word-wrap:break-word;
  7051. text-transform:none;
  7052. }
  7053. #u25251 {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:0px;
  7059. height:0px;
  7060. }
  7061. #u25252_img {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:0px;
  7065. top:0px;
  7066. width:10px;
  7067. height:10px;
  7068. }
  7069. #u25252 {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:2426px;
  7073. top:230px;
  7074. width:10px;
  7075. height:10px;
  7076. display:flex;
  7077. font-size:12px;
  7078. }
  7079. #u25252 .text {
  7080. position:absolute;
  7081. align-self:center;
  7082. padding:2px 2px 2px 2px;
  7083. box-sizing:border-box;
  7084. width:100%;
  7085. }
  7086. #u25252_text {
  7087. border-width:0px;
  7088. word-wrap:break-word;
  7089. text-transform:none;
  7090. visibility:hidden;
  7091. }
  7092. #u25253_div {
  7093. border-width:0px;
  7094. position:absolute;
  7095. left:0px;
  7096. top:0px;
  7097. width:49px;
  7098. height:30px;
  7099. background:inherit;
  7100. background-color:rgba(255, 255, 255, 0);
  7101. border:none;
  7102. border-radius:0px;
  7103. -moz-box-shadow:none;
  7104. -webkit-box-shadow:none;
  7105. box-shadow:none;
  7106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7107. font-weight:400;
  7108. font-style:normal;
  7109. font-size:12px;
  7110. line-height:30px;
  7111. }
  7112. #u25253 {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:2407px;
  7116. top:196px;
  7117. width:49px;
  7118. height:30px;
  7119. display:flex;
  7120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7121. font-weight:400;
  7122. font-style:normal;
  7123. font-size:12px;
  7124. line-height:30px;
  7125. }
  7126. #u25253 .text {
  7127. position:absolute;
  7128. align-self:flex-start;
  7129. padding:0px 0px 0px 0px;
  7130. box-sizing:border-box;
  7131. width:100%;
  7132. }
  7133. #u25253_text {
  7134. border-width:0px;
  7135. white-space:nowrap;
  7136. text-transform:none;
  7137. }
  7138. #u25254_div {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:0px;
  7142. top:0px;
  7143. width:104px;
  7144. height:30px;
  7145. background:inherit;
  7146. background-color:rgba(255, 255, 255, 0);
  7147. border:none;
  7148. border-radius:0px;
  7149. -moz-box-shadow:none;
  7150. -webkit-box-shadow:none;
  7151. box-shadow:none;
  7152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:12px;
  7156. line-height:30px;
  7157. }
  7158. #u25254 {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:2379px;
  7162. top:245px;
  7163. width:104px;
  7164. height:30px;
  7165. display:flex;
  7166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7167. font-weight:400;
  7168. font-style:normal;
  7169. font-size:12px;
  7170. line-height:30px;
  7171. }
  7172. #u25254 .text {
  7173. position:absolute;
  7174. align-self:flex-start;
  7175. padding:0px 0px 0px 0px;
  7176. box-sizing:border-box;
  7177. width:100%;
  7178. }
  7179. #u25254_text {
  7180. border-width:0px;
  7181. white-space:nowrap;
  7182. text-transform:none;
  7183. }
  7184. #u25255 {
  7185. border-width:0px;
  7186. position:absolute;
  7187. left:0px;
  7188. top:0px;
  7189. width:0px;
  7190. height:0px;
  7191. }
  7192. #u25256_img {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:0px;
  7196. top:0px;
  7197. width:10px;
  7198. height:10px;
  7199. }
  7200. #u25256 {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:2043px;
  7204. top:230px;
  7205. width:10px;
  7206. height:10px;
  7207. display:flex;
  7208. font-size:12px;
  7209. }
  7210. #u25256 .text {
  7211. position:absolute;
  7212. align-self:center;
  7213. padding:2px 2px 2px 2px;
  7214. box-sizing:border-box;
  7215. width:100%;
  7216. }
  7217. #u25256_text {
  7218. border-width:0px;
  7219. word-wrap:break-word;
  7220. text-transform:none;
  7221. visibility:hidden;
  7222. }
  7223. #u25257_div {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:0px;
  7227. top:0px;
  7228. width:49px;
  7229. height:30px;
  7230. background:inherit;
  7231. background-color:rgba(255, 255, 255, 0);
  7232. border:none;
  7233. border-radius:0px;
  7234. -moz-box-shadow:none;
  7235. -webkit-box-shadow:none;
  7236. box-shadow:none;
  7237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7238. font-weight:400;
  7239. font-style:normal;
  7240. font-size:12px;
  7241. line-height:30px;
  7242. }
  7243. #u25257 {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:2024px;
  7247. top:196px;
  7248. width:49px;
  7249. height:30px;
  7250. display:flex;
  7251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7252. font-weight:400;
  7253. font-style:normal;
  7254. font-size:12px;
  7255. line-height:30px;
  7256. }
  7257. #u25257 .text {
  7258. position:absolute;
  7259. align-self:flex-start;
  7260. padding:0px 0px 0px 0px;
  7261. box-sizing:border-box;
  7262. width:100%;
  7263. }
  7264. #u25257_text {
  7265. border-width:0px;
  7266. white-space:nowrap;
  7267. text-transform:none;
  7268. }
  7269. #u25258_div {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:0px;
  7273. top:0px;
  7274. width:104px;
  7275. height:17px;
  7276. background:inherit;
  7277. background-color:rgba(255, 255, 255, 0);
  7278. border:none;
  7279. border-radius:0px;
  7280. -moz-box-shadow:none;
  7281. -webkit-box-shadow:none;
  7282. box-shadow:none;
  7283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7284. font-weight:400;
  7285. font-style:normal;
  7286. font-size:12px;
  7287. text-align:center;
  7288. }
  7289. #u25258 {
  7290. border-width:0px;
  7291. position:absolute;
  7292. left:1996px;
  7293. top:250px;
  7294. width:104px;
  7295. height:17px;
  7296. display:flex;
  7297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7298. font-weight:400;
  7299. font-style:normal;
  7300. font-size:12px;
  7301. text-align:center;
  7302. }
  7303. #u25258 .text {
  7304. position:absolute;
  7305. align-self:flex-start;
  7306. padding:0px 0px 0px 0px;
  7307. box-sizing:border-box;
  7308. width:100%;
  7309. }
  7310. #u25258_text {
  7311. border-width:0px;
  7312. white-space:nowrap;
  7313. text-transform:none;
  7314. }
  7315. #u25259_div {
  7316. border-width:0px;
  7317. position:absolute;
  7318. left:0px;
  7319. top:0px;
  7320. width:117px;
  7321. height:30px;
  7322. background:inherit;
  7323. background-color:rgba(255, 255, 255, 0);
  7324. border:none;
  7325. border-radius:0px;
  7326. -moz-box-shadow:none;
  7327. -webkit-box-shadow:none;
  7328. box-shadow:none;
  7329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7330. font-weight:400;
  7331. font-style:normal;
  7332. font-size:12px;
  7333. color:#0089FE;
  7334. text-align:center;
  7335. line-height:30px;
  7336. }
  7337. #u25259 {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:1595px;
  7341. top:267px;
  7342. width:117px;
  7343. height:30px;
  7344. display:flex;
  7345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7346. font-weight:400;
  7347. font-style:normal;
  7348. font-size:12px;
  7349. color:#0089FE;
  7350. text-align:center;
  7351. line-height:30px;
  7352. }
  7353. #u25259 .text {
  7354. position:absolute;
  7355. align-self:flex-start;
  7356. padding:0px 0px 0px 0px;
  7357. box-sizing:border-box;
  7358. width:100%;
  7359. }
  7360. #u25259_text {
  7361. border-width:0px;
  7362. white-space:nowrap;
  7363. text-transform:none;
  7364. }
  7365. #u25260_div {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:0px;
  7369. top:0px;
  7370. width:57px;
  7371. height:30px;
  7372. background:inherit;
  7373. background-color:rgba(255, 255, 255, 0);
  7374. border:none;
  7375. border-radius:0px;
  7376. -moz-box-shadow:none;
  7377. -webkit-box-shadow:none;
  7378. box-shadow:none;
  7379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7380. font-weight:400;
  7381. font-style:normal;
  7382. font-size:12px;
  7383. color:#0089FE;
  7384. text-align:center;
  7385. line-height:30px;
  7386. }
  7387. #u25260 {
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:2020px;
  7391. top:267px;
  7392. width:57px;
  7393. height:30px;
  7394. display:flex;
  7395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7396. font-weight:400;
  7397. font-style:normal;
  7398. font-size:12px;
  7399. color:#0089FE;
  7400. text-align:center;
  7401. line-height:30px;
  7402. }
  7403. #u25260 .text {
  7404. position:absolute;
  7405. align-self:flex-start;
  7406. padding:0px 0px 0px 0px;
  7407. box-sizing:border-box;
  7408. width:100%;
  7409. }
  7410. #u25260_text {
  7411. border-width:0px;
  7412. white-space:nowrap;
  7413. text-transform:none;
  7414. }
  7415. #u25261_div {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:0px;
  7419. top:0px;
  7420. width:117px;
  7421. height:30px;
  7422. background:inherit;
  7423. background-color:rgba(255, 255, 255, 0);
  7424. border:none;
  7425. border-radius:0px;
  7426. -moz-box-shadow:none;
  7427. -webkit-box-shadow:none;
  7428. box-shadow:none;
  7429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7430. font-weight:400;
  7431. font-style:normal;
  7432. font-size:12px;
  7433. color:#0089FE;
  7434. text-align:center;
  7435. line-height:30px;
  7436. }
  7437. #u25261 {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:2373px;
  7441. top:266px;
  7442. width:117px;
  7443. height:30px;
  7444. display:flex;
  7445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7446. font-weight:400;
  7447. font-style:normal;
  7448. font-size:12px;
  7449. color:#0089FE;
  7450. text-align:center;
  7451. line-height:30px;
  7452. }
  7453. #u25261 .text {
  7454. position:absolute;
  7455. align-self:flex-start;
  7456. padding:0px 0px 0px 0px;
  7457. box-sizing:border-box;
  7458. width:100%;
  7459. }
  7460. #u25261_text {
  7461. border-width:0px;
  7462. white-space:nowrap;
  7463. text-transform:none;
  7464. }