styles.css 186 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704
  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. #u8785_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u8785 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u8785 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u8785_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u8786_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u8786 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u8786 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u8786_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u8787 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u8788_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u8788 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u8788 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u8788_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u8789_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u8789 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u8789 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u8789_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u8790_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u8790 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u8790 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u8790_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u8791_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u8791 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u8791 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u8791_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u8792 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u8793_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u8793 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u8793 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u8793_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u8794_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u8794 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u8794 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u8794_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u8795 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u8796_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u8796 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u8796 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u8796_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u8797_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u8797 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u8797 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u8797_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u8798 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u8799_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u8799 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u8799 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u8799_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u8800_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u8800 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u8800 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u8800_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u8801 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u8802_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u8802 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u8802 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u8802_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u8803_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u8803 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u8803 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u8803_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u8804 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u8805_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u8805 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u8805 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u8805_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u8806_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u8806 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u8806 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u8806_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u8807 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u8808_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u8808 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u8808 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u8808_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u8809_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u8809 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u8809 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u8809_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u8810 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u8811_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u8811 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u8811 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u8811_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u8812_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u8812 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u8812 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u8812_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u8813 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u8814_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u8814 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u8814 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u8814_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u8815_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u8815 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u8815 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u8815_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u8816 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u8817_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u8817 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:529px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u8817 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u8817_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u8818_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u8818 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u8818 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u8818_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u8819_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:214px;
  1014. height:27px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'ArialMT', 'Arial', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#FFFFFF;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u8819_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:214px;
  1033. height:27px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'ArialMT', 'Arial', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#FFFFFF;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u8819_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:214px;
  1053. height:27px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-size:14px;
  1062. color:#FFFFFF;
  1063. }
  1064. #u8819 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:1221px;
  1068. top:10px;
  1069. width:214px;
  1070. height:27px;
  1071. display:flex;
  1072. font-size:14px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u8819 .text {
  1076. position:absolute;
  1077. align-self:flex-start;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u8819_div.disabled {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:214px;
  1088. height:27px;
  1089. background:inherit;
  1090. background-color:rgba(240, 240, 240, 1);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-size:14px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u8819.disabled {
  1100. }
  1101. .u8819_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u8820_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u8820 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u8820 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u8820_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u8821_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:100px;
  1140. height:24px;
  1141. background:inherit;
  1142. background-color:rgba(242, 242, 242, 0.2);
  1143. border:none;
  1144. border-radius:25px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. color:#FFFFFF;
  1152. text-align:center;
  1153. }
  1154. #u8821 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1480px;
  1158. top:12px;
  1159. width:100px;
  1160. height:24px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. color:#FFFFFF;
  1166. text-align:center;
  1167. }
  1168. #u8821 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u8821_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u8822_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u8822 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u8822 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u8822_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u8823 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u8824_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:33px;
  1224. height:22px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-radius:0px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:16px;
  1236. color:#FFFFFF;
  1237. }
  1238. #u8824 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:39px;
  1242. top:319px;
  1243. width:33px;
  1244. height:22px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. color:#FFFFFF;
  1251. }
  1252. #u8824 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u8824_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u8825_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u8825 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u8825 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u8825_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u8826 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u8827_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u8827 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:361px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u8827 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u8827_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u8828_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u8828 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u8828 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u8828_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u8829 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u8830_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u8830 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:151px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u8830 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u8830_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u8831_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u8831 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u8831 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u8831_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u8832 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u8833_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u8833 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:487px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u8833 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u8833_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u8834_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u8834 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u8834 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u8834_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u8835 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u8836_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u8836 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:193px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u8836 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u8836_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u8837_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u8837 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u8837 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u8837_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u8838_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:1255px;
  1636. height:1192px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 1);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1642. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1643. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1644. }
  1645. #u8838 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:332px;
  1649. top:50px;
  1650. width:1255px;
  1651. height:1192px;
  1652. display:flex;
  1653. }
  1654. #u8838 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u8838_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u8839 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:351px;
  1671. top:193px;
  1672. width:1217px;
  1673. height:531px;
  1674. }
  1675. #u8840_img {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:92px;
  1681. height:35px;
  1682. }
  1683. #u8840 {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:92px;
  1689. height:35px;
  1690. display:flex;
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:12px;
  1695. color:#FFFFFF;
  1696. }
  1697. #u8840 .text {
  1698. position:absolute;
  1699. align-self:center;
  1700. padding:2px 2px 2px 0px;
  1701. box-sizing:border-box;
  1702. width:100%;
  1703. }
  1704. #u8840_text {
  1705. border-width:0px;
  1706. word-wrap:break-word;
  1707. text-transform:none;
  1708. }
  1709. #u8841_img {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:94px;
  1715. height:35px;
  1716. }
  1717. #u8841 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:92px;
  1721. top:0px;
  1722. width:94px;
  1723. height:35px;
  1724. display:flex;
  1725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1726. font-weight:400;
  1727. font-style:normal;
  1728. font-size:12px;
  1729. color:#FFFFFF;
  1730. }
  1731. #u8841 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:2px 2px 2px 0px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u8841_text {
  1739. border-width:0px;
  1740. word-wrap:break-word;
  1741. text-transform:none;
  1742. }
  1743. #u8842_img {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:91px;
  1749. height:35px;
  1750. }
  1751. #u8842 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:186px;
  1755. top:0px;
  1756. width:91px;
  1757. height:35px;
  1758. display:flex;
  1759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1760. font-weight:400;
  1761. font-style:normal;
  1762. font-size:12px;
  1763. color:#FFFFFF;
  1764. }
  1765. #u8842 .text {
  1766. position:absolute;
  1767. align-self:center;
  1768. padding:2px 2px 2px 0px;
  1769. box-sizing:border-box;
  1770. width:100%;
  1771. }
  1772. #u8842_text {
  1773. border-width:0px;
  1774. word-wrap:break-word;
  1775. text-transform:none;
  1776. }
  1777. #u8843_img {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:92px;
  1783. height:35px;
  1784. }
  1785. #u8843 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:277px;
  1789. top:0px;
  1790. width:92px;
  1791. height:35px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:12px;
  1797. color:#FFFFFF;
  1798. }
  1799. #u8843 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:2px 2px 2px 0px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u8843_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. }
  1811. #u8844_img {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:92px;
  1817. height:35px;
  1818. }
  1819. #u8844 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:369px;
  1823. top:0px;
  1824. width:92px;
  1825. height:35px;
  1826. display:flex;
  1827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:12px;
  1831. color:#FFFFFF;
  1832. }
  1833. #u8844 .text {
  1834. position:absolute;
  1835. align-self:center;
  1836. padding:2px 2px 2px 0px;
  1837. box-sizing:border-box;
  1838. width:100%;
  1839. }
  1840. #u8844_text {
  1841. border-width:0px;
  1842. word-wrap:break-word;
  1843. text-transform:none;
  1844. }
  1845. #u8845_img {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:92px;
  1851. height:35px;
  1852. }
  1853. #u8845 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:461px;
  1857. top:0px;
  1858. width:92px;
  1859. height:35px;
  1860. display:flex;
  1861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:12px;
  1865. color:#FFFFFF;
  1866. }
  1867. #u8845 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u8845_text {
  1875. border-width:0px;
  1876. word-wrap:break-word;
  1877. text-transform:none;
  1878. }
  1879. #u8846_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:92px;
  1885. height:35px;
  1886. }
  1887. #u8846 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:553px;
  1891. top:0px;
  1892. width:92px;
  1893. height:35px;
  1894. display:flex;
  1895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1896. font-weight:400;
  1897. font-style:normal;
  1898. font-size:12px;
  1899. color:#FFFFFF;
  1900. }
  1901. #u8846 .text {
  1902. position:absolute;
  1903. align-self:center;
  1904. padding:2px 2px 2px 0px;
  1905. box-sizing:border-box;
  1906. width:100%;
  1907. }
  1908. #u8846_text {
  1909. border-width:0px;
  1910. word-wrap:break-word;
  1911. text-transform:none;
  1912. }
  1913. #u8847_img {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:0px;
  1917. top:0px;
  1918. width:79px;
  1919. height:35px;
  1920. }
  1921. #u8847 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:645px;
  1925. top:0px;
  1926. width:79px;
  1927. height:35px;
  1928. display:flex;
  1929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1930. font-weight:400;
  1931. font-style:normal;
  1932. font-size:12px;
  1933. color:#FFFFFF;
  1934. }
  1935. #u8847 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 2px 2px 0px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u8847_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. }
  1947. #u8848_img {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:79px;
  1953. height:35px;
  1954. }
  1955. #u8848 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:724px;
  1959. top:0px;
  1960. width:79px;
  1961. height:35px;
  1962. display:flex;
  1963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. font-size:12px;
  1967. color:#FFFFFF;
  1968. }
  1969. #u8848 .text {
  1970. position:absolute;
  1971. align-self:center;
  1972. padding:2px 2px 2px 0px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u8848_text {
  1977. border-width:0px;
  1978. word-wrap:break-word;
  1979. text-transform:none;
  1980. }
  1981. #u8849_img {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:92px;
  1987. height:35px;
  1988. }
  1989. #u8849 {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:803px;
  1993. top:0px;
  1994. width:92px;
  1995. height:35px;
  1996. display:flex;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:12px;
  2001. color:#FFFFFF;
  2002. }
  2003. #u8849 .text {
  2004. position:absolute;
  2005. align-self:center;
  2006. padding:2px 2px 2px 0px;
  2007. box-sizing:border-box;
  2008. width:100%;
  2009. }
  2010. #u8849_text {
  2011. border-width:0px;
  2012. word-wrap:break-word;
  2013. text-transform:none;
  2014. }
  2015. #u8850_img {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:0px;
  2019. top:0px;
  2020. width:94px;
  2021. height:35px;
  2022. }
  2023. #u8850 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:895px;
  2027. top:0px;
  2028. width:94px;
  2029. height:35px;
  2030. display:flex;
  2031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:12px;
  2035. color:#FFFFFF;
  2036. }
  2037. #u8850 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 2px 2px 0px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u8850_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u8851_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:92px;
  2055. height:35px;
  2056. }
  2057. #u8851 {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:989px;
  2061. top:0px;
  2062. width:92px;
  2063. height:35px;
  2064. display:flex;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:12px;
  2069. color:#FFFFFF;
  2070. }
  2071. #u8851 .text {
  2072. position:absolute;
  2073. align-self:center;
  2074. padding:2px 2px 2px 0px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u8851_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. }
  2083. #u8852_img {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:136px;
  2089. height:35px;
  2090. }
  2091. #u8852 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:1081px;
  2095. top:0px;
  2096. width:136px;
  2097. height:35px;
  2098. display:flex;
  2099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2100. font-weight:400;
  2101. font-style:normal;
  2102. font-size:12px;
  2103. color:#FFFFFF;
  2104. }
  2105. #u8852 .text {
  2106. position:absolute;
  2107. align-self:center;
  2108. padding:2px 2px 2px 0px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u8852_text {
  2113. border-width:0px;
  2114. word-wrap:break-word;
  2115. text-transform:none;
  2116. }
  2117. #u8853_img {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:92px;
  2123. height:38px;
  2124. }
  2125. #u8853 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:35px;
  2130. width:92px;
  2131. height:38px;
  2132. display:flex;
  2133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2134. font-weight:400;
  2135. font-style:normal;
  2136. font-size:12px;
  2137. }
  2138. #u8853 .text {
  2139. position:absolute;
  2140. align-self:center;
  2141. padding:2px 2px 2px 0px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u8853_text {
  2146. border-width:0px;
  2147. word-wrap:break-word;
  2148. text-transform:none;
  2149. }
  2150. #u8854_img {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:94px;
  2156. height:38px;
  2157. }
  2158. #u8854 {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:92px;
  2162. top:35px;
  2163. width:94px;
  2164. height:38px;
  2165. display:flex;
  2166. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2167. font-weight:400;
  2168. font-style:normal;
  2169. font-size:12px;
  2170. }
  2171. #u8854 .text {
  2172. position:absolute;
  2173. align-self:center;
  2174. padding:2px 2px 2px 0px;
  2175. box-sizing:border-box;
  2176. width:100%;
  2177. }
  2178. #u8854_text {
  2179. border-width:0px;
  2180. word-wrap:break-word;
  2181. text-transform:none;
  2182. }
  2183. #u8855_img {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:91px;
  2189. height:38px;
  2190. }
  2191. #u8855 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:186px;
  2195. top:35px;
  2196. width:91px;
  2197. height:38px;
  2198. display:flex;
  2199. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2200. font-weight:400;
  2201. font-style:normal;
  2202. font-size:12px;
  2203. }
  2204. #u8855 .text {
  2205. position:absolute;
  2206. align-self:center;
  2207. padding:2px 2px 2px 0px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u8855_text {
  2212. border-width:0px;
  2213. word-wrap:break-word;
  2214. text-transform:none;
  2215. visibility:hidden;
  2216. }
  2217. #u8856_img {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:92px;
  2223. height:38px;
  2224. }
  2225. #u8856 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:277px;
  2229. top:35px;
  2230. width:92px;
  2231. height:38px;
  2232. display:flex;
  2233. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2234. font-weight:400;
  2235. font-style:normal;
  2236. font-size:12px;
  2237. }
  2238. #u8856 .text {
  2239. position:absolute;
  2240. align-self:center;
  2241. padding:2px 2px 2px 0px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u8856_text {
  2246. border-width:0px;
  2247. word-wrap:break-word;
  2248. text-transform:none;
  2249. visibility:hidden;
  2250. }
  2251. #u8857_img {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:92px;
  2257. height:38px;
  2258. }
  2259. #u8857 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:369px;
  2263. top:35px;
  2264. width:92px;
  2265. height:38px;
  2266. display:flex;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:12px;
  2271. }
  2272. #u8857 .text {
  2273. position:absolute;
  2274. align-self:center;
  2275. padding:2px 2px 2px 0px;
  2276. box-sizing:border-box;
  2277. width:100%;
  2278. }
  2279. #u8857_text {
  2280. border-width:0px;
  2281. word-wrap:break-word;
  2282. text-transform:none;
  2283. }
  2284. #u8858_img {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:92px;
  2290. height:38px;
  2291. }
  2292. #u8858 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:461px;
  2296. top:35px;
  2297. width:92px;
  2298. height:38px;
  2299. display:flex;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:12px;
  2304. }
  2305. #u8858 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 2px 2px 0px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u8858_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. visibility:hidden;
  2317. }
  2318. #u8859_img {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:92px;
  2324. height:38px;
  2325. }
  2326. #u8859 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:553px;
  2330. top:35px;
  2331. width:92px;
  2332. height:38px;
  2333. display:flex;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:12px;
  2338. }
  2339. #u8859 .text {
  2340. position:absolute;
  2341. align-self:center;
  2342. padding:2px 2px 2px 0px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u8859_text {
  2347. border-width:0px;
  2348. word-wrap:break-word;
  2349. text-transform:none;
  2350. visibility:hidden;
  2351. }
  2352. #u8860_img {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:79px;
  2358. height:38px;
  2359. }
  2360. #u8860 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:645px;
  2364. top:35px;
  2365. width:79px;
  2366. height:38px;
  2367. display:flex;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:12px;
  2372. }
  2373. #u8860 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 0px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u8860_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. visibility:hidden;
  2385. }
  2386. #u8861_img {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:79px;
  2392. height:38px;
  2393. }
  2394. #u8861 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:724px;
  2398. top:35px;
  2399. width:79px;
  2400. height:38px;
  2401. display:flex;
  2402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:12px;
  2406. }
  2407. #u8861 .text {
  2408. position:absolute;
  2409. align-self:center;
  2410. padding:2px 2px 2px 0px;
  2411. box-sizing:border-box;
  2412. width:100%;
  2413. }
  2414. #u8861_text {
  2415. border-width:0px;
  2416. word-wrap:break-word;
  2417. text-transform:none;
  2418. visibility:hidden;
  2419. }
  2420. #u8862_img {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:92px;
  2426. height:38px;
  2427. }
  2428. #u8862 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:803px;
  2432. top:35px;
  2433. width:92px;
  2434. height:38px;
  2435. display:flex;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:12px;
  2440. }
  2441. #u8862 .text {
  2442. position:absolute;
  2443. align-self:center;
  2444. padding:2px 2px 2px 0px;
  2445. box-sizing:border-box;
  2446. width:100%;
  2447. }
  2448. #u8862_text {
  2449. border-width:0px;
  2450. word-wrap:break-word;
  2451. text-transform:none;
  2452. visibility:hidden;
  2453. }
  2454. #u8863_img {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:94px;
  2460. height:38px;
  2461. }
  2462. #u8863 {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:895px;
  2466. top:35px;
  2467. width:94px;
  2468. height:38px;
  2469. display:flex;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:12px;
  2474. }
  2475. #u8863 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 0px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u8863_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. }
  2487. #u8864_img {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:92px;
  2493. height:38px;
  2494. }
  2495. #u8864 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:989px;
  2499. top:35px;
  2500. width:92px;
  2501. height:38px;
  2502. display:flex;
  2503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2504. font-weight:400;
  2505. font-style:normal;
  2506. font-size:12px;
  2507. }
  2508. #u8864 .text {
  2509. position:absolute;
  2510. align-self:center;
  2511. padding:2px 2px 2px 0px;
  2512. box-sizing:border-box;
  2513. width:100%;
  2514. }
  2515. #u8864_text {
  2516. border-width:0px;
  2517. word-wrap:break-word;
  2518. text-transform:none;
  2519. visibility:hidden;
  2520. }
  2521. #u8865_img {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:0px;
  2525. top:0px;
  2526. width:136px;
  2527. height:38px;
  2528. }
  2529. #u8865 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:1081px;
  2533. top:35px;
  2534. width:136px;
  2535. height:38px;
  2536. display:flex;
  2537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2538. font-weight:400;
  2539. font-style:normal;
  2540. font-size:12px;
  2541. color:#0099FF;
  2542. }
  2543. #u8865 .text {
  2544. position:absolute;
  2545. align-self:center;
  2546. padding:2px 2px 2px 0px;
  2547. box-sizing:border-box;
  2548. width:100%;
  2549. }
  2550. #u8865_text {
  2551. border-width:0px;
  2552. word-wrap:break-word;
  2553. text-transform:none;
  2554. }
  2555. #u8866_img {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:92px;
  2561. height:38px;
  2562. }
  2563. #u8866 {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:73px;
  2568. width:92px;
  2569. height:38px;
  2570. display:flex;
  2571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:12px;
  2575. }
  2576. #u8866 .text {
  2577. position:absolute;
  2578. align-self:center;
  2579. padding:2px 2px 2px 0px;
  2580. box-sizing:border-box;
  2581. width:100%;
  2582. }
  2583. #u8866_text {
  2584. border-width:0px;
  2585. word-wrap:break-word;
  2586. text-transform:none;
  2587. }
  2588. #u8867_img {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:94px;
  2594. height:38px;
  2595. }
  2596. #u8867 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:92px;
  2600. top:73px;
  2601. width:94px;
  2602. height:38px;
  2603. display:flex;
  2604. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:12px;
  2608. }
  2609. #u8867 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u8867_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. }
  2621. #u8868_img {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:91px;
  2627. height:38px;
  2628. }
  2629. #u8868 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:186px;
  2633. top:73px;
  2634. width:91px;
  2635. height:38px;
  2636. display:flex;
  2637. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2638. font-weight:400;
  2639. font-style:normal;
  2640. font-size:12px;
  2641. }
  2642. #u8868 .text {
  2643. position:absolute;
  2644. align-self:center;
  2645. padding:2px 2px 2px 0px;
  2646. box-sizing:border-box;
  2647. width:100%;
  2648. }
  2649. #u8868_text {
  2650. border-width:0px;
  2651. word-wrap:break-word;
  2652. text-transform:none;
  2653. visibility:hidden;
  2654. }
  2655. #u8869_img {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:92px;
  2661. height:38px;
  2662. }
  2663. #u8869 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:277px;
  2667. top:73px;
  2668. width:92px;
  2669. height:38px;
  2670. display:flex;
  2671. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:12px;
  2675. }
  2676. #u8869 .text {
  2677. position:absolute;
  2678. align-self:center;
  2679. padding:2px 2px 2px 0px;
  2680. box-sizing:border-box;
  2681. width:100%;
  2682. }
  2683. #u8869_text {
  2684. border-width:0px;
  2685. word-wrap:break-word;
  2686. text-transform:none;
  2687. visibility:hidden;
  2688. }
  2689. #u8870_img {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:92px;
  2695. height:38px;
  2696. }
  2697. #u8870 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:369px;
  2701. top:73px;
  2702. width:92px;
  2703. height:38px;
  2704. display:flex;
  2705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2706. font-weight:400;
  2707. font-style:normal;
  2708. font-size:12px;
  2709. }
  2710. #u8870 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 0px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u8870_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. }
  2722. #u8871_img {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:0px;
  2726. top:0px;
  2727. width:92px;
  2728. height:38px;
  2729. }
  2730. #u8871 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:461px;
  2734. top:73px;
  2735. width:92px;
  2736. height:38px;
  2737. display:flex;
  2738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2739. font-weight:400;
  2740. font-style:normal;
  2741. font-size:12px;
  2742. }
  2743. #u8871 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u8871_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. visibility:hidden;
  2755. }
  2756. #u8872_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:92px;
  2762. height:38px;
  2763. }
  2764. #u8872 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:553px;
  2768. top:73px;
  2769. width:92px;
  2770. height:38px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:12px;
  2776. }
  2777. #u8872 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u8872_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. visibility:hidden;
  2789. }
  2790. #u8873_img {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:79px;
  2796. height:38px;
  2797. }
  2798. #u8873 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:645px;
  2802. top:73px;
  2803. width:79px;
  2804. height:38px;
  2805. display:flex;
  2806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. font-size:12px;
  2810. }
  2811. #u8873 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 0px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u8873_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. visibility:hidden;
  2823. }
  2824. #u8874_img {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:79px;
  2830. height:38px;
  2831. }
  2832. #u8874 {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:724px;
  2836. top:73px;
  2837. width:79px;
  2838. height:38px;
  2839. display:flex;
  2840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2841. font-weight:400;
  2842. font-style:normal;
  2843. font-size:12px;
  2844. }
  2845. #u8874 .text {
  2846. position:absolute;
  2847. align-self:center;
  2848. padding:2px 2px 2px 0px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u8874_text {
  2853. border-width:0px;
  2854. word-wrap:break-word;
  2855. text-transform:none;
  2856. visibility:hidden;
  2857. }
  2858. #u8875_img {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:92px;
  2864. height:38px;
  2865. }
  2866. #u8875 {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:803px;
  2870. top:73px;
  2871. width:92px;
  2872. height:38px;
  2873. display:flex;
  2874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2875. font-weight:400;
  2876. font-style:normal;
  2877. font-size:12px;
  2878. }
  2879. #u8875 .text {
  2880. position:absolute;
  2881. align-self:center;
  2882. padding:2px 2px 2px 0px;
  2883. box-sizing:border-box;
  2884. width:100%;
  2885. }
  2886. #u8875_text {
  2887. border-width:0px;
  2888. word-wrap:break-word;
  2889. text-transform:none;
  2890. visibility:hidden;
  2891. }
  2892. #u8876_img {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:94px;
  2898. height:38px;
  2899. }
  2900. #u8876 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:895px;
  2904. top:73px;
  2905. width:94px;
  2906. height:38px;
  2907. display:flex;
  2908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2909. font-weight:400;
  2910. font-style:normal;
  2911. font-size:12px;
  2912. }
  2913. #u8876 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 2px 2px 0px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u8876_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. }
  2925. #u8877_img {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:92px;
  2931. height:38px;
  2932. }
  2933. #u8877 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:989px;
  2937. top:73px;
  2938. width:92px;
  2939. height:38px;
  2940. display:flex;
  2941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. font-size:12px;
  2945. }
  2946. #u8877 .text {
  2947. position:absolute;
  2948. align-self:center;
  2949. padding:2px 2px 2px 0px;
  2950. box-sizing:border-box;
  2951. width:100%;
  2952. }
  2953. #u8877_text {
  2954. border-width:0px;
  2955. word-wrap:break-word;
  2956. text-transform:none;
  2957. visibility:hidden;
  2958. }
  2959. #u8878_img {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:136px;
  2965. height:38px;
  2966. }
  2967. #u8878 {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:1081px;
  2971. top:73px;
  2972. width:136px;
  2973. height:38px;
  2974. display:flex;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:12px;
  2979. color:#0099FF;
  2980. }
  2981. #u8878 .text {
  2982. position:absolute;
  2983. align-self:center;
  2984. padding:2px 2px 2px 0px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u8878_text {
  2989. border-width:0px;
  2990. word-wrap:break-word;
  2991. text-transform:none;
  2992. }
  2993. #u8879_img {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:92px;
  2999. height:38px;
  3000. }
  3001. #u8879 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:111px;
  3006. width:92px;
  3007. height:38px;
  3008. display:flex;
  3009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3010. font-weight:400;
  3011. font-style:normal;
  3012. font-size:12px;
  3013. color:#606266;
  3014. }
  3015. #u8879 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 0px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u8879_text {
  3023. border-width:0px;
  3024. word-wrap:break-word;
  3025. text-transform:none;
  3026. }
  3027. #u8880_img {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:94px;
  3033. height:38px;
  3034. }
  3035. #u8880 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:92px;
  3039. top:111px;
  3040. width:94px;
  3041. height:38px;
  3042. display:flex;
  3043. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3044. font-weight:400;
  3045. font-style:normal;
  3046. font-size:12px;
  3047. color:#606266;
  3048. }
  3049. #u8880 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 0px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u8880_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. visibility:hidden;
  3061. }
  3062. #u8881_img {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:91px;
  3068. height:38px;
  3069. }
  3070. #u8881 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:186px;
  3074. top:111px;
  3075. width:91px;
  3076. height:38px;
  3077. display:flex;
  3078. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:12px;
  3082. color:#606266;
  3083. }
  3084. #u8881 .text {
  3085. position:absolute;
  3086. align-self:center;
  3087. padding:2px 2px 2px 0px;
  3088. box-sizing:border-box;
  3089. width:100%;
  3090. }
  3091. #u8881_text {
  3092. border-width:0px;
  3093. word-wrap:break-word;
  3094. text-transform:none;
  3095. visibility:hidden;
  3096. }
  3097. #u8882_img {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:92px;
  3103. height:38px;
  3104. }
  3105. #u8882 {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:277px;
  3109. top:111px;
  3110. width:92px;
  3111. height:38px;
  3112. display:flex;
  3113. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3114. font-weight:400;
  3115. font-style:normal;
  3116. font-size:12px;
  3117. color:#606266;
  3118. }
  3119. #u8882 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 0px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u8882_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. visibility:hidden;
  3131. }
  3132. #u8883_img {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:92px;
  3138. height:38px;
  3139. }
  3140. #u8883 {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:369px;
  3144. top:111px;
  3145. width:92px;
  3146. height:38px;
  3147. display:flex;
  3148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3149. font-weight:400;
  3150. font-style:normal;
  3151. font-size:12px;
  3152. }
  3153. #u8883 .text {
  3154. position:absolute;
  3155. align-self:center;
  3156. padding:2px 2px 2px 0px;
  3157. box-sizing:border-box;
  3158. width:100%;
  3159. }
  3160. #u8883_text {
  3161. border-width:0px;
  3162. word-wrap:break-word;
  3163. text-transform:none;
  3164. }
  3165. #u8884_img {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:92px;
  3171. height:38px;
  3172. }
  3173. #u8884 {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:461px;
  3177. top:111px;
  3178. width:92px;
  3179. height:38px;
  3180. display:flex;
  3181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3182. font-weight:400;
  3183. font-style:normal;
  3184. font-size:12px;
  3185. }
  3186. #u8884 .text {
  3187. position:absolute;
  3188. align-self:center;
  3189. padding:2px 2px 2px 0px;
  3190. box-sizing:border-box;
  3191. width:100%;
  3192. }
  3193. #u8884_text {
  3194. border-width:0px;
  3195. word-wrap:break-word;
  3196. text-transform:none;
  3197. visibility:hidden;
  3198. }
  3199. #u8885_img {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:92px;
  3205. height:38px;
  3206. }
  3207. #u8885 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:553px;
  3211. top:111px;
  3212. width:92px;
  3213. height:38px;
  3214. display:flex;
  3215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3216. font-weight:400;
  3217. font-style:normal;
  3218. font-size:12px;
  3219. }
  3220. #u8885 .text {
  3221. position:absolute;
  3222. align-self:center;
  3223. padding:2px 2px 2px 0px;
  3224. box-sizing:border-box;
  3225. width:100%;
  3226. }
  3227. #u8885_text {
  3228. border-width:0px;
  3229. word-wrap:break-word;
  3230. text-transform:none;
  3231. visibility:hidden;
  3232. }
  3233. #u8886_img {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:79px;
  3239. height:38px;
  3240. }
  3241. #u8886 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:645px;
  3245. top:111px;
  3246. width:79px;
  3247. height:38px;
  3248. display:flex;
  3249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3250. font-weight:400;
  3251. font-style:normal;
  3252. font-size:12px;
  3253. }
  3254. #u8886 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:2px 2px 2px 0px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u8886_text {
  3262. border-width:0px;
  3263. word-wrap:break-word;
  3264. text-transform:none;
  3265. visibility:hidden;
  3266. }
  3267. #u8887_img {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:79px;
  3273. height:38px;
  3274. }
  3275. #u8887 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:724px;
  3279. top:111px;
  3280. width:79px;
  3281. height:38px;
  3282. display:flex;
  3283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3284. font-weight:400;
  3285. font-style:normal;
  3286. font-size:12px;
  3287. }
  3288. #u8887 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:2px 2px 2px 0px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u8887_text {
  3296. border-width:0px;
  3297. word-wrap:break-word;
  3298. text-transform:none;
  3299. visibility:hidden;
  3300. }
  3301. #u8888_img {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:0px;
  3305. top:0px;
  3306. width:92px;
  3307. height:38px;
  3308. }
  3309. #u8888 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:803px;
  3313. top:111px;
  3314. width:92px;
  3315. height:38px;
  3316. display:flex;
  3317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:12px;
  3321. }
  3322. #u8888 .text {
  3323. position:absolute;
  3324. align-self:center;
  3325. padding:2px 2px 2px 0px;
  3326. box-sizing:border-box;
  3327. width:100%;
  3328. }
  3329. #u8888_text {
  3330. border-width:0px;
  3331. word-wrap:break-word;
  3332. text-transform:none;
  3333. visibility:hidden;
  3334. }
  3335. #u8889_img {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:94px;
  3341. height:38px;
  3342. }
  3343. #u8889 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:895px;
  3347. top:111px;
  3348. width:94px;
  3349. height:38px;
  3350. display:flex;
  3351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:12px;
  3355. }
  3356. #u8889 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 2px 2px 0px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u8889_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. visibility:hidden;
  3368. }
  3369. #u8890_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:92px;
  3375. height:38px;
  3376. }
  3377. #u8890 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:989px;
  3381. top:111px;
  3382. width:92px;
  3383. height:38px;
  3384. display:flex;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:12px;
  3389. }
  3390. #u8890 .text {
  3391. position:absolute;
  3392. align-self:center;
  3393. padding:2px 2px 2px 0px;
  3394. box-sizing:border-box;
  3395. width:100%;
  3396. }
  3397. #u8890_text {
  3398. border-width:0px;
  3399. word-wrap:break-word;
  3400. text-transform:none;
  3401. visibility:hidden;
  3402. }
  3403. #u8891_img {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:136px;
  3409. height:38px;
  3410. }
  3411. #u8891 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:1081px;
  3415. top:111px;
  3416. width:136px;
  3417. height:38px;
  3418. display:flex;
  3419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3420. font-weight:400;
  3421. font-style:normal;
  3422. font-size:12px;
  3423. color:#298FFF;
  3424. }
  3425. #u8891 .text {
  3426. position:absolute;
  3427. align-self:center;
  3428. padding:2px 2px 2px 0px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u8891_text {
  3433. border-width:0px;
  3434. word-wrap:break-word;
  3435. text-transform:none;
  3436. visibility:hidden;
  3437. }
  3438. #u8892_img {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:92px;
  3444. height:40px;
  3445. }
  3446. #u8892 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:149px;
  3451. width:92px;
  3452. height:40px;
  3453. display:flex;
  3454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3455. font-weight:400;
  3456. font-style:normal;
  3457. font-size:12px;
  3458. color:#606266;
  3459. }
  3460. #u8892 .text {
  3461. position:absolute;
  3462. align-self:center;
  3463. padding:2px 2px 2px 0px;
  3464. box-sizing:border-box;
  3465. width:100%;
  3466. }
  3467. #u8892_text {
  3468. border-width:0px;
  3469. word-wrap:break-word;
  3470. text-transform:none;
  3471. }
  3472. #u8893_img {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:0px;
  3476. top:0px;
  3477. width:94px;
  3478. height:40px;
  3479. }
  3480. #u8893 {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:92px;
  3484. top:149px;
  3485. width:94px;
  3486. height:40px;
  3487. display:flex;
  3488. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3489. font-weight:400;
  3490. font-style:normal;
  3491. font-size:12px;
  3492. color:#606266;
  3493. }
  3494. #u8893 .text {
  3495. position:absolute;
  3496. align-self:center;
  3497. padding:2px 2px 2px 0px;
  3498. box-sizing:border-box;
  3499. width:100%;
  3500. }
  3501. #u8893_text {
  3502. border-width:0px;
  3503. word-wrap:break-word;
  3504. text-transform:none;
  3505. visibility:hidden;
  3506. }
  3507. #u8894_img {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:0px;
  3511. top:0px;
  3512. width:91px;
  3513. height:40px;
  3514. }
  3515. #u8894 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:186px;
  3519. top:149px;
  3520. width:91px;
  3521. height:40px;
  3522. display:flex;
  3523. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3524. font-weight:400;
  3525. font-style:normal;
  3526. font-size:12px;
  3527. color:#606266;
  3528. }
  3529. #u8894 .text {
  3530. position:absolute;
  3531. align-self:center;
  3532. padding:2px 2px 2px 0px;
  3533. box-sizing:border-box;
  3534. width:100%;
  3535. }
  3536. #u8894_text {
  3537. border-width:0px;
  3538. word-wrap:break-word;
  3539. text-transform:none;
  3540. visibility:hidden;
  3541. }
  3542. #u8895_img {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:92px;
  3548. height:40px;
  3549. }
  3550. #u8895 {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:277px;
  3554. top:149px;
  3555. width:92px;
  3556. height:40px;
  3557. display:flex;
  3558. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3559. font-weight:400;
  3560. font-style:normal;
  3561. font-size:12px;
  3562. color:#606266;
  3563. }
  3564. #u8895 .text {
  3565. position:absolute;
  3566. align-self:center;
  3567. padding:2px 2px 2px 0px;
  3568. box-sizing:border-box;
  3569. width:100%;
  3570. }
  3571. #u8895_text {
  3572. border-width:0px;
  3573. word-wrap:break-word;
  3574. text-transform:none;
  3575. visibility:hidden;
  3576. }
  3577. #u8896_img {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:0px;
  3581. top:0px;
  3582. width:92px;
  3583. height:40px;
  3584. }
  3585. #u8896 {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:369px;
  3589. top:149px;
  3590. width:92px;
  3591. height:40px;
  3592. display:flex;
  3593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3594. font-weight:400;
  3595. font-style:normal;
  3596. font-size:12px;
  3597. }
  3598. #u8896 .text {
  3599. position:absolute;
  3600. align-self:center;
  3601. padding:2px 2px 2px 0px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u8896_text {
  3606. border-width:0px;
  3607. word-wrap:break-word;
  3608. text-transform:none;
  3609. visibility:hidden;
  3610. }
  3611. #u8897_img {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:92px;
  3617. height:40px;
  3618. }
  3619. #u8897 {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:461px;
  3623. top:149px;
  3624. width:92px;
  3625. height:40px;
  3626. display:flex;
  3627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3628. font-weight:400;
  3629. font-style:normal;
  3630. font-size:12px;
  3631. }
  3632. #u8897 .text {
  3633. position:absolute;
  3634. align-self:center;
  3635. padding:2px 2px 2px 0px;
  3636. box-sizing:border-box;
  3637. width:100%;
  3638. }
  3639. #u8897_text {
  3640. border-width:0px;
  3641. word-wrap:break-word;
  3642. text-transform:none;
  3643. visibility:hidden;
  3644. }
  3645. #u8898_img {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:92px;
  3651. height:40px;
  3652. }
  3653. #u8898 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:553px;
  3657. top:149px;
  3658. width:92px;
  3659. height:40px;
  3660. display:flex;
  3661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:12px;
  3665. }
  3666. #u8898 .text {
  3667. position:absolute;
  3668. align-self:center;
  3669. padding:2px 2px 2px 0px;
  3670. box-sizing:border-box;
  3671. width:100%;
  3672. }
  3673. #u8898_text {
  3674. border-width:0px;
  3675. word-wrap:break-word;
  3676. text-transform:none;
  3677. visibility:hidden;
  3678. }
  3679. #u8899_img {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:79px;
  3685. height:40px;
  3686. }
  3687. #u8899 {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:645px;
  3691. top:149px;
  3692. width:79px;
  3693. height:40px;
  3694. display:flex;
  3695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3696. font-weight:400;
  3697. font-style:normal;
  3698. font-size:12px;
  3699. }
  3700. #u8899 .text {
  3701. position:absolute;
  3702. align-self:center;
  3703. padding:2px 2px 2px 0px;
  3704. box-sizing:border-box;
  3705. width:100%;
  3706. }
  3707. #u8899_text {
  3708. border-width:0px;
  3709. word-wrap:break-word;
  3710. text-transform:none;
  3711. visibility:hidden;
  3712. }
  3713. #u8900_img {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:79px;
  3719. height:40px;
  3720. }
  3721. #u8900 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:724px;
  3725. top:149px;
  3726. width:79px;
  3727. height:40px;
  3728. display:flex;
  3729. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:12px;
  3733. color:#606266;
  3734. }
  3735. #u8900 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 2px 2px 0px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u8900_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u8901_img {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:92px;
  3754. height:40px;
  3755. }
  3756. #u8901 {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:803px;
  3760. top:149px;
  3761. width:92px;
  3762. height:40px;
  3763. display:flex;
  3764. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3765. font-weight:400;
  3766. font-style:normal;
  3767. font-size:12px;
  3768. color:#606266;
  3769. }
  3770. #u8901 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:2px 2px 2px 0px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u8901_text {
  3778. border-width:0px;
  3779. word-wrap:break-word;
  3780. text-transform:none;
  3781. visibility:hidden;
  3782. }
  3783. #u8902_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:94px;
  3789. height:40px;
  3790. }
  3791. #u8902 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:895px;
  3795. top:149px;
  3796. width:94px;
  3797. height:40px;
  3798. display:flex;
  3799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:12px;
  3803. color:#606266;
  3804. }
  3805. #u8902 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u8902_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u8903_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:92px;
  3824. height:40px;
  3825. }
  3826. #u8903 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:989px;
  3830. top:149px;
  3831. width:92px;
  3832. height:40px;
  3833. display:flex;
  3834. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:12px;
  3838. color:#606266;
  3839. }
  3840. #u8903 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:2px 2px 2px 0px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u8903_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. visibility:hidden;
  3852. }
  3853. #u8904_img {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:136px;
  3859. height:40px;
  3860. }
  3861. #u8904 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:1081px;
  3865. top:149px;
  3866. width:136px;
  3867. height:40px;
  3868. display:flex;
  3869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:12px;
  3873. color:#02A7F0;
  3874. }
  3875. #u8904 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 0px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u8904_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u8905_img {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:92px;
  3894. height:38px;
  3895. }
  3896. #u8905 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:189px;
  3901. width:92px;
  3902. height:38px;
  3903. display:flex;
  3904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:12px;
  3908. color:#606266;
  3909. }
  3910. #u8905 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 2px 2px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u8905_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. }
  3922. #u8906_img {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:94px;
  3928. height:38px;
  3929. }
  3930. #u8906 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:92px;
  3934. top:189px;
  3935. width:94px;
  3936. height:38px;
  3937. display:flex;
  3938. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3939. font-weight:400;
  3940. font-style:normal;
  3941. font-size:12px;
  3942. color:#606266;
  3943. }
  3944. #u8906 .text {
  3945. position:absolute;
  3946. align-self:center;
  3947. padding:2px 2px 2px 0px;
  3948. box-sizing:border-box;
  3949. width:100%;
  3950. }
  3951. #u8906_text {
  3952. border-width:0px;
  3953. word-wrap:break-word;
  3954. text-transform:none;
  3955. visibility:hidden;
  3956. }
  3957. #u8907_img {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:91px;
  3963. height:38px;
  3964. }
  3965. #u8907 {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:186px;
  3969. top:189px;
  3970. width:91px;
  3971. height:38px;
  3972. display:flex;
  3973. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3974. font-weight:400;
  3975. font-style:normal;
  3976. font-size:12px;
  3977. color:#606266;
  3978. }
  3979. #u8907 .text {
  3980. position:absolute;
  3981. align-self:center;
  3982. padding:2px 2px 2px 0px;
  3983. box-sizing:border-box;
  3984. width:100%;
  3985. }
  3986. #u8907_text {
  3987. border-width:0px;
  3988. word-wrap:break-word;
  3989. text-transform:none;
  3990. visibility:hidden;
  3991. }
  3992. #u8908_img {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:92px;
  3998. height:38px;
  3999. }
  4000. #u8908 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:277px;
  4004. top:189px;
  4005. width:92px;
  4006. height:38px;
  4007. display:flex;
  4008. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4009. font-weight:400;
  4010. font-style:normal;
  4011. font-size:12px;
  4012. color:#606266;
  4013. }
  4014. #u8908 .text {
  4015. position:absolute;
  4016. align-self:center;
  4017. padding:2px 2px 2px 0px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u8908_text {
  4022. border-width:0px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. visibility:hidden;
  4026. }
  4027. #u8909_img {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:92px;
  4033. height:38px;
  4034. }
  4035. #u8909 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:369px;
  4039. top:189px;
  4040. width:92px;
  4041. height:38px;
  4042. display:flex;
  4043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:12px;
  4047. }
  4048. #u8909 .text {
  4049. position:absolute;
  4050. align-self:center;
  4051. padding:2px 2px 2px 0px;
  4052. box-sizing:border-box;
  4053. width:100%;
  4054. }
  4055. #u8909_text {
  4056. border-width:0px;
  4057. word-wrap:break-word;
  4058. text-transform:none;
  4059. visibility:hidden;
  4060. }
  4061. #u8910_img {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:0px;
  4065. top:0px;
  4066. width:92px;
  4067. height:38px;
  4068. }
  4069. #u8910 {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:461px;
  4073. top:189px;
  4074. width:92px;
  4075. height:38px;
  4076. display:flex;
  4077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:12px;
  4081. }
  4082. #u8910 .text {
  4083. position:absolute;
  4084. align-self:center;
  4085. padding:2px 2px 2px 0px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u8910_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. visibility:hidden;
  4094. }
  4095. #u8911_img {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:92px;
  4101. height:38px;
  4102. }
  4103. #u8911 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:553px;
  4107. top:189px;
  4108. width:92px;
  4109. height:38px;
  4110. display:flex;
  4111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4112. font-weight:400;
  4113. font-style:normal;
  4114. font-size:12px;
  4115. }
  4116. #u8911 .text {
  4117. position:absolute;
  4118. align-self:center;
  4119. padding:2px 2px 2px 0px;
  4120. box-sizing:border-box;
  4121. width:100%;
  4122. }
  4123. #u8911_text {
  4124. border-width:0px;
  4125. word-wrap:break-word;
  4126. text-transform:none;
  4127. visibility:hidden;
  4128. }
  4129. #u8912_img {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:79px;
  4135. height:38px;
  4136. }
  4137. #u8912 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:645px;
  4141. top:189px;
  4142. width:79px;
  4143. height:38px;
  4144. display:flex;
  4145. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4146. font-weight:400;
  4147. font-style:normal;
  4148. font-size:12px;
  4149. color:#606266;
  4150. }
  4151. #u8912 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 0px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u8912_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. visibility:hidden;
  4163. }
  4164. #u8913_img {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:79px;
  4170. height:38px;
  4171. }
  4172. #u8913 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:724px;
  4176. top:189px;
  4177. width:79px;
  4178. height:38px;
  4179. display:flex;
  4180. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4181. font-weight:400;
  4182. font-style:normal;
  4183. font-size:12px;
  4184. color:#606266;
  4185. }
  4186. #u8913 .text {
  4187. position:absolute;
  4188. align-self:center;
  4189. padding:2px 2px 2px 0px;
  4190. box-sizing:border-box;
  4191. width:100%;
  4192. }
  4193. #u8913_text {
  4194. border-width:0px;
  4195. word-wrap:break-word;
  4196. text-transform:none;
  4197. visibility:hidden;
  4198. }
  4199. #u8914_img {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:0px;
  4203. top:0px;
  4204. width:92px;
  4205. height:38px;
  4206. }
  4207. #u8914 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:803px;
  4211. top:189px;
  4212. width:92px;
  4213. height:38px;
  4214. display:flex;
  4215. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4216. font-weight:400;
  4217. font-style:normal;
  4218. font-size:12px;
  4219. color:#606266;
  4220. }
  4221. #u8914 .text {
  4222. position:absolute;
  4223. align-self:center;
  4224. padding:2px 2px 2px 0px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u8914_text {
  4229. border-width:0px;
  4230. word-wrap:break-word;
  4231. text-transform:none;
  4232. visibility:hidden;
  4233. }
  4234. #u8915_img {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:0px;
  4238. top:0px;
  4239. width:94px;
  4240. height:38px;
  4241. }
  4242. #u8915 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:895px;
  4246. top:189px;
  4247. width:94px;
  4248. height:38px;
  4249. display:flex;
  4250. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4251. font-weight:400;
  4252. font-style:normal;
  4253. font-size:12px;
  4254. color:#606266;
  4255. }
  4256. #u8915 .text {
  4257. position:absolute;
  4258. align-self:center;
  4259. padding:2px 2px 2px 0px;
  4260. box-sizing:border-box;
  4261. width:100%;
  4262. }
  4263. #u8915_text {
  4264. border-width:0px;
  4265. word-wrap:break-word;
  4266. text-transform:none;
  4267. visibility:hidden;
  4268. }
  4269. #u8916_img {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:92px;
  4275. height:38px;
  4276. }
  4277. #u8916 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:989px;
  4281. top:189px;
  4282. width:92px;
  4283. height:38px;
  4284. display:flex;
  4285. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4286. font-weight:400;
  4287. font-style:normal;
  4288. font-size:12px;
  4289. color:#606266;
  4290. }
  4291. #u8916 .text {
  4292. position:absolute;
  4293. align-self:center;
  4294. padding:2px 2px 2px 0px;
  4295. box-sizing:border-box;
  4296. width:100%;
  4297. }
  4298. #u8916_text {
  4299. border-width:0px;
  4300. word-wrap:break-word;
  4301. text-transform:none;
  4302. visibility:hidden;
  4303. }
  4304. #u8917_img {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:0px;
  4308. top:0px;
  4309. width:136px;
  4310. height:38px;
  4311. }
  4312. #u8917 {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:1081px;
  4316. top:189px;
  4317. width:136px;
  4318. height:38px;
  4319. display:flex;
  4320. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4321. font-weight:400;
  4322. font-style:normal;
  4323. font-size:12px;
  4324. color:#606266;
  4325. }
  4326. #u8917 .text {
  4327. position:absolute;
  4328. align-self:center;
  4329. padding:2px 2px 2px 0px;
  4330. box-sizing:border-box;
  4331. width:100%;
  4332. }
  4333. #u8917_text {
  4334. border-width:0px;
  4335. word-wrap:break-word;
  4336. text-transform:none;
  4337. visibility:hidden;
  4338. }
  4339. #u8918_img {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:92px;
  4345. height:38px;
  4346. }
  4347. #u8918 {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:0px;
  4351. top:227px;
  4352. width:92px;
  4353. height:38px;
  4354. display:flex;
  4355. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. font-size:12px;
  4359. color:#606266;
  4360. }
  4361. #u8918 .text {
  4362. position:absolute;
  4363. align-self:center;
  4364. padding:2px 2px 2px 0px;
  4365. box-sizing:border-box;
  4366. width:100%;
  4367. }
  4368. #u8918_text {
  4369. border-width:0px;
  4370. word-wrap:break-word;
  4371. text-transform:none;
  4372. visibility:hidden;
  4373. }
  4374. #u8919_img {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:94px;
  4380. height:38px;
  4381. }
  4382. #u8919 {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:92px;
  4386. top:227px;
  4387. width:94px;
  4388. height:38px;
  4389. display:flex;
  4390. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4391. font-weight:400;
  4392. font-style:normal;
  4393. font-size:12px;
  4394. color:#606266;
  4395. }
  4396. #u8919 .text {
  4397. position:absolute;
  4398. align-self:center;
  4399. padding:2px 2px 2px 0px;
  4400. box-sizing:border-box;
  4401. width:100%;
  4402. }
  4403. #u8919_text {
  4404. border-width:0px;
  4405. word-wrap:break-word;
  4406. text-transform:none;
  4407. visibility:hidden;
  4408. }
  4409. #u8920_img {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:91px;
  4415. height:38px;
  4416. }
  4417. #u8920 {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:186px;
  4421. top:227px;
  4422. width:91px;
  4423. height:38px;
  4424. display:flex;
  4425. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:12px;
  4429. color:#606266;
  4430. }
  4431. #u8920 .text {
  4432. position:absolute;
  4433. align-self:center;
  4434. padding:2px 2px 2px 0px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u8920_text {
  4439. border-width:0px;
  4440. word-wrap:break-word;
  4441. text-transform:none;
  4442. visibility:hidden;
  4443. }
  4444. #u8921_img {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:92px;
  4450. height:38px;
  4451. }
  4452. #u8921 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:277px;
  4456. top:227px;
  4457. width:92px;
  4458. height:38px;
  4459. display:flex;
  4460. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4461. font-weight:400;
  4462. font-style:normal;
  4463. font-size:12px;
  4464. color:#606266;
  4465. }
  4466. #u8921 .text {
  4467. position:absolute;
  4468. align-self:center;
  4469. padding:2px 2px 2px 0px;
  4470. box-sizing:border-box;
  4471. width:100%;
  4472. }
  4473. #u8921_text {
  4474. border-width:0px;
  4475. word-wrap:break-word;
  4476. text-transform:none;
  4477. visibility:hidden;
  4478. }
  4479. #u8922_img {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:0px;
  4483. top:0px;
  4484. width:92px;
  4485. height:38px;
  4486. }
  4487. #u8922 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:369px;
  4491. top:227px;
  4492. width:92px;
  4493. height:38px;
  4494. display:flex;
  4495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4496. font-weight:400;
  4497. font-style:normal;
  4498. font-size:12px;
  4499. }
  4500. #u8922 .text {
  4501. position:absolute;
  4502. align-self:center;
  4503. padding:2px 2px 2px 0px;
  4504. box-sizing:border-box;
  4505. width:100%;
  4506. }
  4507. #u8922_text {
  4508. border-width:0px;
  4509. word-wrap:break-word;
  4510. text-transform:none;
  4511. visibility:hidden;
  4512. }
  4513. #u8923_img {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:0px;
  4517. top:0px;
  4518. width:92px;
  4519. height:38px;
  4520. }
  4521. #u8923 {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:461px;
  4525. top:227px;
  4526. width:92px;
  4527. height:38px;
  4528. display:flex;
  4529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4530. font-weight:400;
  4531. font-style:normal;
  4532. font-size:12px;
  4533. }
  4534. #u8923 .text {
  4535. position:absolute;
  4536. align-self:center;
  4537. padding:2px 2px 2px 0px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u8923_text {
  4542. border-width:0px;
  4543. word-wrap:break-word;
  4544. text-transform:none;
  4545. visibility:hidden;
  4546. }
  4547. #u8924_img {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:0px;
  4551. top:0px;
  4552. width:92px;
  4553. height:38px;
  4554. }
  4555. #u8924 {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:553px;
  4559. top:227px;
  4560. width:92px;
  4561. height:38px;
  4562. display:flex;
  4563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4564. font-weight:400;
  4565. font-style:normal;
  4566. font-size:12px;
  4567. }
  4568. #u8924 .text {
  4569. position:absolute;
  4570. align-self:center;
  4571. padding:2px 2px 2px 0px;
  4572. box-sizing:border-box;
  4573. width:100%;
  4574. }
  4575. #u8924_text {
  4576. border-width:0px;
  4577. word-wrap:break-word;
  4578. text-transform:none;
  4579. visibility:hidden;
  4580. }
  4581. #u8925_img {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:79px;
  4587. height:38px;
  4588. }
  4589. #u8925 {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:645px;
  4593. top:227px;
  4594. width:79px;
  4595. height:38px;
  4596. display:flex;
  4597. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4598. font-weight:400;
  4599. font-style:normal;
  4600. font-size:12px;
  4601. color:#606266;
  4602. }
  4603. #u8925 .text {
  4604. position:absolute;
  4605. align-self:center;
  4606. padding:2px 2px 2px 0px;
  4607. box-sizing:border-box;
  4608. width:100%;
  4609. }
  4610. #u8925_text {
  4611. border-width:0px;
  4612. word-wrap:break-word;
  4613. text-transform:none;
  4614. visibility:hidden;
  4615. }
  4616. #u8926_img {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:79px;
  4622. height:38px;
  4623. }
  4624. #u8926 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:724px;
  4628. top:227px;
  4629. width:79px;
  4630. height:38px;
  4631. display:flex;
  4632. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4633. font-weight:400;
  4634. font-style:normal;
  4635. font-size:12px;
  4636. color:#606266;
  4637. }
  4638. #u8926 .text {
  4639. position:absolute;
  4640. align-self:center;
  4641. padding:2px 2px 2px 0px;
  4642. box-sizing:border-box;
  4643. width:100%;
  4644. }
  4645. #u8926_text {
  4646. border-width:0px;
  4647. word-wrap:break-word;
  4648. text-transform:none;
  4649. visibility:hidden;
  4650. }
  4651. #u8927_img {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:92px;
  4657. height:38px;
  4658. }
  4659. #u8927 {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:803px;
  4663. top:227px;
  4664. width:92px;
  4665. height:38px;
  4666. display:flex;
  4667. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4668. font-weight:400;
  4669. font-style:normal;
  4670. font-size:12px;
  4671. color:#606266;
  4672. }
  4673. #u8927 .text {
  4674. position:absolute;
  4675. align-self:center;
  4676. padding:2px 2px 2px 0px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u8927_text {
  4681. border-width:0px;
  4682. word-wrap:break-word;
  4683. text-transform:none;
  4684. visibility:hidden;
  4685. }
  4686. #u8928_img {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:0px;
  4690. top:0px;
  4691. width:94px;
  4692. height:38px;
  4693. }
  4694. #u8928 {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:895px;
  4698. top:227px;
  4699. width:94px;
  4700. height:38px;
  4701. display:flex;
  4702. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4703. font-weight:400;
  4704. font-style:normal;
  4705. font-size:12px;
  4706. color:#606266;
  4707. }
  4708. #u8928 .text {
  4709. position:absolute;
  4710. align-self:center;
  4711. padding:2px 2px 2px 0px;
  4712. box-sizing:border-box;
  4713. width:100%;
  4714. }
  4715. #u8928_text {
  4716. border-width:0px;
  4717. word-wrap:break-word;
  4718. text-transform:none;
  4719. visibility:hidden;
  4720. }
  4721. #u8929_img {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:92px;
  4727. height:38px;
  4728. }
  4729. #u8929 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:989px;
  4733. top:227px;
  4734. width:92px;
  4735. height:38px;
  4736. display:flex;
  4737. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4738. font-weight:400;
  4739. font-style:normal;
  4740. font-size:12px;
  4741. color:#606266;
  4742. }
  4743. #u8929 .text {
  4744. position:absolute;
  4745. align-self:center;
  4746. padding:2px 2px 2px 0px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u8929_text {
  4751. border-width:0px;
  4752. word-wrap:break-word;
  4753. text-transform:none;
  4754. visibility:hidden;
  4755. }
  4756. #u8930_img {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:136px;
  4762. height:38px;
  4763. }
  4764. #u8930 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:1081px;
  4768. top:227px;
  4769. width:136px;
  4770. height:38px;
  4771. display:flex;
  4772. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4773. font-weight:400;
  4774. font-style:normal;
  4775. font-size:12px;
  4776. color:#606266;
  4777. }
  4778. #u8930 .text {
  4779. position:absolute;
  4780. align-self:center;
  4781. padding:2px 2px 2px 0px;
  4782. box-sizing:border-box;
  4783. width:100%;
  4784. }
  4785. #u8930_text {
  4786. border-width:0px;
  4787. word-wrap:break-word;
  4788. text-transform:none;
  4789. visibility:hidden;
  4790. }
  4791. #u8931_img {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:92px;
  4797. height:38px;
  4798. }
  4799. #u8931 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:0px;
  4803. top:265px;
  4804. width:92px;
  4805. height:38px;
  4806. display:flex;
  4807. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4808. font-weight:400;
  4809. font-style:normal;
  4810. font-size:12px;
  4811. color:#606266;
  4812. }
  4813. #u8931 .text {
  4814. position:absolute;
  4815. align-self:center;
  4816. padding:2px 2px 2px 0px;
  4817. box-sizing:border-box;
  4818. width:100%;
  4819. }
  4820. #u8931_text {
  4821. border-width:0px;
  4822. word-wrap:break-word;
  4823. text-transform:none;
  4824. visibility:hidden;
  4825. }
  4826. #u8932_img {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:94px;
  4832. height:38px;
  4833. }
  4834. #u8932 {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:92px;
  4838. top:265px;
  4839. width:94px;
  4840. height:38px;
  4841. display:flex;
  4842. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4843. font-weight:400;
  4844. font-style:normal;
  4845. font-size:12px;
  4846. color:#606266;
  4847. }
  4848. #u8932 .text {
  4849. position:absolute;
  4850. align-self:center;
  4851. padding:2px 2px 2px 0px;
  4852. box-sizing:border-box;
  4853. width:100%;
  4854. }
  4855. #u8932_text {
  4856. border-width:0px;
  4857. word-wrap:break-word;
  4858. text-transform:none;
  4859. visibility:hidden;
  4860. }
  4861. #u8933_img {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:91px;
  4867. height:38px;
  4868. }
  4869. #u8933 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:186px;
  4873. top:265px;
  4874. width:91px;
  4875. height:38px;
  4876. display:flex;
  4877. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4878. font-weight:400;
  4879. font-style:normal;
  4880. font-size:12px;
  4881. color:#606266;
  4882. }
  4883. #u8933 .text {
  4884. position:absolute;
  4885. align-self:center;
  4886. padding:2px 2px 2px 0px;
  4887. box-sizing:border-box;
  4888. width:100%;
  4889. }
  4890. #u8933_text {
  4891. border-width:0px;
  4892. word-wrap:break-word;
  4893. text-transform:none;
  4894. visibility:hidden;
  4895. }
  4896. #u8934_img {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:92px;
  4902. height:38px;
  4903. }
  4904. #u8934 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:277px;
  4908. top:265px;
  4909. width:92px;
  4910. height:38px;
  4911. display:flex;
  4912. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:12px;
  4916. color:#606266;
  4917. }
  4918. #u8934 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 0px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u8934_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u8935_img {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:92px;
  4937. height:38px;
  4938. }
  4939. #u8935 {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:369px;
  4943. top:265px;
  4944. width:92px;
  4945. height:38px;
  4946. display:flex;
  4947. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4948. font-weight:400;
  4949. font-style:normal;
  4950. font-size:12px;
  4951. color:#606266;
  4952. }
  4953. #u8935 .text {
  4954. position:absolute;
  4955. align-self:center;
  4956. padding:2px 2px 2px 0px;
  4957. box-sizing:border-box;
  4958. width:100%;
  4959. }
  4960. #u8935_text {
  4961. border-width:0px;
  4962. word-wrap:break-word;
  4963. text-transform:none;
  4964. visibility:hidden;
  4965. }
  4966. #u8936_img {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:0px;
  4970. top:0px;
  4971. width:92px;
  4972. height:38px;
  4973. }
  4974. #u8936 {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:461px;
  4978. top:265px;
  4979. width:92px;
  4980. height:38px;
  4981. display:flex;
  4982. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4983. font-weight:400;
  4984. font-style:normal;
  4985. font-size:12px;
  4986. color:#606266;
  4987. }
  4988. #u8936 .text {
  4989. position:absolute;
  4990. align-self:center;
  4991. padding:2px 2px 2px 0px;
  4992. box-sizing:border-box;
  4993. width:100%;
  4994. }
  4995. #u8936_text {
  4996. border-width:0px;
  4997. word-wrap:break-word;
  4998. text-transform:none;
  4999. visibility:hidden;
  5000. }
  5001. #u8937_img {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:0px;
  5005. top:0px;
  5006. width:92px;
  5007. height:38px;
  5008. }
  5009. #u8937 {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:553px;
  5013. top:265px;
  5014. width:92px;
  5015. height:38px;
  5016. display:flex;
  5017. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5018. font-weight:400;
  5019. font-style:normal;
  5020. font-size:12px;
  5021. color:#606266;
  5022. }
  5023. #u8937 .text {
  5024. position:absolute;
  5025. align-self:center;
  5026. padding:2px 2px 2px 0px;
  5027. box-sizing:border-box;
  5028. width:100%;
  5029. }
  5030. #u8937_text {
  5031. border-width:0px;
  5032. word-wrap:break-word;
  5033. text-transform:none;
  5034. visibility:hidden;
  5035. }
  5036. #u8938_img {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:0px;
  5040. top:0px;
  5041. width:79px;
  5042. height:38px;
  5043. }
  5044. #u8938 {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:645px;
  5048. top:265px;
  5049. width:79px;
  5050. height:38px;
  5051. display:flex;
  5052. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5053. font-weight:400;
  5054. font-style:normal;
  5055. font-size:12px;
  5056. color:#606266;
  5057. }
  5058. #u8938 .text {
  5059. position:absolute;
  5060. align-self:center;
  5061. padding:2px 2px 2px 0px;
  5062. box-sizing:border-box;
  5063. width:100%;
  5064. }
  5065. #u8938_text {
  5066. border-width:0px;
  5067. word-wrap:break-word;
  5068. text-transform:none;
  5069. visibility:hidden;
  5070. }
  5071. #u8939_img {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:0px;
  5075. top:0px;
  5076. width:79px;
  5077. height:38px;
  5078. }
  5079. #u8939 {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:724px;
  5083. top:265px;
  5084. width:79px;
  5085. height:38px;
  5086. display:flex;
  5087. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5088. font-weight:400;
  5089. font-style:normal;
  5090. font-size:12px;
  5091. color:#606266;
  5092. }
  5093. #u8939 .text {
  5094. position:absolute;
  5095. align-self:center;
  5096. padding:2px 2px 2px 0px;
  5097. box-sizing:border-box;
  5098. width:100%;
  5099. }
  5100. #u8939_text {
  5101. border-width:0px;
  5102. word-wrap:break-word;
  5103. text-transform:none;
  5104. visibility:hidden;
  5105. }
  5106. #u8940_img {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:92px;
  5112. height:38px;
  5113. }
  5114. #u8940 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:803px;
  5118. top:265px;
  5119. width:92px;
  5120. height:38px;
  5121. display:flex;
  5122. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5123. font-weight:400;
  5124. font-style:normal;
  5125. font-size:12px;
  5126. color:#606266;
  5127. }
  5128. #u8940 .text {
  5129. position:absolute;
  5130. align-self:center;
  5131. padding:2px 2px 2px 0px;
  5132. box-sizing:border-box;
  5133. width:100%;
  5134. }
  5135. #u8940_text {
  5136. border-width:0px;
  5137. word-wrap:break-word;
  5138. text-transform:none;
  5139. visibility:hidden;
  5140. }
  5141. #u8941_img {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:94px;
  5147. height:38px;
  5148. }
  5149. #u8941 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:895px;
  5153. top:265px;
  5154. width:94px;
  5155. height:38px;
  5156. display:flex;
  5157. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5158. font-weight:400;
  5159. font-style:normal;
  5160. font-size:12px;
  5161. color:#606266;
  5162. }
  5163. #u8941 .text {
  5164. position:absolute;
  5165. align-self:center;
  5166. padding:2px 2px 2px 0px;
  5167. box-sizing:border-box;
  5168. width:100%;
  5169. }
  5170. #u8941_text {
  5171. border-width:0px;
  5172. word-wrap:break-word;
  5173. text-transform:none;
  5174. visibility:hidden;
  5175. }
  5176. #u8942_img {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:92px;
  5182. height:38px;
  5183. }
  5184. #u8942 {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:989px;
  5188. top:265px;
  5189. width:92px;
  5190. height:38px;
  5191. display:flex;
  5192. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5193. font-weight:400;
  5194. font-style:normal;
  5195. font-size:12px;
  5196. color:#606266;
  5197. }
  5198. #u8942 .text {
  5199. position:absolute;
  5200. align-self:center;
  5201. padding:2px 2px 2px 0px;
  5202. box-sizing:border-box;
  5203. width:100%;
  5204. }
  5205. #u8942_text {
  5206. border-width:0px;
  5207. word-wrap:break-word;
  5208. text-transform:none;
  5209. visibility:hidden;
  5210. }
  5211. #u8943_img {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:0px;
  5215. top:0px;
  5216. width:136px;
  5217. height:38px;
  5218. }
  5219. #u8943 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:1081px;
  5223. top:265px;
  5224. width:136px;
  5225. height:38px;
  5226. display:flex;
  5227. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5228. font-weight:400;
  5229. font-style:normal;
  5230. font-size:12px;
  5231. color:#606266;
  5232. }
  5233. #u8943 .text {
  5234. position:absolute;
  5235. align-self:center;
  5236. padding:2px 2px 2px 0px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u8943_text {
  5241. border-width:0px;
  5242. word-wrap:break-word;
  5243. text-transform:none;
  5244. visibility:hidden;
  5245. }
  5246. #u8944_img {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:92px;
  5252. height:38px;
  5253. }
  5254. #u8944 {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:303px;
  5259. width:92px;
  5260. height:38px;
  5261. display:flex;
  5262. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5263. font-weight:400;
  5264. font-style:normal;
  5265. font-size:12px;
  5266. color:#606266;
  5267. }
  5268. #u8944 .text {
  5269. position:absolute;
  5270. align-self:center;
  5271. padding:2px 2px 2px 0px;
  5272. box-sizing:border-box;
  5273. width:100%;
  5274. }
  5275. #u8944_text {
  5276. border-width:0px;
  5277. word-wrap:break-word;
  5278. text-transform:none;
  5279. visibility:hidden;
  5280. }
  5281. #u8945_img {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:94px;
  5287. height:38px;
  5288. }
  5289. #u8945 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:92px;
  5293. top:303px;
  5294. width:94px;
  5295. height:38px;
  5296. display:flex;
  5297. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. font-size:12px;
  5301. color:#606266;
  5302. }
  5303. #u8945 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 0px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u8945_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. visibility:hidden;
  5315. }
  5316. #u8946_img {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:91px;
  5322. height:38px;
  5323. }
  5324. #u8946 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:186px;
  5328. top:303px;
  5329. width:91px;
  5330. height:38px;
  5331. display:flex;
  5332. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5333. font-weight:400;
  5334. font-style:normal;
  5335. font-size:12px;
  5336. color:#606266;
  5337. }
  5338. #u8946 .text {
  5339. position:absolute;
  5340. align-self:center;
  5341. padding:2px 2px 2px 0px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u8946_text {
  5346. border-width:0px;
  5347. word-wrap:break-word;
  5348. text-transform:none;
  5349. visibility:hidden;
  5350. }
  5351. #u8947_img {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:0px;
  5355. top:0px;
  5356. width:92px;
  5357. height:38px;
  5358. }
  5359. #u8947 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:277px;
  5363. top:303px;
  5364. width:92px;
  5365. height:38px;
  5366. display:flex;
  5367. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. font-size:12px;
  5371. color:#606266;
  5372. }
  5373. #u8947 .text {
  5374. position:absolute;
  5375. align-self:center;
  5376. padding:2px 2px 2px 0px;
  5377. box-sizing:border-box;
  5378. width:100%;
  5379. }
  5380. #u8947_text {
  5381. border-width:0px;
  5382. word-wrap:break-word;
  5383. text-transform:none;
  5384. visibility:hidden;
  5385. }
  5386. #u8948_img {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:0px;
  5390. top:0px;
  5391. width:92px;
  5392. height:38px;
  5393. }
  5394. #u8948 {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:369px;
  5398. top:303px;
  5399. width:92px;
  5400. height:38px;
  5401. display:flex;
  5402. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5403. font-weight:400;
  5404. font-style:normal;
  5405. font-size:12px;
  5406. color:#606266;
  5407. }
  5408. #u8948 .text {
  5409. position:absolute;
  5410. align-self:center;
  5411. padding:2px 2px 2px 0px;
  5412. box-sizing:border-box;
  5413. width:100%;
  5414. }
  5415. #u8948_text {
  5416. border-width:0px;
  5417. word-wrap:break-word;
  5418. text-transform:none;
  5419. visibility:hidden;
  5420. }
  5421. #u8949_img {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:92px;
  5427. height:38px;
  5428. }
  5429. #u8949 {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:461px;
  5433. top:303px;
  5434. width:92px;
  5435. height:38px;
  5436. display:flex;
  5437. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5438. font-weight:400;
  5439. font-style:normal;
  5440. font-size:12px;
  5441. color:#606266;
  5442. }
  5443. #u8949 .text {
  5444. position:absolute;
  5445. align-self:center;
  5446. padding:2px 2px 2px 0px;
  5447. box-sizing:border-box;
  5448. width:100%;
  5449. }
  5450. #u8949_text {
  5451. border-width:0px;
  5452. word-wrap:break-word;
  5453. text-transform:none;
  5454. visibility:hidden;
  5455. }
  5456. #u8950_img {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:92px;
  5462. height:38px;
  5463. }
  5464. #u8950 {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:553px;
  5468. top:303px;
  5469. width:92px;
  5470. height:38px;
  5471. display:flex;
  5472. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:12px;
  5476. color:#606266;
  5477. }
  5478. #u8950 .text {
  5479. position:absolute;
  5480. align-self:center;
  5481. padding:2px 2px 2px 0px;
  5482. box-sizing:border-box;
  5483. width:100%;
  5484. }
  5485. #u8950_text {
  5486. border-width:0px;
  5487. word-wrap:break-word;
  5488. text-transform:none;
  5489. visibility:hidden;
  5490. }
  5491. #u8951_img {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:0px;
  5495. top:0px;
  5496. width:79px;
  5497. height:38px;
  5498. }
  5499. #u8951 {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:645px;
  5503. top:303px;
  5504. width:79px;
  5505. height:38px;
  5506. display:flex;
  5507. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5508. font-weight:400;
  5509. font-style:normal;
  5510. font-size:12px;
  5511. color:#606266;
  5512. }
  5513. #u8951 .text {
  5514. position:absolute;
  5515. align-self:center;
  5516. padding:2px 2px 2px 0px;
  5517. box-sizing:border-box;
  5518. width:100%;
  5519. }
  5520. #u8951_text {
  5521. border-width:0px;
  5522. word-wrap:break-word;
  5523. text-transform:none;
  5524. visibility:hidden;
  5525. }
  5526. #u8952_img {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:79px;
  5532. height:38px;
  5533. }
  5534. #u8952 {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:724px;
  5538. top:303px;
  5539. width:79px;
  5540. height:38px;
  5541. display:flex;
  5542. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5543. font-weight:400;
  5544. font-style:normal;
  5545. font-size:12px;
  5546. color:#606266;
  5547. }
  5548. #u8952 .text {
  5549. position:absolute;
  5550. align-self:center;
  5551. padding:2px 2px 2px 0px;
  5552. box-sizing:border-box;
  5553. width:100%;
  5554. }
  5555. #u8952_text {
  5556. border-width:0px;
  5557. word-wrap:break-word;
  5558. text-transform:none;
  5559. visibility:hidden;
  5560. }
  5561. #u8953_img {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:92px;
  5567. height:38px;
  5568. }
  5569. #u8953 {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:803px;
  5573. top:303px;
  5574. width:92px;
  5575. height:38px;
  5576. display:flex;
  5577. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:12px;
  5581. color:#606266;
  5582. }
  5583. #u8953 .text {
  5584. position:absolute;
  5585. align-self:center;
  5586. padding:2px 2px 2px 0px;
  5587. box-sizing:border-box;
  5588. width:100%;
  5589. }
  5590. #u8953_text {
  5591. border-width:0px;
  5592. word-wrap:break-word;
  5593. text-transform:none;
  5594. visibility:hidden;
  5595. }
  5596. #u8954_img {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:0px;
  5600. top:0px;
  5601. width:94px;
  5602. height:38px;
  5603. }
  5604. #u8954 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:895px;
  5608. top:303px;
  5609. width:94px;
  5610. height:38px;
  5611. display:flex;
  5612. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5613. font-weight:400;
  5614. font-style:normal;
  5615. font-size:12px;
  5616. color:#606266;
  5617. }
  5618. #u8954 .text {
  5619. position:absolute;
  5620. align-self:center;
  5621. padding:2px 2px 2px 0px;
  5622. box-sizing:border-box;
  5623. width:100%;
  5624. }
  5625. #u8954_text {
  5626. border-width:0px;
  5627. word-wrap:break-word;
  5628. text-transform:none;
  5629. visibility:hidden;
  5630. }
  5631. #u8955_img {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:0px;
  5635. top:0px;
  5636. width:92px;
  5637. height:38px;
  5638. }
  5639. #u8955 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:989px;
  5643. top:303px;
  5644. width:92px;
  5645. height:38px;
  5646. display:flex;
  5647. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5648. font-weight:400;
  5649. font-style:normal;
  5650. font-size:12px;
  5651. color:#606266;
  5652. }
  5653. #u8955 .text {
  5654. position:absolute;
  5655. align-self:center;
  5656. padding:2px 2px 2px 0px;
  5657. box-sizing:border-box;
  5658. width:100%;
  5659. }
  5660. #u8955_text {
  5661. border-width:0px;
  5662. word-wrap:break-word;
  5663. text-transform:none;
  5664. visibility:hidden;
  5665. }
  5666. #u8956_img {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:0px;
  5670. top:0px;
  5671. width:136px;
  5672. height:38px;
  5673. }
  5674. #u8956 {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:1081px;
  5678. top:303px;
  5679. width:136px;
  5680. height:38px;
  5681. display:flex;
  5682. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5683. font-weight:400;
  5684. font-style:normal;
  5685. font-size:12px;
  5686. color:#606266;
  5687. }
  5688. #u8956 .text {
  5689. position:absolute;
  5690. align-self:center;
  5691. padding:2px 2px 2px 0px;
  5692. box-sizing:border-box;
  5693. width:100%;
  5694. }
  5695. #u8956_text {
  5696. border-width:0px;
  5697. word-wrap:break-word;
  5698. text-transform:none;
  5699. visibility:hidden;
  5700. }
  5701. #u8957_img {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:0px;
  5705. top:0px;
  5706. width:92px;
  5707. height:38px;
  5708. }
  5709. #u8957 {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:0px;
  5713. top:341px;
  5714. width:92px;
  5715. height:38px;
  5716. display:flex;
  5717. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5718. font-weight:400;
  5719. font-style:normal;
  5720. font-size:12px;
  5721. color:#606266;
  5722. }
  5723. #u8957 .text {
  5724. position:absolute;
  5725. align-self:center;
  5726. padding:2px 2px 2px 0px;
  5727. box-sizing:border-box;
  5728. width:100%;
  5729. }
  5730. #u8957_text {
  5731. border-width:0px;
  5732. word-wrap:break-word;
  5733. text-transform:none;
  5734. visibility:hidden;
  5735. }
  5736. #u8958_img {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:94px;
  5742. height:38px;
  5743. }
  5744. #u8958 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:92px;
  5748. top:341px;
  5749. width:94px;
  5750. height:38px;
  5751. display:flex;
  5752. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5753. font-weight:400;
  5754. font-style:normal;
  5755. font-size:12px;
  5756. color:#606266;
  5757. }
  5758. #u8958 .text {
  5759. position:absolute;
  5760. align-self:center;
  5761. padding:2px 2px 2px 0px;
  5762. box-sizing:border-box;
  5763. width:100%;
  5764. }
  5765. #u8958_text {
  5766. border-width:0px;
  5767. word-wrap:break-word;
  5768. text-transform:none;
  5769. visibility:hidden;
  5770. }
  5771. #u8959_img {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:0px;
  5775. top:0px;
  5776. width:91px;
  5777. height:38px;
  5778. }
  5779. #u8959 {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:186px;
  5783. top:341px;
  5784. width:91px;
  5785. height:38px;
  5786. display:flex;
  5787. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:12px;
  5791. color:#606266;
  5792. }
  5793. #u8959 .text {
  5794. position:absolute;
  5795. align-self:center;
  5796. padding:2px 2px 2px 0px;
  5797. box-sizing:border-box;
  5798. width:100%;
  5799. }
  5800. #u8959_text {
  5801. border-width:0px;
  5802. word-wrap:break-word;
  5803. text-transform:none;
  5804. visibility:hidden;
  5805. }
  5806. #u8960_img {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:0px;
  5810. top:0px;
  5811. width:92px;
  5812. height:38px;
  5813. }
  5814. #u8960 {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:277px;
  5818. top:341px;
  5819. width:92px;
  5820. height:38px;
  5821. display:flex;
  5822. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5823. font-weight:400;
  5824. font-style:normal;
  5825. font-size:12px;
  5826. color:#606266;
  5827. }
  5828. #u8960 .text {
  5829. position:absolute;
  5830. align-self:center;
  5831. padding:2px 2px 2px 0px;
  5832. box-sizing:border-box;
  5833. width:100%;
  5834. }
  5835. #u8960_text {
  5836. border-width:0px;
  5837. word-wrap:break-word;
  5838. text-transform:none;
  5839. visibility:hidden;
  5840. }
  5841. #u8961_img {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:92px;
  5847. height:38px;
  5848. }
  5849. #u8961 {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:369px;
  5853. top:341px;
  5854. width:92px;
  5855. height:38px;
  5856. display:flex;
  5857. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5858. font-weight:400;
  5859. font-style:normal;
  5860. font-size:12px;
  5861. color:#606266;
  5862. }
  5863. #u8961 .text {
  5864. position:absolute;
  5865. align-self:center;
  5866. padding:2px 2px 2px 0px;
  5867. box-sizing:border-box;
  5868. width:100%;
  5869. }
  5870. #u8961_text {
  5871. border-width:0px;
  5872. word-wrap:break-word;
  5873. text-transform:none;
  5874. visibility:hidden;
  5875. }
  5876. #u8962_img {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:92px;
  5882. height:38px;
  5883. }
  5884. #u8962 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:461px;
  5888. top:341px;
  5889. width:92px;
  5890. height:38px;
  5891. display:flex;
  5892. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5893. font-weight:400;
  5894. font-style:normal;
  5895. font-size:12px;
  5896. color:#606266;
  5897. }
  5898. #u8962 .text {
  5899. position:absolute;
  5900. align-self:center;
  5901. padding:2px 2px 2px 0px;
  5902. box-sizing:border-box;
  5903. width:100%;
  5904. }
  5905. #u8962_text {
  5906. border-width:0px;
  5907. word-wrap:break-word;
  5908. text-transform:none;
  5909. visibility:hidden;
  5910. }
  5911. #u8963_img {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:0px;
  5915. top:0px;
  5916. width:92px;
  5917. height:38px;
  5918. }
  5919. #u8963 {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:553px;
  5923. top:341px;
  5924. width:92px;
  5925. height:38px;
  5926. display:flex;
  5927. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5928. font-weight:400;
  5929. font-style:normal;
  5930. font-size:12px;
  5931. color:#606266;
  5932. }
  5933. #u8963 .text {
  5934. position:absolute;
  5935. align-self:center;
  5936. padding:2px 2px 2px 0px;
  5937. box-sizing:border-box;
  5938. width:100%;
  5939. }
  5940. #u8963_text {
  5941. border-width:0px;
  5942. word-wrap:break-word;
  5943. text-transform:none;
  5944. visibility:hidden;
  5945. }
  5946. #u8964_img {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:0px;
  5950. top:0px;
  5951. width:79px;
  5952. height:38px;
  5953. }
  5954. #u8964 {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:645px;
  5958. top:341px;
  5959. width:79px;
  5960. height:38px;
  5961. display:flex;
  5962. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5963. font-weight:400;
  5964. font-style:normal;
  5965. font-size:12px;
  5966. color:#606266;
  5967. }
  5968. #u8964 .text {
  5969. position:absolute;
  5970. align-self:center;
  5971. padding:2px 2px 2px 0px;
  5972. box-sizing:border-box;
  5973. width:100%;
  5974. }
  5975. #u8964_text {
  5976. border-width:0px;
  5977. word-wrap:break-word;
  5978. text-transform:none;
  5979. visibility:hidden;
  5980. }
  5981. #u8965_img {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:79px;
  5987. height:38px;
  5988. }
  5989. #u8965 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:724px;
  5993. top:341px;
  5994. width:79px;
  5995. height:38px;
  5996. display:flex;
  5997. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5998. font-weight:400;
  5999. font-style:normal;
  6000. font-size:12px;
  6001. color:#606266;
  6002. }
  6003. #u8965 .text {
  6004. position:absolute;
  6005. align-self:center;
  6006. padding:2px 2px 2px 0px;
  6007. box-sizing:border-box;
  6008. width:100%;
  6009. }
  6010. #u8965_text {
  6011. border-width:0px;
  6012. word-wrap:break-word;
  6013. text-transform:none;
  6014. visibility:hidden;
  6015. }
  6016. #u8966_img {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:92px;
  6022. height:38px;
  6023. }
  6024. #u8966 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:803px;
  6028. top:341px;
  6029. width:92px;
  6030. height:38px;
  6031. display:flex;
  6032. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6033. font-weight:400;
  6034. font-style:normal;
  6035. font-size:12px;
  6036. color:#606266;
  6037. }
  6038. #u8966 .text {
  6039. position:absolute;
  6040. align-self:center;
  6041. padding:2px 2px 2px 0px;
  6042. box-sizing:border-box;
  6043. width:100%;
  6044. }
  6045. #u8966_text {
  6046. border-width:0px;
  6047. word-wrap:break-word;
  6048. text-transform:none;
  6049. visibility:hidden;
  6050. }
  6051. #u8967_img {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:0px;
  6055. top:0px;
  6056. width:94px;
  6057. height:38px;
  6058. }
  6059. #u8967 {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:895px;
  6063. top:341px;
  6064. width:94px;
  6065. height:38px;
  6066. display:flex;
  6067. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6068. font-weight:400;
  6069. font-style:normal;
  6070. font-size:12px;
  6071. color:#606266;
  6072. }
  6073. #u8967 .text {
  6074. position:absolute;
  6075. align-self:center;
  6076. padding:2px 2px 2px 0px;
  6077. box-sizing:border-box;
  6078. width:100%;
  6079. }
  6080. #u8967_text {
  6081. border-width:0px;
  6082. word-wrap:break-word;
  6083. text-transform:none;
  6084. visibility:hidden;
  6085. }
  6086. #u8968_img {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:0px;
  6090. top:0px;
  6091. width:92px;
  6092. height:38px;
  6093. }
  6094. #u8968 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:989px;
  6098. top:341px;
  6099. width:92px;
  6100. height:38px;
  6101. display:flex;
  6102. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6103. font-weight:400;
  6104. font-style:normal;
  6105. font-size:12px;
  6106. color:#606266;
  6107. }
  6108. #u8968 .text {
  6109. position:absolute;
  6110. align-self:center;
  6111. padding:2px 2px 2px 0px;
  6112. box-sizing:border-box;
  6113. width:100%;
  6114. }
  6115. #u8968_text {
  6116. border-width:0px;
  6117. word-wrap:break-word;
  6118. text-transform:none;
  6119. visibility:hidden;
  6120. }
  6121. #u8969_img {
  6122. border-width:0px;
  6123. position:absolute;
  6124. left:0px;
  6125. top:0px;
  6126. width:136px;
  6127. height:38px;
  6128. }
  6129. #u8969 {
  6130. border-width:0px;
  6131. position:absolute;
  6132. left:1081px;
  6133. top:341px;
  6134. width:136px;
  6135. height:38px;
  6136. display:flex;
  6137. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6138. font-weight:400;
  6139. font-style:normal;
  6140. font-size:12px;
  6141. color:#606266;
  6142. }
  6143. #u8969 .text {
  6144. position:absolute;
  6145. align-self:center;
  6146. padding:2px 2px 2px 0px;
  6147. box-sizing:border-box;
  6148. width:100%;
  6149. }
  6150. #u8969_text {
  6151. border-width:0px;
  6152. word-wrap:break-word;
  6153. text-transform:none;
  6154. visibility:hidden;
  6155. }
  6156. #u8970_img {
  6157. border-width:0px;
  6158. position:absolute;
  6159. left:0px;
  6160. top:0px;
  6161. width:92px;
  6162. height:38px;
  6163. }
  6164. #u8970 {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:0px;
  6168. top:379px;
  6169. width:92px;
  6170. height:38px;
  6171. display:flex;
  6172. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6173. font-weight:400;
  6174. font-style:normal;
  6175. font-size:12px;
  6176. color:#606266;
  6177. }
  6178. #u8970 .text {
  6179. position:absolute;
  6180. align-self:center;
  6181. padding:2px 2px 2px 0px;
  6182. box-sizing:border-box;
  6183. width:100%;
  6184. }
  6185. #u8970_text {
  6186. border-width:0px;
  6187. word-wrap:break-word;
  6188. text-transform:none;
  6189. visibility:hidden;
  6190. }
  6191. #u8971_img {
  6192. border-width:0px;
  6193. position:absolute;
  6194. left:0px;
  6195. top:0px;
  6196. width:94px;
  6197. height:38px;
  6198. }
  6199. #u8971 {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:92px;
  6203. top:379px;
  6204. width:94px;
  6205. height:38px;
  6206. display:flex;
  6207. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6208. font-weight:400;
  6209. font-style:normal;
  6210. font-size:12px;
  6211. color:#606266;
  6212. }
  6213. #u8971 .text {
  6214. position:absolute;
  6215. align-self:center;
  6216. padding:2px 2px 2px 0px;
  6217. box-sizing:border-box;
  6218. width:100%;
  6219. }
  6220. #u8971_text {
  6221. border-width:0px;
  6222. word-wrap:break-word;
  6223. text-transform:none;
  6224. visibility:hidden;
  6225. }
  6226. #u8972_img {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:91px;
  6232. height:38px;
  6233. }
  6234. #u8972 {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:186px;
  6238. top:379px;
  6239. width:91px;
  6240. height:38px;
  6241. display:flex;
  6242. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6243. font-weight:400;
  6244. font-style:normal;
  6245. font-size:12px;
  6246. color:#606266;
  6247. }
  6248. #u8972 .text {
  6249. position:absolute;
  6250. align-self:center;
  6251. padding:2px 2px 2px 0px;
  6252. box-sizing:border-box;
  6253. width:100%;
  6254. }
  6255. #u8972_text {
  6256. border-width:0px;
  6257. word-wrap:break-word;
  6258. text-transform:none;
  6259. visibility:hidden;
  6260. }
  6261. #u8973_img {
  6262. border-width:0px;
  6263. position:absolute;
  6264. left:0px;
  6265. top:0px;
  6266. width:92px;
  6267. height:38px;
  6268. }
  6269. #u8973 {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:277px;
  6273. top:379px;
  6274. width:92px;
  6275. height:38px;
  6276. display:flex;
  6277. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:12px;
  6281. color:#606266;
  6282. }
  6283. #u8973 .text {
  6284. position:absolute;
  6285. align-self:center;
  6286. padding:2px 2px 2px 0px;
  6287. box-sizing:border-box;
  6288. width:100%;
  6289. }
  6290. #u8973_text {
  6291. border-width:0px;
  6292. word-wrap:break-word;
  6293. text-transform:none;
  6294. visibility:hidden;
  6295. }
  6296. #u8974_img {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:0px;
  6300. top:0px;
  6301. width:92px;
  6302. height:38px;
  6303. }
  6304. #u8974 {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:369px;
  6308. top:379px;
  6309. width:92px;
  6310. height:38px;
  6311. display:flex;
  6312. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6313. font-weight:400;
  6314. font-style:normal;
  6315. font-size:12px;
  6316. color:#606266;
  6317. }
  6318. #u8974 .text {
  6319. position:absolute;
  6320. align-self:center;
  6321. padding:2px 2px 2px 0px;
  6322. box-sizing:border-box;
  6323. width:100%;
  6324. }
  6325. #u8974_text {
  6326. border-width:0px;
  6327. word-wrap:break-word;
  6328. text-transform:none;
  6329. visibility:hidden;
  6330. }
  6331. #u8975_img {
  6332. border-width:0px;
  6333. position:absolute;
  6334. left:0px;
  6335. top:0px;
  6336. width:92px;
  6337. height:38px;
  6338. }
  6339. #u8975 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:461px;
  6343. top:379px;
  6344. width:92px;
  6345. height:38px;
  6346. display:flex;
  6347. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6348. font-weight:400;
  6349. font-style:normal;
  6350. font-size:12px;
  6351. color:#606266;
  6352. }
  6353. #u8975 .text {
  6354. position:absolute;
  6355. align-self:center;
  6356. padding:2px 2px 2px 0px;
  6357. box-sizing:border-box;
  6358. width:100%;
  6359. }
  6360. #u8975_text {
  6361. border-width:0px;
  6362. word-wrap:break-word;
  6363. text-transform:none;
  6364. visibility:hidden;
  6365. }
  6366. #u8976_img {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:0px;
  6370. top:0px;
  6371. width:92px;
  6372. height:38px;
  6373. }
  6374. #u8976 {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:553px;
  6378. top:379px;
  6379. width:92px;
  6380. height:38px;
  6381. display:flex;
  6382. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6383. font-weight:400;
  6384. font-style:normal;
  6385. font-size:12px;
  6386. color:#606266;
  6387. }
  6388. #u8976 .text {
  6389. position:absolute;
  6390. align-self:center;
  6391. padding:2px 2px 2px 0px;
  6392. box-sizing:border-box;
  6393. width:100%;
  6394. }
  6395. #u8976_text {
  6396. border-width:0px;
  6397. word-wrap:break-word;
  6398. text-transform:none;
  6399. visibility:hidden;
  6400. }
  6401. #u8977_img {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:0px;
  6405. top:0px;
  6406. width:79px;
  6407. height:38px;
  6408. }
  6409. #u8977 {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:645px;
  6413. top:379px;
  6414. width:79px;
  6415. height:38px;
  6416. display:flex;
  6417. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6418. font-weight:400;
  6419. font-style:normal;
  6420. font-size:12px;
  6421. color:#606266;
  6422. }
  6423. #u8977 .text {
  6424. position:absolute;
  6425. align-self:center;
  6426. padding:2px 2px 2px 0px;
  6427. box-sizing:border-box;
  6428. width:100%;
  6429. }
  6430. #u8977_text {
  6431. border-width:0px;
  6432. word-wrap:break-word;
  6433. text-transform:none;
  6434. visibility:hidden;
  6435. }
  6436. #u8978_img {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:0px;
  6440. top:0px;
  6441. width:79px;
  6442. height:38px;
  6443. }
  6444. #u8978 {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:724px;
  6448. top:379px;
  6449. width:79px;
  6450. height:38px;
  6451. display:flex;
  6452. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6453. font-weight:400;
  6454. font-style:normal;
  6455. font-size:12px;
  6456. color:#606266;
  6457. }
  6458. #u8978 .text {
  6459. position:absolute;
  6460. align-self:center;
  6461. padding:2px 2px 2px 0px;
  6462. box-sizing:border-box;
  6463. width:100%;
  6464. }
  6465. #u8978_text {
  6466. border-width:0px;
  6467. word-wrap:break-word;
  6468. text-transform:none;
  6469. visibility:hidden;
  6470. }
  6471. #u8979_img {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:0px;
  6475. top:0px;
  6476. width:92px;
  6477. height:38px;
  6478. }
  6479. #u8979 {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:803px;
  6483. top:379px;
  6484. width:92px;
  6485. height:38px;
  6486. display:flex;
  6487. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:12px;
  6491. color:#606266;
  6492. }
  6493. #u8979 .text {
  6494. position:absolute;
  6495. align-self:center;
  6496. padding:2px 2px 2px 0px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u8979_text {
  6501. border-width:0px;
  6502. word-wrap:break-word;
  6503. text-transform:none;
  6504. visibility:hidden;
  6505. }
  6506. #u8980_img {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:0px;
  6510. top:0px;
  6511. width:94px;
  6512. height:38px;
  6513. }
  6514. #u8980 {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:895px;
  6518. top:379px;
  6519. width:94px;
  6520. height:38px;
  6521. display:flex;
  6522. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:12px;
  6526. color:#606266;
  6527. }
  6528. #u8980 .text {
  6529. position:absolute;
  6530. align-self:center;
  6531. padding:2px 2px 2px 0px;
  6532. box-sizing:border-box;
  6533. width:100%;
  6534. }
  6535. #u8980_text {
  6536. border-width:0px;
  6537. word-wrap:break-word;
  6538. text-transform:none;
  6539. visibility:hidden;
  6540. }
  6541. #u8981_img {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:92px;
  6547. height:38px;
  6548. }
  6549. #u8981 {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:989px;
  6553. top:379px;
  6554. width:92px;
  6555. height:38px;
  6556. display:flex;
  6557. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6558. font-weight:400;
  6559. font-style:normal;
  6560. font-size:12px;
  6561. color:#606266;
  6562. }
  6563. #u8981 .text {
  6564. position:absolute;
  6565. align-self:center;
  6566. padding:2px 2px 2px 0px;
  6567. box-sizing:border-box;
  6568. width:100%;
  6569. }
  6570. #u8981_text {
  6571. border-width:0px;
  6572. word-wrap:break-word;
  6573. text-transform:none;
  6574. visibility:hidden;
  6575. }
  6576. #u8982_img {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:0px;
  6580. top:0px;
  6581. width:136px;
  6582. height:38px;
  6583. }
  6584. #u8982 {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:1081px;
  6588. top:379px;
  6589. width:136px;
  6590. height:38px;
  6591. display:flex;
  6592. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6593. font-weight:400;
  6594. font-style:normal;
  6595. font-size:12px;
  6596. color:#606266;
  6597. }
  6598. #u8982 .text {
  6599. position:absolute;
  6600. align-self:center;
  6601. padding:2px 2px 2px 0px;
  6602. box-sizing:border-box;
  6603. width:100%;
  6604. }
  6605. #u8982_text {
  6606. border-width:0px;
  6607. word-wrap:break-word;
  6608. text-transform:none;
  6609. visibility:hidden;
  6610. }
  6611. #u8983_img {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:0px;
  6615. top:0px;
  6616. width:92px;
  6617. height:38px;
  6618. }
  6619. #u8983 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:417px;
  6624. width:92px;
  6625. height:38px;
  6626. display:flex;
  6627. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:12px;
  6631. color:#606266;
  6632. }
  6633. #u8983 .text {
  6634. position:absolute;
  6635. align-self:center;
  6636. padding:2px 2px 2px 0px;
  6637. box-sizing:border-box;
  6638. width:100%;
  6639. }
  6640. #u8983_text {
  6641. border-width:0px;
  6642. word-wrap:break-word;
  6643. text-transform:none;
  6644. visibility:hidden;
  6645. }
  6646. #u8984_img {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:94px;
  6652. height:38px;
  6653. }
  6654. #u8984 {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:92px;
  6658. top:417px;
  6659. width:94px;
  6660. height:38px;
  6661. display:flex;
  6662. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6663. font-weight:400;
  6664. font-style:normal;
  6665. font-size:12px;
  6666. color:#606266;
  6667. }
  6668. #u8984 .text {
  6669. position:absolute;
  6670. align-self:center;
  6671. padding:2px 2px 2px 0px;
  6672. box-sizing:border-box;
  6673. width:100%;
  6674. }
  6675. #u8984_text {
  6676. border-width:0px;
  6677. word-wrap:break-word;
  6678. text-transform:none;
  6679. visibility:hidden;
  6680. }
  6681. #u8985_img {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:91px;
  6687. height:38px;
  6688. }
  6689. #u8985 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:186px;
  6693. top:417px;
  6694. width:91px;
  6695. height:38px;
  6696. display:flex;
  6697. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6698. font-weight:400;
  6699. font-style:normal;
  6700. font-size:12px;
  6701. color:#606266;
  6702. }
  6703. #u8985 .text {
  6704. position:absolute;
  6705. align-self:center;
  6706. padding:2px 2px 2px 0px;
  6707. box-sizing:border-box;
  6708. width:100%;
  6709. }
  6710. #u8985_text {
  6711. border-width:0px;
  6712. word-wrap:break-word;
  6713. text-transform:none;
  6714. visibility:hidden;
  6715. }
  6716. #u8986_img {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:0px;
  6720. top:0px;
  6721. width:92px;
  6722. height:38px;
  6723. }
  6724. #u8986 {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:277px;
  6728. top:417px;
  6729. width:92px;
  6730. height:38px;
  6731. display:flex;
  6732. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6733. font-weight:400;
  6734. font-style:normal;
  6735. font-size:12px;
  6736. color:#606266;
  6737. }
  6738. #u8986 .text {
  6739. position:absolute;
  6740. align-self:center;
  6741. padding:2px 2px 2px 0px;
  6742. box-sizing:border-box;
  6743. width:100%;
  6744. }
  6745. #u8986_text {
  6746. border-width:0px;
  6747. word-wrap:break-word;
  6748. text-transform:none;
  6749. visibility:hidden;
  6750. }
  6751. #u8987_img {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:0px;
  6755. top:0px;
  6756. width:92px;
  6757. height:38px;
  6758. }
  6759. #u8987 {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:369px;
  6763. top:417px;
  6764. width:92px;
  6765. height:38px;
  6766. display:flex;
  6767. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6768. font-weight:400;
  6769. font-style:normal;
  6770. font-size:12px;
  6771. color:#606266;
  6772. }
  6773. #u8987 .text {
  6774. position:absolute;
  6775. align-self:center;
  6776. padding:2px 2px 2px 0px;
  6777. box-sizing:border-box;
  6778. width:100%;
  6779. }
  6780. #u8987_text {
  6781. border-width:0px;
  6782. word-wrap:break-word;
  6783. text-transform:none;
  6784. visibility:hidden;
  6785. }
  6786. #u8988_img {
  6787. border-width:0px;
  6788. position:absolute;
  6789. left:0px;
  6790. top:0px;
  6791. width:92px;
  6792. height:38px;
  6793. }
  6794. #u8988 {
  6795. border-width:0px;
  6796. position:absolute;
  6797. left:461px;
  6798. top:417px;
  6799. width:92px;
  6800. height:38px;
  6801. display:flex;
  6802. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6803. font-weight:400;
  6804. font-style:normal;
  6805. font-size:12px;
  6806. color:#606266;
  6807. }
  6808. #u8988 .text {
  6809. position:absolute;
  6810. align-self:center;
  6811. padding:2px 2px 2px 0px;
  6812. box-sizing:border-box;
  6813. width:100%;
  6814. }
  6815. #u8988_text {
  6816. border-width:0px;
  6817. word-wrap:break-word;
  6818. text-transform:none;
  6819. visibility:hidden;
  6820. }
  6821. #u8989_img {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:0px;
  6825. top:0px;
  6826. width:92px;
  6827. height:38px;
  6828. }
  6829. #u8989 {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:553px;
  6833. top:417px;
  6834. width:92px;
  6835. height:38px;
  6836. display:flex;
  6837. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6838. font-weight:400;
  6839. font-style:normal;
  6840. font-size:12px;
  6841. color:#606266;
  6842. }
  6843. #u8989 .text {
  6844. position:absolute;
  6845. align-self:center;
  6846. padding:2px 2px 2px 0px;
  6847. box-sizing:border-box;
  6848. width:100%;
  6849. }
  6850. #u8989_text {
  6851. border-width:0px;
  6852. word-wrap:break-word;
  6853. text-transform:none;
  6854. visibility:hidden;
  6855. }
  6856. #u8990_img {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:0px;
  6860. top:0px;
  6861. width:79px;
  6862. height:38px;
  6863. }
  6864. #u8990 {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:645px;
  6868. top:417px;
  6869. width:79px;
  6870. height:38px;
  6871. display:flex;
  6872. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6873. font-weight:400;
  6874. font-style:normal;
  6875. font-size:12px;
  6876. color:#606266;
  6877. }
  6878. #u8990 .text {
  6879. position:absolute;
  6880. align-self:center;
  6881. padding:2px 2px 2px 0px;
  6882. box-sizing:border-box;
  6883. width:100%;
  6884. }
  6885. #u8990_text {
  6886. border-width:0px;
  6887. word-wrap:break-word;
  6888. text-transform:none;
  6889. visibility:hidden;
  6890. }
  6891. #u8991_img {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:0px;
  6895. top:0px;
  6896. width:79px;
  6897. height:38px;
  6898. }
  6899. #u8991 {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:724px;
  6903. top:417px;
  6904. width:79px;
  6905. height:38px;
  6906. display:flex;
  6907. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6908. font-weight:400;
  6909. font-style:normal;
  6910. font-size:12px;
  6911. color:#606266;
  6912. }
  6913. #u8991 .text {
  6914. position:absolute;
  6915. align-self:center;
  6916. padding:2px 2px 2px 0px;
  6917. box-sizing:border-box;
  6918. width:100%;
  6919. }
  6920. #u8991_text {
  6921. border-width:0px;
  6922. word-wrap:break-word;
  6923. text-transform:none;
  6924. visibility:hidden;
  6925. }
  6926. #u8992_img {
  6927. border-width:0px;
  6928. position:absolute;
  6929. left:0px;
  6930. top:0px;
  6931. width:92px;
  6932. height:38px;
  6933. }
  6934. #u8992 {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:803px;
  6938. top:417px;
  6939. width:92px;
  6940. height:38px;
  6941. display:flex;
  6942. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6943. font-weight:400;
  6944. font-style:normal;
  6945. font-size:12px;
  6946. color:#606266;
  6947. }
  6948. #u8992 .text {
  6949. position:absolute;
  6950. align-self:center;
  6951. padding:2px 2px 2px 0px;
  6952. box-sizing:border-box;
  6953. width:100%;
  6954. }
  6955. #u8992_text {
  6956. border-width:0px;
  6957. word-wrap:break-word;
  6958. text-transform:none;
  6959. visibility:hidden;
  6960. }
  6961. #u8993_img {
  6962. border-width:0px;
  6963. position:absolute;
  6964. left:0px;
  6965. top:0px;
  6966. width:94px;
  6967. height:38px;
  6968. }
  6969. #u8993 {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:895px;
  6973. top:417px;
  6974. width:94px;
  6975. height:38px;
  6976. display:flex;
  6977. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. font-size:12px;
  6981. color:#606266;
  6982. }
  6983. #u8993 .text {
  6984. position:absolute;
  6985. align-self:center;
  6986. padding:2px 2px 2px 0px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u8993_text {
  6991. border-width:0px;
  6992. word-wrap:break-word;
  6993. text-transform:none;
  6994. visibility:hidden;
  6995. }
  6996. #u8994_img {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:92px;
  7002. height:38px;
  7003. }
  7004. #u8994 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:989px;
  7008. top:417px;
  7009. width:92px;
  7010. height:38px;
  7011. display:flex;
  7012. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7013. font-weight:400;
  7014. font-style:normal;
  7015. font-size:12px;
  7016. color:#606266;
  7017. }
  7018. #u8994 .text {
  7019. position:absolute;
  7020. align-self:center;
  7021. padding:2px 2px 2px 0px;
  7022. box-sizing:border-box;
  7023. width:100%;
  7024. }
  7025. #u8994_text {
  7026. border-width:0px;
  7027. word-wrap:break-word;
  7028. text-transform:none;
  7029. visibility:hidden;
  7030. }
  7031. #u8995_img {
  7032. border-width:0px;
  7033. position:absolute;
  7034. left:0px;
  7035. top:0px;
  7036. width:136px;
  7037. height:38px;
  7038. }
  7039. #u8995 {
  7040. border-width:0px;
  7041. position:absolute;
  7042. left:1081px;
  7043. top:417px;
  7044. width:136px;
  7045. height:38px;
  7046. display:flex;
  7047. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7048. font-weight:400;
  7049. font-style:normal;
  7050. font-size:12px;
  7051. color:#606266;
  7052. }
  7053. #u8995 .text {
  7054. position:absolute;
  7055. align-self:center;
  7056. padding:2px 2px 2px 0px;
  7057. box-sizing:border-box;
  7058. width:100%;
  7059. }
  7060. #u8995_text {
  7061. border-width:0px;
  7062. word-wrap:break-word;
  7063. text-transform:none;
  7064. visibility:hidden;
  7065. }
  7066. #u8996_img {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:92px;
  7072. height:38px;
  7073. }
  7074. #u8996 {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:0px;
  7078. top:455px;
  7079. width:92px;
  7080. height:38px;
  7081. display:flex;
  7082. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7083. font-weight:400;
  7084. font-style:normal;
  7085. font-size:12px;
  7086. color:#606266;
  7087. }
  7088. #u8996 .text {
  7089. position:absolute;
  7090. align-self:center;
  7091. padding:2px 2px 2px 0px;
  7092. box-sizing:border-box;
  7093. width:100%;
  7094. }
  7095. #u8996_text {
  7096. border-width:0px;
  7097. word-wrap:break-word;
  7098. text-transform:none;
  7099. visibility:hidden;
  7100. }
  7101. #u8997_img {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:0px;
  7105. top:0px;
  7106. width:94px;
  7107. height:38px;
  7108. }
  7109. #u8997 {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:92px;
  7113. top:455px;
  7114. width:94px;
  7115. height:38px;
  7116. display:flex;
  7117. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7118. font-weight:400;
  7119. font-style:normal;
  7120. font-size:12px;
  7121. color:#606266;
  7122. }
  7123. #u8997 .text {
  7124. position:absolute;
  7125. align-self:center;
  7126. padding:2px 2px 2px 0px;
  7127. box-sizing:border-box;
  7128. width:100%;
  7129. }
  7130. #u8997_text {
  7131. border-width:0px;
  7132. word-wrap:break-word;
  7133. text-transform:none;
  7134. visibility:hidden;
  7135. }
  7136. #u8998_img {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:91px;
  7142. height:38px;
  7143. }
  7144. #u8998 {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:186px;
  7148. top:455px;
  7149. width:91px;
  7150. height:38px;
  7151. display:flex;
  7152. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:12px;
  7156. color:#606266;
  7157. }
  7158. #u8998 .text {
  7159. position:absolute;
  7160. align-self:center;
  7161. padding:2px 2px 2px 0px;
  7162. box-sizing:border-box;
  7163. width:100%;
  7164. }
  7165. #u8998_text {
  7166. border-width:0px;
  7167. word-wrap:break-word;
  7168. text-transform:none;
  7169. visibility:hidden;
  7170. }
  7171. #u8999_img {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:0px;
  7175. top:0px;
  7176. width:92px;
  7177. height:38px;
  7178. }
  7179. #u8999 {
  7180. border-width:0px;
  7181. position:absolute;
  7182. left:277px;
  7183. top:455px;
  7184. width:92px;
  7185. height:38px;
  7186. display:flex;
  7187. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7188. font-weight:400;
  7189. font-style:normal;
  7190. font-size:12px;
  7191. color:#606266;
  7192. }
  7193. #u8999 .text {
  7194. position:absolute;
  7195. align-self:center;
  7196. padding:2px 2px 2px 0px;
  7197. box-sizing:border-box;
  7198. width:100%;
  7199. }
  7200. #u8999_text {
  7201. border-width:0px;
  7202. word-wrap:break-word;
  7203. text-transform:none;
  7204. visibility:hidden;
  7205. }
  7206. #u9000_img {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:0px;
  7210. top:0px;
  7211. width:92px;
  7212. height:38px;
  7213. }
  7214. #u9000 {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:369px;
  7218. top:455px;
  7219. width:92px;
  7220. height:38px;
  7221. display:flex;
  7222. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7223. font-weight:400;
  7224. font-style:normal;
  7225. font-size:12px;
  7226. color:#606266;
  7227. }
  7228. #u9000 .text {
  7229. position:absolute;
  7230. align-self:center;
  7231. padding:2px 2px 2px 0px;
  7232. box-sizing:border-box;
  7233. width:100%;
  7234. }
  7235. #u9000_text {
  7236. border-width:0px;
  7237. word-wrap:break-word;
  7238. text-transform:none;
  7239. visibility:hidden;
  7240. }
  7241. #u9001_img {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:0px;
  7245. top:0px;
  7246. width:92px;
  7247. height:38px;
  7248. }
  7249. #u9001 {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:461px;
  7253. top:455px;
  7254. width:92px;
  7255. height:38px;
  7256. display:flex;
  7257. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7258. font-weight:400;
  7259. font-style:normal;
  7260. font-size:12px;
  7261. color:#606266;
  7262. }
  7263. #u9001 .text {
  7264. position:absolute;
  7265. align-self:center;
  7266. padding:2px 2px 2px 0px;
  7267. box-sizing:border-box;
  7268. width:100%;
  7269. }
  7270. #u9001_text {
  7271. border-width:0px;
  7272. word-wrap:break-word;
  7273. text-transform:none;
  7274. visibility:hidden;
  7275. }
  7276. #u9002_img {
  7277. border-width:0px;
  7278. position:absolute;
  7279. left:0px;
  7280. top:0px;
  7281. width:92px;
  7282. height:38px;
  7283. }
  7284. #u9002 {
  7285. border-width:0px;
  7286. position:absolute;
  7287. left:553px;
  7288. top:455px;
  7289. width:92px;
  7290. height:38px;
  7291. display:flex;
  7292. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7293. font-weight:400;
  7294. font-style:normal;
  7295. font-size:12px;
  7296. color:#606266;
  7297. }
  7298. #u9002 .text {
  7299. position:absolute;
  7300. align-self:center;
  7301. padding:2px 2px 2px 0px;
  7302. box-sizing:border-box;
  7303. width:100%;
  7304. }
  7305. #u9002_text {
  7306. border-width:0px;
  7307. word-wrap:break-word;
  7308. text-transform:none;
  7309. visibility:hidden;
  7310. }
  7311. #u9003_img {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:0px;
  7315. top:0px;
  7316. width:79px;
  7317. height:38px;
  7318. }
  7319. #u9003 {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:645px;
  7323. top:455px;
  7324. width:79px;
  7325. height:38px;
  7326. display:flex;
  7327. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7328. font-weight:400;
  7329. font-style:normal;
  7330. font-size:12px;
  7331. color:#606266;
  7332. }
  7333. #u9003 .text {
  7334. position:absolute;
  7335. align-self:center;
  7336. padding:2px 2px 2px 0px;
  7337. box-sizing:border-box;
  7338. width:100%;
  7339. }
  7340. #u9003_text {
  7341. border-width:0px;
  7342. word-wrap:break-word;
  7343. text-transform:none;
  7344. visibility:hidden;
  7345. }
  7346. #u9004_img {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:0px;
  7350. top:0px;
  7351. width:79px;
  7352. height:38px;
  7353. }
  7354. #u9004 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:724px;
  7358. top:455px;
  7359. width:79px;
  7360. height:38px;
  7361. display:flex;
  7362. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7363. font-weight:400;
  7364. font-style:normal;
  7365. font-size:12px;
  7366. color:#606266;
  7367. }
  7368. #u9004 .text {
  7369. position:absolute;
  7370. align-self:center;
  7371. padding:2px 2px 2px 0px;
  7372. box-sizing:border-box;
  7373. width:100%;
  7374. }
  7375. #u9004_text {
  7376. border-width:0px;
  7377. word-wrap:break-word;
  7378. text-transform:none;
  7379. visibility:hidden;
  7380. }
  7381. #u9005_img {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:0px;
  7385. top:0px;
  7386. width:92px;
  7387. height:38px;
  7388. }
  7389. #u9005 {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:803px;
  7393. top:455px;
  7394. width:92px;
  7395. height:38px;
  7396. display:flex;
  7397. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7398. font-weight:400;
  7399. font-style:normal;
  7400. font-size:12px;
  7401. color:#606266;
  7402. }
  7403. #u9005 .text {
  7404. position:absolute;
  7405. align-self:center;
  7406. padding:2px 2px 2px 0px;
  7407. box-sizing:border-box;
  7408. width:100%;
  7409. }
  7410. #u9005_text {
  7411. border-width:0px;
  7412. word-wrap:break-word;
  7413. text-transform:none;
  7414. visibility:hidden;
  7415. }
  7416. #u9006_img {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:0px;
  7420. top:0px;
  7421. width:94px;
  7422. height:38px;
  7423. }
  7424. #u9006 {
  7425. border-width:0px;
  7426. position:absolute;
  7427. left:895px;
  7428. top:455px;
  7429. width:94px;
  7430. height:38px;
  7431. display:flex;
  7432. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7433. font-weight:400;
  7434. font-style:normal;
  7435. font-size:12px;
  7436. color:#606266;
  7437. }
  7438. #u9006 .text {
  7439. position:absolute;
  7440. align-self:center;
  7441. padding:2px 2px 2px 0px;
  7442. box-sizing:border-box;
  7443. width:100%;
  7444. }
  7445. #u9006_text {
  7446. border-width:0px;
  7447. word-wrap:break-word;
  7448. text-transform:none;
  7449. visibility:hidden;
  7450. }
  7451. #u9007_img {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:0px;
  7455. top:0px;
  7456. width:92px;
  7457. height:38px;
  7458. }
  7459. #u9007 {
  7460. border-width:0px;
  7461. position:absolute;
  7462. left:989px;
  7463. top:455px;
  7464. width:92px;
  7465. height:38px;
  7466. display:flex;
  7467. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7468. font-weight:400;
  7469. font-style:normal;
  7470. font-size:12px;
  7471. color:#606266;
  7472. }
  7473. #u9007 .text {
  7474. position:absolute;
  7475. align-self:center;
  7476. padding:2px 2px 2px 0px;
  7477. box-sizing:border-box;
  7478. width:100%;
  7479. }
  7480. #u9007_text {
  7481. border-width:0px;
  7482. word-wrap:break-word;
  7483. text-transform:none;
  7484. visibility:hidden;
  7485. }
  7486. #u9008_img {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:0px;
  7490. top:0px;
  7491. width:136px;
  7492. height:38px;
  7493. }
  7494. #u9008 {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:1081px;
  7498. top:455px;
  7499. width:136px;
  7500. height:38px;
  7501. display:flex;
  7502. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7503. font-weight:400;
  7504. font-style:normal;
  7505. font-size:12px;
  7506. color:#606266;
  7507. }
  7508. #u9008 .text {
  7509. position:absolute;
  7510. align-self:center;
  7511. padding:2px 2px 2px 0px;
  7512. box-sizing:border-box;
  7513. width:100%;
  7514. }
  7515. #u9008_text {
  7516. border-width:0px;
  7517. word-wrap:break-word;
  7518. text-transform:none;
  7519. visibility:hidden;
  7520. }
  7521. #u9009_img {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:0px;
  7525. top:0px;
  7526. width:92px;
  7527. height:38px;
  7528. }
  7529. #u9009 {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:0px;
  7533. top:493px;
  7534. width:92px;
  7535. height:38px;
  7536. display:flex;
  7537. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7538. font-weight:400;
  7539. font-style:normal;
  7540. font-size:12px;
  7541. color:#606266;
  7542. }
  7543. #u9009 .text {
  7544. position:absolute;
  7545. align-self:center;
  7546. padding:2px 2px 2px 0px;
  7547. box-sizing:border-box;
  7548. width:100%;
  7549. }
  7550. #u9009_text {
  7551. border-width:0px;
  7552. word-wrap:break-word;
  7553. text-transform:none;
  7554. visibility:hidden;
  7555. }
  7556. #u9010_img {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:0px;
  7560. top:0px;
  7561. width:94px;
  7562. height:38px;
  7563. }
  7564. #u9010 {
  7565. border-width:0px;
  7566. position:absolute;
  7567. left:92px;
  7568. top:493px;
  7569. width:94px;
  7570. height:38px;
  7571. display:flex;
  7572. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7573. font-weight:400;
  7574. font-style:normal;
  7575. font-size:12px;
  7576. color:#606266;
  7577. }
  7578. #u9010 .text {
  7579. position:absolute;
  7580. align-self:center;
  7581. padding:2px 2px 2px 0px;
  7582. box-sizing:border-box;
  7583. width:100%;
  7584. }
  7585. #u9010_text {
  7586. border-width:0px;
  7587. word-wrap:break-word;
  7588. text-transform:none;
  7589. visibility:hidden;
  7590. }
  7591. #u9011_img {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:0px;
  7595. top:0px;
  7596. width:91px;
  7597. height:38px;
  7598. }
  7599. #u9011 {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:186px;
  7603. top:493px;
  7604. width:91px;
  7605. height:38px;
  7606. display:flex;
  7607. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7608. font-weight:400;
  7609. font-style:normal;
  7610. font-size:12px;
  7611. color:#606266;
  7612. }
  7613. #u9011 .text {
  7614. position:absolute;
  7615. align-self:center;
  7616. padding:2px 2px 2px 0px;
  7617. box-sizing:border-box;
  7618. width:100%;
  7619. }
  7620. #u9011_text {
  7621. border-width:0px;
  7622. word-wrap:break-word;
  7623. text-transform:none;
  7624. visibility:hidden;
  7625. }
  7626. #u9012_img {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:0px;
  7630. top:0px;
  7631. width:92px;
  7632. height:38px;
  7633. }
  7634. #u9012 {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:277px;
  7638. top:493px;
  7639. width:92px;
  7640. height:38px;
  7641. display:flex;
  7642. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7643. font-weight:400;
  7644. font-style:normal;
  7645. font-size:12px;
  7646. color:#606266;
  7647. }
  7648. #u9012 .text {
  7649. position:absolute;
  7650. align-self:center;
  7651. padding:2px 2px 2px 0px;
  7652. box-sizing:border-box;
  7653. width:100%;
  7654. }
  7655. #u9012_text {
  7656. border-width:0px;
  7657. word-wrap:break-word;
  7658. text-transform:none;
  7659. visibility:hidden;
  7660. }
  7661. #u9013_img {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:92px;
  7667. height:38px;
  7668. }
  7669. #u9013 {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:369px;
  7673. top:493px;
  7674. width:92px;
  7675. height:38px;
  7676. display:flex;
  7677. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7678. font-weight:400;
  7679. font-style:normal;
  7680. font-size:12px;
  7681. color:#606266;
  7682. }
  7683. #u9013 .text {
  7684. position:absolute;
  7685. align-self:center;
  7686. padding:2px 2px 2px 0px;
  7687. box-sizing:border-box;
  7688. width:100%;
  7689. }
  7690. #u9013_text {
  7691. border-width:0px;
  7692. word-wrap:break-word;
  7693. text-transform:none;
  7694. visibility:hidden;
  7695. }
  7696. #u9014_img {
  7697. border-width:0px;
  7698. position:absolute;
  7699. left:0px;
  7700. top:0px;
  7701. width:92px;
  7702. height:38px;
  7703. }
  7704. #u9014 {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:461px;
  7708. top:493px;
  7709. width:92px;
  7710. height:38px;
  7711. display:flex;
  7712. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7713. font-weight:400;
  7714. font-style:normal;
  7715. font-size:12px;
  7716. color:#606266;
  7717. }
  7718. #u9014 .text {
  7719. position:absolute;
  7720. align-self:center;
  7721. padding:2px 2px 2px 0px;
  7722. box-sizing:border-box;
  7723. width:100%;
  7724. }
  7725. #u9014_text {
  7726. border-width:0px;
  7727. word-wrap:break-word;
  7728. text-transform:none;
  7729. visibility:hidden;
  7730. }
  7731. #u9015_img {
  7732. border-width:0px;
  7733. position:absolute;
  7734. left:0px;
  7735. top:0px;
  7736. width:92px;
  7737. height:38px;
  7738. }
  7739. #u9015 {
  7740. border-width:0px;
  7741. position:absolute;
  7742. left:553px;
  7743. top:493px;
  7744. width:92px;
  7745. height:38px;
  7746. display:flex;
  7747. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7748. font-weight:400;
  7749. font-style:normal;
  7750. font-size:12px;
  7751. color:#606266;
  7752. }
  7753. #u9015 .text {
  7754. position:absolute;
  7755. align-self:center;
  7756. padding:2px 2px 2px 0px;
  7757. box-sizing:border-box;
  7758. width:100%;
  7759. }
  7760. #u9015_text {
  7761. border-width:0px;
  7762. word-wrap:break-word;
  7763. text-transform:none;
  7764. visibility:hidden;
  7765. }
  7766. #u9016_img {
  7767. border-width:0px;
  7768. position:absolute;
  7769. left:0px;
  7770. top:0px;
  7771. width:79px;
  7772. height:38px;
  7773. }
  7774. #u9016 {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:645px;
  7778. top:493px;
  7779. width:79px;
  7780. height:38px;
  7781. display:flex;
  7782. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7783. font-weight:400;
  7784. font-style:normal;
  7785. font-size:12px;
  7786. color:#606266;
  7787. }
  7788. #u9016 .text {
  7789. position:absolute;
  7790. align-self:center;
  7791. padding:2px 2px 2px 0px;
  7792. box-sizing:border-box;
  7793. width:100%;
  7794. }
  7795. #u9016_text {
  7796. border-width:0px;
  7797. word-wrap:break-word;
  7798. text-transform:none;
  7799. visibility:hidden;
  7800. }
  7801. #u9017_img {
  7802. border-width:0px;
  7803. position:absolute;
  7804. left:0px;
  7805. top:0px;
  7806. width:79px;
  7807. height:38px;
  7808. }
  7809. #u9017 {
  7810. border-width:0px;
  7811. position:absolute;
  7812. left:724px;
  7813. top:493px;
  7814. width:79px;
  7815. height:38px;
  7816. display:flex;
  7817. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7818. font-weight:400;
  7819. font-style:normal;
  7820. font-size:12px;
  7821. color:#606266;
  7822. }
  7823. #u9017 .text {
  7824. position:absolute;
  7825. align-self:center;
  7826. padding:2px 2px 2px 0px;
  7827. box-sizing:border-box;
  7828. width:100%;
  7829. }
  7830. #u9017_text {
  7831. border-width:0px;
  7832. word-wrap:break-word;
  7833. text-transform:none;
  7834. visibility:hidden;
  7835. }
  7836. #u9018_img {
  7837. border-width:0px;
  7838. position:absolute;
  7839. left:0px;
  7840. top:0px;
  7841. width:92px;
  7842. height:38px;
  7843. }
  7844. #u9018 {
  7845. border-width:0px;
  7846. position:absolute;
  7847. left:803px;
  7848. top:493px;
  7849. width:92px;
  7850. height:38px;
  7851. display:flex;
  7852. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7853. font-weight:400;
  7854. font-style:normal;
  7855. font-size:12px;
  7856. color:#606266;
  7857. }
  7858. #u9018 .text {
  7859. position:absolute;
  7860. align-self:center;
  7861. padding:2px 2px 2px 0px;
  7862. box-sizing:border-box;
  7863. width:100%;
  7864. }
  7865. #u9018_text {
  7866. border-width:0px;
  7867. word-wrap:break-word;
  7868. text-transform:none;
  7869. visibility:hidden;
  7870. }
  7871. #u9019_img {
  7872. border-width:0px;
  7873. position:absolute;
  7874. left:0px;
  7875. top:0px;
  7876. width:94px;
  7877. height:38px;
  7878. }
  7879. #u9019 {
  7880. border-width:0px;
  7881. position:absolute;
  7882. left:895px;
  7883. top:493px;
  7884. width:94px;
  7885. height:38px;
  7886. display:flex;
  7887. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7888. font-weight:400;
  7889. font-style:normal;
  7890. font-size:12px;
  7891. color:#606266;
  7892. }
  7893. #u9019 .text {
  7894. position:absolute;
  7895. align-self:center;
  7896. padding:2px 2px 2px 0px;
  7897. box-sizing:border-box;
  7898. width:100%;
  7899. }
  7900. #u9019_text {
  7901. border-width:0px;
  7902. word-wrap:break-word;
  7903. text-transform:none;
  7904. visibility:hidden;
  7905. }
  7906. #u9020_img {
  7907. border-width:0px;
  7908. position:absolute;
  7909. left:0px;
  7910. top:0px;
  7911. width:92px;
  7912. height:38px;
  7913. }
  7914. #u9020 {
  7915. border-width:0px;
  7916. position:absolute;
  7917. left:989px;
  7918. top:493px;
  7919. width:92px;
  7920. height:38px;
  7921. display:flex;
  7922. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7923. font-weight:400;
  7924. font-style:normal;
  7925. font-size:12px;
  7926. color:#606266;
  7927. }
  7928. #u9020 .text {
  7929. position:absolute;
  7930. align-self:center;
  7931. padding:2px 2px 2px 0px;
  7932. box-sizing:border-box;
  7933. width:100%;
  7934. }
  7935. #u9020_text {
  7936. border-width:0px;
  7937. word-wrap:break-word;
  7938. text-transform:none;
  7939. visibility:hidden;
  7940. }
  7941. #u9021_img {
  7942. border-width:0px;
  7943. position:absolute;
  7944. left:0px;
  7945. top:0px;
  7946. width:136px;
  7947. height:38px;
  7948. }
  7949. #u9021 {
  7950. border-width:0px;
  7951. position:absolute;
  7952. left:1081px;
  7953. top:493px;
  7954. width:136px;
  7955. height:38px;
  7956. display:flex;
  7957. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7958. font-weight:400;
  7959. font-style:normal;
  7960. font-size:12px;
  7961. color:#606266;
  7962. }
  7963. #u9021 .text {
  7964. position:absolute;
  7965. align-self:center;
  7966. padding:2px 2px 2px 0px;
  7967. box-sizing:border-box;
  7968. width:100%;
  7969. }
  7970. #u9021_text {
  7971. border-width:0px;
  7972. word-wrap:break-word;
  7973. text-transform:none;
  7974. visibility:hidden;
  7975. }
  7976. #u9022 {
  7977. border-width:0px;
  7978. position:absolute;
  7979. left:0px;
  7980. top:0px;
  7981. width:0px;
  7982. height:0px;
  7983. }
  7984. #u9023_div {
  7985. border-width:0px;
  7986. position:absolute;
  7987. left:0px;
  7988. top:0px;
  7989. width:140px;
  7990. height:30px;
  7991. background:inherit;
  7992. background-color:rgba(255, 255, 255, 1);
  7993. box-sizing:border-box;
  7994. border-width:1px;
  7995. border-style:solid;
  7996. border-color:rgba(201, 201, 201, 1);
  7997. border-radius:4px;
  7998. -moz-box-shadow:none;
  7999. -webkit-box-shadow:none;
  8000. box-shadow:none;
  8001. font-family:'Microsoft YaHei', sans-serif;
  8002. font-weight:400;
  8003. font-style:normal;
  8004. font-size:14px;
  8005. color:#CCCCCC;
  8006. text-align:left;
  8007. }
  8008. #u9023 {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:351px;
  8012. top:101px;
  8013. width:140px;
  8014. height:30px;
  8015. display:flex;
  8016. font-family:'Microsoft YaHei', sans-serif;
  8017. font-weight:400;
  8018. font-style:normal;
  8019. font-size:14px;
  8020. color:#CCCCCC;
  8021. text-align:left;
  8022. }
  8023. #u9023 .text {
  8024. position:absolute;
  8025. align-self:center;
  8026. padding:2px 8px 2px 8px;
  8027. box-sizing:border-box;
  8028. width:100%;
  8029. }
  8030. #u9023_text {
  8031. border-width:0px;
  8032. word-wrap:break-word;
  8033. text-transform:none;
  8034. visibility:hidden;
  8035. }
  8036. #u9024_input {
  8037. position:absolute;
  8038. left:0px;
  8039. top:0px;
  8040. width:127px;
  8041. height:25px;
  8042. padding:2px 2px 2px 2px;
  8043. font-family:'Microsoft YaHei', sans-serif;
  8044. font-weight:400;
  8045. font-style:normal;
  8046. font-size:10px;
  8047. letter-spacing:normal;
  8048. color:#000000;
  8049. vertical-align:none;
  8050. text-align:left;
  8051. text-transform:none;
  8052. background-color:transparent;
  8053. border-color:transparent;
  8054. }
  8055. #u9024_input.disabled {
  8056. position:absolute;
  8057. left:0px;
  8058. top:0px;
  8059. width:127px;
  8060. height:25px;
  8061. padding:2px 2px 2px 2px;
  8062. font-family:'Microsoft YaHei', sans-serif;
  8063. font-weight:400;
  8064. font-style:normal;
  8065. font-size:10px;
  8066. letter-spacing:normal;
  8067. color:#000000;
  8068. vertical-align:none;
  8069. text-align:left;
  8070. text-transform:none;
  8071. background-color:transparent;
  8072. border-color:transparent;
  8073. }
  8074. #u9024_div {
  8075. border-width:0px;
  8076. position:absolute;
  8077. left:0px;
  8078. top:0px;
  8079. width:127px;
  8080. height:25px;
  8081. background:inherit;
  8082. background-color:rgba(255, 255, 255, 1);
  8083. border:none;
  8084. border-radius:0px;
  8085. -moz-box-shadow:none;
  8086. -webkit-box-shadow:none;
  8087. box-shadow:none;
  8088. font-family:'Microsoft YaHei', sans-serif;
  8089. font-weight:400;
  8090. font-style:normal;
  8091. font-size:10px;
  8092. }
  8093. #u9024 {
  8094. border-width:0px;
  8095. position:absolute;
  8096. left:359px;
  8097. top:102px;
  8098. width:127px;
  8099. height:25px;
  8100. display:flex;
  8101. font-family:'Microsoft YaHei', sans-serif;
  8102. font-weight:400;
  8103. font-style:normal;
  8104. font-size:10px;
  8105. }
  8106. #u9024 .text {
  8107. position:absolute;
  8108. align-self:center;
  8109. padding:2px 2px 2px 2px;
  8110. box-sizing:border-box;
  8111. width:100%;
  8112. }
  8113. #u9024_div.disabled {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:0px;
  8117. top:0px;
  8118. width:127px;
  8119. height:25px;
  8120. background:inherit;
  8121. background-color:rgba(240, 240, 240, 1);
  8122. border:none;
  8123. border-radius:0px;
  8124. -moz-box-shadow:none;
  8125. -webkit-box-shadow:none;
  8126. box-shadow:none;
  8127. font-family:'Microsoft YaHei', sans-serif;
  8128. font-weight:400;
  8129. font-style:normal;
  8130. font-size:10px;
  8131. }
  8132. #u9024.disabled {
  8133. }
  8134. #u9025 {
  8135. border-width:0px;
  8136. position:absolute;
  8137. left:0px;
  8138. top:0px;
  8139. width:0px;
  8140. height:0px;
  8141. }
  8142. #u9026_div {
  8143. border-width:0px;
  8144. position:absolute;
  8145. left:0px;
  8146. top:0px;
  8147. width:59px;
  8148. height:30px;
  8149. background:inherit;
  8150. background-color:rgba(0, 153, 255, 1);
  8151. box-sizing:border-box;
  8152. border-width:1px;
  8153. border-style:solid;
  8154. border-color:rgba(0, 153, 255, 1);
  8155. border-radius:4px;
  8156. -moz-box-shadow:none;
  8157. -webkit-box-shadow:none;
  8158. box-shadow:none;
  8159. font-family:'Microsoft YaHei', sans-serif;
  8160. font-weight:400;
  8161. font-style:normal;
  8162. font-size:14px;
  8163. color:#FFFFFF;
  8164. }
  8165. #u9026 {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:1251px;
  8169. top:103px;
  8170. width:59px;
  8171. height:30px;
  8172. display:flex;
  8173. font-family:'Microsoft YaHei', sans-serif;
  8174. font-weight:400;
  8175. font-style:normal;
  8176. font-size:14px;
  8177. color:#FFFFFF;
  8178. }
  8179. #u9026 .text {
  8180. position:absolute;
  8181. align-self:center;
  8182. padding:5px 15px 5px 15px;
  8183. box-sizing:border-box;
  8184. width:100%;
  8185. }
  8186. #u9026_text {
  8187. border-width:0px;
  8188. white-space:nowrap;
  8189. text-transform:none;
  8190. }
  8191. #u9027_div {
  8192. border-width:0px;
  8193. position:absolute;
  8194. left:0px;
  8195. top:0px;
  8196. width:61px;
  8197. height:30px;
  8198. background:inherit;
  8199. background-color:rgba(255, 255, 255, 1);
  8200. box-sizing:border-box;
  8201. border-width:1px;
  8202. border-style:solid;
  8203. border-color:rgba(217, 217, 217, 1);
  8204. border-radius:4px;
  8205. -moz-box-shadow:none;
  8206. -webkit-box-shadow:none;
  8207. box-shadow:none;
  8208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8209. font-weight:400;
  8210. font-style:normal;
  8211. font-size:14px;
  8212. color:rgba(0, 0, 0, 0.647058823529412);
  8213. line-height:21px;
  8214. }
  8215. #u9027 {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:1323px;
  8219. top:103px;
  8220. width:61px;
  8221. height:30px;
  8222. display:flex;
  8223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8224. font-weight:400;
  8225. font-style:normal;
  8226. font-size:14px;
  8227. color:rgba(0, 0, 0, 0.647058823529412);
  8228. line-height:21px;
  8229. }
  8230. #u9027 .text {
  8231. position:absolute;
  8232. align-self:center;
  8233. padding:2px 16px 2px 16px;
  8234. box-sizing:border-box;
  8235. width:100%;
  8236. }
  8237. #u9027_text {
  8238. border-width:0px;
  8239. white-space:nowrap;
  8240. text-transform:none;
  8241. }
  8242. #u9028 {
  8243. border-width:0px;
  8244. position:absolute;
  8245. left:0px;
  8246. top:0px;
  8247. width:0px;
  8248. height:0px;
  8249. }
  8250. #u9029_div {
  8251. border-width:0px;
  8252. position:absolute;
  8253. left:0px;
  8254. top:0px;
  8255. width:140px;
  8256. height:30px;
  8257. background:inherit;
  8258. background-color:rgba(255, 255, 255, 1);
  8259. box-sizing:border-box;
  8260. border-width:1px;
  8261. border-style:solid;
  8262. border-color:rgba(201, 201, 201, 1);
  8263. border-radius:4px;
  8264. -moz-box-shadow:none;
  8265. -webkit-box-shadow:none;
  8266. box-shadow:none;
  8267. font-family:'Microsoft YaHei', sans-serif;
  8268. font-weight:400;
  8269. font-style:normal;
  8270. font-size:14px;
  8271. color:#CCCCCC;
  8272. text-align:left;
  8273. }
  8274. #u9029 {
  8275. border-width:0px;
  8276. position:absolute;
  8277. left:651px;
  8278. top:101px;
  8279. width:140px;
  8280. height:30px;
  8281. display:flex;
  8282. font-family:'Microsoft YaHei', sans-serif;
  8283. font-weight:400;
  8284. font-style:normal;
  8285. font-size:14px;
  8286. color:#CCCCCC;
  8287. text-align:left;
  8288. }
  8289. #u9029 .text {
  8290. position:absolute;
  8291. align-self:center;
  8292. padding:2px 8px 2px 8px;
  8293. box-sizing:border-box;
  8294. width:100%;
  8295. }
  8296. #u9029_text {
  8297. border-width:0px;
  8298. word-wrap:break-word;
  8299. text-transform:none;
  8300. visibility:hidden;
  8301. }
  8302. #u9030_input {
  8303. position:absolute;
  8304. left:0px;
  8305. top:0px;
  8306. width:127px;
  8307. height:25px;
  8308. padding:2px 2px 2px 2px;
  8309. font-family:'Microsoft YaHei', sans-serif;
  8310. font-weight:400;
  8311. font-style:normal;
  8312. font-size:10px;
  8313. letter-spacing:normal;
  8314. color:#000000;
  8315. vertical-align:none;
  8316. text-align:left;
  8317. text-transform:none;
  8318. background-color:transparent;
  8319. border-color:transparent;
  8320. }
  8321. #u9030_input.disabled {
  8322. position:absolute;
  8323. left:0px;
  8324. top:0px;
  8325. width:127px;
  8326. height:25px;
  8327. padding:2px 2px 2px 2px;
  8328. font-family:'Microsoft YaHei', sans-serif;
  8329. font-weight:400;
  8330. font-style:normal;
  8331. font-size:10px;
  8332. letter-spacing:normal;
  8333. color:#000000;
  8334. vertical-align:none;
  8335. text-align:left;
  8336. text-transform:none;
  8337. background-color:transparent;
  8338. border-color:transparent;
  8339. }
  8340. #u9030_div {
  8341. border-width:0px;
  8342. position:absolute;
  8343. left:0px;
  8344. top:0px;
  8345. width:127px;
  8346. height:25px;
  8347. background:inherit;
  8348. background-color:rgba(255, 255, 255, 1);
  8349. border:none;
  8350. border-radius:0px;
  8351. -moz-box-shadow:none;
  8352. -webkit-box-shadow:none;
  8353. box-shadow:none;
  8354. font-family:'Microsoft YaHei', sans-serif;
  8355. font-weight:400;
  8356. font-style:normal;
  8357. font-size:10px;
  8358. }
  8359. #u9030 {
  8360. border-width:0px;
  8361. position:absolute;
  8362. left:659px;
  8363. top:102px;
  8364. width:127px;
  8365. height:25px;
  8366. display:flex;
  8367. font-family:'Microsoft YaHei', sans-serif;
  8368. font-weight:400;
  8369. font-style:normal;
  8370. font-size:10px;
  8371. }
  8372. #u9030 .text {
  8373. position:absolute;
  8374. align-self:center;
  8375. padding:2px 2px 2px 2px;
  8376. box-sizing:border-box;
  8377. width:100%;
  8378. }
  8379. #u9030_div.disabled {
  8380. border-width:0px;
  8381. position:absolute;
  8382. left:0px;
  8383. top:0px;
  8384. width:127px;
  8385. height:25px;
  8386. background:inherit;
  8387. background-color:rgba(240, 240, 240, 1);
  8388. border:none;
  8389. border-radius:0px;
  8390. -moz-box-shadow:none;
  8391. -webkit-box-shadow:none;
  8392. box-shadow:none;
  8393. font-family:'Microsoft YaHei', sans-serif;
  8394. font-weight:400;
  8395. font-style:normal;
  8396. font-size:10px;
  8397. }
  8398. #u9030.disabled {
  8399. }
  8400. #u9031_div {
  8401. border-width:0px;
  8402. position:absolute;
  8403. left:0px;
  8404. top:0px;
  8405. width:59px;
  8406. height:30px;
  8407. background:inherit;
  8408. background-color:rgba(0, 153, 255, 1);
  8409. box-sizing:border-box;
  8410. border-width:1px;
  8411. border-style:solid;
  8412. border-color:rgba(0, 153, 255, 1);
  8413. border-radius:4px;
  8414. -moz-box-shadow:none;
  8415. -webkit-box-shadow:none;
  8416. box-shadow:none;
  8417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8418. font-weight:400;
  8419. font-style:normal;
  8420. font-size:14px;
  8421. color:#FFFFFF;
  8422. }
  8423. #u9031 {
  8424. border-width:0px;
  8425. position:absolute;
  8426. left:351px;
  8427. top:152px;
  8428. width:59px;
  8429. height:30px;
  8430. display:flex;
  8431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8432. font-weight:400;
  8433. font-style:normal;
  8434. font-size:14px;
  8435. color:#FFFFFF;
  8436. }
  8437. #u9031 .text {
  8438. position:absolute;
  8439. align-self:center;
  8440. padding:5px 15px 5px 15px;
  8441. box-sizing:border-box;
  8442. width:100%;
  8443. }
  8444. #u9031_text {
  8445. border-width:0px;
  8446. white-space:nowrap;
  8447. text-transform:none;
  8448. }
  8449. #u9032 {
  8450. border-width:0px;
  8451. position:absolute;
  8452. left:0px;
  8453. top:0px;
  8454. width:0px;
  8455. height:0px;
  8456. }
  8457. #u9033_div {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:0px;
  8461. top:0px;
  8462. width:140px;
  8463. height:30px;
  8464. background:inherit;
  8465. background-color:rgba(255, 255, 255, 1);
  8466. box-sizing:border-box;
  8467. border-width:1px;
  8468. border-style:solid;
  8469. border-color:rgba(215, 215, 215, 1);
  8470. border-radius:4px;
  8471. -moz-box-shadow:none;
  8472. -webkit-box-shadow:none;
  8473. box-shadow:none;
  8474. font-size:11px;
  8475. }
  8476. #u9033 {
  8477. border-width:0px;
  8478. position:absolute;
  8479. left:501px;
  8480. top:101px;
  8481. width:140px;
  8482. height:30px;
  8483. display:flex;
  8484. font-size:11px;
  8485. }
  8486. #u9033 .text {
  8487. position:absolute;
  8488. align-self:center;
  8489. padding:2px 2px 2px 2px;
  8490. box-sizing:border-box;
  8491. width:100%;
  8492. }
  8493. #u9033_text {
  8494. border-width:0px;
  8495. word-wrap:break-word;
  8496. text-transform:none;
  8497. visibility:hidden;
  8498. }
  8499. #u9034_input {
  8500. position:absolute;
  8501. left:0px;
  8502. top:0px;
  8503. width:120px;
  8504. height:23px;
  8505. padding:2px 2px 2px 2px;
  8506. font-family:'ArialMT', 'Arial', sans-serif;
  8507. font-weight:400;
  8508. font-style:normal;
  8509. font-size:11px;
  8510. letter-spacing:normal;
  8511. color:#AAAAAA;
  8512. vertical-align:none;
  8513. text-align:left;
  8514. text-transform:none;
  8515. background-color:transparent;
  8516. border-color:transparent;
  8517. }
  8518. #u9034_input.disabled {
  8519. position:absolute;
  8520. left:0px;
  8521. top:0px;
  8522. width:120px;
  8523. height:23px;
  8524. padding:2px 2px 2px 2px;
  8525. font-family:'ArialMT', 'Arial', sans-serif;
  8526. font-weight:400;
  8527. font-style:normal;
  8528. font-size:11px;
  8529. letter-spacing:normal;
  8530. color:#AAAAAA;
  8531. vertical-align:none;
  8532. text-align:left;
  8533. text-transform:none;
  8534. background-color:transparent;
  8535. border-color:transparent;
  8536. }
  8537. #u9034_div {
  8538. border-width:0px;
  8539. position:absolute;
  8540. left:0px;
  8541. top:0px;
  8542. width:120px;
  8543. height:23px;
  8544. background:inherit;
  8545. background-color:rgba(255, 255, 255, 1);
  8546. border:none;
  8547. border-radius:0px;
  8548. -moz-box-shadow:none;
  8549. -webkit-box-shadow:none;
  8550. box-shadow:none;
  8551. font-size:11px;
  8552. color:#AAAAAA;
  8553. }
  8554. #u9034 {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:508px;
  8558. top:103px;
  8559. width:120px;
  8560. height:23px;
  8561. display:flex;
  8562. font-size:11px;
  8563. color:#AAAAAA;
  8564. }
  8565. #u9034 .text {
  8566. position:absolute;
  8567. align-self:flex-start;
  8568. padding:2px 2px 2px 2px;
  8569. box-sizing:border-box;
  8570. width:100%;
  8571. }
  8572. #u9034_div.disabled {
  8573. border-width:0px;
  8574. position:absolute;
  8575. left:0px;
  8576. top:0px;
  8577. width:120px;
  8578. height:23px;
  8579. background:inherit;
  8580. background-color:rgba(240, 240, 240, 1);
  8581. border:none;
  8582. border-radius:0px;
  8583. -moz-box-shadow:none;
  8584. -webkit-box-shadow:none;
  8585. box-shadow:none;
  8586. font-size:11px;
  8587. color:#AAAAAA;
  8588. }
  8589. #u9034.disabled {
  8590. }
  8591. .u9034_input_option {
  8592. font-size:11px;
  8593. }
  8594. #u9035 {
  8595. border-width:0px;
  8596. position:absolute;
  8597. left:0px;
  8598. top:0px;
  8599. width:0px;
  8600. height:0px;
  8601. }
  8602. #u9036_div {
  8603. border-width:0px;
  8604. position:absolute;
  8605. left:0px;
  8606. top:0px;
  8607. width:140px;
  8608. height:30px;
  8609. background:inherit;
  8610. background-color:rgba(255, 255, 255, 1);
  8611. box-sizing:border-box;
  8612. border-width:1px;
  8613. border-style:solid;
  8614. border-color:rgba(201, 201, 201, 1);
  8615. border-radius:4px;
  8616. -moz-box-shadow:none;
  8617. -webkit-box-shadow:none;
  8618. box-shadow:none;
  8619. font-family:'Microsoft YaHei', sans-serif;
  8620. font-weight:400;
  8621. font-style:normal;
  8622. font-size:14px;
  8623. color:#CCCCCC;
  8624. text-align:left;
  8625. }
  8626. #u9036 {
  8627. border-width:0px;
  8628. position:absolute;
  8629. left:801px;
  8630. top:101px;
  8631. width:140px;
  8632. height:30px;
  8633. display:flex;
  8634. font-family:'Microsoft YaHei', sans-serif;
  8635. font-weight:400;
  8636. font-style:normal;
  8637. font-size:14px;
  8638. color:#CCCCCC;
  8639. text-align:left;
  8640. }
  8641. #u9036 .text {
  8642. position:absolute;
  8643. align-self:center;
  8644. padding:2px 8px 2px 8px;
  8645. box-sizing:border-box;
  8646. width:100%;
  8647. }
  8648. #u9036_text {
  8649. border-width:0px;
  8650. word-wrap:break-word;
  8651. text-transform:none;
  8652. visibility:hidden;
  8653. }
  8654. #u9037_input {
  8655. position:absolute;
  8656. left:0px;
  8657. top:0px;
  8658. width:127px;
  8659. height:25px;
  8660. padding:2px 2px 2px 2px;
  8661. font-family:'Microsoft YaHei', sans-serif;
  8662. font-weight:400;
  8663. font-style:normal;
  8664. font-size:10px;
  8665. letter-spacing:normal;
  8666. color:#000000;
  8667. vertical-align:none;
  8668. text-align:left;
  8669. text-transform:none;
  8670. background-color:transparent;
  8671. border-color:transparent;
  8672. }
  8673. #u9037_input.disabled {
  8674. position:absolute;
  8675. left:0px;
  8676. top:0px;
  8677. width:127px;
  8678. height:25px;
  8679. padding:2px 2px 2px 2px;
  8680. font-family:'Microsoft YaHei', sans-serif;
  8681. font-weight:400;
  8682. font-style:normal;
  8683. font-size:10px;
  8684. letter-spacing:normal;
  8685. color:#000000;
  8686. vertical-align:none;
  8687. text-align:left;
  8688. text-transform:none;
  8689. background-color:transparent;
  8690. border-color:transparent;
  8691. }
  8692. #u9037_div {
  8693. border-width:0px;
  8694. position:absolute;
  8695. left:0px;
  8696. top:0px;
  8697. width:127px;
  8698. height:25px;
  8699. background:inherit;
  8700. background-color:rgba(255, 255, 255, 1);
  8701. border:none;
  8702. border-radius:0px;
  8703. -moz-box-shadow:none;
  8704. -webkit-box-shadow:none;
  8705. box-shadow:none;
  8706. font-family:'Microsoft YaHei', sans-serif;
  8707. font-weight:400;
  8708. font-style:normal;
  8709. font-size:10px;
  8710. }
  8711. #u9037 {
  8712. border-width:0px;
  8713. position:absolute;
  8714. left:809px;
  8715. top:102px;
  8716. width:127px;
  8717. height:25px;
  8718. display:flex;
  8719. font-family:'Microsoft YaHei', sans-serif;
  8720. font-weight:400;
  8721. font-style:normal;
  8722. font-size:10px;
  8723. }
  8724. #u9037 .text {
  8725. position:absolute;
  8726. align-self:center;
  8727. padding:2px 2px 2px 2px;
  8728. box-sizing:border-box;
  8729. width:100%;
  8730. }
  8731. #u9037_div.disabled {
  8732. border-width:0px;
  8733. position:absolute;
  8734. left:0px;
  8735. top:0px;
  8736. width:127px;
  8737. height:25px;
  8738. background:inherit;
  8739. background-color:rgba(240, 240, 240, 1);
  8740. border:none;
  8741. border-radius:0px;
  8742. -moz-box-shadow:none;
  8743. -webkit-box-shadow:none;
  8744. box-shadow:none;
  8745. font-family:'Microsoft YaHei', sans-serif;
  8746. font-weight:400;
  8747. font-style:normal;
  8748. font-size:10px;
  8749. }
  8750. #u9037.disabled {
  8751. }
  8752. #u9038 {
  8753. border-width:0px;
  8754. position:absolute;
  8755. left:0px;
  8756. top:0px;
  8757. width:0px;
  8758. height:0px;
  8759. }
  8760. #u9039_div {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:0px;
  8764. top:0px;
  8765. width:100px;
  8766. height:140px;
  8767. background:inherit;
  8768. background-color:rgba(255, 255, 255, 1);
  8769. box-sizing:border-box;
  8770. border-width:1px;
  8771. border-style:solid;
  8772. border-color:rgba(242, 242, 242, 1);
  8773. border-left:0px;
  8774. border-right:0px;
  8775. border-radius:3px;
  8776. border-top-left-radius:0px;
  8777. border-top-right-radius:0px;
  8778. border-bottom-right-radius:0px;
  8779. border-bottom-left-radius:0px;
  8780. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  8781. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  8782. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  8783. }
  8784. #u9039 {
  8785. border-width:0px;
  8786. position:absolute;
  8787. left:1454px;
  8788. top:294px;
  8789. width:100px;
  8790. height:140px;
  8791. display:flex;
  8792. }
  8793. #u9039 .text {
  8794. position:absolute;
  8795. align-self:center;
  8796. padding:2px 2px 2px 2px;
  8797. box-sizing:border-box;
  8798. width:100%;
  8799. }
  8800. #u9039_text {
  8801. border-width:0px;
  8802. word-wrap:break-word;
  8803. text-transform:none;
  8804. visibility:hidden;
  8805. }
  8806. #u9040_div {
  8807. border-width:0px;
  8808. position:absolute;
  8809. left:0px;
  8810. top:0px;
  8811. width:83px;
  8812. height:40px;
  8813. background:inherit;
  8814. background-color:rgba(255, 255, 255, 1);
  8815. box-sizing:border-box;
  8816. border-width:1px;
  8817. border-style:solid;
  8818. border-color:rgba(242, 242, 242, 1);
  8819. border-left:0px;
  8820. border-top:0px;
  8821. border-right:0px;
  8822. border-radius:3px;
  8823. border-bottom-right-radius:0px;
  8824. border-bottom-left-radius:0px;
  8825. -moz-box-shadow:none;
  8826. -webkit-box-shadow:none;
  8827. box-shadow:none;
  8828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8829. font-weight:400;
  8830. font-style:normal;
  8831. font-size:14px;
  8832. }
  8833. #u9040 {
  8834. border-width:0px;
  8835. position:absolute;
  8836. left:1462px;
  8837. top:344px;
  8838. width:83px;
  8839. height:40px;
  8840. display:flex;
  8841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8842. font-weight:400;
  8843. font-style:normal;
  8844. font-size:14px;
  8845. }
  8846. #u9040 .text {
  8847. position:absolute;
  8848. align-self:center;
  8849. padding:5px 0px 5px 0px;
  8850. box-sizing:border-box;
  8851. width:100%;
  8852. }
  8853. #u9040_text {
  8854. border-width:0px;
  8855. word-wrap:break-word;
  8856. text-transform:none;
  8857. }
  8858. #u9041_div {
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:0px;
  8862. top:0px;
  8863. width:83px;
  8864. height:40px;
  8865. background:inherit;
  8866. background-color:rgba(255, 255, 255, 1);
  8867. border:none;
  8868. border-left:0px;
  8869. border-top:0px;
  8870. border-right:0px;
  8871. border-radius:3px;
  8872. border-bottom-right-radius:0px;
  8873. border-bottom-left-radius:0px;
  8874. -moz-box-shadow:none;
  8875. -webkit-box-shadow:none;
  8876. box-shadow:none;
  8877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8878. font-weight:400;
  8879. font-style:normal;
  8880. font-size:14px;
  8881. }
  8882. #u9041 {
  8883. border-width:0px;
  8884. position:absolute;
  8885. left:1462px;
  8886. top:384px;
  8887. width:83px;
  8888. height:40px;
  8889. display:flex;
  8890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8891. font-weight:400;
  8892. font-style:normal;
  8893. font-size:14px;
  8894. }
  8895. #u9041 .text {
  8896. position:absolute;
  8897. align-self:center;
  8898. padding:5px 0px 5px 0px;
  8899. box-sizing:border-box;
  8900. width:100%;
  8901. }
  8902. #u9041_text {
  8903. border-width:0px;
  8904. word-wrap:break-word;
  8905. text-transform:none;
  8906. }
  8907. #u9042_div {
  8908. border-width:0px;
  8909. position:absolute;
  8910. left:0px;
  8911. top:0px;
  8912. width:83px;
  8913. height:40px;
  8914. background:inherit;
  8915. background-color:rgba(255, 255, 255, 1);
  8916. box-sizing:border-box;
  8917. border-width:1px;
  8918. border-style:solid;
  8919. border-color:rgba(242, 242, 242, 1);
  8920. border-left:0px;
  8921. border-top:0px;
  8922. border-right:0px;
  8923. border-radius:3px;
  8924. border-bottom-right-radius:0px;
  8925. border-bottom-left-radius:0px;
  8926. -moz-box-shadow:none;
  8927. -webkit-box-shadow:none;
  8928. box-shadow:none;
  8929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8930. font-weight:400;
  8931. font-style:normal;
  8932. font-size:14px;
  8933. }
  8934. #u9042 {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:1462px;
  8938. top:304px;
  8939. width:83px;
  8940. height:40px;
  8941. display:flex;
  8942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8943. font-weight:400;
  8944. font-style:normal;
  8945. font-size:14px;
  8946. }
  8947. #u9042 .text {
  8948. position:absolute;
  8949. align-self:center;
  8950. padding:5px 0px 5px 0px;
  8951. box-sizing:border-box;
  8952. width:100%;
  8953. }
  8954. #u9042_text {
  8955. border-width:0px;
  8956. word-wrap:break-word;
  8957. text-transform:none;
  8958. }
  8959. #u9043_div {
  8960. border-width:0px;
  8961. position:absolute;
  8962. left:0px;
  8963. top:0px;
  8964. width:57px;
  8965. height:50px;
  8966. background:inherit;
  8967. background-color:rgba(255, 255, 255, 0);
  8968. border:none;
  8969. border-left:0px;
  8970. border-top:0px;
  8971. border-right:0px;
  8972. border-radius:0px;
  8973. border-bottom-right-radius:0px;
  8974. border-bottom-left-radius:0px;
  8975. -moz-box-shadow:none;
  8976. -webkit-box-shadow:none;
  8977. box-shadow:none;
  8978. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8979. font-weight:500;
  8980. font-style:normal;
  8981. font-size:14px;
  8982. }
  8983. #u9043 {
  8984. border-width:0px;
  8985. position:absolute;
  8986. left:351px;
  8987. top:52px;
  8988. width:57px;
  8989. height:50px;
  8990. display:flex;
  8991. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8992. font-weight:500;
  8993. font-style:normal;
  8994. font-size:14px;
  8995. }
  8996. #u9043 .text {
  8997. position:absolute;
  8998. align-self:center;
  8999. padding:0px 0px 0px 0px;
  9000. box-sizing:border-box;
  9001. width:100%;
  9002. }
  9003. #u9043_text {
  9004. border-width:0px;
  9005. white-space:nowrap;
  9006. text-transform:none;
  9007. }
  9008. #u9044 {
  9009. border-width:0px;
  9010. position:absolute;
  9011. left:0px;
  9012. top:0px;
  9013. width:0px;
  9014. height:0px;
  9015. }
  9016. #u9045_div {
  9017. border-width:0px;
  9018. position:absolute;
  9019. left:0px;
  9020. top:0px;
  9021. width:500px;
  9022. height:180px;
  9023. background:inherit;
  9024. background-color:rgba(255, 255, 255, 1);
  9025. border:none;
  9026. border-radius:4px;
  9027. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9028. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9029. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9030. font-family:'Microsoft YaHei', sans-serif;
  9031. font-weight:400;
  9032. font-style:normal;
  9033. }
  9034. #u9045 {
  9035. border-width:0px;
  9036. position:absolute;
  9037. left:837px;
  9038. top:404px;
  9039. width:500px;
  9040. height:180px;
  9041. display:flex;
  9042. font-family:'Microsoft YaHei', sans-serif;
  9043. font-weight:400;
  9044. font-style:normal;
  9045. }
  9046. #u9045 .text {
  9047. position:absolute;
  9048. align-self:center;
  9049. padding:2px 2px 2px 2px;
  9050. box-sizing:border-box;
  9051. width:100%;
  9052. }
  9053. #u9045_text {
  9054. border-width:0px;
  9055. word-wrap:break-word;
  9056. text-transform:none;
  9057. visibility:hidden;
  9058. }
  9059. #u9046_div {
  9060. border-width:0px;
  9061. position:absolute;
  9062. left:0px;
  9063. top:0px;
  9064. width:405px;
  9065. height:30px;
  9066. background:inherit;
  9067. background-color:rgba(255, 255, 255, 0);
  9068. border:none;
  9069. border-radius:0px;
  9070. -moz-box-shadow:none;
  9071. -webkit-box-shadow:none;
  9072. box-shadow:none;
  9073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9074. font-weight:400;
  9075. font-style:normal;
  9076. font-size:14px;
  9077. color:#666666;
  9078. line-height:30px;
  9079. }
  9080. #u9046 {
  9081. border-width:0px;
  9082. position:absolute;
  9083. left:897px;
  9084. top:462px;
  9085. width:405px;
  9086. height:30px;
  9087. display:flex;
  9088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9089. font-weight:400;
  9090. font-style:normal;
  9091. font-size:14px;
  9092. color:#666666;
  9093. line-height:30px;
  9094. }
  9095. #u9046 .text {
  9096. position:absolute;
  9097. align-self:flex-start;
  9098. padding:0px 0px 0px 0px;
  9099. box-sizing:border-box;
  9100. width:100%;
  9101. }
  9102. #u9046_text {
  9103. border-width:0px;
  9104. word-wrap:break-word;
  9105. text-transform:none;
  9106. }
  9107. #u9047_div {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:0px;
  9111. top:0px;
  9112. width:163px;
  9113. height:21px;
  9114. background:inherit;
  9115. background-color:rgba(255, 255, 255, 0);
  9116. border:none;
  9117. border-radius:0px;
  9118. -moz-box-shadow:none;
  9119. -webkit-box-shadow:none;
  9120. box-shadow:none;
  9121. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9122. font-weight:650;
  9123. font-style:normal;
  9124. font-size:18px;
  9125. color:#000000;
  9126. line-height:22px;
  9127. }
  9128. #u9047 {
  9129. border-width:0px;
  9130. position:absolute;
  9131. left:897px;
  9132. top:429px;
  9133. width:163px;
  9134. height:21px;
  9135. display:flex;
  9136. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9137. font-weight:650;
  9138. font-style:normal;
  9139. font-size:18px;
  9140. color:#000000;
  9141. line-height:22px;
  9142. }
  9143. #u9047 .text {
  9144. position:absolute;
  9145. align-self:flex-start;
  9146. padding:0px 0px 0px 0px;
  9147. box-sizing:border-box;
  9148. width:100%;
  9149. }
  9150. #u9047_text {
  9151. border-width:0px;
  9152. white-space:nowrap;
  9153. text-transform:none;
  9154. }
  9155. #u9048_div {
  9156. border-width:0px;
  9157. position:absolute;
  9158. left:0px;
  9159. top:0px;
  9160. width:61px;
  9161. height:32px;
  9162. background:inherit;
  9163. background-color:rgba(24, 144, 255, 1);
  9164. border:none;
  9165. border-radius:4px;
  9166. -moz-box-shadow:none;
  9167. -webkit-box-shadow:none;
  9168. box-shadow:none;
  9169. font-family:'Microsoft YaHei', sans-serif;
  9170. font-weight:400;
  9171. font-style:normal;
  9172. font-size:14px;
  9173. color:#FFFFFF;
  9174. }
  9175. #u9048 {
  9176. border-width:0px;
  9177. position:absolute;
  9178. left:1256px;
  9179. top:532px;
  9180. width:61px;
  9181. height:32px;
  9182. display:flex;
  9183. font-family:'Microsoft YaHei', sans-serif;
  9184. font-weight:400;
  9185. font-style:normal;
  9186. font-size:14px;
  9187. color:#FFFFFF;
  9188. }
  9189. #u9048 .text {
  9190. position:absolute;
  9191. align-self:center;
  9192. padding:2px 16px 2px 16px;
  9193. box-sizing:border-box;
  9194. width:100%;
  9195. }
  9196. #u9048_text {
  9197. border-width:0px;
  9198. white-space:nowrap;
  9199. text-transform:none;
  9200. }
  9201. #u9049_div {
  9202. border-width:0px;
  9203. position:absolute;
  9204. left:0px;
  9205. top:0px;
  9206. width:66px;
  9207. height:32px;
  9208. background:inherit;
  9209. background-color:rgba(255, 255, 255, 1);
  9210. box-sizing:border-box;
  9211. border-width:1px;
  9212. border-style:solid;
  9213. border-color:rgba(217, 217, 217, 1);
  9214. border-radius:4px;
  9215. -moz-box-shadow:none;
  9216. -webkit-box-shadow:none;
  9217. box-shadow:none;
  9218. font-family:'Microsoft YaHei', sans-serif;
  9219. font-weight:400;
  9220. font-style:normal;
  9221. font-size:14px;
  9222. color:rgba(0, 0, 0, 0.647058823529412);
  9223. line-height:21px;
  9224. }
  9225. #u9049 {
  9226. border-width:0px;
  9227. position:absolute;
  9228. left:1177px;
  9229. top:532px;
  9230. width:66px;
  9231. height:32px;
  9232. display:flex;
  9233. font-family:'Microsoft YaHei', sans-serif;
  9234. font-weight:400;
  9235. font-style:normal;
  9236. font-size:14px;
  9237. color:rgba(0, 0, 0, 0.647058823529412);
  9238. line-height:21px;
  9239. }
  9240. #u9049 .text {
  9241. position:absolute;
  9242. align-self:center;
  9243. padding:2px 16px 2px 16px;
  9244. box-sizing:border-box;
  9245. width:100%;
  9246. }
  9247. #u9049_text {
  9248. border-width:0px;
  9249. white-space:nowrap;
  9250. text-transform:none;
  9251. }
  9252. #u9050_img {
  9253. border-width:0px;
  9254. position:absolute;
  9255. left:0px;
  9256. top:0px;
  9257. width:24px;
  9258. height:24px;
  9259. }
  9260. #u9050 {
  9261. border-width:0px;
  9262. position:absolute;
  9263. left:862px;
  9264. top:427px;
  9265. width:24px;
  9266. height:24px;
  9267. display:flex;
  9268. font-family:'Microsoft YaHei', sans-serif;
  9269. font-weight:400;
  9270. font-style:normal;
  9271. font-size:52px;
  9272. color:#FAAD14;
  9273. }
  9274. #u9050 .text {
  9275. position:absolute;
  9276. align-self:center;
  9277. padding:2px 2px 2px 2px;
  9278. box-sizing:border-box;
  9279. width:100%;
  9280. }
  9281. #u9050_text {
  9282. border-width:0px;
  9283. word-wrap:break-word;
  9284. text-transform:none;
  9285. visibility:hidden;
  9286. }
  9287. #u9051 {
  9288. border-width:0px;
  9289. position:absolute;
  9290. left:0px;
  9291. top:0px;
  9292. width:0px;
  9293. height:0px;
  9294. }
  9295. #u9052_div {
  9296. border-width:0px;
  9297. position:absolute;
  9298. left:0px;
  9299. top:0px;
  9300. width:500px;
  9301. height:180px;
  9302. background:inherit;
  9303. background-color:rgba(255, 255, 255, 1);
  9304. border:none;
  9305. border-radius:4px;
  9306. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9307. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9308. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9309. font-family:'Microsoft YaHei', sans-serif;
  9310. font-weight:400;
  9311. font-style:normal;
  9312. }
  9313. #u9052 {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:837px;
  9317. top:604px;
  9318. width:500px;
  9319. height:180px;
  9320. display:flex;
  9321. font-family:'Microsoft YaHei', sans-serif;
  9322. font-weight:400;
  9323. font-style:normal;
  9324. }
  9325. #u9052 .text {
  9326. position:absolute;
  9327. align-self:center;
  9328. padding:2px 2px 2px 2px;
  9329. box-sizing:border-box;
  9330. width:100%;
  9331. }
  9332. #u9052_text {
  9333. border-width:0px;
  9334. word-wrap:break-word;
  9335. text-transform:none;
  9336. visibility:hidden;
  9337. }
  9338. #u9053_div {
  9339. border-width:0px;
  9340. position:absolute;
  9341. left:0px;
  9342. top:0px;
  9343. width:405px;
  9344. height:30px;
  9345. background:inherit;
  9346. background-color:rgba(255, 255, 255, 0);
  9347. border:none;
  9348. border-radius:0px;
  9349. -moz-box-shadow:none;
  9350. -webkit-box-shadow:none;
  9351. box-shadow:none;
  9352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9353. font-weight:400;
  9354. font-style:normal;
  9355. font-size:14px;
  9356. color:#666666;
  9357. line-height:30px;
  9358. }
  9359. #u9053 {
  9360. border-width:0px;
  9361. position:absolute;
  9362. left:897px;
  9363. top:662px;
  9364. width:405px;
  9365. height:30px;
  9366. display:flex;
  9367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9368. font-weight:400;
  9369. font-style:normal;
  9370. font-size:14px;
  9371. color:#666666;
  9372. line-height:30px;
  9373. }
  9374. #u9053 .text {
  9375. position:absolute;
  9376. align-self:flex-start;
  9377. padding:0px 0px 0px 0px;
  9378. box-sizing:border-box;
  9379. width:100%;
  9380. }
  9381. #u9053_text {
  9382. border-width:0px;
  9383. word-wrap:break-word;
  9384. text-transform:none;
  9385. }
  9386. #u9054_div {
  9387. border-width:0px;
  9388. position:absolute;
  9389. left:0px;
  9390. top:0px;
  9391. width:163px;
  9392. height:21px;
  9393. background:inherit;
  9394. background-color:rgba(255, 255, 255, 0);
  9395. border:none;
  9396. border-radius:0px;
  9397. -moz-box-shadow:none;
  9398. -webkit-box-shadow:none;
  9399. box-shadow:none;
  9400. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9401. font-weight:650;
  9402. font-style:normal;
  9403. font-size:18px;
  9404. color:#000000;
  9405. line-height:22px;
  9406. }
  9407. #u9054 {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:897px;
  9411. top:629px;
  9412. width:163px;
  9413. height:21px;
  9414. display:flex;
  9415. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9416. font-weight:650;
  9417. font-style:normal;
  9418. font-size:18px;
  9419. color:#000000;
  9420. line-height:22px;
  9421. }
  9422. #u9054 .text {
  9423. position:absolute;
  9424. align-self:flex-start;
  9425. padding:0px 0px 0px 0px;
  9426. box-sizing:border-box;
  9427. width:100%;
  9428. }
  9429. #u9054_text {
  9430. border-width:0px;
  9431. white-space:nowrap;
  9432. text-transform:none;
  9433. }
  9434. #u9055_div {
  9435. border-width:0px;
  9436. position:absolute;
  9437. left:0px;
  9438. top:0px;
  9439. width:61px;
  9440. height:32px;
  9441. background:inherit;
  9442. background-color:rgba(24, 144, 255, 1);
  9443. border:none;
  9444. border-radius:4px;
  9445. -moz-box-shadow:none;
  9446. -webkit-box-shadow:none;
  9447. box-shadow:none;
  9448. font-family:'Microsoft YaHei', sans-serif;
  9449. font-weight:400;
  9450. font-style:normal;
  9451. font-size:14px;
  9452. color:#FFFFFF;
  9453. }
  9454. #u9055 {
  9455. border-width:0px;
  9456. position:absolute;
  9457. left:1256px;
  9458. top:732px;
  9459. width:61px;
  9460. height:32px;
  9461. display:flex;
  9462. font-family:'Microsoft YaHei', sans-serif;
  9463. font-weight:400;
  9464. font-style:normal;
  9465. font-size:14px;
  9466. color:#FFFFFF;
  9467. }
  9468. #u9055 .text {
  9469. position:absolute;
  9470. align-self:center;
  9471. padding:2px 16px 2px 16px;
  9472. box-sizing:border-box;
  9473. width:100%;
  9474. }
  9475. #u9055_text {
  9476. border-width:0px;
  9477. white-space:nowrap;
  9478. text-transform:none;
  9479. }
  9480. #u9056_div {
  9481. border-width:0px;
  9482. position:absolute;
  9483. left:0px;
  9484. top:0px;
  9485. width:66px;
  9486. height:32px;
  9487. background:inherit;
  9488. background-color:rgba(255, 255, 255, 1);
  9489. box-sizing:border-box;
  9490. border-width:1px;
  9491. border-style:solid;
  9492. border-color:rgba(217, 217, 217, 1);
  9493. border-radius:4px;
  9494. -moz-box-shadow:none;
  9495. -webkit-box-shadow:none;
  9496. box-shadow:none;
  9497. font-family:'Microsoft YaHei', sans-serif;
  9498. font-weight:400;
  9499. font-style:normal;
  9500. font-size:14px;
  9501. color:rgba(0, 0, 0, 0.647058823529412);
  9502. line-height:21px;
  9503. }
  9504. #u9056 {
  9505. border-width:0px;
  9506. position:absolute;
  9507. left:1177px;
  9508. top:732px;
  9509. width:66px;
  9510. height:32px;
  9511. display:flex;
  9512. font-family:'Microsoft YaHei', sans-serif;
  9513. font-weight:400;
  9514. font-style:normal;
  9515. font-size:14px;
  9516. color:rgba(0, 0, 0, 0.647058823529412);
  9517. line-height:21px;
  9518. }
  9519. #u9056 .text {
  9520. position:absolute;
  9521. align-self:center;
  9522. padding:2px 16px 2px 16px;
  9523. box-sizing:border-box;
  9524. width:100%;
  9525. }
  9526. #u9056_text {
  9527. border-width:0px;
  9528. white-space:nowrap;
  9529. text-transform:none;
  9530. }
  9531. #u9057_img {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:0px;
  9535. top:0px;
  9536. width:24px;
  9537. height:24px;
  9538. }
  9539. #u9057 {
  9540. border-width:0px;
  9541. position:absolute;
  9542. left:862px;
  9543. top:627px;
  9544. width:24px;
  9545. height:24px;
  9546. display:flex;
  9547. font-family:'Microsoft YaHei', sans-serif;
  9548. font-weight:400;
  9549. font-style:normal;
  9550. font-size:52px;
  9551. color:#FAAD14;
  9552. }
  9553. #u9057 .text {
  9554. position:absolute;
  9555. align-self:center;
  9556. padding:2px 2px 2px 2px;
  9557. box-sizing:border-box;
  9558. width:100%;
  9559. }
  9560. #u9057_text {
  9561. border-width:0px;
  9562. word-wrap:break-word;
  9563. text-transform:none;
  9564. visibility:hidden;
  9565. }
  9566. #u9058_img {
  9567. border-width:0px;
  9568. position:absolute;
  9569. left:0px;
  9570. top:0px;
  9571. width:50px;
  9572. height:31px;
  9573. }
  9574. #u9058 {
  9575. border-width:0px;
  9576. position:absolute;
  9577. left:1175px;
  9578. top:230px;
  9579. width:50px;
  9580. height:31px;
  9581. display:flex;
  9582. }
  9583. #u9058 .text {
  9584. position:absolute;
  9585. align-self:center;
  9586. padding:2px 2px 2px 2px;
  9587. box-sizing:border-box;
  9588. width:100%;
  9589. }
  9590. #u9058_text {
  9591. border-width:0px;
  9592. word-wrap:break-word;
  9593. text-transform:none;
  9594. visibility:hidden;
  9595. }
  9596. #u9059_img {
  9597. border-width:0px;
  9598. position:absolute;
  9599. left:0px;
  9600. top:0px;
  9601. width:50px;
  9602. height:31px;
  9603. }
  9604. #u9059 {
  9605. border-width:0px;
  9606. position:absolute;
  9607. left:1175px;
  9608. top:271px;
  9609. width:50px;
  9610. height:31px;
  9611. display:flex;
  9612. }
  9613. #u9059 .text {
  9614. position:absolute;
  9615. align-self:center;
  9616. padding:2px 2px 2px 2px;
  9617. box-sizing:border-box;
  9618. width:100%;
  9619. }
  9620. #u9059_text {
  9621. border-width:0px;
  9622. word-wrap:break-word;
  9623. text-transform:none;
  9624. visibility:hidden;
  9625. }
  9626. #u9060_div {
  9627. border-width:0px;
  9628. position:absolute;
  9629. left:0px;
  9630. top:0px;
  9631. width:61px;
  9632. height:32px;
  9633. background:inherit;
  9634. background-color:rgba(255, 255, 255, 1);
  9635. box-sizing:border-box;
  9636. border-width:1px;
  9637. border-style:solid;
  9638. border-color:rgba(217, 217, 217, 1);
  9639. border-radius:4px;
  9640. -moz-box-shadow:none;
  9641. -webkit-box-shadow:none;
  9642. box-shadow:none;
  9643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9644. font-weight:400;
  9645. font-style:normal;
  9646. font-size:14px;
  9647. color:rgba(0, 0, 0, 0.647058823529412);
  9648. line-height:21px;
  9649. }
  9650. #u9060 {
  9651. border-width:0px;
  9652. position:absolute;
  9653. left:420px;
  9654. top:150px;
  9655. width:61px;
  9656. height:32px;
  9657. display:flex;
  9658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9659. font-weight:400;
  9660. font-style:normal;
  9661. font-size:14px;
  9662. color:rgba(0, 0, 0, 0.647058823529412);
  9663. line-height:21px;
  9664. }
  9665. #u9060 .text {
  9666. position:absolute;
  9667. align-self:center;
  9668. padding:2px 16px 2px 16px;
  9669. box-sizing:border-box;
  9670. width:100%;
  9671. }
  9672. #u9060_text {
  9673. border-width:0px;
  9674. white-space:nowrap;
  9675. text-transform:none;
  9676. }
  9677. #u9061_div {
  9678. border-width:0px;
  9679. position:absolute;
  9680. left:0px;
  9681. top:0px;
  9682. width:61px;
  9683. height:32px;
  9684. background:inherit;
  9685. background-color:rgba(255, 255, 255, 1);
  9686. box-sizing:border-box;
  9687. border-width:1px;
  9688. border-style:solid;
  9689. border-color:rgba(217, 217, 217, 1);
  9690. border-radius:4px;
  9691. -moz-box-shadow:none;
  9692. -webkit-box-shadow:none;
  9693. box-shadow:none;
  9694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9695. font-weight:400;
  9696. font-style:normal;
  9697. font-size:14px;
  9698. color:rgba(0, 0, 0, 0.647058823529412);
  9699. line-height:21px;
  9700. }
  9701. #u9061 {
  9702. border-width:0px;
  9703. position:absolute;
  9704. left:491px;
  9705. top:150px;
  9706. width:61px;
  9707. height:32px;
  9708. display:flex;
  9709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9710. font-weight:400;
  9711. font-style:normal;
  9712. font-size:14px;
  9713. color:rgba(0, 0, 0, 0.647058823529412);
  9714. line-height:21px;
  9715. }
  9716. #u9061 .text {
  9717. position:absolute;
  9718. align-self:center;
  9719. padding:2px 16px 2px 16px;
  9720. box-sizing:border-box;
  9721. width:100%;
  9722. }
  9723. #u9061_text {
  9724. border-width:0px;
  9725. white-space:nowrap;
  9726. text-transform:none;
  9727. }
  9728. #u9062 {
  9729. border-width:0px;
  9730. position:absolute;
  9731. left:0px;
  9732. top:0px;
  9733. width:0px;
  9734. height:0px;
  9735. }
  9736. #u9063_div {
  9737. border-width:0px;
  9738. position:absolute;
  9739. left:0px;
  9740. top:0px;
  9741. width:200px;
  9742. height:1192px;
  9743. background:inherit;
  9744. background-color:rgba(255, 255, 255, 1);
  9745. border:none;
  9746. border-radius:0px;
  9747. -moz-box-shadow:none;
  9748. -webkit-box-shadow:none;
  9749. box-shadow:none;
  9750. }
  9751. #u9063 {
  9752. border-width:0px;
  9753. position:absolute;
  9754. left:120px;
  9755. top:50px;
  9756. width:200px;
  9757. height:1192px;
  9758. display:flex;
  9759. }
  9760. #u9063 .text {
  9761. position:absolute;
  9762. align-self:center;
  9763. padding:2px 2px 2px 2px;
  9764. box-sizing:border-box;
  9765. width:100%;
  9766. }
  9767. #u9063_text {
  9768. border-width:0px;
  9769. word-wrap:break-word;
  9770. text-transform:none;
  9771. visibility:hidden;
  9772. }
  9773. #u9064_div {
  9774. border-width:0px;
  9775. position:absolute;
  9776. left:0px;
  9777. top:0px;
  9778. width:200px;
  9779. height:60px;
  9780. background:inherit;
  9781. background-color:rgba(224, 231, 247, 1);
  9782. border:none;
  9783. border-radius:0px;
  9784. -moz-box-shadow:none;
  9785. -webkit-box-shadow:none;
  9786. box-shadow:none;
  9787. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9788. font-weight:500;
  9789. font-style:normal;
  9790. font-size:18px;
  9791. }
  9792. #u9064 {
  9793. border-width:0px;
  9794. position:absolute;
  9795. left:120px;
  9796. top:50px;
  9797. width:200px;
  9798. height:60px;
  9799. display:flex;
  9800. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9801. font-weight:500;
  9802. font-style:normal;
  9803. font-size:18px;
  9804. }
  9805. #u9064 .text {
  9806. position:absolute;
  9807. align-self:center;
  9808. padding:0px 0px 0px 20px;
  9809. box-sizing:border-box;
  9810. width:100%;
  9811. }
  9812. #u9064_text {
  9813. border-width:0px;
  9814. word-wrap:break-word;
  9815. text-transform:none;
  9816. }
  9817. #u9065_div {
  9818. border-width:0px;
  9819. position:absolute;
  9820. left:0px;
  9821. top:0px;
  9822. width:65px;
  9823. height:22px;
  9824. background:inherit;
  9825. background-color:rgba(255, 255, 255, 0);
  9826. border:none;
  9827. border-radius:0px;
  9828. -moz-box-shadow:none;
  9829. -webkit-box-shadow:none;
  9830. box-shadow:none;
  9831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9832. font-weight:400;
  9833. font-style:normal;
  9834. font-size:16px;
  9835. }
  9836. #u9065 {
  9837. border-width:0px;
  9838. position:absolute;
  9839. left:147px;
  9840. top:274px;
  9841. width:65px;
  9842. height:22px;
  9843. display:flex;
  9844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9845. font-weight:400;
  9846. font-style:normal;
  9847. font-size:16px;
  9848. }
  9849. #u9065 .text {
  9850. position:absolute;
  9851. align-self:flex-start;
  9852. padding:0px 0px 0px 0px;
  9853. box-sizing:border-box;
  9854. width:100%;
  9855. }
  9856. #u9065_text {
  9857. border-width:0px;
  9858. white-space:nowrap;
  9859. text-transform:none;
  9860. }
  9861. #u9066_img {
  9862. border-width:0px;
  9863. position:absolute;
  9864. left:0px;
  9865. top:0px;
  9866. width:201px;
  9867. height:2px;
  9868. }
  9869. #u9066 {
  9870. border-width:0px;
  9871. position:absolute;
  9872. left:120px;
  9873. top:212px;
  9874. width:200px;
  9875. height:1px;
  9876. display:flex;
  9877. }
  9878. #u9066 .text {
  9879. position:absolute;
  9880. align-self:center;
  9881. padding:2px 2px 2px 2px;
  9882. box-sizing:border-box;
  9883. width:100%;
  9884. }
  9885. #u9066_text {
  9886. border-width:0px;
  9887. word-wrap:break-word;
  9888. text-transform:none;
  9889. visibility:hidden;
  9890. }
  9891. #u9067_div {
  9892. border-width:0px;
  9893. position:absolute;
  9894. left:0px;
  9895. top:0px;
  9896. width:65px;
  9897. height:22px;
  9898. background:inherit;
  9899. background-color:rgba(255, 255, 255, 0);
  9900. border:none;
  9901. border-radius:0px;
  9902. -moz-box-shadow:none;
  9903. -webkit-box-shadow:none;
  9904. box-shadow:none;
  9905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9906. font-weight:400;
  9907. font-style:normal;
  9908. font-size:16px;
  9909. }
  9910. #u9067 {
  9911. border-width:0px;
  9912. position:absolute;
  9913. left:147px;
  9914. top:166px;
  9915. width:65px;
  9916. height:22px;
  9917. display:flex;
  9918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9919. font-weight:400;
  9920. font-style:normal;
  9921. font-size:16px;
  9922. }
  9923. #u9067 .text {
  9924. position:absolute;
  9925. align-self:flex-start;
  9926. padding:0px 0px 0px 0px;
  9927. box-sizing:border-box;
  9928. width:100%;
  9929. }
  9930. #u9067_text {
  9931. border-width:0px;
  9932. white-space:nowrap;
  9933. text-transform:none;
  9934. }
  9935. #u9068_div {
  9936. border-width:0px;
  9937. position:absolute;
  9938. left:0px;
  9939. top:0px;
  9940. width:25px;
  9941. height:17px;
  9942. background:inherit;
  9943. background-color:rgba(255, 255, 255, 0);
  9944. border:none;
  9945. border-radius:0px;
  9946. -moz-box-shadow:none;
  9947. -webkit-box-shadow:none;
  9948. box-shadow:none;
  9949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9950. font-weight:400;
  9951. font-style:normal;
  9952. font-size:12px;
  9953. color:#AAAAAA;
  9954. }
  9955. #u9068 {
  9956. border-width:0px;
  9957. position:absolute;
  9958. left:147px;
  9959. top:238px;
  9960. width:25px;
  9961. height:17px;
  9962. display:flex;
  9963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9964. font-weight:400;
  9965. font-style:normal;
  9966. font-size:12px;
  9967. color:#AAAAAA;
  9968. }
  9969. #u9068 .text {
  9970. position:absolute;
  9971. align-self:flex-start;
  9972. padding:0px 0px 0px 0px;
  9973. box-sizing:border-box;
  9974. width:100%;
  9975. }
  9976. #u9068_text {
  9977. border-width:0px;
  9978. white-space:nowrap;
  9979. text-transform:none;
  9980. }
  9981. #u9069_div {
  9982. border-width:0px;
  9983. position:absolute;
  9984. left:0px;
  9985. top:0px;
  9986. width:25px;
  9987. height:17px;
  9988. background:inherit;
  9989. background-color:rgba(255, 255, 255, 0);
  9990. border:none;
  9991. border-radius:0px;
  9992. -moz-box-shadow:none;
  9993. -webkit-box-shadow:none;
  9994. box-shadow:none;
  9995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9996. font-weight:400;
  9997. font-style:normal;
  9998. font-size:12px;
  9999. color:#AAAAAA;
  10000. }
  10001. #u9069 {
  10002. border-width:0px;
  10003. position:absolute;
  10004. left:147px;
  10005. top:130px;
  10006. width:25px;
  10007. height:17px;
  10008. display:flex;
  10009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10010. font-weight:400;
  10011. font-style:normal;
  10012. font-size:12px;
  10013. color:#AAAAAA;
  10014. }
  10015. #u9069 .text {
  10016. position:absolute;
  10017. align-self:flex-start;
  10018. padding:0px 0px 0px 0px;
  10019. box-sizing:border-box;
  10020. width:100%;
  10021. }
  10022. #u9069_text {
  10023. border-width:0px;
  10024. white-space:nowrap;
  10025. text-transform:none;
  10026. }
  10027. #u9070_div {
  10028. border-width:0px;
  10029. position:absolute;
  10030. left:0px;
  10031. top:0px;
  10032. width:65px;
  10033. height:22px;
  10034. background:inherit;
  10035. background-color:rgba(255, 255, 255, 0);
  10036. border:none;
  10037. border-radius:0px;
  10038. -moz-box-shadow:none;
  10039. -webkit-box-shadow:none;
  10040. box-shadow:none;
  10041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10042. font-weight:400;
  10043. font-style:normal;
  10044. font-size:16px;
  10045. }
  10046. #u9070 {
  10047. border-width:0px;
  10048. position:absolute;
  10049. left:147px;
  10050. top:423px;
  10051. width:65px;
  10052. height:22px;
  10053. display:flex;
  10054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10055. font-weight:400;
  10056. font-style:normal;
  10057. font-size:16px;
  10058. }
  10059. #u9070 .text {
  10060. position:absolute;
  10061. align-self:flex-start;
  10062. padding:0px 0px 0px 0px;
  10063. box-sizing:border-box;
  10064. width:100%;
  10065. }
  10066. #u9070_text {
  10067. border-width:0px;
  10068. white-space:nowrap;
  10069. text-transform:none;
  10070. }
  10071. #u9071_img {
  10072. border-width:0px;
  10073. position:absolute;
  10074. left:0px;
  10075. top:0px;
  10076. width:201px;
  10077. height:2px;
  10078. }
  10079. #u9071 {
  10080. border-width:0px;
  10081. position:absolute;
  10082. left:120px;
  10083. top:361px;
  10084. width:200px;
  10085. height:1px;
  10086. display:flex;
  10087. }
  10088. #u9071 .text {
  10089. position:absolute;
  10090. align-self:center;
  10091. padding:2px 2px 2px 2px;
  10092. box-sizing:border-box;
  10093. width:100%;
  10094. }
  10095. #u9071_text {
  10096. border-width:0px;
  10097. word-wrap:break-word;
  10098. text-transform:none;
  10099. visibility:hidden;
  10100. }
  10101. #u9072_div {
  10102. border-width:0px;
  10103. position:absolute;
  10104. left:0px;
  10105. top:0px;
  10106. width:25px;
  10107. height:17px;
  10108. background:inherit;
  10109. background-color:rgba(255, 255, 255, 0);
  10110. border:none;
  10111. border-radius:0px;
  10112. -moz-box-shadow:none;
  10113. -webkit-box-shadow:none;
  10114. box-shadow:none;
  10115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10116. font-weight:400;
  10117. font-style:normal;
  10118. font-size:12px;
  10119. color:#AAAAAA;
  10120. }
  10121. #u9072 {
  10122. border-width:0px;
  10123. position:absolute;
  10124. left:147px;
  10125. top:387px;
  10126. width:25px;
  10127. height:17px;
  10128. display:flex;
  10129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10130. font-weight:400;
  10131. font-style:normal;
  10132. font-size:12px;
  10133. color:#AAAAAA;
  10134. }
  10135. #u9072 .text {
  10136. position:absolute;
  10137. align-self:flex-start;
  10138. padding:0px 0px 0px 0px;
  10139. box-sizing:border-box;
  10140. width:100%;
  10141. }
  10142. #u9072_text {
  10143. border-width:0px;
  10144. white-space:nowrap;
  10145. text-transform:none;
  10146. }
  10147. #u9073_div {
  10148. border-width:0px;
  10149. position:absolute;
  10150. left:0px;
  10151. top:0px;
  10152. width:65px;
  10153. height:22px;
  10154. background:inherit;
  10155. background-color:rgba(255, 255, 255, 0);
  10156. border:none;
  10157. border-radius:0px;
  10158. -moz-box-shadow:none;
  10159. -webkit-box-shadow:none;
  10160. box-shadow:none;
  10161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10162. font-weight:400;
  10163. font-style:normal;
  10164. font-size:16px;
  10165. }
  10166. #u9073 {
  10167. border-width:0px;
  10168. position:absolute;
  10169. left:147px;
  10170. top:465px;
  10171. width:65px;
  10172. height:22px;
  10173. display:flex;
  10174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10175. font-weight:400;
  10176. font-style:normal;
  10177. font-size:16px;
  10178. }
  10179. #u9073 .text {
  10180. position:absolute;
  10181. align-self:flex-start;
  10182. padding:0px 0px 0px 0px;
  10183. box-sizing:border-box;
  10184. width:100%;
  10185. }
  10186. #u9073_text {
  10187. border-width:0px;
  10188. white-space:nowrap;
  10189. text-transform:none;
  10190. }
  10191. #u9074_div {
  10192. border-width:0px;
  10193. position:absolute;
  10194. left:0px;
  10195. top:0px;
  10196. width:49px;
  10197. height:22px;
  10198. background:inherit;
  10199. background-color:rgba(255, 255, 255, 0);
  10200. border:none;
  10201. border-radius:0px;
  10202. -moz-box-shadow:none;
  10203. -webkit-box-shadow:none;
  10204. box-shadow:none;
  10205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10206. font-weight:400;
  10207. font-style:normal;
  10208. font-size:16px;
  10209. }
  10210. #u9074 {
  10211. border-width:0px;
  10212. position:absolute;
  10213. left:147px;
  10214. top:507px;
  10215. width:49px;
  10216. height:22px;
  10217. display:flex;
  10218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10219. font-weight:400;
  10220. font-style:normal;
  10221. font-size:16px;
  10222. }
  10223. #u9074 .text {
  10224. position:absolute;
  10225. align-self:flex-start;
  10226. padding:0px 0px 0px 0px;
  10227. box-sizing:border-box;
  10228. width:100%;
  10229. }
  10230. #u9074_text {
  10231. border-width:0px;
  10232. white-space:nowrap;
  10233. text-transform:none;
  10234. }
  10235. #u9075_div {
  10236. border-width:0px;
  10237. position:absolute;
  10238. left:0px;
  10239. top:0px;
  10240. width:81px;
  10241. height:22px;
  10242. background:inherit;
  10243. background-color:rgba(255, 255, 255, 0);
  10244. border:none;
  10245. border-radius:0px;
  10246. -moz-box-shadow:none;
  10247. -webkit-box-shadow:none;
  10248. box-shadow:none;
  10249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10250. font-weight:400;
  10251. font-style:normal;
  10252. font-size:16px;
  10253. }
  10254. #u9075 {
  10255. border-width:0px;
  10256. position:absolute;
  10257. left:147px;
  10258. top:549px;
  10259. width:81px;
  10260. height:22px;
  10261. display:flex;
  10262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10263. font-weight:400;
  10264. font-style:normal;
  10265. font-size:16px;
  10266. }
  10267. #u9075 .text {
  10268. position:absolute;
  10269. align-self:flex-start;
  10270. padding:0px 0px 0px 0px;
  10271. box-sizing:border-box;
  10272. width:100%;
  10273. }
  10274. #u9075_text {
  10275. border-width:0px;
  10276. white-space:nowrap;
  10277. text-transform:none;
  10278. }
  10279. #u9076_div {
  10280. border-width:0px;
  10281. position:absolute;
  10282. left:0px;
  10283. top:0px;
  10284. width:81px;
  10285. height:22px;
  10286. background:inherit;
  10287. background-color:rgba(255, 255, 255, 0);
  10288. border:none;
  10289. border-radius:0px;
  10290. -moz-box-shadow:none;
  10291. -webkit-box-shadow:none;
  10292. box-shadow:none;
  10293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10294. font-weight:400;
  10295. font-style:normal;
  10296. font-size:16px;
  10297. }
  10298. #u9076 {
  10299. border-width:0px;
  10300. position:absolute;
  10301. left:147px;
  10302. top:591px;
  10303. width:81px;
  10304. height:22px;
  10305. display:flex;
  10306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10307. font-weight:400;
  10308. font-style:normal;
  10309. font-size:16px;
  10310. }
  10311. #u9076 .text {
  10312. position:absolute;
  10313. align-self:flex-start;
  10314. padding:0px 0px 0px 0px;
  10315. box-sizing:border-box;
  10316. width:100%;
  10317. }
  10318. #u9076_text {
  10319. border-width:0px;
  10320. white-space:nowrap;
  10321. text-transform:none;
  10322. }
  10323. #u9077_div {
  10324. border-width:0px;
  10325. position:absolute;
  10326. left:0px;
  10327. top:0px;
  10328. width:65px;
  10329. height:22px;
  10330. background:inherit;
  10331. background-color:rgba(255, 255, 255, 0);
  10332. border:none;
  10333. border-radius:0px;
  10334. -moz-box-shadow:none;
  10335. -webkit-box-shadow:none;
  10336. box-shadow:none;
  10337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10338. font-weight:400;
  10339. font-style:normal;
  10340. font-size:16px;
  10341. }
  10342. #u9077 {
  10343. border-width:0px;
  10344. position:absolute;
  10345. left:147px;
  10346. top:316px;
  10347. width:65px;
  10348. height:22px;
  10349. display:flex;
  10350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10351. font-weight:400;
  10352. font-style:normal;
  10353. font-size:16px;
  10354. }
  10355. #u9077 .text {
  10356. position:absolute;
  10357. align-self:flex-start;
  10358. padding:0px 0px 0px 0px;
  10359. box-sizing:border-box;
  10360. width:100%;
  10361. }
  10362. #u9077_text {
  10363. border-width:0px;
  10364. white-space:nowrap;
  10365. text-transform:none;
  10366. }
  10367. #u9078 {
  10368. border-width:0px;
  10369. position:absolute;
  10370. left:0px;
  10371. top:0px;
  10372. width:0px;
  10373. height:0px;
  10374. }
  10375. #u9079_div {
  10376. border-width:0px;
  10377. position:absolute;
  10378. left:0px;
  10379. top:0px;
  10380. width:140px;
  10381. height:30px;
  10382. background:inherit;
  10383. background-color:rgba(255, 255, 255, 1);
  10384. box-sizing:border-box;
  10385. border-width:1px;
  10386. border-style:solid;
  10387. border-color:rgba(215, 215, 215, 1);
  10388. border-radius:4px;
  10389. -moz-box-shadow:none;
  10390. -webkit-box-shadow:none;
  10391. box-shadow:none;
  10392. font-size:11px;
  10393. }
  10394. #u9079 {
  10395. border-width:0px;
  10396. position:absolute;
  10397. left:951px;
  10398. top:101px;
  10399. width:140px;
  10400. height:30px;
  10401. display:flex;
  10402. font-size:11px;
  10403. }
  10404. #u9079 .text {
  10405. position:absolute;
  10406. align-self:center;
  10407. padding:2px 2px 2px 2px;
  10408. box-sizing:border-box;
  10409. width:100%;
  10410. }
  10411. #u9079_text {
  10412. border-width:0px;
  10413. word-wrap:break-word;
  10414. text-transform:none;
  10415. visibility:hidden;
  10416. }
  10417. #u9080_input {
  10418. position:absolute;
  10419. left:0px;
  10420. top:0px;
  10421. width:120px;
  10422. height:23px;
  10423. padding:2px 2px 2px 2px;
  10424. font-family:'ArialMT', 'Arial', sans-serif;
  10425. font-weight:400;
  10426. font-style:normal;
  10427. font-size:11px;
  10428. letter-spacing:normal;
  10429. color:#AAAAAA;
  10430. vertical-align:none;
  10431. text-align:left;
  10432. text-transform:none;
  10433. background-color:transparent;
  10434. border-color:transparent;
  10435. }
  10436. #u9080_input.disabled {
  10437. position:absolute;
  10438. left:0px;
  10439. top:0px;
  10440. width:120px;
  10441. height:23px;
  10442. padding:2px 2px 2px 2px;
  10443. font-family:'ArialMT', 'Arial', sans-serif;
  10444. font-weight:400;
  10445. font-style:normal;
  10446. font-size:11px;
  10447. letter-spacing:normal;
  10448. color:#AAAAAA;
  10449. vertical-align:none;
  10450. text-align:left;
  10451. text-transform:none;
  10452. background-color:transparent;
  10453. border-color:transparent;
  10454. }
  10455. #u9080_div {
  10456. border-width:0px;
  10457. position:absolute;
  10458. left:0px;
  10459. top:0px;
  10460. width:120px;
  10461. height:23px;
  10462. background:inherit;
  10463. background-color:rgba(255, 255, 255, 1);
  10464. border:none;
  10465. border-radius:0px;
  10466. -moz-box-shadow:none;
  10467. -webkit-box-shadow:none;
  10468. box-shadow:none;
  10469. font-size:11px;
  10470. color:#AAAAAA;
  10471. }
  10472. #u9080 {
  10473. border-width:0px;
  10474. position:absolute;
  10475. left:958px;
  10476. top:103px;
  10477. width:120px;
  10478. height:23px;
  10479. display:flex;
  10480. font-size:11px;
  10481. color:#AAAAAA;
  10482. }
  10483. #u9080 .text {
  10484. position:absolute;
  10485. align-self:flex-start;
  10486. padding:2px 2px 2px 2px;
  10487. box-sizing:border-box;
  10488. width:100%;
  10489. }
  10490. #u9080_div.disabled {
  10491. border-width:0px;
  10492. position:absolute;
  10493. left:0px;
  10494. top:0px;
  10495. width:120px;
  10496. height:23px;
  10497. background:inherit;
  10498. background-color:rgba(240, 240, 240, 1);
  10499. border:none;
  10500. border-radius:0px;
  10501. -moz-box-shadow:none;
  10502. -webkit-box-shadow:none;
  10503. box-shadow:none;
  10504. font-size:11px;
  10505. color:#AAAAAA;
  10506. }
  10507. #u9080.disabled {
  10508. }
  10509. .u9080_input_option {
  10510. font-size:11px;
  10511. }
  10512. #u9081 {
  10513. border-width:0px;
  10514. position:absolute;
  10515. left:0px;
  10516. top:0px;
  10517. width:0px;
  10518. height:0px;
  10519. }
  10520. #u9082_div {
  10521. border-width:0px;
  10522. position:absolute;
  10523. left:0px;
  10524. top:0px;
  10525. width:140px;
  10526. height:30px;
  10527. background:inherit;
  10528. background-color:rgba(255, 255, 255, 1);
  10529. box-sizing:border-box;
  10530. border-width:1px;
  10531. border-style:solid;
  10532. border-color:rgba(215, 215, 215, 1);
  10533. border-radius:4px;
  10534. -moz-box-shadow:none;
  10535. -webkit-box-shadow:none;
  10536. box-shadow:none;
  10537. font-size:11px;
  10538. }
  10539. #u9082 {
  10540. border-width:0px;
  10541. position:absolute;
  10542. left:1101px;
  10543. top:101px;
  10544. width:140px;
  10545. height:30px;
  10546. display:flex;
  10547. font-size:11px;
  10548. }
  10549. #u9082 .text {
  10550. position:absolute;
  10551. align-self:center;
  10552. padding:2px 2px 2px 2px;
  10553. box-sizing:border-box;
  10554. width:100%;
  10555. }
  10556. #u9082_text {
  10557. border-width:0px;
  10558. word-wrap:break-word;
  10559. text-transform:none;
  10560. visibility:hidden;
  10561. }
  10562. #u9083_input {
  10563. position:absolute;
  10564. left:0px;
  10565. top:0px;
  10566. width:120px;
  10567. height:23px;
  10568. padding:2px 2px 2px 2px;
  10569. font-family:'ArialMT', 'Arial', sans-serif;
  10570. font-weight:400;
  10571. font-style:normal;
  10572. font-size:11px;
  10573. letter-spacing:normal;
  10574. color:#AAAAAA;
  10575. vertical-align:none;
  10576. text-align:left;
  10577. text-transform:none;
  10578. background-color:transparent;
  10579. border-color:transparent;
  10580. }
  10581. #u9083_input.disabled {
  10582. position:absolute;
  10583. left:0px;
  10584. top:0px;
  10585. width:120px;
  10586. height:23px;
  10587. padding:2px 2px 2px 2px;
  10588. font-family:'ArialMT', 'Arial', sans-serif;
  10589. font-weight:400;
  10590. font-style:normal;
  10591. font-size:11px;
  10592. letter-spacing:normal;
  10593. color:#AAAAAA;
  10594. vertical-align:none;
  10595. text-align:left;
  10596. text-transform:none;
  10597. background-color:transparent;
  10598. border-color:transparent;
  10599. }
  10600. #u9083_div {
  10601. border-width:0px;
  10602. position:absolute;
  10603. left:0px;
  10604. top:0px;
  10605. width:120px;
  10606. height:23px;
  10607. background:inherit;
  10608. background-color:rgba(255, 255, 255, 1);
  10609. border:none;
  10610. border-radius:0px;
  10611. -moz-box-shadow:none;
  10612. -webkit-box-shadow:none;
  10613. box-shadow:none;
  10614. font-size:11px;
  10615. color:#AAAAAA;
  10616. }
  10617. #u9083 {
  10618. border-width:0px;
  10619. position:absolute;
  10620. left:1108px;
  10621. top:103px;
  10622. width:120px;
  10623. height:23px;
  10624. display:flex;
  10625. font-size:11px;
  10626. color:#AAAAAA;
  10627. }
  10628. #u9083 .text {
  10629. position:absolute;
  10630. align-self:flex-start;
  10631. padding:2px 2px 2px 2px;
  10632. box-sizing:border-box;
  10633. width:100%;
  10634. }
  10635. #u9083_div.disabled {
  10636. border-width:0px;
  10637. position:absolute;
  10638. left:0px;
  10639. top:0px;
  10640. width:120px;
  10641. height:23px;
  10642. background:inherit;
  10643. background-color:rgba(240, 240, 240, 1);
  10644. border:none;
  10645. border-radius:0px;
  10646. -moz-box-shadow:none;
  10647. -webkit-box-shadow:none;
  10648. box-shadow:none;
  10649. font-size:11px;
  10650. color:#AAAAAA;
  10651. }
  10652. #u9083.disabled {
  10653. }
  10654. .u9083_input_option {
  10655. font-size:11px;
  10656. }
  10657. #u9084_div {
  10658. border-width:0px;
  10659. position:absolute;
  10660. left:0px;
  10661. top:0px;
  10662. width:1309px;
  10663. height:280px;
  10664. background:inherit;
  10665. background-color:rgba(255, 255, 255, 0);
  10666. border:none;
  10667. border-radius:0px;
  10668. -moz-box-shadow:none;
  10669. -webkit-box-shadow:none;
  10670. box-shadow:none;
  10671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10672. font-weight:400;
  10673. font-style:normal;
  10674. font-size:18px;
  10675. color:#000000;
  10676. line-height:40px;
  10677. }
  10678. #u9084 {
  10679. border-width:0px;
  10680. position:absolute;
  10681. left:1690px;
  10682. top:139px;
  10683. width:1309px;
  10684. height:280px;
  10685. display:flex;
  10686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10687. font-weight:400;
  10688. font-style:normal;
  10689. font-size:18px;
  10690. color:#000000;
  10691. line-height:40px;
  10692. }
  10693. #u9084 .text {
  10694. position:absolute;
  10695. align-self:flex-start;
  10696. padding:0px 0px 0px 0px;
  10697. box-sizing:border-box;
  10698. width:100%;
  10699. }
  10700. #u9084_text {
  10701. border-width:0px;
  10702. white-space:nowrap;
  10703. text-transform:none;
  10704. }