styles.css 154 KB

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