styles.css 161 KB

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