styles.css 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857
  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. #u25324_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. #u25324 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u25324 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u25324_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u25325_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. #u25325 {
  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. #u25325 .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. #u25325_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u25326_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. #u25326 {
  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. #u25326 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u25326_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u25327 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u25328_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u25328 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u25328 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u25328_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u25329_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. #u25329 {
  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. #u25329 .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. #u25329_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u25330_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. #u25330 {
  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. #u25330 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u25330_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u25331 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u25332_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. #u25332_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. #u25332_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. #u25332 {
  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. #u25332 .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. #u25332_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. #u25332.disabled {
  356. }
  357. .u25332_input_option {
  358. font-size:14px;
  359. }
  360. #u25333_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u25333 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u25333 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u25333_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u25334_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. #u25334 {
  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. #u25334 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u25334_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u25335_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. #u25335 {
  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. #u25335 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u25335_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u25336 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u25337_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. #u25337 {
  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. #u25337 .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. #u25337_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u25338_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u25338 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u25338 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u25338_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u25339 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u25340_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. #u25340 {
  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. #u25340 .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. #u25340_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u25341_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u25341 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u25341 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u25341_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u25342 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u25343_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. #u25343 {
  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. #u25343 .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. #u25343_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u25344_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u25344 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u25344 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u25344_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u25345 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u25346_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. #u25346 {
  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. #u25346 .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. #u25346_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u25347_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u25347 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u25347 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u25347_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u25348 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u25349_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. #u25349 {
  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. #u25349 .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. #u25349_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u25350_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u25350 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u25350 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u25350_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u25351 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u25352_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. #u25352 {
  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. #u25352 .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. #u25352_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u25353_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u25353 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u25353 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u25353_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u25354 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u25355_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. #u25355 {
  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. #u25355 .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. #u25355_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u25356_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u25356 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u25356 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u25356_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u25357 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u25358_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. #u25358 {
  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. #u25358 .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. #u25358_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u25359_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u25359 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u25359 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u25359_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u25360 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u25361_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. #u25361 {
  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. #u25361 .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. #u25361_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u25362_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u25362 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u25362 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u25362_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u25363 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u25364_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. #u25364 {
  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. #u25364 .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. #u25364_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u25365_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u25365 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u25365 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u25365_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u25366_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. #u25366 {
  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. #u25366 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u25366_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u25367_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u25367 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u25367 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u25367_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u25368_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. #u25368 {
  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. #u25368 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u25368_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u25369_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u25369 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u25369 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u25369_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u25370 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u25371_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. #u25371 {
  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. #u25371 .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. #u25371_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u25372_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u25372 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u25372 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u25372_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u25373 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u25374_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. #u25374 {
  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. #u25374 .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. #u25374_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u25375_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u25375 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u25375 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u25375_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u25376 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u25377_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. #u25377 {
  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. #u25377 .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. #u25377_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u25378_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u25378 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u25378 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u25378_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u25379_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1259px;
  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:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1734. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1735. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1736. }
  1737. #u25379 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:330px;
  1741. top:50px;
  1742. width:1259px;
  1743. height:1191px;
  1744. display:flex;
  1745. }
  1746. #u25379 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u25379_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u25380 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:354px;
  1763. top:296px;
  1764. width:1220px;
  1765. height:319px;
  1766. }
  1767. #u25381_img {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:119px;
  1773. height:38px;
  1774. }
  1775. #u25381 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:119px;
  1781. height:38px;
  1782. display:flex;
  1783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1784. font-weight:400;
  1785. font-style:normal;
  1786. font-size:12px;
  1787. color:#FFFFFF;
  1788. }
  1789. #u25381 .text {
  1790. position:absolute;
  1791. align-self:center;
  1792. padding:2px 2px 2px 0px;
  1793. box-sizing:border-box;
  1794. width:100%;
  1795. }
  1796. #u25381_text {
  1797. border-width:0px;
  1798. word-wrap:break-word;
  1799. text-transform:none;
  1800. }
  1801. #u25382_img {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:0px;
  1805. top:0px;
  1806. width:119px;
  1807. height:38px;
  1808. }
  1809. #u25382 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:119px;
  1813. top:0px;
  1814. width:119px;
  1815. height:38px;
  1816. display:flex;
  1817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1818. font-weight:400;
  1819. font-style:normal;
  1820. font-size:12px;
  1821. color:#FFFFFF;
  1822. }
  1823. #u25382 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:2px 2px 2px 0px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u25382_text {
  1831. border-width:0px;
  1832. word-wrap:break-word;
  1833. text-transform:none;
  1834. }
  1835. #u25383_img {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:119px;
  1841. height:38px;
  1842. }
  1843. #u25383 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:238px;
  1847. top:0px;
  1848. width:119px;
  1849. height:38px;
  1850. display:flex;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:12px;
  1855. color:#FFFFFF;
  1856. }
  1857. #u25383 .text {
  1858. position:absolute;
  1859. align-self:center;
  1860. padding:2px 2px 2px 0px;
  1861. box-sizing:border-box;
  1862. width:100%;
  1863. }
  1864. #u25383_text {
  1865. border-width:0px;
  1866. word-wrap:break-word;
  1867. text-transform:none;
  1868. }
  1869. #u25384_img {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:119px;
  1875. height:38px;
  1876. }
  1877. #u25384 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:357px;
  1881. top:0px;
  1882. width:119px;
  1883. height:38px;
  1884. display:flex;
  1885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1886. font-weight:400;
  1887. font-style:normal;
  1888. font-size:12px;
  1889. color:#FFFFFF;
  1890. }
  1891. #u25384 .text {
  1892. position:absolute;
  1893. align-self:center;
  1894. padding:2px 2px 2px 0px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u25384_text {
  1899. border-width:0px;
  1900. word-wrap:break-word;
  1901. text-transform:none;
  1902. }
  1903. #u25385_img {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:119px;
  1909. height:38px;
  1910. }
  1911. #u25385 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:476px;
  1915. top:0px;
  1916. width:119px;
  1917. height:38px;
  1918. display:flex;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:12px;
  1923. color:#FFFFFF;
  1924. }
  1925. #u25385 .text {
  1926. position:absolute;
  1927. align-self:center;
  1928. padding:2px 2px 2px 0px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u25385_text {
  1933. border-width:0px;
  1934. word-wrap:break-word;
  1935. text-transform:none;
  1936. }
  1937. #u25386_img {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:153px;
  1943. height:38px;
  1944. }
  1945. #u25386 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:595px;
  1949. top:0px;
  1950. width:153px;
  1951. height:38px;
  1952. display:flex;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:12px;
  1957. color:#FFFFFF;
  1958. }
  1959. #u25386 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:2px 2px 2px 0px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u25386_text {
  1967. border-width:0px;
  1968. word-wrap:break-word;
  1969. text-transform:none;
  1970. }
  1971. #u25387_img {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:116px;
  1977. height:38px;
  1978. }
  1979. #u25387 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:748px;
  1983. top:0px;
  1984. width:116px;
  1985. height:38px;
  1986. display:flex;
  1987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:12px;
  1991. color:#FFFFFF;
  1992. }
  1993. #u25387 .text {
  1994. position:absolute;
  1995. align-self:center;
  1996. padding:2px 2px 2px 0px;
  1997. box-sizing:border-box;
  1998. width:100%;
  1999. }
  2000. #u25387_text {
  2001. border-width:0px;
  2002. word-wrap:break-word;
  2003. text-transform:none;
  2004. }
  2005. #u25388_img {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:119px;
  2011. height:38px;
  2012. }
  2013. #u25388 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:864px;
  2017. top:0px;
  2018. width:119px;
  2019. height:38px;
  2020. display:flex;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:12px;
  2025. color:#FFFFFF;
  2026. }
  2027. #u25388 .text {
  2028. position:absolute;
  2029. align-self:center;
  2030. padding:2px 2px 2px 0px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u25388_text {
  2035. border-width:0px;
  2036. word-wrap:break-word;
  2037. text-transform:none;
  2038. }
  2039. #u25389_img {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:119px;
  2045. height:38px;
  2046. }
  2047. #u25389 {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:983px;
  2051. top:0px;
  2052. width:119px;
  2053. height:38px;
  2054. display:flex;
  2055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2056. font-weight:400;
  2057. font-style:normal;
  2058. font-size:12px;
  2059. color:#FFFFFF;
  2060. }
  2061. #u25389 .text {
  2062. position:absolute;
  2063. align-self:center;
  2064. padding:2px 2px 2px 0px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u25389_text {
  2069. border-width:0px;
  2070. word-wrap:break-word;
  2071. text-transform:none;
  2072. }
  2073. #u25390_img {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:118px;
  2079. height:38px;
  2080. }
  2081. #u25390 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:1102px;
  2085. top:0px;
  2086. width:118px;
  2087. height:38px;
  2088. display:flex;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:12px;
  2093. color:#FFFFFF;
  2094. }
  2095. #u25390 .text {
  2096. position:absolute;
  2097. align-self:center;
  2098. padding:2px 2px 2px 0px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u25390_text {
  2103. border-width:0px;
  2104. word-wrap:break-word;
  2105. text-transform:none;
  2106. }
  2107. #u25391_img {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:119px;
  2113. height:38px;
  2114. }
  2115. #u25391 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:38px;
  2120. width:119px;
  2121. height:38px;
  2122. display:flex;
  2123. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:12px;
  2127. }
  2128. #u25391 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:2px 2px 2px 0px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u25391_text {
  2136. border-width:0px;
  2137. word-wrap:break-word;
  2138. text-transform:none;
  2139. visibility:hidden;
  2140. }
  2141. #u25392_img {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:119px;
  2147. height:38px;
  2148. }
  2149. #u25392 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:119px;
  2153. top:38px;
  2154. width:119px;
  2155. height:38px;
  2156. display:flex;
  2157. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:12px;
  2161. }
  2162. #u25392 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:2px 2px 2px 0px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u25392_text {
  2170. border-width:0px;
  2171. word-wrap:break-word;
  2172. text-transform:none;
  2173. visibility:hidden;
  2174. }
  2175. #u25393_img {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:119px;
  2181. height:38px;
  2182. }
  2183. #u25393 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:238px;
  2187. top:38px;
  2188. width:119px;
  2189. height:38px;
  2190. display:flex;
  2191. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:12px;
  2195. }
  2196. #u25393 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:2px 2px 2px 0px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u25393_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. visibility:hidden;
  2208. }
  2209. #u25394_img {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:119px;
  2215. height:38px;
  2216. }
  2217. #u25394 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:357px;
  2221. top:38px;
  2222. width:119px;
  2223. height:38px;
  2224. display:flex;
  2225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:12px;
  2229. color:#333333;
  2230. }
  2231. #u25394 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:2px 2px 2px 0px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u25394_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. }
  2243. #u25395_img {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:119px;
  2249. height:38px;
  2250. }
  2251. #u25395 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:476px;
  2255. top:38px;
  2256. width:119px;
  2257. height:38px;
  2258. display:flex;
  2259. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:12px;
  2263. }
  2264. #u25395 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:2px 2px 2px 0px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u25395_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. visibility:hidden;
  2276. }
  2277. #u25396_img {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:153px;
  2283. height:38px;
  2284. }
  2285. #u25396 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:595px;
  2289. top:38px;
  2290. width:153px;
  2291. height:38px;
  2292. display:flex;
  2293. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:12px;
  2297. }
  2298. #u25396 .text {
  2299. position:absolute;
  2300. align-self:center;
  2301. padding:2px 2px 2px 0px;
  2302. box-sizing:border-box;
  2303. width:100%;
  2304. }
  2305. #u25396_text {
  2306. border-width:0px;
  2307. word-wrap:break-word;
  2308. text-transform:none;
  2309. visibility:hidden;
  2310. }
  2311. #u25397_img {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:0px;
  2316. width:116px;
  2317. height:38px;
  2318. }
  2319. #u25397 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:748px;
  2323. top:38px;
  2324. width:116px;
  2325. height:38px;
  2326. display:flex;
  2327. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:12px;
  2331. }
  2332. #u25397 .text {
  2333. position:absolute;
  2334. align-self:center;
  2335. padding:2px 2px 2px 0px;
  2336. box-sizing:border-box;
  2337. width:100%;
  2338. }
  2339. #u25397_text {
  2340. border-width:0px;
  2341. word-wrap:break-word;
  2342. text-transform:none;
  2343. visibility:hidden;
  2344. }
  2345. #u25398_img {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:119px;
  2351. height:38px;
  2352. }
  2353. #u25398 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:864px;
  2357. top:38px;
  2358. width:119px;
  2359. height:38px;
  2360. display:flex;
  2361. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:12px;
  2365. }
  2366. #u25398 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 0px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u25398_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. visibility:hidden;
  2378. }
  2379. #u25399_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:119px;
  2385. height:38px;
  2386. }
  2387. #u25399 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:983px;
  2391. top:38px;
  2392. width:119px;
  2393. height:38px;
  2394. display:flex;
  2395. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:12px;
  2399. }
  2400. #u25399 .text {
  2401. position:absolute;
  2402. align-self:center;
  2403. padding:2px 2px 2px 0px;
  2404. box-sizing:border-box;
  2405. width:100%;
  2406. }
  2407. #u25399_text {
  2408. border-width:0px;
  2409. word-wrap:break-word;
  2410. text-transform:none;
  2411. visibility:hidden;
  2412. }
  2413. #u25400_img {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:118px;
  2419. height:38px;
  2420. }
  2421. #u25400 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:1102px;
  2425. top:38px;
  2426. width:118px;
  2427. height:38px;
  2428. display:flex;
  2429. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:12px;
  2433. }
  2434. #u25400 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 2px 2px 0px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u25400_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u25401_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:119px;
  2453. height:36px;
  2454. }
  2455. #u25401 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:76px;
  2460. width:119px;
  2461. height:36px;
  2462. display:flex;
  2463. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:12px;
  2467. color:#606266;
  2468. }
  2469. #u25401 .text {
  2470. position:absolute;
  2471. align-self:center;
  2472. padding:2px 2px 2px 0px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u25401_text {
  2477. border-width:0px;
  2478. word-wrap:break-word;
  2479. text-transform:none;
  2480. visibility:hidden;
  2481. }
  2482. #u25402_img {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:119px;
  2488. height:36px;
  2489. }
  2490. #u25402 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:119px;
  2494. top:76px;
  2495. width:119px;
  2496. height:36px;
  2497. display:flex;
  2498. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:12px;
  2502. color:#606266;
  2503. }
  2504. #u25402 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 0px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u25402_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. visibility:hidden;
  2516. }
  2517. #u25403_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:119px;
  2523. height:36px;
  2524. }
  2525. #u25403 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:238px;
  2529. top:76px;
  2530. width:119px;
  2531. height:36px;
  2532. display:flex;
  2533. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:12px;
  2537. color:#606266;
  2538. }
  2539. #u25403 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 0px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u25403_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. visibility:hidden;
  2551. }
  2552. #u25404_img {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:119px;
  2558. height:36px;
  2559. }
  2560. #u25404 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:357px;
  2564. top:76px;
  2565. width:119px;
  2566. height:36px;
  2567. display:flex;
  2568. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2569. font-weight:400;
  2570. font-style:normal;
  2571. font-size:12px;
  2572. color:#333333;
  2573. }
  2574. #u25404 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 2px 2px 0px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u25404_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u25405_img {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:119px;
  2593. height:36px;
  2594. }
  2595. #u25405 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:476px;
  2599. top:76px;
  2600. width:119px;
  2601. height:36px;
  2602. display:flex;
  2603. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:12px;
  2607. color:#606266;
  2608. }
  2609. #u25405 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u25405_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. visibility:hidden;
  2621. }
  2622. #u25406_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:153px;
  2628. height:36px;
  2629. }
  2630. #u25406 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:595px;
  2634. top:76px;
  2635. width:153px;
  2636. height:36px;
  2637. display:flex;
  2638. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:12px;
  2642. color:#606266;
  2643. }
  2644. #u25406 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:2px 2px 2px 0px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u25406_text {
  2652. border-width:0px;
  2653. word-wrap:break-word;
  2654. text-transform:none;
  2655. visibility:hidden;
  2656. }
  2657. #u25407_img {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:116px;
  2663. height:36px;
  2664. }
  2665. #u25407 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:748px;
  2669. top:76px;
  2670. width:116px;
  2671. height:36px;
  2672. display:flex;
  2673. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:12px;
  2677. color:#606266;
  2678. }
  2679. #u25407 .text {
  2680. position:absolute;
  2681. align-self:center;
  2682. padding:2px 2px 2px 0px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u25407_text {
  2687. border-width:0px;
  2688. word-wrap:break-word;
  2689. text-transform:none;
  2690. visibility:hidden;
  2691. }
  2692. #u25408_img {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:119px;
  2698. height:36px;
  2699. }
  2700. #u25408 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:864px;
  2704. top:76px;
  2705. width:119px;
  2706. height:36px;
  2707. display:flex;
  2708. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:12px;
  2712. color:#606266;
  2713. }
  2714. #u25408 .text {
  2715. position:absolute;
  2716. align-self:center;
  2717. padding:2px 2px 2px 0px;
  2718. box-sizing:border-box;
  2719. width:100%;
  2720. }
  2721. #u25408_text {
  2722. border-width:0px;
  2723. word-wrap:break-word;
  2724. text-transform:none;
  2725. visibility:hidden;
  2726. }
  2727. #u25409_img {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:119px;
  2733. height:36px;
  2734. }
  2735. #u25409 {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:983px;
  2739. top:76px;
  2740. width:119px;
  2741. height:36px;
  2742. display:flex;
  2743. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2744. font-weight:400;
  2745. font-style:normal;
  2746. font-size:12px;
  2747. color:#606266;
  2748. }
  2749. #u25409 .text {
  2750. position:absolute;
  2751. align-self:center;
  2752. padding:2px 2px 2px 0px;
  2753. box-sizing:border-box;
  2754. width:100%;
  2755. }
  2756. #u25409_text {
  2757. border-width:0px;
  2758. word-wrap:break-word;
  2759. text-transform:none;
  2760. visibility:hidden;
  2761. }
  2762. #u25410_img {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:118px;
  2768. height:36px;
  2769. }
  2770. #u25410 {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:1102px;
  2774. top:76px;
  2775. width:118px;
  2776. height:36px;
  2777. display:flex;
  2778. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2779. font-weight:400;
  2780. font-style:normal;
  2781. font-size:12px;
  2782. color:#606266;
  2783. }
  2784. #u25410 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 0px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u25410_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. visibility:hidden;
  2796. }
  2797. #u25411_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:119px;
  2803. height:38px;
  2804. }
  2805. #u25411 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:112px;
  2810. width:119px;
  2811. height:38px;
  2812. display:flex;
  2813. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. font-size:12px;
  2817. color:#606266;
  2818. }
  2819. #u25411 .text {
  2820. position:absolute;
  2821. align-self:center;
  2822. padding:2px 2px 2px 0px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u25411_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. visibility:hidden;
  2831. }
  2832. #u25412_img {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:119px;
  2838. height:38px;
  2839. }
  2840. #u25412 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:119px;
  2844. top:112px;
  2845. width:119px;
  2846. height:38px;
  2847. display:flex;
  2848. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. font-size:12px;
  2852. color:#606266;
  2853. }
  2854. #u25412 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 0px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u25412_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. visibility:hidden;
  2866. }
  2867. #u25413_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:119px;
  2873. height:38px;
  2874. }
  2875. #u25413 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:238px;
  2879. top:112px;
  2880. width:119px;
  2881. height:38px;
  2882. display:flex;
  2883. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:12px;
  2887. color:#606266;
  2888. }
  2889. #u25413 .text {
  2890. position:absolute;
  2891. align-self:center;
  2892. padding:2px 2px 2px 0px;
  2893. box-sizing:border-box;
  2894. width:100%;
  2895. }
  2896. #u25413_text {
  2897. border-width:0px;
  2898. word-wrap:break-word;
  2899. text-transform:none;
  2900. visibility:hidden;
  2901. }
  2902. #u25414_img {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:119px;
  2908. height:38px;
  2909. }
  2910. #u25414 {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:357px;
  2914. top:112px;
  2915. width:119px;
  2916. height:38px;
  2917. display:flex;
  2918. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2919. font-weight:400;
  2920. font-style:normal;
  2921. font-size:12px;
  2922. color:#606266;
  2923. }
  2924. #u25414 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 2px 2px 0px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u25414_text {
  2932. border-width:0px;
  2933. word-wrap:break-word;
  2934. text-transform:none;
  2935. visibility:hidden;
  2936. }
  2937. #u25415_img {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:119px;
  2943. height:38px;
  2944. }
  2945. #u25415 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:476px;
  2949. top:112px;
  2950. width:119px;
  2951. height:38px;
  2952. display:flex;
  2953. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2954. font-weight:400;
  2955. font-style:normal;
  2956. font-size:12px;
  2957. color:#606266;
  2958. }
  2959. #u25415 .text {
  2960. position:absolute;
  2961. align-self:center;
  2962. padding:2px 2px 2px 0px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u25415_text {
  2967. border-width:0px;
  2968. word-wrap:break-word;
  2969. text-transform:none;
  2970. visibility:hidden;
  2971. }
  2972. #u25416_img {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:153px;
  2978. height:38px;
  2979. }
  2980. #u25416 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:595px;
  2984. top:112px;
  2985. width:153px;
  2986. height:38px;
  2987. display:flex;
  2988. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. font-size:12px;
  2992. color:#606266;
  2993. }
  2994. #u25416 .text {
  2995. position:absolute;
  2996. align-self:center;
  2997. padding:2px 2px 2px 0px;
  2998. box-sizing:border-box;
  2999. width:100%;
  3000. }
  3001. #u25416_text {
  3002. border-width:0px;
  3003. word-wrap:break-word;
  3004. text-transform:none;
  3005. visibility:hidden;
  3006. }
  3007. #u25417_img {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:116px;
  3013. height:38px;
  3014. }
  3015. #u25417 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:748px;
  3019. top:112px;
  3020. width:116px;
  3021. height:38px;
  3022. display:flex;
  3023. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3024. font-weight:400;
  3025. font-style:normal;
  3026. font-size:12px;
  3027. color:#606266;
  3028. }
  3029. #u25417 .text {
  3030. position:absolute;
  3031. align-self:center;
  3032. padding:2px 2px 2px 0px;
  3033. box-sizing:border-box;
  3034. width:100%;
  3035. }
  3036. #u25417_text {
  3037. border-width:0px;
  3038. word-wrap:break-word;
  3039. text-transform:none;
  3040. visibility:hidden;
  3041. }
  3042. #u25418_img {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:119px;
  3048. height:38px;
  3049. }
  3050. #u25418 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:864px;
  3054. top:112px;
  3055. width:119px;
  3056. height:38px;
  3057. display:flex;
  3058. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3059. font-weight:400;
  3060. font-style:normal;
  3061. font-size:12px;
  3062. color:#606266;
  3063. }
  3064. #u25418 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:2px 2px 2px 0px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u25418_text {
  3072. border-width:0px;
  3073. word-wrap:break-word;
  3074. text-transform:none;
  3075. visibility:hidden;
  3076. }
  3077. #u25419_img {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:0px;
  3082. width:119px;
  3083. height:38px;
  3084. }
  3085. #u25419 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:983px;
  3089. top:112px;
  3090. width:119px;
  3091. height:38px;
  3092. display:flex;
  3093. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:12px;
  3097. color:#606266;
  3098. }
  3099. #u25419 .text {
  3100. position:absolute;
  3101. align-self:center;
  3102. padding:2px 2px 2px 0px;
  3103. box-sizing:border-box;
  3104. width:100%;
  3105. }
  3106. #u25419_text {
  3107. border-width:0px;
  3108. word-wrap:break-word;
  3109. text-transform:none;
  3110. visibility:hidden;
  3111. }
  3112. #u25420_img {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:0px;
  3116. top:0px;
  3117. width:118px;
  3118. height:38px;
  3119. }
  3120. #u25420 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:1102px;
  3124. top:112px;
  3125. width:118px;
  3126. height:38px;
  3127. display:flex;
  3128. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3129. font-weight:400;
  3130. font-style:normal;
  3131. font-size:12px;
  3132. color:#606266;
  3133. }
  3134. #u25420 .text {
  3135. position:absolute;
  3136. align-self:center;
  3137. padding:2px 2px 2px 0px;
  3138. box-sizing:border-box;
  3139. width:100%;
  3140. }
  3141. #u25420_text {
  3142. border-width:0px;
  3143. word-wrap:break-word;
  3144. text-transform:none;
  3145. visibility:hidden;
  3146. }
  3147. #u25421_img {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:0px;
  3151. top:0px;
  3152. width:119px;
  3153. height:38px;
  3154. }
  3155. #u25421 {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:0px;
  3159. top:150px;
  3160. width:119px;
  3161. height:38px;
  3162. display:flex;
  3163. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3164. font-weight:400;
  3165. font-style:normal;
  3166. font-size:12px;
  3167. color:#606266;
  3168. }
  3169. #u25421 .text {
  3170. position:absolute;
  3171. align-self:center;
  3172. padding:2px 2px 2px 0px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u25421_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. visibility:hidden;
  3181. }
  3182. #u25422_img {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:0px;
  3187. width:119px;
  3188. height:38px;
  3189. }
  3190. #u25422 {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:119px;
  3194. top:150px;
  3195. width:119px;
  3196. height:38px;
  3197. display:flex;
  3198. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3199. font-weight:400;
  3200. font-style:normal;
  3201. font-size:12px;
  3202. color:#606266;
  3203. }
  3204. #u25422 .text {
  3205. position:absolute;
  3206. align-self:center;
  3207. padding:2px 2px 2px 0px;
  3208. box-sizing:border-box;
  3209. width:100%;
  3210. }
  3211. #u25422_text {
  3212. border-width:0px;
  3213. word-wrap:break-word;
  3214. text-transform:none;
  3215. visibility:hidden;
  3216. }
  3217. #u25423_img {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:0px;
  3221. top:0px;
  3222. width:119px;
  3223. height:38px;
  3224. }
  3225. #u25423 {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:238px;
  3229. top:150px;
  3230. width:119px;
  3231. height:38px;
  3232. display:flex;
  3233. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3234. font-weight:400;
  3235. font-style:normal;
  3236. font-size:12px;
  3237. color:#606266;
  3238. }
  3239. #u25423 .text {
  3240. position:absolute;
  3241. align-self:center;
  3242. padding:2px 2px 2px 0px;
  3243. box-sizing:border-box;
  3244. width:100%;
  3245. }
  3246. #u25423_text {
  3247. border-width:0px;
  3248. word-wrap:break-word;
  3249. text-transform:none;
  3250. visibility:hidden;
  3251. }
  3252. #u25424_img {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:119px;
  3258. height:38px;
  3259. }
  3260. #u25424 {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:357px;
  3264. top:150px;
  3265. width:119px;
  3266. height:38px;
  3267. display:flex;
  3268. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3269. font-weight:400;
  3270. font-style:normal;
  3271. font-size:12px;
  3272. color:#606266;
  3273. }
  3274. #u25424 .text {
  3275. position:absolute;
  3276. align-self:center;
  3277. padding:2px 2px 2px 0px;
  3278. box-sizing:border-box;
  3279. width:100%;
  3280. }
  3281. #u25424_text {
  3282. border-width:0px;
  3283. word-wrap:break-word;
  3284. text-transform:none;
  3285. visibility:hidden;
  3286. }
  3287. #u25425_img {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:119px;
  3293. height:38px;
  3294. }
  3295. #u25425 {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:476px;
  3299. top:150px;
  3300. width:119px;
  3301. height:38px;
  3302. display:flex;
  3303. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3304. font-weight:400;
  3305. font-style:normal;
  3306. font-size:12px;
  3307. color:#606266;
  3308. }
  3309. #u25425 .text {
  3310. position:absolute;
  3311. align-self:center;
  3312. padding:2px 2px 2px 0px;
  3313. box-sizing:border-box;
  3314. width:100%;
  3315. }
  3316. #u25425_text {
  3317. border-width:0px;
  3318. word-wrap:break-word;
  3319. text-transform:none;
  3320. visibility:hidden;
  3321. }
  3322. #u25426_img {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:153px;
  3328. height:38px;
  3329. }
  3330. #u25426 {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:595px;
  3334. top:150px;
  3335. width:153px;
  3336. height:38px;
  3337. display:flex;
  3338. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:12px;
  3342. color:#606266;
  3343. }
  3344. #u25426 .text {
  3345. position:absolute;
  3346. align-self:center;
  3347. padding:2px 2px 2px 0px;
  3348. box-sizing:border-box;
  3349. width:100%;
  3350. }
  3351. #u25426_text {
  3352. border-width:0px;
  3353. word-wrap:break-word;
  3354. text-transform:none;
  3355. visibility:hidden;
  3356. }
  3357. #u25427_img {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:116px;
  3363. height:38px;
  3364. }
  3365. #u25427 {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:748px;
  3369. top:150px;
  3370. width:116px;
  3371. height:38px;
  3372. display:flex;
  3373. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3374. font-weight:400;
  3375. font-style:normal;
  3376. font-size:12px;
  3377. color:#606266;
  3378. }
  3379. #u25427 .text {
  3380. position:absolute;
  3381. align-self:center;
  3382. padding:2px 2px 2px 0px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u25427_text {
  3387. border-width:0px;
  3388. word-wrap:break-word;
  3389. text-transform:none;
  3390. visibility:hidden;
  3391. }
  3392. #u25428_img {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:0px;
  3396. top:0px;
  3397. width:119px;
  3398. height:38px;
  3399. }
  3400. #u25428 {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:864px;
  3404. top:150px;
  3405. width:119px;
  3406. height:38px;
  3407. display:flex;
  3408. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. font-size:12px;
  3412. color:#606266;
  3413. }
  3414. #u25428 .text {
  3415. position:absolute;
  3416. align-self:center;
  3417. padding:2px 2px 2px 0px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u25428_text {
  3422. border-width:0px;
  3423. word-wrap:break-word;
  3424. text-transform:none;
  3425. visibility:hidden;
  3426. }
  3427. #u25429_img {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:119px;
  3433. height:38px;
  3434. }
  3435. #u25429 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:983px;
  3439. top:150px;
  3440. width:119px;
  3441. height:38px;
  3442. display:flex;
  3443. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3444. font-weight:400;
  3445. font-style:normal;
  3446. font-size:12px;
  3447. color:#606266;
  3448. }
  3449. #u25429 .text {
  3450. position:absolute;
  3451. align-self:center;
  3452. padding:2px 2px 2px 0px;
  3453. box-sizing:border-box;
  3454. width:100%;
  3455. }
  3456. #u25429_text {
  3457. border-width:0px;
  3458. word-wrap:break-word;
  3459. text-transform:none;
  3460. visibility:hidden;
  3461. }
  3462. #u25430_img {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:0px;
  3466. top:0px;
  3467. width:118px;
  3468. height:38px;
  3469. }
  3470. #u25430 {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:1102px;
  3474. top:150px;
  3475. width:118px;
  3476. height:38px;
  3477. display:flex;
  3478. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3479. font-weight:400;
  3480. font-style:normal;
  3481. font-size:12px;
  3482. color:#606266;
  3483. }
  3484. #u25430 .text {
  3485. position:absolute;
  3486. align-self:center;
  3487. padding:2px 2px 2px 0px;
  3488. box-sizing:border-box;
  3489. width:100%;
  3490. }
  3491. #u25430_text {
  3492. border-width:0px;
  3493. word-wrap:break-word;
  3494. text-transform:none;
  3495. visibility:hidden;
  3496. }
  3497. #u25431_img {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:0px;
  3501. top:0px;
  3502. width:119px;
  3503. height:35px;
  3504. }
  3505. #u25431 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:188px;
  3510. width:119px;
  3511. height:35px;
  3512. display:flex;
  3513. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3514. font-weight:400;
  3515. font-style:normal;
  3516. font-size:12px;
  3517. color:#606266;
  3518. }
  3519. #u25431 .text {
  3520. position:absolute;
  3521. align-self:center;
  3522. padding:2px 2px 2px 0px;
  3523. box-sizing:border-box;
  3524. width:100%;
  3525. }
  3526. #u25431_text {
  3527. border-width:0px;
  3528. word-wrap:break-word;
  3529. text-transform:none;
  3530. visibility:hidden;
  3531. }
  3532. #u25432_img {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:0px;
  3536. top:0px;
  3537. width:119px;
  3538. height:35px;
  3539. }
  3540. #u25432 {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:119px;
  3544. top:188px;
  3545. width:119px;
  3546. height:35px;
  3547. display:flex;
  3548. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3549. font-weight:400;
  3550. font-style:normal;
  3551. font-size:12px;
  3552. color:#606266;
  3553. }
  3554. #u25432 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 2px 2px 0px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u25432_text {
  3562. border-width:0px;
  3563. word-wrap:break-word;
  3564. text-transform:none;
  3565. visibility:hidden;
  3566. }
  3567. #u25433_img {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:119px;
  3573. height:35px;
  3574. }
  3575. #u25433 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:238px;
  3579. top:188px;
  3580. width:119px;
  3581. height:35px;
  3582. display:flex;
  3583. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3584. font-weight:400;
  3585. font-style:normal;
  3586. font-size:12px;
  3587. color:#606266;
  3588. }
  3589. #u25433 .text {
  3590. position:absolute;
  3591. align-self:center;
  3592. padding:2px 2px 2px 0px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u25433_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. visibility:hidden;
  3601. }
  3602. #u25434_img {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:119px;
  3608. height:35px;
  3609. }
  3610. #u25434 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:357px;
  3614. top:188px;
  3615. width:119px;
  3616. height:35px;
  3617. display:flex;
  3618. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3619. font-weight:400;
  3620. font-style:normal;
  3621. font-size:12px;
  3622. color:#606266;
  3623. }
  3624. #u25434 .text {
  3625. position:absolute;
  3626. align-self:center;
  3627. padding:2px 2px 2px 0px;
  3628. box-sizing:border-box;
  3629. width:100%;
  3630. }
  3631. #u25434_text {
  3632. border-width:0px;
  3633. word-wrap:break-word;
  3634. text-transform:none;
  3635. visibility:hidden;
  3636. }
  3637. #u25435_img {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:119px;
  3643. height:35px;
  3644. }
  3645. #u25435 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:476px;
  3649. top:188px;
  3650. width:119px;
  3651. height:35px;
  3652. display:flex;
  3653. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. font-size:12px;
  3657. color:#606266;
  3658. }
  3659. #u25435 .text {
  3660. position:absolute;
  3661. align-self:center;
  3662. padding:2px 2px 2px 0px;
  3663. box-sizing:border-box;
  3664. width:100%;
  3665. }
  3666. #u25435_text {
  3667. border-width:0px;
  3668. word-wrap:break-word;
  3669. text-transform:none;
  3670. visibility:hidden;
  3671. }
  3672. #u25436_img {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:153px;
  3678. height:35px;
  3679. }
  3680. #u25436 {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:595px;
  3684. top:188px;
  3685. width:153px;
  3686. height:35px;
  3687. display:flex;
  3688. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3689. font-weight:400;
  3690. font-style:normal;
  3691. font-size:12px;
  3692. color:#606266;
  3693. }
  3694. #u25436 .text {
  3695. position:absolute;
  3696. align-self:center;
  3697. padding:2px 2px 2px 0px;
  3698. box-sizing:border-box;
  3699. width:100%;
  3700. }
  3701. #u25436_text {
  3702. border-width:0px;
  3703. word-wrap:break-word;
  3704. text-transform:none;
  3705. visibility:hidden;
  3706. }
  3707. #u25437_img {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:116px;
  3713. height:35px;
  3714. }
  3715. #u25437 {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:748px;
  3719. top:188px;
  3720. width:116px;
  3721. height:35px;
  3722. display:flex;
  3723. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3724. font-weight:400;
  3725. font-style:normal;
  3726. font-size:12px;
  3727. color:#606266;
  3728. }
  3729. #u25437 .text {
  3730. position:absolute;
  3731. align-self:center;
  3732. padding:2px 2px 2px 0px;
  3733. box-sizing:border-box;
  3734. width:100%;
  3735. }
  3736. #u25437_text {
  3737. border-width:0px;
  3738. word-wrap:break-word;
  3739. text-transform:none;
  3740. visibility:hidden;
  3741. }
  3742. #u25438_img {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:0px;
  3746. top:0px;
  3747. width:119px;
  3748. height:35px;
  3749. }
  3750. #u25438 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:864px;
  3754. top:188px;
  3755. width:119px;
  3756. height:35px;
  3757. display:flex;
  3758. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. font-size:12px;
  3762. color:#606266;
  3763. }
  3764. #u25438 .text {
  3765. position:absolute;
  3766. align-self:center;
  3767. padding:2px 2px 2px 0px;
  3768. box-sizing:border-box;
  3769. width:100%;
  3770. }
  3771. #u25438_text {
  3772. border-width:0px;
  3773. word-wrap:break-word;
  3774. text-transform:none;
  3775. visibility:hidden;
  3776. }
  3777. #u25439_img {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:119px;
  3783. height:35px;
  3784. }
  3785. #u25439 {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:983px;
  3789. top:188px;
  3790. width:119px;
  3791. height:35px;
  3792. display:flex;
  3793. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3794. font-weight:400;
  3795. font-style:normal;
  3796. font-size:12px;
  3797. color:#606266;
  3798. }
  3799. #u25439 .text {
  3800. position:absolute;
  3801. align-self:center;
  3802. padding:2px 2px 2px 0px;
  3803. box-sizing:border-box;
  3804. width:100%;
  3805. }
  3806. #u25439_text {
  3807. border-width:0px;
  3808. word-wrap:break-word;
  3809. text-transform:none;
  3810. visibility:hidden;
  3811. }
  3812. #u25440_img {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:118px;
  3818. height:35px;
  3819. }
  3820. #u25440 {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:1102px;
  3824. top:188px;
  3825. width:118px;
  3826. height:35px;
  3827. display:flex;
  3828. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3829. font-weight:400;
  3830. font-style:normal;
  3831. font-size:12px;
  3832. color:#606266;
  3833. }
  3834. #u25440 .text {
  3835. position:absolute;
  3836. align-self:center;
  3837. padding:2px 2px 2px 0px;
  3838. box-sizing:border-box;
  3839. width:100%;
  3840. }
  3841. #u25440_text {
  3842. border-width:0px;
  3843. word-wrap:break-word;
  3844. text-transform:none;
  3845. visibility:hidden;
  3846. }
  3847. #u25441_img {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:119px;
  3853. height:34px;
  3854. }
  3855. #u25441 {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:0px;
  3859. top:223px;
  3860. width:119px;
  3861. height:34px;
  3862. display:flex;
  3863. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3864. font-weight:400;
  3865. font-style:normal;
  3866. font-size:12px;
  3867. color:#606266;
  3868. }
  3869. #u25441 .text {
  3870. position:absolute;
  3871. align-self:center;
  3872. padding:2px 2px 2px 0px;
  3873. box-sizing:border-box;
  3874. width:100%;
  3875. }
  3876. #u25441_text {
  3877. border-width:0px;
  3878. word-wrap:break-word;
  3879. text-transform:none;
  3880. visibility:hidden;
  3881. }
  3882. #u25442_img {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:119px;
  3888. height:34px;
  3889. }
  3890. #u25442 {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:119px;
  3894. top:223px;
  3895. width:119px;
  3896. height:34px;
  3897. display:flex;
  3898. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3899. font-weight:400;
  3900. font-style:normal;
  3901. font-size:12px;
  3902. color:#606266;
  3903. }
  3904. #u25442 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:2px 2px 2px 0px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u25442_text {
  3912. border-width:0px;
  3913. word-wrap:break-word;
  3914. text-transform:none;
  3915. visibility:hidden;
  3916. }
  3917. #u25443_img {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:119px;
  3923. height:34px;
  3924. }
  3925. #u25443 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:238px;
  3929. top:223px;
  3930. width:119px;
  3931. height:34px;
  3932. display:flex;
  3933. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:12px;
  3937. color:#606266;
  3938. }
  3939. #u25443 .text {
  3940. position:absolute;
  3941. align-self:center;
  3942. padding:2px 2px 2px 0px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u25443_text {
  3947. border-width:0px;
  3948. word-wrap:break-word;
  3949. text-transform:none;
  3950. visibility:hidden;
  3951. }
  3952. #u25444_img {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:119px;
  3958. height:34px;
  3959. }
  3960. #u25444 {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:357px;
  3964. top:223px;
  3965. width:119px;
  3966. height:34px;
  3967. display:flex;
  3968. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3969. font-weight:400;
  3970. font-style:normal;
  3971. font-size:12px;
  3972. color:#606266;
  3973. }
  3974. #u25444 .text {
  3975. position:absolute;
  3976. align-self:center;
  3977. padding:2px 2px 2px 0px;
  3978. box-sizing:border-box;
  3979. width:100%;
  3980. }
  3981. #u25444_text {
  3982. border-width:0px;
  3983. word-wrap:break-word;
  3984. text-transform:none;
  3985. visibility:hidden;
  3986. }
  3987. #u25445_img {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:0px;
  3991. top:0px;
  3992. width:119px;
  3993. height:34px;
  3994. }
  3995. #u25445 {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:476px;
  3999. top:223px;
  4000. width:119px;
  4001. height:34px;
  4002. display:flex;
  4003. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4004. font-weight:400;
  4005. font-style:normal;
  4006. font-size:12px;
  4007. color:#606266;
  4008. }
  4009. #u25445 .text {
  4010. position:absolute;
  4011. align-self:center;
  4012. padding:2px 2px 2px 0px;
  4013. box-sizing:border-box;
  4014. width:100%;
  4015. }
  4016. #u25445_text {
  4017. border-width:0px;
  4018. word-wrap:break-word;
  4019. text-transform:none;
  4020. visibility:hidden;
  4021. }
  4022. #u25446_img {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:0px;
  4026. top:0px;
  4027. width:153px;
  4028. height:34px;
  4029. }
  4030. #u25446 {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:595px;
  4034. top:223px;
  4035. width:153px;
  4036. height:34px;
  4037. display:flex;
  4038. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4039. font-weight:400;
  4040. font-style:normal;
  4041. font-size:12px;
  4042. color:#606266;
  4043. }
  4044. #u25446 .text {
  4045. position:absolute;
  4046. align-self:center;
  4047. padding:2px 2px 2px 0px;
  4048. box-sizing:border-box;
  4049. width:100%;
  4050. }
  4051. #u25446_text {
  4052. border-width:0px;
  4053. word-wrap:break-word;
  4054. text-transform:none;
  4055. visibility:hidden;
  4056. }
  4057. #u25447_img {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:0px;
  4061. top:0px;
  4062. width:116px;
  4063. height:34px;
  4064. }
  4065. #u25447 {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:748px;
  4069. top:223px;
  4070. width:116px;
  4071. height:34px;
  4072. display:flex;
  4073. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4074. font-weight:400;
  4075. font-style:normal;
  4076. font-size:12px;
  4077. color:#606266;
  4078. }
  4079. #u25447 .text {
  4080. position:absolute;
  4081. align-self:center;
  4082. padding:2px 2px 2px 0px;
  4083. box-sizing:border-box;
  4084. width:100%;
  4085. }
  4086. #u25447_text {
  4087. border-width:0px;
  4088. word-wrap:break-word;
  4089. text-transform:none;
  4090. visibility:hidden;
  4091. }
  4092. #u25448_img {
  4093. border-width:0px;
  4094. position:absolute;
  4095. left:0px;
  4096. top:0px;
  4097. width:119px;
  4098. height:34px;
  4099. }
  4100. #u25448 {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:864px;
  4104. top:223px;
  4105. width:119px;
  4106. height:34px;
  4107. display:flex;
  4108. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4109. font-weight:400;
  4110. font-style:normal;
  4111. font-size:12px;
  4112. color:#606266;
  4113. }
  4114. #u25448 .text {
  4115. position:absolute;
  4116. align-self:center;
  4117. padding:2px 2px 2px 0px;
  4118. box-sizing:border-box;
  4119. width:100%;
  4120. }
  4121. #u25448_text {
  4122. border-width:0px;
  4123. word-wrap:break-word;
  4124. text-transform:none;
  4125. visibility:hidden;
  4126. }
  4127. #u25449_img {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:0px;
  4131. top:0px;
  4132. width:119px;
  4133. height:34px;
  4134. }
  4135. #u25449 {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:983px;
  4139. top:223px;
  4140. width:119px;
  4141. height:34px;
  4142. display:flex;
  4143. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4144. font-weight:400;
  4145. font-style:normal;
  4146. font-size:12px;
  4147. color:#606266;
  4148. }
  4149. #u25449 .text {
  4150. position:absolute;
  4151. align-self:center;
  4152. padding:2px 2px 2px 0px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u25449_text {
  4157. border-width:0px;
  4158. word-wrap:break-word;
  4159. text-transform:none;
  4160. visibility:hidden;
  4161. }
  4162. #u25450_img {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:118px;
  4168. height:34px;
  4169. }
  4170. #u25450 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:1102px;
  4174. top:223px;
  4175. width:118px;
  4176. height:34px;
  4177. display:flex;
  4178. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4179. font-weight:400;
  4180. font-style:normal;
  4181. font-size:12px;
  4182. color:#606266;
  4183. }
  4184. #u25450 .text {
  4185. position:absolute;
  4186. align-self:center;
  4187. padding:2px 2px 2px 0px;
  4188. box-sizing:border-box;
  4189. width:100%;
  4190. }
  4191. #u25450_text {
  4192. border-width:0px;
  4193. word-wrap:break-word;
  4194. text-transform:none;
  4195. visibility:hidden;
  4196. }
  4197. #u25451_img {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:119px;
  4203. height:32px;
  4204. }
  4205. #u25451 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:257px;
  4210. width:119px;
  4211. height:32px;
  4212. display:flex;
  4213. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:12px;
  4217. color:#606266;
  4218. }
  4219. #u25451 .text {
  4220. position:absolute;
  4221. align-self:center;
  4222. padding:2px 2px 2px 0px;
  4223. box-sizing:border-box;
  4224. width:100%;
  4225. }
  4226. #u25451_text {
  4227. border-width:0px;
  4228. word-wrap:break-word;
  4229. text-transform:none;
  4230. visibility:hidden;
  4231. }
  4232. #u25452_img {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:119px;
  4238. height:32px;
  4239. }
  4240. #u25452 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:119px;
  4244. top:257px;
  4245. width:119px;
  4246. height:32px;
  4247. display:flex;
  4248. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4249. font-weight:400;
  4250. font-style:normal;
  4251. font-size:12px;
  4252. color:#606266;
  4253. }
  4254. #u25452 .text {
  4255. position:absolute;
  4256. align-self:center;
  4257. padding:2px 2px 2px 0px;
  4258. box-sizing:border-box;
  4259. width:100%;
  4260. }
  4261. #u25452_text {
  4262. border-width:0px;
  4263. word-wrap:break-word;
  4264. text-transform:none;
  4265. visibility:hidden;
  4266. }
  4267. #u25453_img {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:119px;
  4273. height:32px;
  4274. }
  4275. #u25453 {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:238px;
  4279. top:257px;
  4280. width:119px;
  4281. height:32px;
  4282. display:flex;
  4283. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4284. font-weight:400;
  4285. font-style:normal;
  4286. font-size:12px;
  4287. color:#606266;
  4288. }
  4289. #u25453 .text {
  4290. position:absolute;
  4291. align-self:center;
  4292. padding:2px 2px 2px 0px;
  4293. box-sizing:border-box;
  4294. width:100%;
  4295. }
  4296. #u25453_text {
  4297. border-width:0px;
  4298. word-wrap:break-word;
  4299. text-transform:none;
  4300. visibility:hidden;
  4301. }
  4302. #u25454_img {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:0px;
  4306. top:0px;
  4307. width:119px;
  4308. height:32px;
  4309. }
  4310. #u25454 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:357px;
  4314. top:257px;
  4315. width:119px;
  4316. height:32px;
  4317. display:flex;
  4318. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4319. font-weight:400;
  4320. font-style:normal;
  4321. font-size:12px;
  4322. color:#606266;
  4323. }
  4324. #u25454 .text {
  4325. position:absolute;
  4326. align-self:center;
  4327. padding:2px 2px 2px 0px;
  4328. box-sizing:border-box;
  4329. width:100%;
  4330. }
  4331. #u25454_text {
  4332. border-width:0px;
  4333. word-wrap:break-word;
  4334. text-transform:none;
  4335. visibility:hidden;
  4336. }
  4337. #u25455_img {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:119px;
  4343. height:32px;
  4344. }
  4345. #u25455 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:476px;
  4349. top:257px;
  4350. width:119px;
  4351. height:32px;
  4352. display:flex;
  4353. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4354. font-weight:400;
  4355. font-style:normal;
  4356. font-size:12px;
  4357. color:#606266;
  4358. }
  4359. #u25455 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 2px 2px 0px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u25455_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. visibility:hidden;
  4371. }
  4372. #u25456_img {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:153px;
  4378. height:32px;
  4379. }
  4380. #u25456 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:595px;
  4384. top:257px;
  4385. width:153px;
  4386. height:32px;
  4387. display:flex;
  4388. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4389. font-weight:400;
  4390. font-style:normal;
  4391. font-size:12px;
  4392. color:#606266;
  4393. }
  4394. #u25456 .text {
  4395. position:absolute;
  4396. align-self:center;
  4397. padding:2px 2px 2px 0px;
  4398. box-sizing:border-box;
  4399. width:100%;
  4400. }
  4401. #u25456_text {
  4402. border-width:0px;
  4403. word-wrap:break-word;
  4404. text-transform:none;
  4405. visibility:hidden;
  4406. }
  4407. #u25457_img {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:0px;
  4411. top:0px;
  4412. width:116px;
  4413. height:32px;
  4414. }
  4415. #u25457 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:748px;
  4419. top:257px;
  4420. width:116px;
  4421. height:32px;
  4422. display:flex;
  4423. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4424. font-weight:400;
  4425. font-style:normal;
  4426. font-size:12px;
  4427. color:#606266;
  4428. }
  4429. #u25457 .text {
  4430. position:absolute;
  4431. align-self:center;
  4432. padding:2px 2px 2px 0px;
  4433. box-sizing:border-box;
  4434. width:100%;
  4435. }
  4436. #u25457_text {
  4437. border-width:0px;
  4438. word-wrap:break-word;
  4439. text-transform:none;
  4440. visibility:hidden;
  4441. }
  4442. #u25458_img {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:0px;
  4446. top:0px;
  4447. width:119px;
  4448. height:32px;
  4449. }
  4450. #u25458 {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:864px;
  4454. top:257px;
  4455. width:119px;
  4456. height:32px;
  4457. display:flex;
  4458. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4459. font-weight:400;
  4460. font-style:normal;
  4461. font-size:12px;
  4462. color:#606266;
  4463. }
  4464. #u25458 .text {
  4465. position:absolute;
  4466. align-self:center;
  4467. padding:2px 2px 2px 0px;
  4468. box-sizing:border-box;
  4469. width:100%;
  4470. }
  4471. #u25458_text {
  4472. border-width:0px;
  4473. word-wrap:break-word;
  4474. text-transform:none;
  4475. visibility:hidden;
  4476. }
  4477. #u25459_img {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:0px;
  4481. top:0px;
  4482. width:119px;
  4483. height:32px;
  4484. }
  4485. #u25459 {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:983px;
  4489. top:257px;
  4490. width:119px;
  4491. height:32px;
  4492. display:flex;
  4493. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4494. font-weight:400;
  4495. font-style:normal;
  4496. font-size:12px;
  4497. color:#606266;
  4498. }
  4499. #u25459 .text {
  4500. position:absolute;
  4501. align-self:center;
  4502. padding:2px 2px 2px 0px;
  4503. box-sizing:border-box;
  4504. width:100%;
  4505. }
  4506. #u25459_text {
  4507. border-width:0px;
  4508. word-wrap:break-word;
  4509. text-transform:none;
  4510. visibility:hidden;
  4511. }
  4512. #u25460_img {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:0px;
  4516. top:0px;
  4517. width:118px;
  4518. height:32px;
  4519. }
  4520. #u25460 {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:1102px;
  4524. top:257px;
  4525. width:118px;
  4526. height:32px;
  4527. display:flex;
  4528. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4529. font-weight:400;
  4530. font-style:normal;
  4531. font-size:12px;
  4532. color:#606266;
  4533. }
  4534. #u25460 .text {
  4535. position:absolute;
  4536. align-self:center;
  4537. padding:2px 2px 2px 0px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u25460_text {
  4542. border-width:0px;
  4543. word-wrap:break-word;
  4544. text-transform:none;
  4545. visibility:hidden;
  4546. }
  4547. #u25461_img {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:0px;
  4551. top:0px;
  4552. width:119px;
  4553. height:30px;
  4554. }
  4555. #u25461 {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:289px;
  4560. width:119px;
  4561. height:30px;
  4562. display:flex;
  4563. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4564. font-weight:400;
  4565. font-style:normal;
  4566. font-size:12px;
  4567. color:#606266;
  4568. }
  4569. #u25461 .text {
  4570. position:absolute;
  4571. align-self:center;
  4572. padding:2px 2px 2px 0px;
  4573. box-sizing:border-box;
  4574. width:100%;
  4575. }
  4576. #u25461_text {
  4577. border-width:0px;
  4578. word-wrap:break-word;
  4579. text-transform:none;
  4580. visibility:hidden;
  4581. }
  4582. #u25462_img {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:0px;
  4586. top:0px;
  4587. width:119px;
  4588. height:30px;
  4589. }
  4590. #u25462 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:119px;
  4594. top:289px;
  4595. width:119px;
  4596. height:30px;
  4597. display:flex;
  4598. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4599. font-weight:400;
  4600. font-style:normal;
  4601. font-size:12px;
  4602. color:#606266;
  4603. }
  4604. #u25462 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:2px 2px 2px 0px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u25462_text {
  4612. border-width:0px;
  4613. word-wrap:break-word;
  4614. text-transform:none;
  4615. visibility:hidden;
  4616. }
  4617. #u25463_img {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:119px;
  4623. height:30px;
  4624. }
  4625. #u25463 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:238px;
  4629. top:289px;
  4630. width:119px;
  4631. height:30px;
  4632. display:flex;
  4633. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:12px;
  4637. color:#606266;
  4638. }
  4639. #u25463 .text {
  4640. position:absolute;
  4641. align-self:center;
  4642. padding:2px 2px 2px 0px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u25463_text {
  4647. border-width:0px;
  4648. word-wrap:break-word;
  4649. text-transform:none;
  4650. visibility:hidden;
  4651. }
  4652. #u25464_img {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:119px;
  4658. height:30px;
  4659. }
  4660. #u25464 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:357px;
  4664. top:289px;
  4665. width:119px;
  4666. height:30px;
  4667. display:flex;
  4668. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:12px;
  4672. color:#606266;
  4673. }
  4674. #u25464 .text {
  4675. position:absolute;
  4676. align-self:center;
  4677. padding:2px 2px 2px 0px;
  4678. box-sizing:border-box;
  4679. width:100%;
  4680. }
  4681. #u25464_text {
  4682. border-width:0px;
  4683. word-wrap:break-word;
  4684. text-transform:none;
  4685. visibility:hidden;
  4686. }
  4687. #u25465_img {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:119px;
  4693. height:30px;
  4694. }
  4695. #u25465 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:476px;
  4699. top:289px;
  4700. width:119px;
  4701. height:30px;
  4702. display:flex;
  4703. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:12px;
  4707. color:#606266;
  4708. }
  4709. #u25465 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:2px 2px 2px 0px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u25465_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. visibility:hidden;
  4721. }
  4722. #u25466_img {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:153px;
  4728. height:30px;
  4729. }
  4730. #u25466 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:595px;
  4734. top:289px;
  4735. width:153px;
  4736. height:30px;
  4737. display:flex;
  4738. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4739. font-weight:400;
  4740. font-style:normal;
  4741. font-size:12px;
  4742. color:#606266;
  4743. }
  4744. #u25466 .text {
  4745. position:absolute;
  4746. align-self:center;
  4747. padding:2px 2px 2px 0px;
  4748. box-sizing:border-box;
  4749. width:100%;
  4750. }
  4751. #u25466_text {
  4752. border-width:0px;
  4753. word-wrap:break-word;
  4754. text-transform:none;
  4755. visibility:hidden;
  4756. }
  4757. #u25467_img {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:0px;
  4761. top:0px;
  4762. width:116px;
  4763. height:30px;
  4764. }
  4765. #u25467 {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:748px;
  4769. top:289px;
  4770. width:116px;
  4771. height:30px;
  4772. display:flex;
  4773. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4774. font-weight:400;
  4775. font-style:normal;
  4776. font-size:12px;
  4777. color:#606266;
  4778. }
  4779. #u25467 .text {
  4780. position:absolute;
  4781. align-self:center;
  4782. padding:2px 2px 2px 0px;
  4783. box-sizing:border-box;
  4784. width:100%;
  4785. }
  4786. #u25467_text {
  4787. border-width:0px;
  4788. word-wrap:break-word;
  4789. text-transform:none;
  4790. visibility:hidden;
  4791. }
  4792. #u25468_img {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:119px;
  4798. height:30px;
  4799. }
  4800. #u25468 {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:864px;
  4804. top:289px;
  4805. width:119px;
  4806. height:30px;
  4807. display:flex;
  4808. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:12px;
  4812. color:#606266;
  4813. }
  4814. #u25468 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:2px 2px 2px 0px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u25468_text {
  4822. border-width:0px;
  4823. word-wrap:break-word;
  4824. text-transform:none;
  4825. visibility:hidden;
  4826. }
  4827. #u25469_img {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:119px;
  4833. height:30px;
  4834. }
  4835. #u25469 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:983px;
  4839. top:289px;
  4840. width:119px;
  4841. height:30px;
  4842. display:flex;
  4843. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4844. font-weight:400;
  4845. font-style:normal;
  4846. font-size:12px;
  4847. color:#606266;
  4848. }
  4849. #u25469 .text {
  4850. position:absolute;
  4851. align-self:center;
  4852. padding:2px 2px 2px 0px;
  4853. box-sizing:border-box;
  4854. width:100%;
  4855. }
  4856. #u25469_text {
  4857. border-width:0px;
  4858. word-wrap:break-word;
  4859. text-transform:none;
  4860. visibility:hidden;
  4861. }
  4862. #u25470_img {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:0px;
  4866. top:0px;
  4867. width:118px;
  4868. height:30px;
  4869. }
  4870. #u25470 {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:1102px;
  4874. top:289px;
  4875. width:118px;
  4876. height:30px;
  4877. display:flex;
  4878. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4879. font-weight:400;
  4880. font-style:normal;
  4881. font-size:12px;
  4882. color:#606266;
  4883. }
  4884. #u25470 .text {
  4885. position:absolute;
  4886. align-self:center;
  4887. padding:2px 2px 2px 0px;
  4888. box-sizing:border-box;
  4889. width:100%;
  4890. }
  4891. #u25470_text {
  4892. border-width:0px;
  4893. word-wrap:break-word;
  4894. text-transform:none;
  4895. visibility:hidden;
  4896. }
  4897. #u25471_div {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:55px;
  4903. height:30px;
  4904. background:inherit;
  4905. background-color:rgba(255, 255, 255, 1);
  4906. box-sizing:border-box;
  4907. border-width:1px;
  4908. border-style:solid;
  4909. border-color:rgba(170, 170, 170, 1);
  4910. border-radius:4px;
  4911. -moz-box-shadow:none;
  4912. -webkit-box-shadow:none;
  4913. box-shadow:none;
  4914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4915. font-weight:400;
  4916. font-style:normal;
  4917. font-size:12px;
  4918. color:#555555;
  4919. }
  4920. #u25471 {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:354px;
  4924. top:256px;
  4925. width:55px;
  4926. height:30px;
  4927. display:flex;
  4928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4929. font-weight:400;
  4930. font-style:normal;
  4931. font-size:12px;
  4932. color:#555555;
  4933. }
  4934. #u25471 .text {
  4935. position:absolute;
  4936. align-self:center;
  4937. padding:5px 15px 5px 15px;
  4938. box-sizing:border-box;
  4939. width:100%;
  4940. }
  4941. #u25471_text {
  4942. border-width:0px;
  4943. white-space:nowrap;
  4944. text-transform:none;
  4945. }
  4946. #u25472_div {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:73px;
  4952. height:50px;
  4953. background:inherit;
  4954. background-color:rgba(255, 255, 255, 0);
  4955. border:none;
  4956. border-left:0px;
  4957. border-top:0px;
  4958. border-right:0px;
  4959. border-radius:0px;
  4960. border-bottom-right-radius:0px;
  4961. border-bottom-left-radius:0px;
  4962. -moz-box-shadow:none;
  4963. -webkit-box-shadow:none;
  4964. box-shadow:none;
  4965. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4966. font-weight:500;
  4967. font-style:normal;
  4968. font-size:18px;
  4969. }
  4970. #u25472 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:354px;
  4974. top:50px;
  4975. width:73px;
  4976. height:50px;
  4977. display:flex;
  4978. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4979. font-weight:500;
  4980. font-style:normal;
  4981. font-size:18px;
  4982. }
  4983. #u25472 .text {
  4984. position:absolute;
  4985. align-self:center;
  4986. padding:0px 0px 0px 0px;
  4987. box-sizing:border-box;
  4988. width:100%;
  4989. }
  4990. #u25472_text {
  4991. border-width:0px;
  4992. white-space:nowrap;
  4993. text-transform:none;
  4994. }
  4995. #u25473 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:0px;
  5001. height:0px;
  5002. }
  5003. #u25474_div {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:0px;
  5007. top:0px;
  5008. width:140px;
  5009. height:30px;
  5010. background:inherit;
  5011. background-color:rgba(255, 255, 255, 1);
  5012. box-sizing:border-box;
  5013. border-width:1px;
  5014. border-style:solid;
  5015. border-color:rgba(201, 201, 201, 1);
  5016. border-radius:4px;
  5017. -moz-box-shadow:none;
  5018. -webkit-box-shadow:none;
  5019. box-shadow:none;
  5020. font-family:'Microsoft YaHei', sans-serif;
  5021. font-weight:400;
  5022. font-style:normal;
  5023. font-size:14px;
  5024. color:#CCCCCC;
  5025. text-align:left;
  5026. }
  5027. #u25474 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:654px;
  5031. top:106px;
  5032. width:140px;
  5033. height:30px;
  5034. display:flex;
  5035. font-family:'Microsoft YaHei', sans-serif;
  5036. font-weight:400;
  5037. font-style:normal;
  5038. font-size:14px;
  5039. color:#CCCCCC;
  5040. text-align:left;
  5041. }
  5042. #u25474 .text {
  5043. position:absolute;
  5044. align-self:center;
  5045. padding:2px 8px 2px 8px;
  5046. box-sizing:border-box;
  5047. width:100%;
  5048. }
  5049. #u25474_text {
  5050. border-width:0px;
  5051. word-wrap:break-word;
  5052. text-transform:none;
  5053. visibility:hidden;
  5054. }
  5055. #u25475_input {
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:126px;
  5060. height:25px;
  5061. padding:2px 2px 2px 2px;
  5062. font-family:'Microsoft YaHei', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:10px;
  5066. letter-spacing:normal;
  5067. color:#000000;
  5068. vertical-align:none;
  5069. text-align:left;
  5070. text-transform:none;
  5071. background-color:transparent;
  5072. border-color:transparent;
  5073. }
  5074. #u25475_input.disabled {
  5075. position:absolute;
  5076. left:0px;
  5077. top:0px;
  5078. width:126px;
  5079. height:25px;
  5080. padding:2px 2px 2px 2px;
  5081. font-family:'Microsoft YaHei', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:10px;
  5085. letter-spacing:normal;
  5086. color:#000000;
  5087. vertical-align:none;
  5088. text-align:left;
  5089. text-transform:none;
  5090. background-color:transparent;
  5091. border-color:transparent;
  5092. }
  5093. #u25475_div {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:126px;
  5099. height:25px;
  5100. background:inherit;
  5101. background-color:rgba(255, 255, 255, 1);
  5102. border:none;
  5103. border-radius:0px;
  5104. -moz-box-shadow:none;
  5105. -webkit-box-shadow:none;
  5106. box-shadow:none;
  5107. font-family:'Microsoft YaHei', sans-serif;
  5108. font-weight:400;
  5109. font-style:normal;
  5110. font-size:10px;
  5111. }
  5112. #u25475 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:663px;
  5116. top:107px;
  5117. width:126px;
  5118. height:25px;
  5119. display:flex;
  5120. font-family:'Microsoft YaHei', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. font-size:10px;
  5124. }
  5125. #u25475 .text {
  5126. position:absolute;
  5127. align-self:center;
  5128. padding:2px 2px 2px 2px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u25475_div.disabled {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:0px;
  5136. top:0px;
  5137. width:126px;
  5138. height:25px;
  5139. background:inherit;
  5140. background-color:rgba(240, 240, 240, 1);
  5141. border:none;
  5142. border-radius:0px;
  5143. -moz-box-shadow:none;
  5144. -webkit-box-shadow:none;
  5145. box-shadow:none;
  5146. font-family:'Microsoft YaHei', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:10px;
  5150. }
  5151. #u25475.disabled {
  5152. }
  5153. #u25476_div {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:59px;
  5159. height:30px;
  5160. background:inherit;
  5161. background-color:rgba(24, 144, 255, 1);
  5162. box-sizing:border-box;
  5163. border-width:1px;
  5164. border-style:solid;
  5165. border-color:rgba(0, 153, 255, 1);
  5166. border-radius:4px;
  5167. -moz-box-shadow:none;
  5168. -webkit-box-shadow:none;
  5169. box-shadow:none;
  5170. font-family:'Microsoft YaHei', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:14px;
  5174. color:#FFFFFF;
  5175. }
  5176. #u25476 {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:1404px;
  5180. top:106px;
  5181. width:59px;
  5182. height:30px;
  5183. display:flex;
  5184. font-family:'Microsoft YaHei', sans-serif;
  5185. font-weight:400;
  5186. font-style:normal;
  5187. font-size:14px;
  5188. color:#FFFFFF;
  5189. }
  5190. #u25476 .text {
  5191. position:absolute;
  5192. align-self:center;
  5193. padding:5px 15px 5px 15px;
  5194. box-sizing:border-box;
  5195. width:100%;
  5196. }
  5197. #u25476_text {
  5198. border-width:0px;
  5199. white-space:nowrap;
  5200. text-transform:none;
  5201. }
  5202. #u25477_div {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:0px;
  5206. top:0px;
  5207. width:55px;
  5208. height:30px;
  5209. background:inherit;
  5210. background-color:rgba(255, 255, 255, 1);
  5211. box-sizing:border-box;
  5212. border-width:1px;
  5213. border-style:solid;
  5214. border-color:rgba(170, 170, 170, 1);
  5215. border-radius:4px;
  5216. -moz-box-shadow:none;
  5217. -webkit-box-shadow:none;
  5218. box-shadow:none;
  5219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5220. font-weight:400;
  5221. font-style:normal;
  5222. font-size:12px;
  5223. color:#555555;
  5224. }
  5225. #u25477 {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:1473px;
  5229. top:106px;
  5230. width:55px;
  5231. height:30px;
  5232. display:flex;
  5233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5234. font-weight:400;
  5235. font-style:normal;
  5236. font-size:12px;
  5237. color:#555555;
  5238. }
  5239. #u25477 .text {
  5240. position:absolute;
  5241. align-self:center;
  5242. padding:5px 15px 5px 15px;
  5243. box-sizing:border-box;
  5244. width:100%;
  5245. }
  5246. #u25477_text {
  5247. border-width:0px;
  5248. white-space:nowrap;
  5249. text-transform:none;
  5250. }
  5251. #u25478 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:0px;
  5257. height:0px;
  5258. }
  5259. #u25479_div {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:140px;
  5265. height:30px;
  5266. background:inherit;
  5267. background-color:rgba(255, 255, 255, 1);
  5268. box-sizing:border-box;
  5269. border-width:1px;
  5270. border-style:solid;
  5271. border-color:rgba(201, 201, 201, 1);
  5272. border-radius:4px;
  5273. -moz-box-shadow:none;
  5274. -webkit-box-shadow:none;
  5275. box-shadow:none;
  5276. font-family:'Microsoft YaHei', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. font-size:14px;
  5280. color:#CCCCCC;
  5281. text-align:left;
  5282. }
  5283. #u25479 {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:1104px;
  5287. top:106px;
  5288. width:140px;
  5289. height:30px;
  5290. display:flex;
  5291. font-family:'Microsoft YaHei', sans-serif;
  5292. font-weight:400;
  5293. font-style:normal;
  5294. font-size:14px;
  5295. color:#CCCCCC;
  5296. text-align:left;
  5297. }
  5298. #u25479 .text {
  5299. position:absolute;
  5300. align-self:center;
  5301. padding:2px 8px 2px 8px;
  5302. box-sizing:border-box;
  5303. width:100%;
  5304. }
  5305. #u25479_text {
  5306. border-width:0px;
  5307. word-wrap:break-word;
  5308. text-transform:none;
  5309. visibility:hidden;
  5310. }
  5311. #u25480_input {
  5312. position:absolute;
  5313. left:0px;
  5314. top:0px;
  5315. width:126px;
  5316. height:25px;
  5317. padding:2px 2px 2px 2px;
  5318. font-family:'Microsoft YaHei', sans-serif;
  5319. font-weight:400;
  5320. font-style:normal;
  5321. font-size:10px;
  5322. letter-spacing:normal;
  5323. color:#000000;
  5324. vertical-align:none;
  5325. text-align:left;
  5326. text-transform:none;
  5327. background-color:transparent;
  5328. border-color:transparent;
  5329. }
  5330. #u25480_input.disabled {
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:126px;
  5335. height:25px;
  5336. padding:2px 2px 2px 2px;
  5337. font-family:'Microsoft YaHei', sans-serif;
  5338. font-weight:400;
  5339. font-style:normal;
  5340. font-size:10px;
  5341. letter-spacing:normal;
  5342. color:#000000;
  5343. vertical-align:none;
  5344. text-align:left;
  5345. text-transform:none;
  5346. background-color:transparent;
  5347. border-color:transparent;
  5348. }
  5349. #u25480_div {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:126px;
  5355. height:25px;
  5356. background:inherit;
  5357. background-color:rgba(255, 255, 255, 1);
  5358. border:none;
  5359. border-radius:0px;
  5360. -moz-box-shadow:none;
  5361. -webkit-box-shadow:none;
  5362. box-shadow:none;
  5363. font-family:'Microsoft YaHei', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:10px;
  5367. }
  5368. #u25480 {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:1113px;
  5372. top:107px;
  5373. width:126px;
  5374. height:25px;
  5375. display:flex;
  5376. font-family:'Microsoft YaHei', sans-serif;
  5377. font-weight:400;
  5378. font-style:normal;
  5379. font-size:10px;
  5380. }
  5381. #u25480 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:2px 2px 2px 2px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u25480_div.disabled {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:126px;
  5394. height:25px;
  5395. background:inherit;
  5396. background-color:rgba(240, 240, 240, 1);
  5397. border:none;
  5398. border-radius:0px;
  5399. -moz-box-shadow:none;
  5400. -webkit-box-shadow:none;
  5401. box-shadow:none;
  5402. font-family:'Microsoft YaHei', sans-serif;
  5403. font-weight:400;
  5404. font-style:normal;
  5405. font-size:10px;
  5406. }
  5407. #u25480.disabled {
  5408. }
  5409. #u25481 {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:0px;
  5415. height:0px;
  5416. }
  5417. #u25482_div {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:140px;
  5423. height:30px;
  5424. background:inherit;
  5425. background-color:rgba(255, 255, 255, 1);
  5426. box-sizing:border-box;
  5427. border-width:1px;
  5428. border-style:solid;
  5429. border-color:rgba(215, 215, 215, 1);
  5430. border-radius:4px;
  5431. -moz-box-shadow:none;
  5432. -webkit-box-shadow:none;
  5433. box-shadow:none;
  5434. font-size:11px;
  5435. }
  5436. #u25482 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:354px;
  5440. top:106px;
  5441. width:140px;
  5442. height:30px;
  5443. display:flex;
  5444. font-size:11px;
  5445. }
  5446. #u25482 .text {
  5447. position:absolute;
  5448. align-self:center;
  5449. padding:2px 2px 2px 2px;
  5450. box-sizing:border-box;
  5451. width:100%;
  5452. }
  5453. #u25482_text {
  5454. border-width:0px;
  5455. word-wrap:break-word;
  5456. text-transform:none;
  5457. visibility:hidden;
  5458. }
  5459. #u25483_input {
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:125px;
  5464. height:23px;
  5465. padding:2px 2px 2px 2px;
  5466. font-family:'ArialMT', 'Arial', sans-serif;
  5467. font-weight:400;
  5468. font-style:normal;
  5469. font-size:11px;
  5470. letter-spacing:normal;
  5471. color:#AAAAAA;
  5472. vertical-align:none;
  5473. text-align:left;
  5474. text-transform:none;
  5475. background-color:transparent;
  5476. border-color:transparent;
  5477. }
  5478. #u25483_input.disabled {
  5479. position:absolute;
  5480. left:0px;
  5481. top:0px;
  5482. width:125px;
  5483. height:23px;
  5484. padding:2px 2px 2px 2px;
  5485. font-family:'ArialMT', 'Arial', sans-serif;
  5486. font-weight:400;
  5487. font-style:normal;
  5488. font-size:11px;
  5489. letter-spacing:normal;
  5490. color:#AAAAAA;
  5491. vertical-align:none;
  5492. text-align:left;
  5493. text-transform:none;
  5494. background-color:transparent;
  5495. border-color:transparent;
  5496. }
  5497. #u25483_div {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:0px;
  5502. width:125px;
  5503. height:23px;
  5504. background:inherit;
  5505. background-color:rgba(255, 255, 255, 1);
  5506. border:none;
  5507. border-radius:0px;
  5508. -moz-box-shadow:none;
  5509. -webkit-box-shadow:none;
  5510. box-shadow:none;
  5511. font-size:11px;
  5512. color:#AAAAAA;
  5513. }
  5514. #u25483 {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:360px;
  5518. top:108px;
  5519. width:125px;
  5520. height:23px;
  5521. display:flex;
  5522. font-size:11px;
  5523. color:#AAAAAA;
  5524. }
  5525. #u25483 .text {
  5526. position:absolute;
  5527. align-self:flex-start;
  5528. padding:2px 2px 2px 2px;
  5529. box-sizing:border-box;
  5530. width:100%;
  5531. }
  5532. #u25483_div.disabled {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:0px;
  5536. top:0px;
  5537. width:125px;
  5538. height:23px;
  5539. background:inherit;
  5540. background-color:rgba(240, 240, 240, 1);
  5541. border:none;
  5542. border-radius:0px;
  5543. -moz-box-shadow:none;
  5544. -webkit-box-shadow:none;
  5545. box-shadow:none;
  5546. font-size:11px;
  5547. color:#AAAAAA;
  5548. }
  5549. #u25483.disabled {
  5550. }
  5551. .u25483_input_option {
  5552. font-size:11px;
  5553. }
  5554. #u25484 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:0px;
  5560. height:0px;
  5561. }
  5562. #u25485_div {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:140px;
  5568. height:30px;
  5569. background:inherit;
  5570. background-color:rgba(255, 255, 255, 1);
  5571. box-sizing:border-box;
  5572. border-width:1px;
  5573. border-style:solid;
  5574. border-color:rgba(215, 215, 215, 1);
  5575. border-radius:4px;
  5576. -moz-box-shadow:none;
  5577. -webkit-box-shadow:none;
  5578. box-shadow:none;
  5579. font-size:11px;
  5580. }
  5581. #u25485 {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:804px;
  5585. top:106px;
  5586. width:140px;
  5587. height:30px;
  5588. display:flex;
  5589. font-size:11px;
  5590. }
  5591. #u25485 .text {
  5592. position:absolute;
  5593. align-self:center;
  5594. padding:2px 2px 2px 2px;
  5595. box-sizing:border-box;
  5596. width:100%;
  5597. }
  5598. #u25485_text {
  5599. border-width:0px;
  5600. word-wrap:break-word;
  5601. text-transform:none;
  5602. visibility:hidden;
  5603. }
  5604. #u25486_input {
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:125px;
  5609. height:23px;
  5610. padding:2px 2px 2px 2px;
  5611. font-family:'ArialMT', 'Arial', sans-serif;
  5612. font-weight:400;
  5613. font-style:normal;
  5614. font-size:11px;
  5615. letter-spacing:normal;
  5616. color:#AAAAAA;
  5617. vertical-align:none;
  5618. text-align:left;
  5619. text-transform:none;
  5620. background-color:transparent;
  5621. border-color:transparent;
  5622. }
  5623. #u25486_input.disabled {
  5624. position:absolute;
  5625. left:0px;
  5626. top:0px;
  5627. width:125px;
  5628. height:23px;
  5629. padding:2px 2px 2px 2px;
  5630. font-family:'ArialMT', 'Arial', sans-serif;
  5631. font-weight:400;
  5632. font-style:normal;
  5633. font-size:11px;
  5634. letter-spacing:normal;
  5635. color:#AAAAAA;
  5636. vertical-align:none;
  5637. text-align:left;
  5638. text-transform:none;
  5639. background-color:transparent;
  5640. border-color:transparent;
  5641. }
  5642. #u25486_div {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:125px;
  5648. height:23px;
  5649. background:inherit;
  5650. background-color:rgba(255, 255, 255, 1);
  5651. border:none;
  5652. border-radius:0px;
  5653. -moz-box-shadow:none;
  5654. -webkit-box-shadow:none;
  5655. box-shadow:none;
  5656. font-size:11px;
  5657. color:#AAAAAA;
  5658. }
  5659. #u25486 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:810px;
  5663. top:108px;
  5664. width:125px;
  5665. height:23px;
  5666. display:flex;
  5667. font-size:11px;
  5668. color:#AAAAAA;
  5669. }
  5670. #u25486 .text {
  5671. position:absolute;
  5672. align-self:flex-start;
  5673. padding:2px 2px 2px 2px;
  5674. box-sizing:border-box;
  5675. width:100%;
  5676. }
  5677. #u25486_div.disabled {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:125px;
  5683. height:23px;
  5684. background:inherit;
  5685. background-color:rgba(240, 240, 240, 1);
  5686. border:none;
  5687. border-radius:0px;
  5688. -moz-box-shadow:none;
  5689. -webkit-box-shadow:none;
  5690. box-shadow:none;
  5691. font-size:11px;
  5692. color:#AAAAAA;
  5693. }
  5694. #u25486.disabled {
  5695. }
  5696. .u25486_input_option {
  5697. font-size:11px;
  5698. }
  5699. #u25487 {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:0px;
  5705. height:0px;
  5706. }
  5707. #u25488_div {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:140px;
  5713. height:28px;
  5714. background:inherit;
  5715. background-color:rgba(255, 255, 255, 1);
  5716. box-sizing:border-box;
  5717. border-width:1px;
  5718. border-style:solid;
  5719. border-color:rgba(201, 201, 201, 1);
  5720. border-radius:4px;
  5721. -moz-box-shadow:none;
  5722. -webkit-box-shadow:none;
  5723. box-shadow:none;
  5724. font-family:'Microsoft YaHei', sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:14px;
  5728. color:#CCCCCC;
  5729. text-align:left;
  5730. }
  5731. #u25488 {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:1254px;
  5735. top:106px;
  5736. width:140px;
  5737. height:28px;
  5738. display:flex;
  5739. font-family:'Microsoft YaHei', sans-serif;
  5740. font-weight:400;
  5741. font-style:normal;
  5742. font-size:14px;
  5743. color:#CCCCCC;
  5744. text-align:left;
  5745. }
  5746. #u25488 .text {
  5747. position:absolute;
  5748. align-self:center;
  5749. padding:2px 8px 2px 8px;
  5750. box-sizing:border-box;
  5751. width:100%;
  5752. }
  5753. #u25488_text {
  5754. border-width:0px;
  5755. word-wrap:break-word;
  5756. text-transform:none;
  5757. visibility:hidden;
  5758. }
  5759. #u25489_input {
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:113px;
  5764. height:26px;
  5765. padding:2px 2px 2px 2px;
  5766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5767. font-weight:400;
  5768. font-style:normal;
  5769. font-size:14px;
  5770. letter-spacing:normal;
  5771. color:#000000;
  5772. vertical-align:none;
  5773. text-align:left;
  5774. text-transform:none;
  5775. background-color:transparent;
  5776. border-color:transparent;
  5777. }
  5778. #u25489_input.disabled {
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:113px;
  5783. height:26px;
  5784. padding:2px 2px 2px 2px;
  5785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. font-size:14px;
  5789. letter-spacing:normal;
  5790. color:#000000;
  5791. vertical-align:none;
  5792. text-align:left;
  5793. text-transform:none;
  5794. background-color:transparent;
  5795. border-color:transparent;
  5796. }
  5797. #u25489_div {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:113px;
  5803. height:26px;
  5804. background:inherit;
  5805. background-color:rgba(255, 255, 255, 1);
  5806. border:none;
  5807. border-radius:0px;
  5808. -moz-box-shadow:none;
  5809. -webkit-box-shadow:none;
  5810. box-shadow:none;
  5811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:14px;
  5815. }
  5816. #u25489 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:1259px;
  5820. top:107px;
  5821. width:113px;
  5822. height:26px;
  5823. display:flex;
  5824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5825. font-weight:400;
  5826. font-style:normal;
  5827. font-size:14px;
  5828. }
  5829. #u25489 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:2px 2px 2px 2px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u25489_div.disabled {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:113px;
  5842. height:26px;
  5843. background:inherit;
  5844. background-color:rgba(240, 240, 240, 1);
  5845. border:none;
  5846. border-radius:0px;
  5847. -moz-box-shadow:none;
  5848. -webkit-box-shadow:none;
  5849. box-shadow:none;
  5850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5851. font-weight:400;
  5852. font-style:normal;
  5853. font-size:14px;
  5854. }
  5855. #u25489.disabled {
  5856. }
  5857. #u25490_img {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:0px;
  5861. top:0px;
  5862. width:12px;
  5863. height:15px;
  5864. }
  5865. #u25490 {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:1372px;
  5869. top:113px;
  5870. width:12px;
  5871. height:15px;
  5872. display:flex;
  5873. }
  5874. #u25490 .text {
  5875. position:absolute;
  5876. align-self:center;
  5877. padding:2px 2px 2px 2px;
  5878. box-sizing:border-box;
  5879. width:100%;
  5880. }
  5881. #u25490_text {
  5882. border-width:0px;
  5883. word-wrap:break-word;
  5884. text-transform:none;
  5885. visibility:hidden;
  5886. }
  5887. #u25491 {
  5888. border-width:0px;
  5889. position:absolute;
  5890. left:0px;
  5891. top:0px;
  5892. width:0px;
  5893. height:0px;
  5894. }
  5895. #u25492_div {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:0px;
  5899. top:0px;
  5900. width:140px;
  5901. height:30px;
  5902. background:inherit;
  5903. background-color:rgba(255, 255, 255, 1);
  5904. box-sizing:border-box;
  5905. border-width:1px;
  5906. border-style:solid;
  5907. border-color:rgba(201, 201, 201, 1);
  5908. border-radius:4px;
  5909. -moz-box-shadow:none;
  5910. -webkit-box-shadow:none;
  5911. box-shadow:none;
  5912. font-family:'Microsoft YaHei', sans-serif;
  5913. font-weight:400;
  5914. font-style:normal;
  5915. font-size:14px;
  5916. color:#CCCCCC;
  5917. text-align:left;
  5918. }
  5919. #u25492 {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:954px;
  5923. top:106px;
  5924. width:140px;
  5925. height:30px;
  5926. display:flex;
  5927. font-family:'Microsoft YaHei', sans-serif;
  5928. font-weight:400;
  5929. font-style:normal;
  5930. font-size:14px;
  5931. color:#CCCCCC;
  5932. text-align:left;
  5933. }
  5934. #u25492 .text {
  5935. position:absolute;
  5936. align-self:center;
  5937. padding:2px 8px 2px 8px;
  5938. box-sizing:border-box;
  5939. width:100%;
  5940. }
  5941. #u25492_text {
  5942. border-width:0px;
  5943. word-wrap:break-word;
  5944. text-transform:none;
  5945. visibility:hidden;
  5946. }
  5947. #u25493_input {
  5948. position:absolute;
  5949. left:0px;
  5950. top:0px;
  5951. width:126px;
  5952. height:25px;
  5953. padding:2px 2px 2px 2px;
  5954. font-family:'Microsoft YaHei', sans-serif;
  5955. font-weight:400;
  5956. font-style:normal;
  5957. font-size:10px;
  5958. letter-spacing:normal;
  5959. color:#000000;
  5960. vertical-align:none;
  5961. text-align:left;
  5962. text-transform:none;
  5963. background-color:transparent;
  5964. border-color:transparent;
  5965. }
  5966. #u25493_input.disabled {
  5967. position:absolute;
  5968. left:0px;
  5969. top:0px;
  5970. width:126px;
  5971. height:25px;
  5972. padding:2px 2px 2px 2px;
  5973. font-family:'Microsoft YaHei', sans-serif;
  5974. font-weight:400;
  5975. font-style:normal;
  5976. font-size:10px;
  5977. letter-spacing:normal;
  5978. color:#000000;
  5979. vertical-align:none;
  5980. text-align:left;
  5981. text-transform:none;
  5982. background-color:transparent;
  5983. border-color:transparent;
  5984. }
  5985. #u25493_div {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:0px;
  5989. top:0px;
  5990. width:126px;
  5991. height:25px;
  5992. background:inherit;
  5993. background-color:rgba(255, 255, 255, 1);
  5994. border:none;
  5995. border-radius:0px;
  5996. -moz-box-shadow:none;
  5997. -webkit-box-shadow:none;
  5998. box-shadow:none;
  5999. font-family:'Microsoft YaHei', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:10px;
  6003. }
  6004. #u25493 {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:962px;
  6008. top:107px;
  6009. width:126px;
  6010. height:25px;
  6011. display:flex;
  6012. font-family:'Microsoft YaHei', sans-serif;
  6013. font-weight:400;
  6014. font-style:normal;
  6015. font-size:10px;
  6016. }
  6017. #u25493 .text {
  6018. position:absolute;
  6019. align-self:center;
  6020. padding:2px 2px 2px 2px;
  6021. box-sizing:border-box;
  6022. width:100%;
  6023. }
  6024. #u25493_div.disabled {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:126px;
  6030. height:25px;
  6031. background:inherit;
  6032. background-color:rgba(240, 240, 240, 1);
  6033. border:none;
  6034. border-radius:0px;
  6035. -moz-box-shadow:none;
  6036. -webkit-box-shadow:none;
  6037. box-shadow:none;
  6038. font-family:'Microsoft YaHei', sans-serif;
  6039. font-weight:400;
  6040. font-style:normal;
  6041. font-size:10px;
  6042. }
  6043. #u25493.disabled {
  6044. }
  6045. #u25494 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:0px;
  6049. top:0px;
  6050. width:0px;
  6051. height:0px;
  6052. }
  6053. #u25495_div {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:140px;
  6059. height:30px;
  6060. background:inherit;
  6061. background-color:rgba(255, 255, 255, 1);
  6062. box-sizing:border-box;
  6063. border-width:1px;
  6064. border-style:solid;
  6065. border-color:rgba(215, 215, 215, 1);
  6066. border-radius:4px;
  6067. -moz-box-shadow:none;
  6068. -webkit-box-shadow:none;
  6069. box-shadow:none;
  6070. font-size:11px;
  6071. }
  6072. #u25495 {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:504px;
  6076. top:106px;
  6077. width:140px;
  6078. height:30px;
  6079. display:flex;
  6080. font-size:11px;
  6081. }
  6082. #u25495 .text {
  6083. position:absolute;
  6084. align-self:center;
  6085. padding:2px 2px 2px 2px;
  6086. box-sizing:border-box;
  6087. width:100%;
  6088. }
  6089. #u25495_text {
  6090. border-width:0px;
  6091. word-wrap:break-word;
  6092. text-transform:none;
  6093. visibility:hidden;
  6094. }
  6095. #u25496_input {
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:125px;
  6100. height:23px;
  6101. padding:2px 2px 2px 2px;
  6102. font-family:'ArialMT', 'Arial', sans-serif;
  6103. font-weight:400;
  6104. font-style:normal;
  6105. font-size:11px;
  6106. letter-spacing:normal;
  6107. color:#AAAAAA;
  6108. vertical-align:none;
  6109. text-align:left;
  6110. text-transform:none;
  6111. background-color:transparent;
  6112. border-color:transparent;
  6113. }
  6114. #u25496_input.disabled {
  6115. position:absolute;
  6116. left:0px;
  6117. top:0px;
  6118. width:125px;
  6119. height:23px;
  6120. padding:2px 2px 2px 2px;
  6121. font-family:'ArialMT', 'Arial', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. font-size:11px;
  6125. letter-spacing:normal;
  6126. color:#AAAAAA;
  6127. vertical-align:none;
  6128. text-align:left;
  6129. text-transform:none;
  6130. background-color:transparent;
  6131. border-color:transparent;
  6132. }
  6133. #u25496_div {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:125px;
  6139. height:23px;
  6140. background:inherit;
  6141. background-color:rgba(255, 255, 255, 1);
  6142. border:none;
  6143. border-radius:0px;
  6144. -moz-box-shadow:none;
  6145. -webkit-box-shadow:none;
  6146. box-shadow:none;
  6147. font-size:11px;
  6148. color:#AAAAAA;
  6149. }
  6150. #u25496 {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:510px;
  6154. top:108px;
  6155. width:125px;
  6156. height:23px;
  6157. display:flex;
  6158. font-size:11px;
  6159. color:#AAAAAA;
  6160. }
  6161. #u25496 .text {
  6162. position:absolute;
  6163. align-self:flex-start;
  6164. padding:2px 2px 2px 2px;
  6165. box-sizing:border-box;
  6166. width:100%;
  6167. }
  6168. #u25496_div.disabled {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:0px;
  6172. top:0px;
  6173. width:125px;
  6174. height:23px;
  6175. background:inherit;
  6176. background-color:rgba(240, 240, 240, 1);
  6177. border:none;
  6178. border-radius:0px;
  6179. -moz-box-shadow:none;
  6180. -webkit-box-shadow:none;
  6181. box-shadow:none;
  6182. font-size:11px;
  6183. color:#AAAAAA;
  6184. }
  6185. #u25496.disabled {
  6186. }
  6187. .u25496_input_option {
  6188. font-size:11px;
  6189. }
  6190. #u25497 {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:0px;
  6194. top:0px;
  6195. width:0px;
  6196. height:0px;
  6197. }
  6198. #u25498_div {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:1220px;
  6204. height:80px;
  6205. background:inherit;
  6206. background-color:rgba(242, 242, 242, 1);
  6207. border:none;
  6208. border-radius:5px;
  6209. -moz-box-shadow:none;
  6210. -webkit-box-shadow:none;
  6211. box-shadow:none;
  6212. color:#1890FF;
  6213. }
  6214. #u25498 {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:354px;
  6218. top:156px;
  6219. width:1220px;
  6220. height:80px;
  6221. display:flex;
  6222. color:#1890FF;
  6223. }
  6224. #u25498 .text {
  6225. position:absolute;
  6226. align-self:center;
  6227. padding:2px 2px 2px 2px;
  6228. box-sizing:border-box;
  6229. width:100%;
  6230. }
  6231. #u25498_text {
  6232. border-width:0px;
  6233. word-wrap:break-word;
  6234. text-transform:none;
  6235. visibility:hidden;
  6236. }
  6237. #u25499 {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:0px;
  6241. top:0px;
  6242. width:0px;
  6243. height:0px;
  6244. }
  6245. #u25500_div {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:108px;
  6251. height:20px;
  6252. background:inherit;
  6253. background-color:rgba(255, 255, 255, 0);
  6254. border:none;
  6255. border-radius:0px;
  6256. -moz-box-shadow:none;
  6257. -webkit-box-shadow:none;
  6258. box-shadow:none;
  6259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:14px;
  6263. }
  6264. #u25500 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:386px;
  6268. top:186px;
  6269. width:108px;
  6270. height:20px;
  6271. display:flex;
  6272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6273. font-weight:400;
  6274. font-style:normal;
  6275. font-size:14px;
  6276. }
  6277. #u25500 .text {
  6278. position:absolute;
  6279. align-self:flex-start;
  6280. padding:0px 0px 0px 0px;
  6281. box-sizing:border-box;
  6282. width:100%;
  6283. }
  6284. #u25500_text {
  6285. border-width:0px;
  6286. white-space:nowrap;
  6287. text-transform:none;
  6288. }
  6289. #u25501_div {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:110px;
  6295. height:40px;
  6296. background:inherit;
  6297. background-color:rgba(255, 255, 255, 0);
  6298. border:none;
  6299. border-radius:0px;
  6300. -moz-box-shadow:none;
  6301. -webkit-box-shadow:none;
  6302. box-shadow:none;
  6303. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6304. font-weight:650;
  6305. font-style:normal;
  6306. font-size:28px;
  6307. }
  6308. #u25501 {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:514px;
  6312. top:176px;
  6313. width:110px;
  6314. height:40px;
  6315. display:flex;
  6316. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6317. font-weight:650;
  6318. font-style:normal;
  6319. font-size:28px;
  6320. }
  6321. #u25501 .text {
  6322. position:absolute;
  6323. align-self:flex-start;
  6324. padding:0px 0px 0px 0px;
  6325. box-sizing:border-box;
  6326. width:100%;
  6327. }
  6328. #u25501_text {
  6329. border-width:0px;
  6330. white-space:nowrap;
  6331. text-transform:none;
  6332. }
  6333. #u25502 {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:0px;
  6339. height:0px;
  6340. }
  6341. #u25503_div {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:108px;
  6347. height:20px;
  6348. background:inherit;
  6349. background-color:rgba(255, 255, 255, 0);
  6350. border:none;
  6351. border-radius:0px;
  6352. -moz-box-shadow:none;
  6353. -webkit-box-shadow:none;
  6354. box-shadow:none;
  6355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:14px;
  6359. }
  6360. #u25503 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:694px;
  6364. top:186px;
  6365. width:108px;
  6366. height:20px;
  6367. display:flex;
  6368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6369. font-weight:400;
  6370. font-style:normal;
  6371. font-size:14px;
  6372. }
  6373. #u25503 .text {
  6374. position:absolute;
  6375. align-self:flex-start;
  6376. padding:0px 0px 0px 0px;
  6377. box-sizing:border-box;
  6378. width:100%;
  6379. }
  6380. #u25503_text {
  6381. border-width:0px;
  6382. white-space:nowrap;
  6383. text-transform:none;
  6384. }
  6385. #u25504_div {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:0px;
  6389. top:0px;
  6390. width:51px;
  6391. height:40px;
  6392. background:inherit;
  6393. background-color:rgba(255, 255, 255, 0);
  6394. border:none;
  6395. border-radius:0px;
  6396. -moz-box-shadow:none;
  6397. -webkit-box-shadow:none;
  6398. box-shadow:none;
  6399. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6400. font-weight:650;
  6401. font-style:normal;
  6402. font-size:28px;
  6403. }
  6404. #u25504 {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:822px;
  6408. top:176px;
  6409. width:51px;
  6410. height:40px;
  6411. display:flex;
  6412. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6413. font-weight:650;
  6414. font-style:normal;
  6415. font-size:28px;
  6416. }
  6417. #u25504 .text {
  6418. position:absolute;
  6419. align-self:flex-start;
  6420. padding:0px 0px 0px 0px;
  6421. box-sizing:border-box;
  6422. width:100%;
  6423. }
  6424. #u25504_text {
  6425. border-width:0px;
  6426. white-space:nowrap;
  6427. text-transform:none;
  6428. }
  6429. #u25505 {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:0px;
  6433. top:0px;
  6434. width:0px;
  6435. height:0px;
  6436. }
  6437. #u25506_div {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:0px;
  6441. top:0px;
  6442. width:200px;
  6443. height:1187px;
  6444. background:inherit;
  6445. background-color:rgba(255, 255, 255, 1);
  6446. border:none;
  6447. border-radius:0px;
  6448. -moz-box-shadow:none;
  6449. -webkit-box-shadow:none;
  6450. box-shadow:none;
  6451. }
  6452. #u25506 {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:120px;
  6456. top:50px;
  6457. width:200px;
  6458. height:1187px;
  6459. display:flex;
  6460. }
  6461. #u25506 .text {
  6462. position:absolute;
  6463. align-self:center;
  6464. padding:2px 2px 2px 2px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u25506_text {
  6469. border-width:0px;
  6470. word-wrap:break-word;
  6471. text-transform:none;
  6472. visibility:hidden;
  6473. }
  6474. #u25507_div {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:200px;
  6480. height:60px;
  6481. background:inherit;
  6482. background-color:rgba(224, 231, 247, 1);
  6483. border:none;
  6484. border-radius:0px;
  6485. -moz-box-shadow:none;
  6486. -webkit-box-shadow:none;
  6487. box-shadow:none;
  6488. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6489. font-weight:500;
  6490. font-style:normal;
  6491. font-size:18px;
  6492. }
  6493. #u25507 {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:120px;
  6497. top:50px;
  6498. width:200px;
  6499. height:60px;
  6500. display:flex;
  6501. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6502. font-weight:500;
  6503. font-style:normal;
  6504. font-size:18px;
  6505. }
  6506. #u25507 .text {
  6507. position:absolute;
  6508. align-self:center;
  6509. padding:0px 0px 0px 20px;
  6510. box-sizing:border-box;
  6511. width:100%;
  6512. }
  6513. #u25507_text {
  6514. border-width:0px;
  6515. word-wrap:break-word;
  6516. text-transform:none;
  6517. }
  6518. #u25508 {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:120px;
  6522. top:130px;
  6523. width:200px;
  6524. height:1076px;
  6525. }
  6526. #u25508_state0 {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:200px;
  6532. height:1076px;
  6533. overflow:auto;
  6534. -webkit-overflow-scrolling:touch;
  6535. -ms-overflow-x:hidden;
  6536. overflow-x:hidden;
  6537. background-image:none;
  6538. border:none;
  6539. border-radius:0px;
  6540. -moz-box-shadow:none;
  6541. -webkit-box-shadow:none;
  6542. box-shadow:none;
  6543. }
  6544. #u25508_state0_content {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:1px;
  6550. height:1px;
  6551. }
  6552. #u25509_div {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:0px;
  6556. top:0px;
  6557. width:97px;
  6558. height:22px;
  6559. background:inherit;
  6560. background-color:rgba(255, 255, 255, 0);
  6561. border:none;
  6562. border-radius:0px;
  6563. -moz-box-shadow:none;
  6564. -webkit-box-shadow:none;
  6565. box-shadow:none;
  6566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6567. font-weight:400;
  6568. font-style:normal;
  6569. font-size:16px;
  6570. }
  6571. #u25509 {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:27px;
  6575. top:37px;
  6576. width:97px;
  6577. height:22px;
  6578. display:flex;
  6579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6580. font-weight:400;
  6581. font-style:normal;
  6582. font-size:16px;
  6583. }
  6584. #u25509 .text {
  6585. position:absolute;
  6586. align-self:flex-start;
  6587. padding:0px 0px 0px 0px;
  6588. box-sizing:border-box;
  6589. width:100%;
  6590. }
  6591. #u25509_text {
  6592. border-width:0px;
  6593. word-wrap:break-word;
  6594. text-transform:none;
  6595. }
  6596. #u25510_img {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:201px;
  6602. height:2px;
  6603. }
  6604. #u25510 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:125px;
  6609. width:200px;
  6610. height:1px;
  6611. display:flex;
  6612. }
  6613. #u25510 .text {
  6614. position:absolute;
  6615. align-self:center;
  6616. padding:2px 2px 2px 2px;
  6617. box-sizing:border-box;
  6618. width:100%;
  6619. }
  6620. #u25510_text {
  6621. border-width:0px;
  6622. word-wrap:break-word;
  6623. text-transform:none;
  6624. visibility:hidden;
  6625. }
  6626. #u25511_div {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:97px;
  6632. height:22px;
  6633. background:inherit;
  6634. background-color:rgba(255, 255, 255, 0);
  6635. border:none;
  6636. border-radius:0px;
  6637. -moz-box-shadow:none;
  6638. -webkit-box-shadow:none;
  6639. box-shadow:none;
  6640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6641. font-weight:400;
  6642. font-style:normal;
  6643. font-size:16px;
  6644. }
  6645. #u25511 {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:27px;
  6649. top:78px;
  6650. width:97px;
  6651. height:22px;
  6652. display:flex;
  6653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6654. font-weight:400;
  6655. font-style:normal;
  6656. font-size:16px;
  6657. }
  6658. #u25511 .text {
  6659. position:absolute;
  6660. align-self:flex-start;
  6661. padding:0px 0px 0px 0px;
  6662. box-sizing:border-box;
  6663. width:100%;
  6664. }
  6665. #u25511_text {
  6666. border-width:0px;
  6667. white-space:nowrap;
  6668. text-transform:none;
  6669. }
  6670. #u25512_div {
  6671. border-width:0px;
  6672. position:absolute;
  6673. left:0px;
  6674. top:0px;
  6675. width:65px;
  6676. height:22px;
  6677. background:inherit;
  6678. background-color:rgba(255, 255, 255, 0);
  6679. border:none;
  6680. border-radius:0px;
  6681. -moz-box-shadow:none;
  6682. -webkit-box-shadow:none;
  6683. box-shadow:none;
  6684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6685. font-weight:400;
  6686. font-style:normal;
  6687. font-size:16px;
  6688. }
  6689. #u25512 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:27px;
  6693. top:182px;
  6694. width:65px;
  6695. height:22px;
  6696. display:flex;
  6697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6698. font-weight:400;
  6699. font-style:normal;
  6700. font-size:16px;
  6701. }
  6702. #u25512 .text {
  6703. position:absolute;
  6704. align-self:flex-start;
  6705. padding:0px 0px 0px 0px;
  6706. box-sizing:border-box;
  6707. width:100%;
  6708. }
  6709. #u25512_text {
  6710. border-width:0px;
  6711. white-space:nowrap;
  6712. text-transform:none;
  6713. }
  6714. #u25513_div {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:0px;
  6718. top:0px;
  6719. width:49px;
  6720. height:17px;
  6721. background:inherit;
  6722. background-color:rgba(255, 255, 255, 0);
  6723. border:none;
  6724. border-radius:0px;
  6725. -moz-box-shadow:none;
  6726. -webkit-box-shadow:none;
  6727. box-shadow:none;
  6728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6729. font-weight:400;
  6730. font-style:normal;
  6731. font-size:12px;
  6732. color:#AAAAAA;
  6733. }
  6734. #u25513 {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:27px;
  6738. top:145px;
  6739. width:49px;
  6740. height:17px;
  6741. display:flex;
  6742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6743. font-weight:400;
  6744. font-style:normal;
  6745. font-size:12px;
  6746. color:#AAAAAA;
  6747. }
  6748. #u25513 .text {
  6749. position:absolute;
  6750. align-self:flex-start;
  6751. padding:0px 0px 0px 0px;
  6752. box-sizing:border-box;
  6753. width:100%;
  6754. }
  6755. #u25513_text {
  6756. border-width:0px;
  6757. white-space:nowrap;
  6758. text-transform:none;
  6759. }
  6760. #u25514_div {
  6761. border-width:0px;
  6762. position:absolute;
  6763. left:0px;
  6764. top:0px;
  6765. width:49px;
  6766. height:17px;
  6767. background:inherit;
  6768. background-color:rgba(255, 255, 255, 0);
  6769. border:none;
  6770. border-radius:0px;
  6771. -moz-box-shadow:none;
  6772. -webkit-box-shadow:none;
  6773. box-shadow:none;
  6774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6775. font-weight:400;
  6776. font-style:normal;
  6777. font-size:12px;
  6778. color:#AAAAAA;
  6779. }
  6780. #u25514 {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:27px;
  6784. top:0px;
  6785. width:49px;
  6786. height:17px;
  6787. display:flex;
  6788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6789. font-weight:400;
  6790. font-style:normal;
  6791. font-size:12px;
  6792. color:#AAAAAA;
  6793. }
  6794. #u25514 .text {
  6795. position:absolute;
  6796. align-self:flex-start;
  6797. padding:0px 0px 0px 0px;
  6798. box-sizing:border-box;
  6799. width:100%;
  6800. }
  6801. #u25514_text {
  6802. border-width:0px;
  6803. white-space:nowrap;
  6804. text-transform:none;
  6805. }
  6806. #u25515_img {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:0px;
  6810. top:0px;
  6811. width:201px;
  6812. height:2px;
  6813. }
  6814. #u25515 {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:0px;
  6818. top:1061px;
  6819. width:200px;
  6820. height:1px;
  6821. display:flex;
  6822. }
  6823. #u25515 .text {
  6824. position:absolute;
  6825. align-self:center;
  6826. padding:2px 2px 2px 2px;
  6827. box-sizing:border-box;
  6828. width:100%;
  6829. }
  6830. #u25515_text {
  6831. border-width:0px;
  6832. word-wrap:break-word;
  6833. text-transform:none;
  6834. visibility:hidden;
  6835. }
  6836. #u25516_div {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:65px;
  6842. height:22px;
  6843. background:inherit;
  6844. background-color:rgba(255, 255, 255, 0);
  6845. border:none;
  6846. border-radius:0px;
  6847. -moz-box-shadow:none;
  6848. -webkit-box-shadow:none;
  6849. box-shadow:none;
  6850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:16px;
  6854. }
  6855. #u25516 {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:27px;
  6859. top:1118px;
  6860. width:65px;
  6861. height:22px;
  6862. display:flex;
  6863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. font-size:16px;
  6867. }
  6868. #u25516 .text {
  6869. position:absolute;
  6870. align-self:flex-start;
  6871. padding:0px 0px 0px 0px;
  6872. box-sizing:border-box;
  6873. width:100%;
  6874. }
  6875. #u25516_text {
  6876. border-width:0px;
  6877. white-space:nowrap;
  6878. text-transform:none;
  6879. }
  6880. #u25517_div {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:0px;
  6884. top:0px;
  6885. width:49px;
  6886. height:17px;
  6887. background:inherit;
  6888. background-color:rgba(255, 255, 255, 0);
  6889. border:none;
  6890. border-radius:0px;
  6891. -moz-box-shadow:none;
  6892. -webkit-box-shadow:none;
  6893. box-shadow:none;
  6894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6895. font-weight:400;
  6896. font-style:normal;
  6897. font-size:12px;
  6898. color:#AAAAAA;
  6899. }
  6900. #u25517 {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:27px;
  6904. top:1081px;
  6905. width:49px;
  6906. height:17px;
  6907. display:flex;
  6908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6909. font-weight:400;
  6910. font-style:normal;
  6911. font-size:12px;
  6912. color:#AAAAAA;
  6913. }
  6914. #u25517 .text {
  6915. position:absolute;
  6916. align-self:flex-start;
  6917. padding:0px 0px 0px 0px;
  6918. box-sizing:border-box;
  6919. width:100%;
  6920. }
  6921. #u25517_text {
  6922. border-width:0px;
  6923. white-space:nowrap;
  6924. text-transform:none;
  6925. }
  6926. #u25518_img {
  6927. border-width:0px;
  6928. position:absolute;
  6929. left:0px;
  6930. top:0px;
  6931. width:201px;
  6932. height:2px;
  6933. }
  6934. #u25518 {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:351px;
  6939. width:200px;
  6940. height:1px;
  6941. display:flex;
  6942. }
  6943. #u25518 .text {
  6944. position:absolute;
  6945. align-self:center;
  6946. padding:2px 2px 2px 2px;
  6947. box-sizing:border-box;
  6948. width:100%;
  6949. }
  6950. #u25518_text {
  6951. border-width:0px;
  6952. word-wrap:break-word;
  6953. text-transform:none;
  6954. visibility:hidden;
  6955. }
  6956. #u25519_div {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:65px;
  6962. height:22px;
  6963. background:inherit;
  6964. background-color:rgba(255, 255, 255, 0);
  6965. border:none;
  6966. border-radius:0px;
  6967. -moz-box-shadow:none;
  6968. -webkit-box-shadow:none;
  6969. box-shadow:none;
  6970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6971. font-weight:400;
  6972. font-style:normal;
  6973. font-size:16px;
  6974. }
  6975. #u25519 {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:27px;
  6979. top:408px;
  6980. width:65px;
  6981. height:22px;
  6982. display:flex;
  6983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6984. font-weight:400;
  6985. font-style:normal;
  6986. font-size:16px;
  6987. }
  6988. #u25519 .text {
  6989. position:absolute;
  6990. align-self:flex-start;
  6991. padding:0px 0px 0px 0px;
  6992. box-sizing:border-box;
  6993. width:100%;
  6994. }
  6995. #u25519_text {
  6996. border-width:0px;
  6997. white-space:nowrap;
  6998. text-transform:none;
  6999. }
  7000. #u25520_div {
  7001. border-width:0px;
  7002. position:absolute;
  7003. left:0px;
  7004. top:0px;
  7005. width:49px;
  7006. height:17px;
  7007. background:inherit;
  7008. background-color:rgba(255, 255, 255, 0);
  7009. border:none;
  7010. border-radius:0px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:12px;
  7018. color:#AAAAAA;
  7019. }
  7020. #u25520 {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:27px;
  7024. top:371px;
  7025. width:49px;
  7026. height:17px;
  7027. display:flex;
  7028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7029. font-weight:400;
  7030. font-style:normal;
  7031. font-size:12px;
  7032. color:#AAAAAA;
  7033. }
  7034. #u25520 .text {
  7035. position:absolute;
  7036. align-self:flex-start;
  7037. padding:0px 0px 0px 0px;
  7038. box-sizing:border-box;
  7039. width:100%;
  7040. }
  7041. #u25520_text {
  7042. border-width:0px;
  7043. white-space:nowrap;
  7044. text-transform:none;
  7045. }
  7046. #u25521_div {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:0px;
  7050. top:0px;
  7051. width:97px;
  7052. height:22px;
  7053. background:inherit;
  7054. background-color:rgba(255, 255, 255, 0);
  7055. border:none;
  7056. border-radius:0px;
  7057. -moz-box-shadow:none;
  7058. -webkit-box-shadow:none;
  7059. box-shadow:none;
  7060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7061. font-weight:400;
  7062. font-style:normal;
  7063. font-size:16px;
  7064. }
  7065. #u25521 {
  7066. border-width:0px;
  7067. position:absolute;
  7068. left:27px;
  7069. top:449px;
  7070. width:97px;
  7071. height:22px;
  7072. display:flex;
  7073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7074. font-weight:400;
  7075. font-style:normal;
  7076. font-size:16px;
  7077. }
  7078. #u25521 .text {
  7079. position:absolute;
  7080. align-self:flex-start;
  7081. padding:0px 0px 0px 0px;
  7082. box-sizing:border-box;
  7083. width:100%;
  7084. }
  7085. #u25521_text {
  7086. border-width:0px;
  7087. word-wrap:break-word;
  7088. text-transform:none;
  7089. }
  7090. #u25522_div {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:0px;
  7094. top:0px;
  7095. width:65px;
  7096. height:22px;
  7097. background:inherit;
  7098. background-color:rgba(255, 255, 255, 0);
  7099. border:none;
  7100. border-radius:0px;
  7101. -moz-box-shadow:none;
  7102. -webkit-box-shadow:none;
  7103. box-shadow:none;
  7104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:16px;
  7108. }
  7109. #u25522 {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:27px;
  7113. top:224px;
  7114. width:65px;
  7115. height:22px;
  7116. display:flex;
  7117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7118. font-weight:400;
  7119. font-style:normal;
  7120. font-size:16px;
  7121. }
  7122. #u25522 .text {
  7123. position:absolute;
  7124. align-self:flex-start;
  7125. padding:0px 0px 0px 0px;
  7126. box-sizing:border-box;
  7127. width:100%;
  7128. }
  7129. #u25522_text {
  7130. border-width:0px;
  7131. white-space:nowrap;
  7132. text-transform:none;
  7133. }
  7134. #u25523_div {
  7135. border-width:0px;
  7136. position:absolute;
  7137. left:0px;
  7138. top:0px;
  7139. width:97px;
  7140. height:22px;
  7141. background:inherit;
  7142. background-color:rgba(255, 255, 255, 0);
  7143. border:none;
  7144. border-radius:0px;
  7145. -moz-box-shadow:none;
  7146. -webkit-box-shadow:none;
  7147. box-shadow:none;
  7148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7149. font-weight:400;
  7150. font-style:normal;
  7151. font-size:16px;
  7152. }
  7153. #u25523 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:27px;
  7157. top:491px;
  7158. width:97px;
  7159. height:22px;
  7160. display:flex;
  7161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:16px;
  7165. }
  7166. #u25523 .text {
  7167. position:absolute;
  7168. align-self:flex-start;
  7169. padding:0px 0px 0px 0px;
  7170. box-sizing:border-box;
  7171. width:100%;
  7172. }
  7173. #u25523_text {
  7174. border-width:0px;
  7175. word-wrap:break-word;
  7176. text-transform:none;
  7177. }
  7178. #u25524_div {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:97px;
  7184. height:22px;
  7185. background:inherit;
  7186. background-color:rgba(255, 255, 255, 0);
  7187. border:none;
  7188. border-radius:0px;
  7189. -moz-box-shadow:none;
  7190. -webkit-box-shadow:none;
  7191. box-shadow:none;
  7192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7193. font-weight:400;
  7194. font-style:normal;
  7195. font-size:16px;
  7196. }
  7197. #u25524 {
  7198. border-width:0px;
  7199. position:absolute;
  7200. left:27px;
  7201. top:533px;
  7202. width:97px;
  7203. height:22px;
  7204. display:flex;
  7205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7206. font-weight:400;
  7207. font-style:normal;
  7208. font-size:16px;
  7209. }
  7210. #u25524 .text {
  7211. position:absolute;
  7212. align-self:flex-start;
  7213. padding:0px 0px 0px 0px;
  7214. box-sizing:border-box;
  7215. width:100%;
  7216. }
  7217. #u25524_text {
  7218. border-width:0px;
  7219. word-wrap:break-word;
  7220. text-transform:none;
  7221. }
  7222. #u25525_img {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:0px;
  7226. top:0px;
  7227. width:201px;
  7228. height:2px;
  7229. }
  7230. #u25525 {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:0px;
  7234. top:578px;
  7235. width:200px;
  7236. height:1px;
  7237. display:flex;
  7238. }
  7239. #u25525 .text {
  7240. position:absolute;
  7241. align-self:center;
  7242. padding:2px 2px 2px 2px;
  7243. box-sizing:border-box;
  7244. width:100%;
  7245. }
  7246. #u25525_text {
  7247. border-width:0px;
  7248. word-wrap:break-word;
  7249. text-transform:none;
  7250. visibility:hidden;
  7251. }
  7252. #u25526_div {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:65px;
  7258. height:22px;
  7259. background:inherit;
  7260. background-color:rgba(255, 255, 255, 0);
  7261. border:none;
  7262. border-radius:0px;
  7263. -moz-box-shadow:none;
  7264. -webkit-box-shadow:none;
  7265. box-shadow:none;
  7266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7267. font-weight:400;
  7268. font-style:normal;
  7269. font-size:16px;
  7270. }
  7271. #u25526 {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:27px;
  7275. top:809px;
  7276. width:65px;
  7277. height:22px;
  7278. display:flex;
  7279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7280. font-weight:400;
  7281. font-style:normal;
  7282. font-size:16px;
  7283. }
  7284. #u25526 .text {
  7285. position:absolute;
  7286. align-self:flex-start;
  7287. padding:0px 0px 0px 0px;
  7288. box-sizing:border-box;
  7289. width:100%;
  7290. }
  7291. #u25526_text {
  7292. border-width:0px;
  7293. white-space:nowrap;
  7294. text-transform:none;
  7295. }
  7296. #u25527_div {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:0px;
  7300. top:0px;
  7301. width:49px;
  7302. height:17px;
  7303. background:inherit;
  7304. background-color:rgba(255, 255, 255, 0);
  7305. border:none;
  7306. border-radius:0px;
  7307. -moz-box-shadow:none;
  7308. -webkit-box-shadow:none;
  7309. box-shadow:none;
  7310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:12px;
  7314. color:#AAAAAA;
  7315. }
  7316. #u25527 {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:27px;
  7320. top:772px;
  7321. width:49px;
  7322. height:17px;
  7323. display:flex;
  7324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. font-size:12px;
  7328. color:#AAAAAA;
  7329. }
  7330. #u25527 .text {
  7331. position:absolute;
  7332. align-self:flex-start;
  7333. padding:0px 0px 0px 0px;
  7334. box-sizing:border-box;
  7335. width:100%;
  7336. }
  7337. #u25527_text {
  7338. border-width:0px;
  7339. white-space:nowrap;
  7340. text-transform:none;
  7341. }
  7342. #u25528_div {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:0px;
  7346. top:0px;
  7347. width:97px;
  7348. height:22px;
  7349. background:inherit;
  7350. background-color:rgba(255, 255, 255, 0);
  7351. border:none;
  7352. border-radius:0px;
  7353. -moz-box-shadow:none;
  7354. -webkit-box-shadow:none;
  7355. box-shadow:none;
  7356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7357. font-weight:400;
  7358. font-style:normal;
  7359. font-size:16px;
  7360. }
  7361. #u25528 {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:27px;
  7365. top:850px;
  7366. width:97px;
  7367. height:22px;
  7368. display:flex;
  7369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7370. font-weight:400;
  7371. font-style:normal;
  7372. font-size:16px;
  7373. }
  7374. #u25528 .text {
  7375. position:absolute;
  7376. align-self:flex-start;
  7377. padding:0px 0px 0px 0px;
  7378. box-sizing:border-box;
  7379. width:100%;
  7380. }
  7381. #u25528_text {
  7382. border-width:0px;
  7383. word-wrap:break-word;
  7384. text-transform:none;
  7385. }
  7386. #u25529_div {
  7387. border-width:0px;
  7388. position:absolute;
  7389. left:0px;
  7390. top:0px;
  7391. width:65px;
  7392. height:22px;
  7393. background:inherit;
  7394. background-color:rgba(255, 255, 255, 0);
  7395. border:none;
  7396. border-radius:0px;
  7397. -moz-box-shadow:none;
  7398. -webkit-box-shadow:none;
  7399. box-shadow:none;
  7400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7401. font-weight:400;
  7402. font-style:normal;
  7403. font-size:16px;
  7404. }
  7405. #u25529 {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:27px;
  7409. top:932px;
  7410. width:65px;
  7411. height:22px;
  7412. display:flex;
  7413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7414. font-weight:400;
  7415. font-style:normal;
  7416. font-size:16px;
  7417. }
  7418. #u25529 .text {
  7419. position:absolute;
  7420. align-self:flex-start;
  7421. padding:0px 0px 0px 0px;
  7422. box-sizing:border-box;
  7423. width:100%;
  7424. }
  7425. #u25529_text {
  7426. border-width:0px;
  7427. white-space:nowrap;
  7428. text-transform:none;
  7429. }
  7430. #u25530_div {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:0px;
  7434. top:0px;
  7435. width:65px;
  7436. height:22px;
  7437. background:inherit;
  7438. background-color:rgba(255, 255, 255, 0);
  7439. border:none;
  7440. border-radius:0px;
  7441. -moz-box-shadow:none;
  7442. -webkit-box-shadow:none;
  7443. box-shadow:none;
  7444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7445. font-weight:400;
  7446. font-style:normal;
  7447. font-size:16px;
  7448. }
  7449. #u25530 {
  7450. border-width:0px;
  7451. position:absolute;
  7452. left:27px;
  7453. top:1016px;
  7454. width:65px;
  7455. height:22px;
  7456. display:flex;
  7457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7458. font-weight:400;
  7459. font-style:normal;
  7460. font-size:16px;
  7461. }
  7462. #u25530 .text {
  7463. position:absolute;
  7464. align-self:flex-start;
  7465. padding:0px 0px 0px 0px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u25530_text {
  7470. border-width:0px;
  7471. white-space:nowrap;
  7472. text-transform:none;
  7473. }
  7474. #u25531_div {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:0px;
  7478. top:0px;
  7479. width:65px;
  7480. height:22px;
  7481. background:inherit;
  7482. background-color:rgba(255, 255, 255, 0);
  7483. border:none;
  7484. border-radius:0px;
  7485. -moz-box-shadow:none;
  7486. -webkit-box-shadow:none;
  7487. box-shadow:none;
  7488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7489. font-weight:400;
  7490. font-style:normal;
  7491. font-size:16px;
  7492. }
  7493. #u25531 {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:27px;
  7497. top:974px;
  7498. width:65px;
  7499. height:22px;
  7500. display:flex;
  7501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7502. font-weight:400;
  7503. font-style:normal;
  7504. font-size:16px;
  7505. }
  7506. #u25531 .text {
  7507. position:absolute;
  7508. align-self:flex-start;
  7509. padding:0px 0px 0px 0px;
  7510. box-sizing:border-box;
  7511. width:100%;
  7512. }
  7513. #u25531_text {
  7514. border-width:0px;
  7515. white-space:nowrap;
  7516. text-transform:none;
  7517. }
  7518. #u25532_div {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:0px;
  7522. top:0px;
  7523. width:65px;
  7524. height:22px;
  7525. background:inherit;
  7526. background-color:rgba(255, 255, 255, 0);
  7527. border:none;
  7528. border-radius:0px;
  7529. -moz-box-shadow:none;
  7530. -webkit-box-shadow:none;
  7531. box-shadow:none;
  7532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7533. font-weight:400;
  7534. font-style:normal;
  7535. font-size:16px;
  7536. }
  7537. #u25532 {
  7538. border-width:0px;
  7539. position:absolute;
  7540. left:27px;
  7541. top:891px;
  7542. width:65px;
  7543. height:22px;
  7544. display:flex;
  7545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7546. font-weight:400;
  7547. font-style:normal;
  7548. font-size:16px;
  7549. }
  7550. #u25532 .text {
  7551. position:absolute;
  7552. align-self:flex-start;
  7553. padding:0px 0px 0px 0px;
  7554. box-sizing:border-box;
  7555. width:100%;
  7556. }
  7557. #u25532_text {
  7558. border-width:0px;
  7559. white-space:nowrap;
  7560. text-transform:none;
  7561. }
  7562. #u25533_div {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:0px;
  7566. top:0px;
  7567. width:65px;
  7568. height:22px;
  7569. background:inherit;
  7570. background-color:rgba(255, 255, 255, 0);
  7571. border:none;
  7572. border-radius:0px;
  7573. -moz-box-shadow:none;
  7574. -webkit-box-shadow:none;
  7575. box-shadow:none;
  7576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7577. font-weight:400;
  7578. font-style:normal;
  7579. font-size:16px;
  7580. }
  7581. #u25533 {
  7582. border-width:0px;
  7583. position:absolute;
  7584. left:27px;
  7585. top:266px;
  7586. width:65px;
  7587. height:22px;
  7588. display:flex;
  7589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7590. font-weight:400;
  7591. font-style:normal;
  7592. font-size:16px;
  7593. }
  7594. #u25533 .text {
  7595. position:absolute;
  7596. align-self:flex-start;
  7597. padding:0px 0px 0px 0px;
  7598. box-sizing:border-box;
  7599. width:100%;
  7600. }
  7601. #u25533_text {
  7602. border-width:0px;
  7603. white-space:nowrap;
  7604. text-transform:none;
  7605. }
  7606. #u25534_div {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:0px;
  7610. top:0px;
  7611. width:65px;
  7612. height:22px;
  7613. background:inherit;
  7614. background-color:rgba(255, 255, 255, 0);
  7615. border:none;
  7616. border-radius:0px;
  7617. -moz-box-shadow:none;
  7618. -webkit-box-shadow:none;
  7619. box-shadow:none;
  7620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7621. font-weight:400;
  7622. font-style:normal;
  7623. font-size:16px;
  7624. }
  7625. #u25534 {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:27px;
  7629. top:308px;
  7630. width:65px;
  7631. height:22px;
  7632. display:flex;
  7633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7634. font-weight:400;
  7635. font-style:normal;
  7636. font-size:16px;
  7637. }
  7638. #u25534 .text {
  7639. position:absolute;
  7640. align-self:flex-start;
  7641. padding:0px 0px 0px 0px;
  7642. box-sizing:border-box;
  7643. width:100%;
  7644. }
  7645. #u25534_text {
  7646. border-width:0px;
  7647. white-space:nowrap;
  7648. text-transform:none;
  7649. }
  7650. #u25535_div {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:0px;
  7654. top:0px;
  7655. width:49px;
  7656. height:22px;
  7657. background:inherit;
  7658. background-color:rgba(255, 255, 255, 0);
  7659. border:none;
  7660. border-radius:0px;
  7661. -moz-box-shadow:none;
  7662. -webkit-box-shadow:none;
  7663. box-shadow:none;
  7664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7665. font-weight:400;
  7666. font-style:normal;
  7667. font-size:16px;
  7668. }
  7669. #u25535 {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:27px;
  7673. top:635px;
  7674. width:49px;
  7675. height:22px;
  7676. display:flex;
  7677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7678. font-weight:400;
  7679. font-style:normal;
  7680. font-size:16px;
  7681. }
  7682. #u25535 .text {
  7683. position:absolute;
  7684. align-self:flex-start;
  7685. padding:0px 0px 0px 0px;
  7686. box-sizing:border-box;
  7687. width:100%;
  7688. }
  7689. #u25535_text {
  7690. border-width:0px;
  7691. white-space:nowrap;
  7692. text-transform:none;
  7693. }
  7694. #u25536_div {
  7695. border-width:0px;
  7696. position:absolute;
  7697. left:0px;
  7698. top:0px;
  7699. width:49px;
  7700. height:17px;
  7701. background:inherit;
  7702. background-color:rgba(255, 255, 255, 0);
  7703. border:none;
  7704. border-radius:0px;
  7705. -moz-box-shadow:none;
  7706. -webkit-box-shadow:none;
  7707. box-shadow:none;
  7708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7709. font-weight:400;
  7710. font-style:normal;
  7711. font-size:12px;
  7712. color:#AAAAAA;
  7713. }
  7714. #u25536 {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:27px;
  7718. top:598px;
  7719. width:49px;
  7720. height:17px;
  7721. display:flex;
  7722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7723. font-weight:400;
  7724. font-style:normal;
  7725. font-size:12px;
  7726. color:#AAAAAA;
  7727. }
  7728. #u25536 .text {
  7729. position:absolute;
  7730. align-self:flex-start;
  7731. padding:0px 0px 0px 0px;
  7732. box-sizing:border-box;
  7733. width:100%;
  7734. }
  7735. #u25536_text {
  7736. border-width:0px;
  7737. white-space:nowrap;
  7738. text-transform:none;
  7739. }
  7740. #u25537_div {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:0px;
  7744. top:0px;
  7745. width:49px;
  7746. height:22px;
  7747. background:inherit;
  7748. background-color:rgba(255, 255, 255, 0);
  7749. border:none;
  7750. border-radius:0px;
  7751. -moz-box-shadow:none;
  7752. -webkit-box-shadow:none;
  7753. box-shadow:none;
  7754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7755. font-weight:400;
  7756. font-style:normal;
  7757. font-size:16px;
  7758. }
  7759. #u25537 {
  7760. border-width:0px;
  7761. position:absolute;
  7762. left:27px;
  7763. top:677px;
  7764. width:49px;
  7765. height:22px;
  7766. display:flex;
  7767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7768. font-weight:400;
  7769. font-style:normal;
  7770. font-size:16px;
  7771. }
  7772. #u25537 .text {
  7773. position:absolute;
  7774. align-self:flex-start;
  7775. padding:0px 0px 0px 0px;
  7776. box-sizing:border-box;
  7777. width:100%;
  7778. }
  7779. #u25537_text {
  7780. border-width:0px;
  7781. white-space:nowrap;
  7782. text-transform:none;
  7783. }
  7784. #u25538_div {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:0px;
  7788. top:0px;
  7789. width:65px;
  7790. height:22px;
  7791. background:inherit;
  7792. background-color:rgba(255, 255, 255, 0);
  7793. border:none;
  7794. border-radius:0px;
  7795. -moz-box-shadow:none;
  7796. -webkit-box-shadow:none;
  7797. box-shadow:none;
  7798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7799. font-weight:400;
  7800. font-style:normal;
  7801. font-size:16px;
  7802. }
  7803. #u25538 {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:27px;
  7807. top:719px;
  7808. width:65px;
  7809. height:22px;
  7810. display:flex;
  7811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7812. font-weight:400;
  7813. font-style:normal;
  7814. font-size:16px;
  7815. }
  7816. #u25538 .text {
  7817. position:absolute;
  7818. align-self:flex-start;
  7819. padding:0px 0px 0px 0px;
  7820. box-sizing:border-box;
  7821. width:100%;
  7822. }
  7823. #u25538_text {
  7824. border-width:0px;
  7825. white-space:nowrap;
  7826. text-transform:none;
  7827. }
  7828. #u25539_img {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:0px;
  7832. top:0px;
  7833. width:201px;
  7834. height:2px;
  7835. }
  7836. #u25539 {
  7837. border-width:0px;
  7838. position:absolute;
  7839. left:0px;
  7840. top:761px;
  7841. width:200px;
  7842. height:1px;
  7843. display:flex;
  7844. }
  7845. #u25539 .text {
  7846. position:absolute;
  7847. align-self:center;
  7848. padding:2px 2px 2px 2px;
  7849. box-sizing:border-box;
  7850. width:100%;
  7851. }
  7852. #u25539_text {
  7853. border-width:0px;
  7854. word-wrap:break-word;
  7855. text-transform:none;
  7856. visibility:hidden;
  7857. }