styles.css 137 KB

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