styles.css 149 KB

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