styles.css 189 KB

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