styles.css 218 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339
  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. #u81982_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. #u81982 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u81982 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u81982_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u81983_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. #u81983 {
  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. #u81983 .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. #u81983_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u81984_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. #u81984 {
  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. #u81984 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u81984_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u81985 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u81986_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u81986 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u81986 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u81986_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u81987_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. #u81987 {
  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. #u81987 .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. #u81987_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u81988_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. #u81988 {
  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. #u81988 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u81988_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u81989 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u81990_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. #u81990 {
  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. #u81990 .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. #u81990_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u81991_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u81991 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u81991 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u81991_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u81992 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u81993_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. #u81993 {
  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. #u81993 .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. #u81993_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u81994_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u81994 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u81994 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u81994_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u81995 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u81996_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. #u81996 {
  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. #u81996 .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. #u81996_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u81997_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u81997 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u81997 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u81997_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u81998 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u81999_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. #u81999 {
  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. #u81999 .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. #u81999_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u82000_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u82000 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u82000 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u82000_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u82001 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u82002_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. #u82002 {
  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. #u82002 .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. #u82002_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u82003_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u82003 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u82003 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u82003_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u82004 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u82005_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. #u82005 {
  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. #u82005 .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. #u82005_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u82006_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u82006 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u82006 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u82006_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u82007 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u82008_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. #u82008 {
  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. #u82008 .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. #u82008_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u82009_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u82009 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u82009 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u82009_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u82010 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u82011_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. #u82011 {
  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. #u82011 .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. #u82011_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u82012_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u82012 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u82012 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u82012_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u82013 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u82014_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. #u82014 {
  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. #u82014 .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. #u82014_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u82015_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u82015 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u82015 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u82015_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u82016_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. #u82016 {
  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. #u82016 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u82016_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u82017_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u82017 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u82017 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u82017_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u82018_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. #u82018 {
  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. #u82018 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u82018_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u82019_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u82019 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u82019 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u82019_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u82020 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u82021_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. #u82021 {
  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. #u82021 .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. #u82021_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u82022_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u82022 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u82022 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u82022_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u82023 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u82024_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. #u82024 {
  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. #u82024 .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. #u82024_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u82025_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u82025 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u82025 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u82025_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u82026 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u82027_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. #u82027_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. #u82027_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. #u82027 {
  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. #u82027 .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. #u82027_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. #u82027.disabled {
  1428. }
  1429. .u82027_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u82028_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u82028 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u82028 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u82028_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u82029_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. #u82029 {
  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. #u82029 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u82029_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u82030_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u82030 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u82030 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u82030_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u82031_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1256px;
  1544. height:1010px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1550. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1551. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1552. }
  1553. #u82031 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:241px;
  1558. width:1256px;
  1559. height:1010px;
  1560. display:flex;
  1561. }
  1562. #u82031 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u82031_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u82032_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:1256px;
  1581. height:181px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 1);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1587. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1588. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1589. }
  1590. #u82032 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:330px;
  1594. top:50px;
  1595. width:1256px;
  1596. height:181px;
  1597. display:flex;
  1598. }
  1599. #u82032 .text {
  1600. position:absolute;
  1601. align-self:center;
  1602. padding:2px 2px 2px 2px;
  1603. box-sizing:border-box;
  1604. width:100%;
  1605. }
  1606. #u82032_text {
  1607. border-width:0px;
  1608. word-wrap:break-word;
  1609. text-transform:none;
  1610. visibility:hidden;
  1611. }
  1612. #u82033 {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:0px;
  1618. height:0px;
  1619. }
  1620. #u82034_div {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:194px;
  1626. height:100px;
  1627. background:inherit;
  1628. background-color:rgba(242, 242, 242, 1);
  1629. border:none;
  1630. border-radius:5px;
  1631. -moz-box-shadow:none;
  1632. -webkit-box-shadow:none;
  1633. box-shadow:none;
  1634. color:#1890FF;
  1635. }
  1636. #u82034 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:759px;
  1640. top:110px;
  1641. width:194px;
  1642. height:100px;
  1643. display:flex;
  1644. color:#1890FF;
  1645. }
  1646. #u82034 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u82034_text {
  1654. border-width:0px;
  1655. word-wrap:break-word;
  1656. text-transform:none;
  1657. visibility:hidden;
  1658. }
  1659. #u82035_div {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:0px;
  1663. top:0px;
  1664. width:116px;
  1665. height:20px;
  1666. background:inherit;
  1667. background-color:rgba(255, 255, 255, 0);
  1668. border:none;
  1669. border-radius:0px;
  1670. -moz-box-shadow:none;
  1671. -webkit-box-shadow:none;
  1672. box-shadow:none;
  1673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1674. font-weight:400;
  1675. font-style:normal;
  1676. font-size:14px;
  1677. }
  1678. #u82035 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:796px;
  1682. top:130px;
  1683. width:116px;
  1684. height:20px;
  1685. display:flex;
  1686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1687. font-weight:400;
  1688. font-style:normal;
  1689. font-size:14px;
  1690. }
  1691. #u82035 .text {
  1692. position:absolute;
  1693. align-self:flex-start;
  1694. padding:0px 0px 0px 0px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u82035_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. }
  1703. #u82036_div {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:65px;
  1709. height:25px;
  1710. background:inherit;
  1711. background-color:rgba(255, 255, 255, 0);
  1712. border:none;
  1713. border-radius:0px;
  1714. -moz-box-shadow:none;
  1715. -webkit-box-shadow:none;
  1716. box-shadow:none;
  1717. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1718. font-weight:650;
  1719. font-style:normal;
  1720. font-size:18px;
  1721. }
  1722. #u82036 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:796px;
  1726. top:163px;
  1727. width:65px;
  1728. height:25px;
  1729. display:flex;
  1730. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1731. font-weight:650;
  1732. font-style:normal;
  1733. font-size:18px;
  1734. }
  1735. #u82036 .text {
  1736. position:absolute;
  1737. align-self:flex-start;
  1738. padding:0px 0px 0px 0px;
  1739. box-sizing:border-box;
  1740. width:100%;
  1741. }
  1742. #u82036_text {
  1743. border-width:0px;
  1744. word-wrap:break-word;
  1745. text-transform:none;
  1746. }
  1747. #u82037 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:0px;
  1753. height:0px;
  1754. }
  1755. #u82038_div {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:194px;
  1761. height:100px;
  1762. background:inherit;
  1763. background-color:rgba(242, 242, 242, 1);
  1764. border:none;
  1765. border-radius:5px;
  1766. -moz-box-shadow:none;
  1767. -webkit-box-shadow:none;
  1768. box-shadow:none;
  1769. color:#1890FF;
  1770. }
  1771. #u82038 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:963px;
  1775. top:110px;
  1776. width:194px;
  1777. height:100px;
  1778. display:flex;
  1779. color:#1890FF;
  1780. }
  1781. #u82038 .text {
  1782. position:absolute;
  1783. align-self:center;
  1784. padding:2px 2px 2px 2px;
  1785. box-sizing:border-box;
  1786. width:100%;
  1787. }
  1788. #u82038_text {
  1789. border-width:0px;
  1790. word-wrap:break-word;
  1791. text-transform:none;
  1792. visibility:hidden;
  1793. }
  1794. #u82039_div {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:116px;
  1800. height:20px;
  1801. background:inherit;
  1802. background-color:rgba(255, 255, 255, 0);
  1803. border:none;
  1804. border-radius:0px;
  1805. -moz-box-shadow:none;
  1806. -webkit-box-shadow:none;
  1807. box-shadow:none;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:14px;
  1812. }
  1813. #u82039 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:1001px;
  1817. top:130px;
  1818. width:116px;
  1819. height:20px;
  1820. display:flex;
  1821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1822. font-weight:400;
  1823. font-style:normal;
  1824. font-size:14px;
  1825. }
  1826. #u82039 .text {
  1827. position:absolute;
  1828. align-self:flex-start;
  1829. padding:0px 0px 0px 0px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u82039_text {
  1834. border-width:0px;
  1835. word-wrap:break-word;
  1836. text-transform:none;
  1837. }
  1838. #u82040_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:94px;
  1844. height:25px;
  1845. background:inherit;
  1846. background-color:rgba(255, 255, 255, 0);
  1847. border:none;
  1848. border-radius:0px;
  1849. -moz-box-shadow:none;
  1850. -webkit-box-shadow:none;
  1851. box-shadow:none;
  1852. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1853. font-weight:650;
  1854. font-style:normal;
  1855. font-size:18px;
  1856. }
  1857. #u82040 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:1001px;
  1861. top:163px;
  1862. width:94px;
  1863. height:25px;
  1864. display:flex;
  1865. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1866. font-weight:650;
  1867. font-style:normal;
  1868. font-size:18px;
  1869. }
  1870. #u82040 .text {
  1871. position:absolute;
  1872. align-self:flex-start;
  1873. padding:0px 0px 0px 0px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u82040_text {
  1878. border-width:0px;
  1879. word-wrap:break-word;
  1880. text-transform:none;
  1881. }
  1882. #u82041 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:0px;
  1888. height:0px;
  1889. }
  1890. #u82042_div {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:194px;
  1896. height:100px;
  1897. background:inherit;
  1898. background-color:rgba(242, 242, 242, 1);
  1899. border:none;
  1900. border-radius:5px;
  1901. -moz-box-shadow:none;
  1902. -webkit-box-shadow:none;
  1903. box-shadow:none;
  1904. color:#1890FF;
  1905. }
  1906. #u82042 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:1168px;
  1910. top:110px;
  1911. width:194px;
  1912. height:100px;
  1913. display:flex;
  1914. color:#1890FF;
  1915. }
  1916. #u82042 .text {
  1917. position:absolute;
  1918. align-self:center;
  1919. padding:2px 2px 2px 2px;
  1920. box-sizing:border-box;
  1921. width:100%;
  1922. }
  1923. #u82042_text {
  1924. border-width:0px;
  1925. word-wrap:break-word;
  1926. text-transform:none;
  1927. visibility:hidden;
  1928. }
  1929. #u82043_div {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:0px;
  1933. top:0px;
  1934. width:116px;
  1935. height:20px;
  1936. background:inherit;
  1937. background-color:rgba(255, 255, 255, 0);
  1938. border:none;
  1939. border-radius:0px;
  1940. -moz-box-shadow:none;
  1941. -webkit-box-shadow:none;
  1942. box-shadow:none;
  1943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1944. font-weight:400;
  1945. font-style:normal;
  1946. font-size:14px;
  1947. }
  1948. #u82043 {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:1206px;
  1952. top:130px;
  1953. width:116px;
  1954. height:20px;
  1955. display:flex;
  1956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1957. font-weight:400;
  1958. font-style:normal;
  1959. font-size:14px;
  1960. }
  1961. #u82043 .text {
  1962. position:absolute;
  1963. align-self:flex-start;
  1964. padding:0px 0px 0px 0px;
  1965. box-sizing:border-box;
  1966. width:100%;
  1967. }
  1968. #u82043_text {
  1969. border-width:0px;
  1970. word-wrap:break-word;
  1971. text-transform:none;
  1972. }
  1973. #u82044_div {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:82px;
  1979. height:25px;
  1980. background:inherit;
  1981. background-color:rgba(255, 255, 255, 0);
  1982. border:none;
  1983. border-radius:0px;
  1984. -moz-box-shadow:none;
  1985. -webkit-box-shadow:none;
  1986. box-shadow:none;
  1987. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1988. font-weight:650;
  1989. font-style:normal;
  1990. font-size:18px;
  1991. }
  1992. #u82044 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:1206px;
  1996. top:163px;
  1997. width:82px;
  1998. height:25px;
  1999. display:flex;
  2000. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2001. font-weight:650;
  2002. font-style:normal;
  2003. font-size:18px;
  2004. }
  2005. #u82044 .text {
  2006. position:absolute;
  2007. align-self:flex-start;
  2008. padding:0px 0px 0px 0px;
  2009. box-sizing:border-box;
  2010. width:100%;
  2011. }
  2012. #u82044_text {
  2013. border-width:0px;
  2014. word-wrap:break-word;
  2015. text-transform:none;
  2016. }
  2017. #u82045 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:0px;
  2023. height:0px;
  2024. }
  2025. #u82046_div {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:194px;
  2031. height:100px;
  2032. background:inherit;
  2033. background-color:rgba(242, 242, 242, 1);
  2034. border:none;
  2035. border-radius:5px;
  2036. -moz-box-shadow:none;
  2037. -webkit-box-shadow:none;
  2038. box-shadow:none;
  2039. color:#1890FF;
  2040. }
  2041. #u82046 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:1372px;
  2045. top:110px;
  2046. width:194px;
  2047. height:100px;
  2048. display:flex;
  2049. color:#1890FF;
  2050. }
  2051. #u82046 .text {
  2052. position:absolute;
  2053. align-self:center;
  2054. padding:2px 2px 2px 2px;
  2055. box-sizing:border-box;
  2056. width:100%;
  2057. }
  2058. #u82046_text {
  2059. border-width:0px;
  2060. word-wrap:break-word;
  2061. text-transform:none;
  2062. visibility:hidden;
  2063. }
  2064. #u82047_div {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:0px;
  2068. top:0px;
  2069. width:116px;
  2070. height:20px;
  2071. background:inherit;
  2072. background-color:rgba(255, 255, 255, 0);
  2073. border:none;
  2074. border-radius:0px;
  2075. -moz-box-shadow:none;
  2076. -webkit-box-shadow:none;
  2077. box-shadow:none;
  2078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:14px;
  2082. }
  2083. #u82047 {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:1411px;
  2087. top:130px;
  2088. width:116px;
  2089. height:20px;
  2090. display:flex;
  2091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2092. font-weight:400;
  2093. font-style:normal;
  2094. font-size:14px;
  2095. }
  2096. #u82047 .text {
  2097. position:absolute;
  2098. align-self:flex-start;
  2099. padding:0px 0px 0px 0px;
  2100. box-sizing:border-box;
  2101. width:100%;
  2102. }
  2103. #u82047_text {
  2104. border-width:0px;
  2105. word-wrap:break-word;
  2106. text-transform:none;
  2107. }
  2108. #u82048_div {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:88px;
  2114. height:25px;
  2115. background:inherit;
  2116. background-color:rgba(255, 255, 255, 0);
  2117. border:none;
  2118. border-radius:0px;
  2119. -moz-box-shadow:none;
  2120. -webkit-box-shadow:none;
  2121. box-shadow:none;
  2122. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2123. font-weight:650;
  2124. font-style:normal;
  2125. font-size:18px;
  2126. }
  2127. #u82048 {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:1411px;
  2131. top:163px;
  2132. width:88px;
  2133. height:25px;
  2134. display:flex;
  2135. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2136. font-weight:650;
  2137. font-style:normal;
  2138. font-size:18px;
  2139. }
  2140. #u82048 .text {
  2141. position:absolute;
  2142. align-self:flex-start;
  2143. padding:0px 0px 0px 0px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u82048_text {
  2148. border-width:0px;
  2149. word-wrap:break-word;
  2150. text-transform:none;
  2151. }
  2152. #u82049_div {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:0px;
  2156. top:0px;
  2157. width:73px;
  2158. height:50px;
  2159. background:inherit;
  2160. background-color:rgba(255, 255, 255, 0);
  2161. border:none;
  2162. border-left:0px;
  2163. border-top:0px;
  2164. border-right:0px;
  2165. border-radius:0px;
  2166. border-bottom-right-radius:0px;
  2167. border-bottom-left-radius:0px;
  2168. -moz-box-shadow:none;
  2169. -webkit-box-shadow:none;
  2170. box-shadow:none;
  2171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2172. font-weight:500;
  2173. font-style:normal;
  2174. font-size:18px;
  2175. }
  2176. #u82049 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:354px;
  2180. top:50px;
  2181. width:73px;
  2182. height:50px;
  2183. display:flex;
  2184. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2185. font-weight:500;
  2186. font-style:normal;
  2187. font-size:18px;
  2188. }
  2189. #u82049 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:0px 0px 0px 0px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u82049_text {
  2197. border-width:0px;
  2198. white-space:nowrap;
  2199. text-transform:none;
  2200. }
  2201. #u82050 {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:0px;
  2207. height:0px;
  2208. }
  2209. #u82051_div {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:194px;
  2215. height:100px;
  2216. background:inherit;
  2217. background-color:rgba(242, 242, 242, 1);
  2218. border:none;
  2219. border-radius:5px;
  2220. -moz-box-shadow:none;
  2221. -webkit-box-shadow:none;
  2222. box-shadow:none;
  2223. color:#1890FF;
  2224. }
  2225. #u82051 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:554px;
  2229. top:110px;
  2230. width:194px;
  2231. height:100px;
  2232. display:flex;
  2233. color:#1890FF;
  2234. }
  2235. #u82051 .text {
  2236. position:absolute;
  2237. align-self:center;
  2238. padding:2px 2px 2px 2px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u82051_text {
  2243. border-width:0px;
  2244. word-wrap:break-word;
  2245. text-transform:none;
  2246. visibility:hidden;
  2247. }
  2248. #u82052_div {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:116px;
  2254. height:20px;
  2255. background:inherit;
  2256. background-color:rgba(255, 255, 255, 0);
  2257. border:none;
  2258. border-radius:0px;
  2259. -moz-box-shadow:none;
  2260. -webkit-box-shadow:none;
  2261. box-shadow:none;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:14px;
  2266. }
  2267. #u82052 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:591px;
  2271. top:130px;
  2272. width:116px;
  2273. height:20px;
  2274. display:flex;
  2275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2276. font-weight:400;
  2277. font-style:normal;
  2278. font-size:14px;
  2279. }
  2280. #u82052 .text {
  2281. position:absolute;
  2282. align-self:flex-start;
  2283. padding:0px 0px 0px 0px;
  2284. box-sizing:border-box;
  2285. width:100%;
  2286. }
  2287. #u82052_text {
  2288. border-width:0px;
  2289. word-wrap:break-word;
  2290. text-transform:none;
  2291. }
  2292. #u82053_div {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:94px;
  2298. height:25px;
  2299. background:inherit;
  2300. background-color:rgba(255, 255, 255, 0);
  2301. border:none;
  2302. border-radius:0px;
  2303. -moz-box-shadow:none;
  2304. -webkit-box-shadow:none;
  2305. box-shadow:none;
  2306. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2307. font-weight:650;
  2308. font-style:normal;
  2309. font-size:18px;
  2310. }
  2311. #u82053 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:591px;
  2315. top:163px;
  2316. width:94px;
  2317. height:25px;
  2318. display:flex;
  2319. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2320. font-weight:650;
  2321. font-style:normal;
  2322. font-size:18px;
  2323. }
  2324. #u82053 .text {
  2325. position:absolute;
  2326. align-self:flex-start;
  2327. padding:0px 0px 0px 0px;
  2328. box-sizing:border-box;
  2329. width:100%;
  2330. }
  2331. #u82053_text {
  2332. border-width:0px;
  2333. word-wrap:break-word;
  2334. text-transform:none;
  2335. }
  2336. #u82054 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:0px;
  2342. height:0px;
  2343. }
  2344. #u82055_div {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:194px;
  2350. height:100px;
  2351. background:inherit;
  2352. background-color:rgba(242, 242, 242, 1);
  2353. border:none;
  2354. border-radius:5px;
  2355. -moz-box-shadow:none;
  2356. -webkit-box-shadow:none;
  2357. box-shadow:none;
  2358. color:#1890FF;
  2359. }
  2360. #u82055 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:350px;
  2364. top:110px;
  2365. width:194px;
  2366. height:100px;
  2367. display:flex;
  2368. color:#1890FF;
  2369. }
  2370. #u82055 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 2px 2px 2px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u82055_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. visibility:hidden;
  2382. }
  2383. #u82056_div {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:86px;
  2389. height:20px;
  2390. background:inherit;
  2391. background-color:rgba(255, 255, 255, 0);
  2392. border:none;
  2393. border-radius:0px;
  2394. -moz-box-shadow:none;
  2395. -webkit-box-shadow:none;
  2396. box-shadow:none;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:14px;
  2401. }
  2402. #u82056 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:386px;
  2406. top:130px;
  2407. width:86px;
  2408. height:20px;
  2409. display:flex;
  2410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:14px;
  2414. }
  2415. #u82056 .text {
  2416. position:absolute;
  2417. align-self:flex-start;
  2418. padding:0px 0px 0px 0px;
  2419. box-sizing:border-box;
  2420. width:100%;
  2421. }
  2422. #u82056_text {
  2423. border-width:0px;
  2424. word-wrap:break-word;
  2425. text-transform:none;
  2426. }
  2427. #u82057_div {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:0px;
  2431. top:0px;
  2432. width:44px;
  2433. height:25px;
  2434. background:inherit;
  2435. background-color:rgba(255, 255, 255, 0);
  2436. border:none;
  2437. border-radius:0px;
  2438. -moz-box-shadow:none;
  2439. -webkit-box-shadow:none;
  2440. box-shadow:none;
  2441. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2442. font-weight:650;
  2443. font-style:normal;
  2444. font-size:18px;
  2445. }
  2446. #u82057 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:386px;
  2450. top:163px;
  2451. width:44px;
  2452. height:25px;
  2453. display:flex;
  2454. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2455. font-weight:650;
  2456. font-style:normal;
  2457. font-size:18px;
  2458. }
  2459. #u82057 .text {
  2460. position:absolute;
  2461. align-self:flex-start;
  2462. padding:0px 0px 0px 0px;
  2463. box-sizing:border-box;
  2464. width:100%;
  2465. }
  2466. #u82057_text {
  2467. border-width:0px;
  2468. word-wrap:break-word;
  2469. text-transform:none;
  2470. }
  2471. #u82059 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:0px;
  2477. height:0px;
  2478. }
  2479. #u82060_img {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:200px;
  2485. height:1191px;
  2486. }
  2487. #u82060 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:120px;
  2491. top:50px;
  2492. width:200px;
  2493. height:1191px;
  2494. display:flex;
  2495. }
  2496. #u82060 .text {
  2497. position:absolute;
  2498. align-self:center;
  2499. padding:2px 2px 2px 2px;
  2500. box-sizing:border-box;
  2501. width:100%;
  2502. }
  2503. #u82060_text {
  2504. border-width:0px;
  2505. word-wrap:break-word;
  2506. text-transform:none;
  2507. visibility:hidden;
  2508. }
  2509. #u82061_div {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:200px;
  2515. height:60px;
  2516. background:inherit;
  2517. background-color:rgba(224, 231, 247, 1);
  2518. border:none;
  2519. border-radius:0px;
  2520. -moz-box-shadow:none;
  2521. -webkit-box-shadow:none;
  2522. box-shadow:none;
  2523. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2524. font-weight:500;
  2525. font-style:normal;
  2526. font-size:18px;
  2527. }
  2528. #u82061 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:120px;
  2532. top:50px;
  2533. width:200px;
  2534. height:60px;
  2535. display:flex;
  2536. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2537. font-weight:500;
  2538. font-style:normal;
  2539. font-size:18px;
  2540. }
  2541. #u82061 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:0px 0px 0px 20px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u82061_text {
  2549. border-width:0px;
  2550. word-wrap:break-word;
  2551. text-transform:none;
  2552. }
  2553. #u82062 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:120px;
  2557. top:130px;
  2558. width:200px;
  2559. height:1078px;
  2560. }
  2561. #u82062_state0 {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:200px;
  2567. height:1078px;
  2568. overflow:auto;
  2569. -webkit-overflow-scrolling:touch;
  2570. -ms-overflow-x:hidden;
  2571. overflow-x:hidden;
  2572. background-image:none;
  2573. border:none;
  2574. border-radius:0px;
  2575. -moz-box-shadow:none;
  2576. -webkit-box-shadow:none;
  2577. box-shadow:none;
  2578. }
  2579. #u82062_state0_content {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:1px;
  2585. height:1px;
  2586. }
  2587. #u82063_div {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:97px;
  2593. height:22px;
  2594. background:inherit;
  2595. background-color:rgba(255, 255, 255, 0);
  2596. border:none;
  2597. border-radius:0px;
  2598. -moz-box-shadow:none;
  2599. -webkit-box-shadow:none;
  2600. box-shadow:none;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:16px;
  2605. }
  2606. #u82063 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:30px;
  2610. top:0px;
  2611. width:97px;
  2612. height:22px;
  2613. display:flex;
  2614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2615. font-weight:400;
  2616. font-style:normal;
  2617. font-size:16px;
  2618. }
  2619. #u82063 .text {
  2620. position:absolute;
  2621. align-self:flex-start;
  2622. padding:0px 0px 0px 0px;
  2623. box-sizing:border-box;
  2624. width:100%;
  2625. }
  2626. #u82063_text {
  2627. border-width:0px;
  2628. word-wrap:break-word;
  2629. text-transform:none;
  2630. }
  2631. #u82064_div {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:65px;
  2637. height:22px;
  2638. background:inherit;
  2639. background-color:rgba(255, 255, 255, 0);
  2640. border:none;
  2641. border-radius:0px;
  2642. -moz-box-shadow:none;
  2643. -webkit-box-shadow:none;
  2644. box-shadow:none;
  2645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2646. font-weight:400;
  2647. font-style:normal;
  2648. font-size:16px;
  2649. }
  2650. #u82064 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:30px;
  2654. top:42px;
  2655. width:65px;
  2656. height:22px;
  2657. display:flex;
  2658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2659. font-weight:400;
  2660. font-style:normal;
  2661. font-size:16px;
  2662. }
  2663. #u82064 .text {
  2664. position:absolute;
  2665. align-self:flex-start;
  2666. padding:0px 0px 0px 0px;
  2667. box-sizing:border-box;
  2668. width:100%;
  2669. }
  2670. #u82064_text {
  2671. border-width:0px;
  2672. white-space:nowrap;
  2673. text-transform:none;
  2674. }
  2675. #u82065_div {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:49px;
  2681. height:22px;
  2682. background:inherit;
  2683. background-color:rgba(255, 255, 255, 0);
  2684. border:none;
  2685. border-radius:0px;
  2686. -moz-box-shadow:none;
  2687. -webkit-box-shadow:none;
  2688. box-shadow:none;
  2689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2690. font-weight:400;
  2691. font-style:normal;
  2692. font-size:16px;
  2693. }
  2694. #u82065 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:30px;
  2698. top:145px;
  2699. width:49px;
  2700. height:22px;
  2701. display:flex;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:16px;
  2706. }
  2707. #u82065 .text {
  2708. position:absolute;
  2709. align-self:flex-start;
  2710. padding:0px 0px 0px 0px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u82065_text {
  2715. border-width:0px;
  2716. white-space:nowrap;
  2717. text-transform:none;
  2718. }
  2719. #u82066_div {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:0px;
  2723. top:0px;
  2724. width:97px;
  2725. height:22px;
  2726. background:inherit;
  2727. background-color:rgba(255, 255, 255, 0);
  2728. border:none;
  2729. border-radius:0px;
  2730. -moz-box-shadow:none;
  2731. -webkit-box-shadow:none;
  2732. box-shadow:none;
  2733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2734. font-weight:400;
  2735. font-style:normal;
  2736. font-size:16px;
  2737. }
  2738. #u82066 {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:30px;
  2742. top:187px;
  2743. width:97px;
  2744. height:22px;
  2745. display:flex;
  2746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2747. font-weight:400;
  2748. font-style:normal;
  2749. font-size:16px;
  2750. }
  2751. #u82066 .text {
  2752. position:absolute;
  2753. align-self:flex-start;
  2754. padding:0px 0px 0px 0px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u82066_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. }
  2763. #u82067_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:201px;
  2769. height:2px;
  2770. }
  2771. #u82067 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:84px;
  2776. width:200px;
  2777. height:1px;
  2778. display:flex;
  2779. }
  2780. #u82067 .text {
  2781. position:absolute;
  2782. align-self:center;
  2783. padding:2px 2px 2px 2px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u82067_text {
  2788. border-width:0px;
  2789. word-wrap:break-word;
  2790. text-transform:none;
  2791. visibility:hidden;
  2792. }
  2793. #u82068_div {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:49px;
  2799. height:17px;
  2800. background:inherit;
  2801. background-color:rgba(255, 255, 255, 0);
  2802. border:none;
  2803. border-radius:0px;
  2804. -moz-box-shadow:none;
  2805. -webkit-box-shadow:none;
  2806. box-shadow:none;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:12px;
  2811. color:#AAAAAA;
  2812. }
  2813. #u82068 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:30px;
  2817. top:105px;
  2818. width:49px;
  2819. height:17px;
  2820. display:flex;
  2821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2822. font-weight:400;
  2823. font-style:normal;
  2824. font-size:12px;
  2825. color:#AAAAAA;
  2826. }
  2827. #u82068 .text {
  2828. position:absolute;
  2829. align-self:flex-start;
  2830. padding:0px 0px 0px 0px;
  2831. box-sizing:border-box;
  2832. width:100%;
  2833. }
  2834. #u82068_text {
  2835. border-width:0px;
  2836. white-space:nowrap;
  2837. text-transform:none;
  2838. }
  2839. #u82069_div {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:0px;
  2843. top:0px;
  2844. width:97px;
  2845. height:22px;
  2846. background:inherit;
  2847. background-color:rgba(255, 255, 255, 0);
  2848. border:none;
  2849. border-radius:0px;
  2850. -moz-box-shadow:none;
  2851. -webkit-box-shadow:none;
  2852. box-shadow:none;
  2853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2854. font-weight:400;
  2855. font-style:normal;
  2856. font-size:16px;
  2857. }
  2858. #u82069 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:30px;
  2862. top:229px;
  2863. width:97px;
  2864. height:22px;
  2865. display:flex;
  2866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. font-size:16px;
  2870. }
  2871. #u82069 .text {
  2872. position:absolute;
  2873. align-self:flex-start;
  2874. padding:0px 0px 0px 0px;
  2875. box-sizing:border-box;
  2876. width:100%;
  2877. }
  2878. #u82069_text {
  2879. border-width:0px;
  2880. word-wrap:break-word;
  2881. text-transform:none;
  2882. }
  2883. #u82070_div {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:65px;
  2889. height:22px;
  2890. background:inherit;
  2891. background-color:rgba(255, 255, 255, 0);
  2892. border:none;
  2893. border-radius:0px;
  2894. -moz-box-shadow:none;
  2895. -webkit-box-shadow:none;
  2896. box-shadow:none;
  2897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2898. font-weight:400;
  2899. font-style:normal;
  2900. font-size:16px;
  2901. }
  2902. #u82070 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:30px;
  2906. top:271px;
  2907. width:65px;
  2908. height:22px;
  2909. display:flex;
  2910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2911. font-weight:400;
  2912. font-style:normal;
  2913. font-size:16px;
  2914. }
  2915. #u82070 .text {
  2916. position:absolute;
  2917. align-self:flex-start;
  2918. padding:0px 0px 0px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u82070_text {
  2923. border-width:0px;
  2924. white-space:nowrap;
  2925. text-transform:none;
  2926. }
  2927. #u82071_img {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:201px;
  2933. height:2px;
  2934. }
  2935. #u82071 {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:313px;
  2940. width:200px;
  2941. height:1px;
  2942. display:flex;
  2943. }
  2944. #u82071 .text {
  2945. position:absolute;
  2946. align-self:center;
  2947. padding:2px 2px 2px 2px;
  2948. box-sizing:border-box;
  2949. width:100%;
  2950. }
  2951. #u82071_text {
  2952. border-width:0px;
  2953. word-wrap:break-word;
  2954. text-transform:none;
  2955. visibility:hidden;
  2956. }
  2957. #u82072_div {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:65px;
  2963. height:22px;
  2964. background:inherit;
  2965. background-color:rgba(255, 255, 255, 0);
  2966. border:none;
  2967. border-radius:0px;
  2968. -moz-box-shadow:none;
  2969. -webkit-box-shadow:none;
  2970. box-shadow:none;
  2971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2972. font-weight:400;
  2973. font-style:normal;
  2974. font-size:16px;
  2975. }
  2976. #u82072 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:30px;
  2980. top:370px;
  2981. width:65px;
  2982. height:22px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:16px;
  2988. }
  2989. #u82072 .text {
  2990. position:absolute;
  2991. align-self:flex-start;
  2992. padding:0px 0px 0px 0px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u82072_text {
  2997. border-width:0px;
  2998. white-space:nowrap;
  2999. text-transform:none;
  3000. }
  3001. #u82073_div {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:49px;
  3007. height:17px;
  3008. background:inherit;
  3009. background-color:rgba(255, 255, 255, 0);
  3010. border:none;
  3011. border-radius:0px;
  3012. -moz-box-shadow:none;
  3013. -webkit-box-shadow:none;
  3014. box-shadow:none;
  3015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3016. font-weight:400;
  3017. font-style:normal;
  3018. font-size:12px;
  3019. color:#AAAAAA;
  3020. }
  3021. #u82073 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:30px;
  3025. top:334px;
  3026. width:49px;
  3027. height:17px;
  3028. display:flex;
  3029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3030. font-weight:400;
  3031. font-style:normal;
  3032. font-size:12px;
  3033. color:#AAAAAA;
  3034. }
  3035. #u82073 .text {
  3036. position:absolute;
  3037. align-self:flex-start;
  3038. padding:0px 0px 0px 0px;
  3039. box-sizing:border-box;
  3040. width:100%;
  3041. }
  3042. #u82073_text {
  3043. border-width:0px;
  3044. white-space:nowrap;
  3045. text-transform:none;
  3046. }
  3047. #u82074_div {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:65px;
  3053. height:22px;
  3054. background:inherit;
  3055. background-color:rgba(255, 255, 255, 0);
  3056. border:none;
  3057. border-radius:0px;
  3058. -moz-box-shadow:none;
  3059. -webkit-box-shadow:none;
  3060. box-shadow:none;
  3061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3062. font-weight:400;
  3063. font-style:normal;
  3064. font-size:16px;
  3065. }
  3066. #u82074 {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:30px;
  3070. top:412px;
  3071. width:65px;
  3072. height:22px;
  3073. display:flex;
  3074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3075. font-weight:400;
  3076. font-style:normal;
  3077. font-size:16px;
  3078. }
  3079. #u82074 .text {
  3080. position:absolute;
  3081. align-self:flex-start;
  3082. padding:0px 0px 0px 0px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u82074_text {
  3087. border-width:0px;
  3088. white-space:nowrap;
  3089. text-transform:none;
  3090. }
  3091. #u82075_div {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:0px;
  3095. top:0px;
  3096. width:65px;
  3097. height:22px;
  3098. background:inherit;
  3099. background-color:rgba(255, 255, 255, 0);
  3100. border:none;
  3101. border-radius:0px;
  3102. -moz-box-shadow:none;
  3103. -webkit-box-shadow:none;
  3104. box-shadow:none;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:16px;
  3109. }
  3110. #u82075 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:30px;
  3114. top:454px;
  3115. width:65px;
  3116. height:22px;
  3117. display:flex;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. font-size:16px;
  3122. }
  3123. #u82075 .text {
  3124. position:absolute;
  3125. align-self:flex-start;
  3126. padding:0px 0px 0px 0px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u82075_text {
  3131. border-width:0px;
  3132. white-space:nowrap;
  3133. text-transform:none;
  3134. }
  3135. #u82076_div {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:65px;
  3141. height:22px;
  3142. background:inherit;
  3143. background-color:rgba(255, 255, 255, 0);
  3144. border:none;
  3145. border-radius:0px;
  3146. -moz-box-shadow:none;
  3147. -webkit-box-shadow:none;
  3148. box-shadow:none;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:16px;
  3153. }
  3154. #u82076 {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:30px;
  3158. top:496px;
  3159. width:65px;
  3160. height:22px;
  3161. display:flex;
  3162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3163. font-weight:400;
  3164. font-style:normal;
  3165. font-size:16px;
  3166. }
  3167. #u82076 .text {
  3168. position:absolute;
  3169. align-self:flex-start;
  3170. padding:0px 0px 0px 0px;
  3171. box-sizing:border-box;
  3172. width:100%;
  3173. }
  3174. #u82076_text {
  3175. border-width:0px;
  3176. white-space:nowrap;
  3177. text-transform:none;
  3178. }
  3179. #u82077_div {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:65px;
  3185. height:22px;
  3186. background:inherit;
  3187. background-color:rgba(255, 255, 255, 0);
  3188. border:none;
  3189. border-radius:0px;
  3190. -moz-box-shadow:none;
  3191. -webkit-box-shadow:none;
  3192. box-shadow:none;
  3193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3194. font-weight:400;
  3195. font-style:normal;
  3196. font-size:16px;
  3197. }
  3198. #u82077 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:30px;
  3202. top:538px;
  3203. width:65px;
  3204. height:22px;
  3205. display:flex;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:16px;
  3210. }
  3211. #u82077 .text {
  3212. position:absolute;
  3213. align-self:flex-start;
  3214. padding:0px 0px 0px 0px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u82077_text {
  3219. border-width:0px;
  3220. white-space:nowrap;
  3221. text-transform:none;
  3222. }
  3223. #u82078_div {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:65px;
  3229. height:22px;
  3230. background:inherit;
  3231. background-color:rgba(255, 255, 255, 0);
  3232. border:none;
  3233. border-radius:0px;
  3234. -moz-box-shadow:none;
  3235. -webkit-box-shadow:none;
  3236. box-shadow:none;
  3237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3238. font-weight:400;
  3239. font-style:normal;
  3240. font-size:16px;
  3241. }
  3242. #u82078 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:30px;
  3246. top:580px;
  3247. width:65px;
  3248. height:22px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:16px;
  3254. }
  3255. #u82078 .text {
  3256. position:absolute;
  3257. align-self:flex-start;
  3258. padding:0px 0px 0px 0px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u82078_text {
  3263. border-width:0px;
  3264. white-space:nowrap;
  3265. text-transform:none;
  3266. }
  3267. #u82079_img {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:201px;
  3273. height:2px;
  3274. }
  3275. #u82079 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:1289px;
  3280. width:200px;
  3281. height:1px;
  3282. display:flex;
  3283. }
  3284. #u82079 .text {
  3285. position:absolute;
  3286. align-self:center;
  3287. padding:2px 2px 2px 2px;
  3288. box-sizing:border-box;
  3289. width:100%;
  3290. }
  3291. #u82079_text {
  3292. border-width:0px;
  3293. word-wrap:break-word;
  3294. text-transform:none;
  3295. visibility:hidden;
  3296. }
  3297. #u82080_div {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:65px;
  3303. height:22px;
  3304. background:inherit;
  3305. background-color:rgba(255, 255, 255, 0);
  3306. border:none;
  3307. border-radius:0px;
  3308. -moz-box-shadow:none;
  3309. -webkit-box-shadow:none;
  3310. box-shadow:none;
  3311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3312. font-weight:400;
  3313. font-style:normal;
  3314. font-size:16px;
  3315. }
  3316. #u82080 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:30px;
  3320. top:1346px;
  3321. width:65px;
  3322. height:22px;
  3323. display:flex;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:16px;
  3328. }
  3329. #u82080 .text {
  3330. position:absolute;
  3331. align-self:flex-start;
  3332. padding:0px 0px 0px 0px;
  3333. box-sizing:border-box;
  3334. width:100%;
  3335. }
  3336. #u82080_text {
  3337. border-width:0px;
  3338. white-space:nowrap;
  3339. text-transform:none;
  3340. }
  3341. #u82081_div {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:49px;
  3347. height:17px;
  3348. background:inherit;
  3349. background-color:rgba(255, 255, 255, 0);
  3350. border:none;
  3351. border-radius:0px;
  3352. -moz-box-shadow:none;
  3353. -webkit-box-shadow:none;
  3354. box-shadow:none;
  3355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:12px;
  3359. color:#AAAAAA;
  3360. }
  3361. #u82081 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:30px;
  3365. top:1310px;
  3366. width:49px;
  3367. height:17px;
  3368. display:flex;
  3369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:12px;
  3373. color:#AAAAAA;
  3374. }
  3375. #u82081 .text {
  3376. position:absolute;
  3377. align-self:flex-start;
  3378. padding:0px 0px 0px 0px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u82081_text {
  3383. border-width:0px;
  3384. white-space:nowrap;
  3385. text-transform:none;
  3386. }
  3387. #u82082_div {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:0px;
  3391. top:0px;
  3392. width:65px;
  3393. height:22px;
  3394. background:inherit;
  3395. background-color:rgba(255, 255, 255, 0);
  3396. border:none;
  3397. border-radius:0px;
  3398. -moz-box-shadow:none;
  3399. -webkit-box-shadow:none;
  3400. box-shadow:none;
  3401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. font-size:16px;
  3405. }
  3406. #u82082 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:30px;
  3410. top:1388px;
  3411. width:65px;
  3412. height:22px;
  3413. display:flex;
  3414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. font-size:16px;
  3418. }
  3419. #u82082 .text {
  3420. position:absolute;
  3421. align-self:flex-start;
  3422. padding:0px 0px 0px 0px;
  3423. box-sizing:border-box;
  3424. width:100%;
  3425. }
  3426. #u82082_text {
  3427. border-width:0px;
  3428. white-space:nowrap;
  3429. text-transform:none;
  3430. }
  3431. #u82083_div {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:65px;
  3437. height:22px;
  3438. background:inherit;
  3439. background-color:rgba(255, 255, 255, 0);
  3440. border:none;
  3441. border-radius:0px;
  3442. -moz-box-shadow:none;
  3443. -webkit-box-shadow:none;
  3444. box-shadow:none;
  3445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:16px;
  3449. }
  3450. #u82083 {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:30px;
  3454. top:1472px;
  3455. width:65px;
  3456. height:22px;
  3457. display:flex;
  3458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3459. font-weight:400;
  3460. font-style:normal;
  3461. font-size:16px;
  3462. }
  3463. #u82083 .text {
  3464. position:absolute;
  3465. align-self:flex-start;
  3466. padding:0px 0px 0px 0px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u82083_text {
  3471. border-width:0px;
  3472. white-space:nowrap;
  3473. text-transform:none;
  3474. }
  3475. #u82084_img {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:201px;
  3481. height:2px;
  3482. }
  3483. #u82084 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:1514px;
  3488. width:200px;
  3489. height:1px;
  3490. display:flex;
  3491. }
  3492. #u82084 .text {
  3493. position:absolute;
  3494. align-self:center;
  3495. padding:2px 2px 2px 2px;
  3496. box-sizing:border-box;
  3497. width:100%;
  3498. }
  3499. #u82084_text {
  3500. border-width:0px;
  3501. word-wrap:break-word;
  3502. text-transform:none;
  3503. visibility:hidden;
  3504. }
  3505. #u82085_div {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:49px;
  3511. height:22px;
  3512. background:inherit;
  3513. background-color:rgba(255, 255, 255, 0);
  3514. border:none;
  3515. border-radius:0px;
  3516. -moz-box-shadow:none;
  3517. -webkit-box-shadow:none;
  3518. box-shadow:none;
  3519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:16px;
  3523. }
  3524. #u82085 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:30px;
  3528. top:1571px;
  3529. width:49px;
  3530. height:22px;
  3531. display:flex;
  3532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3533. font-weight:400;
  3534. font-style:normal;
  3535. font-size:16px;
  3536. }
  3537. #u82085 .text {
  3538. position:absolute;
  3539. align-self:flex-start;
  3540. padding:0px 0px 0px 0px;
  3541. box-sizing:border-box;
  3542. width:100%;
  3543. }
  3544. #u82085_text {
  3545. border-width:0px;
  3546. white-space:nowrap;
  3547. text-transform:none;
  3548. }
  3549. #u82086_div {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:49px;
  3555. height:17px;
  3556. background:inherit;
  3557. background-color:rgba(255, 255, 255, 0);
  3558. border:none;
  3559. border-radius:0px;
  3560. -moz-box-shadow:none;
  3561. -webkit-box-shadow:none;
  3562. box-shadow:none;
  3563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3564. font-weight:400;
  3565. font-style:normal;
  3566. font-size:12px;
  3567. color:#AAAAAA;
  3568. }
  3569. #u82086 {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:30px;
  3573. top:1535px;
  3574. width:49px;
  3575. height:17px;
  3576. display:flex;
  3577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3578. font-weight:400;
  3579. font-style:normal;
  3580. font-size:12px;
  3581. color:#AAAAAA;
  3582. }
  3583. #u82086 .text {
  3584. position:absolute;
  3585. align-self:flex-start;
  3586. padding:0px 0px 0px 0px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u82086_text {
  3591. border-width:0px;
  3592. white-space:nowrap;
  3593. text-transform:none;
  3594. }
  3595. #u82087_div {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:49px;
  3601. height:22px;
  3602. background:inherit;
  3603. background-color:rgba(255, 255, 255, 0);
  3604. border:none;
  3605. border-radius:0px;
  3606. -moz-box-shadow:none;
  3607. -webkit-box-shadow:none;
  3608. box-shadow:none;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:16px;
  3613. }
  3614. #u82087 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:30px;
  3618. top:1613px;
  3619. width:49px;
  3620. height:22px;
  3621. display:flex;
  3622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3623. font-weight:400;
  3624. font-style:normal;
  3625. font-size:16px;
  3626. }
  3627. #u82087 .text {
  3628. position:absolute;
  3629. align-self:flex-start;
  3630. padding:0px 0px 0px 0px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u82087_text {
  3635. border-width:0px;
  3636. white-space:nowrap;
  3637. text-transform:none;
  3638. }
  3639. #u82088_div {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:65px;
  3645. height:22px;
  3646. background:inherit;
  3647. background-color:rgba(255, 255, 255, 0);
  3648. border:none;
  3649. border-radius:0px;
  3650. -moz-box-shadow:none;
  3651. -webkit-box-shadow:none;
  3652. box-shadow:none;
  3653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. font-size:16px;
  3657. }
  3658. #u82088 {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:30px;
  3662. top:1655px;
  3663. width:65px;
  3664. height:22px;
  3665. display:flex;
  3666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3667. font-weight:400;
  3668. font-style:normal;
  3669. font-size:16px;
  3670. }
  3671. #u82088 .text {
  3672. position:absolute;
  3673. align-self:flex-start;
  3674. padding:0px 0px 0px 0px;
  3675. box-sizing:border-box;
  3676. width:100%;
  3677. }
  3678. #u82088_text {
  3679. border-width:0px;
  3680. white-space:nowrap;
  3681. text-transform:none;
  3682. }
  3683. #u82089_img {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:0px;
  3687. top:0px;
  3688. width:201px;
  3689. height:2px;
  3690. }
  3691. #u82089 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:1697px;
  3696. width:200px;
  3697. height:1px;
  3698. display:flex;
  3699. }
  3700. #u82089 .text {
  3701. position:absolute;
  3702. align-self:center;
  3703. padding:2px 2px 2px 2px;
  3704. box-sizing:border-box;
  3705. width:100%;
  3706. }
  3707. #u82089_text {
  3708. border-width:0px;
  3709. word-wrap:break-word;
  3710. text-transform:none;
  3711. visibility:hidden;
  3712. }
  3713. #u82090_div {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:81px;
  3719. height:22px;
  3720. background:inherit;
  3721. background-color:rgba(255, 255, 255, 0);
  3722. border:none;
  3723. border-radius:0px;
  3724. -moz-box-shadow:none;
  3725. -webkit-box-shadow:none;
  3726. box-shadow:none;
  3727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. font-size:16px;
  3731. }
  3732. #u82090 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:30px;
  3736. top:1754px;
  3737. width:81px;
  3738. height:22px;
  3739. display:flex;
  3740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. font-size:16px;
  3744. }
  3745. #u82090 .text {
  3746. position:absolute;
  3747. align-self:flex-start;
  3748. padding:0px 0px 0px 0px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u82090_text {
  3753. border-width:0px;
  3754. white-space:nowrap;
  3755. text-transform:none;
  3756. }
  3757. #u82091_div {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:49px;
  3763. height:17px;
  3764. background:inherit;
  3765. background-color:rgba(255, 255, 255, 0);
  3766. border:none;
  3767. border-radius:0px;
  3768. -moz-box-shadow:none;
  3769. -webkit-box-shadow:none;
  3770. box-shadow:none;
  3771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3772. font-weight:400;
  3773. font-style:normal;
  3774. font-size:12px;
  3775. color:#AAAAAA;
  3776. }
  3777. #u82091 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:30px;
  3781. top:1718px;
  3782. width:49px;
  3783. height:17px;
  3784. display:flex;
  3785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. font-size:12px;
  3789. color:#AAAAAA;
  3790. }
  3791. #u82091 .text {
  3792. position:absolute;
  3793. align-self:flex-start;
  3794. padding:0px 0px 0px 0px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u82091_text {
  3799. border-width:0px;
  3800. white-space:nowrap;
  3801. text-transform:none;
  3802. }
  3803. #u82092_div {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:81px;
  3809. height:22px;
  3810. background:inherit;
  3811. background-color:rgba(255, 255, 255, 0);
  3812. border:none;
  3813. border-radius:0px;
  3814. -moz-box-shadow:none;
  3815. -webkit-box-shadow:none;
  3816. box-shadow:none;
  3817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3818. font-weight:400;
  3819. font-style:normal;
  3820. font-size:16px;
  3821. }
  3822. #u82092 {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:30px;
  3826. top:1796px;
  3827. width:81px;
  3828. height:22px;
  3829. display:flex;
  3830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:16px;
  3834. }
  3835. #u82092 .text {
  3836. position:absolute;
  3837. align-self:flex-start;
  3838. padding:0px 0px 0px 0px;
  3839. box-sizing:border-box;
  3840. width:100%;
  3841. }
  3842. #u82092_text {
  3843. border-width:0px;
  3844. white-space:nowrap;
  3845. text-transform:none;
  3846. }
  3847. #u82093_div {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:81px;
  3853. height:22px;
  3854. background:inherit;
  3855. background-color:rgba(255, 255, 255, 0);
  3856. border:none;
  3857. border-radius:0px;
  3858. -moz-box-shadow:none;
  3859. -webkit-box-shadow:none;
  3860. box-shadow:none;
  3861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. font-size:16px;
  3865. }
  3866. #u82093 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:30px;
  3870. top:1838px;
  3871. width:81px;
  3872. height:22px;
  3873. display:flex;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:16px;
  3878. }
  3879. #u82093 .text {
  3880. position:absolute;
  3881. align-self:flex-start;
  3882. padding:0px 0px 0px 0px;
  3883. box-sizing:border-box;
  3884. width:100%;
  3885. }
  3886. #u82093_text {
  3887. border-width:0px;
  3888. white-space:nowrap;
  3889. text-transform:none;
  3890. }
  3891. #u82094_div {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:65px;
  3897. height:22px;
  3898. background:inherit;
  3899. background-color:rgba(255, 255, 255, 0);
  3900. border:none;
  3901. border-radius:0px;
  3902. -moz-box-shadow:none;
  3903. -webkit-box-shadow:none;
  3904. box-shadow:none;
  3905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3906. font-weight:400;
  3907. font-style:normal;
  3908. font-size:16px;
  3909. }
  3910. #u82094 {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:30px;
  3914. top:1430px;
  3915. width:65px;
  3916. height:22px;
  3917. display:flex;
  3918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3919. font-weight:400;
  3920. font-style:normal;
  3921. font-size:16px;
  3922. }
  3923. #u82094 .text {
  3924. position:absolute;
  3925. align-self:flex-start;
  3926. padding:0px 0px 0px 0px;
  3927. box-sizing:border-box;
  3928. width:100%;
  3929. }
  3930. #u82094_text {
  3931. border-width:0px;
  3932. white-space:nowrap;
  3933. text-transform:none;
  3934. }
  3935. #u82095_img {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:0px;
  3939. top:0px;
  3940. width:201px;
  3941. height:2px;
  3942. }
  3943. #u82095 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:669px;
  3948. width:200px;
  3949. height:1px;
  3950. display:flex;
  3951. }
  3952. #u82095 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:2px 2px 2px 2px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u82095_text {
  3960. border-width:0px;
  3961. word-wrap:break-word;
  3962. text-transform:none;
  3963. visibility:hidden;
  3964. }
  3965. #u82096_div {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:65px;
  3971. height:22px;
  3972. background:inherit;
  3973. background-color:rgba(255, 255, 255, 0);
  3974. border:none;
  3975. border-radius:0px;
  3976. -moz-box-shadow:none;
  3977. -webkit-box-shadow:none;
  3978. box-shadow:none;
  3979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3980. font-weight:400;
  3981. font-style:normal;
  3982. font-size:16px;
  3983. }
  3984. #u82096 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:30px;
  3988. top:726px;
  3989. width:65px;
  3990. height:22px;
  3991. display:flex;
  3992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3993. font-weight:400;
  3994. font-style:normal;
  3995. font-size:16px;
  3996. }
  3997. #u82096 .text {
  3998. position:absolute;
  3999. align-self:flex-start;
  4000. padding:0px 0px 0px 0px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u82096_text {
  4005. border-width:0px;
  4006. white-space:nowrap;
  4007. text-transform:none;
  4008. }
  4009. #u82097_div {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:49px;
  4015. height:17px;
  4016. background:inherit;
  4017. background-color:rgba(255, 255, 255, 0);
  4018. border:none;
  4019. border-radius:0px;
  4020. -moz-box-shadow:none;
  4021. -webkit-box-shadow:none;
  4022. box-shadow:none;
  4023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4024. font-weight:400;
  4025. font-style:normal;
  4026. font-size:12px;
  4027. color:#AAAAAA;
  4028. }
  4029. #u82097 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:30px;
  4033. top:690px;
  4034. width:49px;
  4035. height:17px;
  4036. display:flex;
  4037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4038. font-weight:400;
  4039. font-style:normal;
  4040. font-size:12px;
  4041. color:#AAAAAA;
  4042. }
  4043. #u82097 .text {
  4044. position:absolute;
  4045. align-self:flex-start;
  4046. padding:0px 0px 0px 0px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u82097_text {
  4051. border-width:0px;
  4052. white-space:nowrap;
  4053. text-transform:none;
  4054. }
  4055. #u82098_div {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:65px;
  4061. height:22px;
  4062. background:inherit;
  4063. background-color:rgba(255, 255, 255, 0);
  4064. border:none;
  4065. border-radius:0px;
  4066. -moz-box-shadow:none;
  4067. -webkit-box-shadow:none;
  4068. box-shadow:none;
  4069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:16px;
  4073. }
  4074. #u82098 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:30px;
  4078. top:768px;
  4079. width:65px;
  4080. height:22px;
  4081. display:flex;
  4082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4083. font-weight:400;
  4084. font-style:normal;
  4085. font-size:16px;
  4086. }
  4087. #u82098 .text {
  4088. position:absolute;
  4089. align-self:flex-start;
  4090. padding:0px 0px 0px 0px;
  4091. box-sizing:border-box;
  4092. width:100%;
  4093. }
  4094. #u82098_text {
  4095. border-width:0px;
  4096. white-space:nowrap;
  4097. text-transform:none;
  4098. }
  4099. #u82099_div {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:0px;
  4103. top:0px;
  4104. width:65px;
  4105. height:22px;
  4106. background:inherit;
  4107. background-color:rgba(255, 255, 255, 0);
  4108. border:none;
  4109. border-radius:0px;
  4110. -moz-box-shadow:none;
  4111. -webkit-box-shadow:none;
  4112. box-shadow:none;
  4113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4114. font-weight:400;
  4115. font-style:normal;
  4116. font-size:16px;
  4117. }
  4118. #u82099 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:30px;
  4122. top:852px;
  4123. width:65px;
  4124. height:22px;
  4125. display:flex;
  4126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. font-size:16px;
  4130. }
  4131. #u82099 .text {
  4132. position:absolute;
  4133. align-self:flex-start;
  4134. padding:0px 0px 0px 0px;
  4135. box-sizing:border-box;
  4136. width:100%;
  4137. }
  4138. #u82099_text {
  4139. border-width:0px;
  4140. white-space:nowrap;
  4141. text-transform:none;
  4142. }
  4143. #u82100_div {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:65px;
  4149. height:22px;
  4150. background:inherit;
  4151. background-color:rgba(255, 255, 255, 0);
  4152. border:none;
  4153. border-radius:0px;
  4154. -moz-box-shadow:none;
  4155. -webkit-box-shadow:none;
  4156. box-shadow:none;
  4157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4158. font-weight:400;
  4159. font-style:normal;
  4160. font-size:16px;
  4161. }
  4162. #u82100 {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:30px;
  4166. top:810px;
  4167. width:65px;
  4168. height:22px;
  4169. display:flex;
  4170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4171. font-weight:400;
  4172. font-style:normal;
  4173. font-size:16px;
  4174. }
  4175. #u82100 .text {
  4176. position:absolute;
  4177. align-self:flex-start;
  4178. padding:0px 0px 0px 0px;
  4179. box-sizing:border-box;
  4180. width:100%;
  4181. }
  4182. #u82100_text {
  4183. border-width:0px;
  4184. white-space:nowrap;
  4185. text-transform:none;
  4186. }
  4187. #u82101_div {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:0px;
  4191. top:0px;
  4192. width:65px;
  4193. height:22px;
  4194. background:inherit;
  4195. background-color:rgba(255, 255, 255, 0);
  4196. border:none;
  4197. border-radius:0px;
  4198. -moz-box-shadow:none;
  4199. -webkit-box-shadow:none;
  4200. box-shadow:none;
  4201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4202. font-weight:400;
  4203. font-style:normal;
  4204. font-size:16px;
  4205. }
  4206. #u82101 {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:30px;
  4210. top:894px;
  4211. width:65px;
  4212. height:22px;
  4213. display:flex;
  4214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4215. font-weight:400;
  4216. font-style:normal;
  4217. font-size:16px;
  4218. }
  4219. #u82101 .text {
  4220. position:absolute;
  4221. align-self:flex-start;
  4222. padding:0px 0px 0px 0px;
  4223. box-sizing:border-box;
  4224. width:100%;
  4225. }
  4226. #u82101_text {
  4227. border-width:0px;
  4228. white-space:nowrap;
  4229. text-transform:none;
  4230. }
  4231. #u82102_div {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:65px;
  4237. height:22px;
  4238. background:inherit;
  4239. background-color:rgba(255, 255, 255, 0);
  4240. border:none;
  4241. border-radius:0px;
  4242. -moz-box-shadow:none;
  4243. -webkit-box-shadow:none;
  4244. box-shadow:none;
  4245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4246. font-weight:400;
  4247. font-style:normal;
  4248. font-size:16px;
  4249. }
  4250. #u82102 {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:30px;
  4254. top:936px;
  4255. width:65px;
  4256. height:22px;
  4257. display:flex;
  4258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4259. font-weight:400;
  4260. font-style:normal;
  4261. font-size:16px;
  4262. }
  4263. #u82102 .text {
  4264. position:absolute;
  4265. align-self:flex-start;
  4266. padding:0px 0px 0px 0px;
  4267. box-sizing:border-box;
  4268. width:100%;
  4269. }
  4270. #u82102_text {
  4271. border-width:0px;
  4272. white-space:nowrap;
  4273. text-transform:none;
  4274. }
  4275. #u82103_img {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:0px;
  4279. top:0px;
  4280. width:201px;
  4281. height:2px;
  4282. }
  4283. #u82103 {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:0px;
  4287. top:1018px;
  4288. width:200px;
  4289. height:1px;
  4290. display:flex;
  4291. }
  4292. #u82103 .text {
  4293. position:absolute;
  4294. align-self:center;
  4295. padding:2px 2px 2px 2px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u82103_text {
  4300. border-width:0px;
  4301. word-wrap:break-word;
  4302. text-transform:none;
  4303. visibility:hidden;
  4304. }
  4305. #u82104_div {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:65px;
  4311. height:22px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 0);
  4314. border:none;
  4315. border-radius:0px;
  4316. -moz-box-shadow:none;
  4317. -webkit-box-shadow:none;
  4318. box-shadow:none;
  4319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4320. font-weight:400;
  4321. font-style:normal;
  4322. font-size:16px;
  4323. }
  4324. #u82104 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:30px;
  4328. top:1075px;
  4329. width:65px;
  4330. height:22px;
  4331. display:flex;
  4332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4333. font-weight:400;
  4334. font-style:normal;
  4335. font-size:16px;
  4336. }
  4337. #u82104 .text {
  4338. position:absolute;
  4339. align-self:flex-start;
  4340. padding:0px 0px 0px 0px;
  4341. box-sizing:border-box;
  4342. width:100%;
  4343. }
  4344. #u82104_text {
  4345. border-width:0px;
  4346. white-space:nowrap;
  4347. text-transform:none;
  4348. }
  4349. #u82105_div {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:0px;
  4353. top:0px;
  4354. width:49px;
  4355. height:17px;
  4356. background:inherit;
  4357. background-color:rgba(255, 255, 255, 0);
  4358. border:none;
  4359. border-radius:0px;
  4360. -moz-box-shadow:none;
  4361. -webkit-box-shadow:none;
  4362. box-shadow:none;
  4363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4364. font-weight:400;
  4365. font-style:normal;
  4366. font-size:12px;
  4367. color:#AAAAAA;
  4368. }
  4369. #u82105 {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:30px;
  4373. top:1039px;
  4374. width:49px;
  4375. height:17px;
  4376. display:flex;
  4377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4378. font-weight:400;
  4379. font-style:normal;
  4380. font-size:12px;
  4381. color:#AAAAAA;
  4382. }
  4383. #u82105 .text {
  4384. position:absolute;
  4385. align-self:flex-start;
  4386. padding:0px 0px 0px 0px;
  4387. box-sizing:border-box;
  4388. width:100%;
  4389. }
  4390. #u82105_text {
  4391. border-width:0px;
  4392. white-space:nowrap;
  4393. text-transform:none;
  4394. }
  4395. #u82106_div {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:65px;
  4401. height:22px;
  4402. background:inherit;
  4403. background-color:rgba(255, 255, 255, 0);
  4404. border:none;
  4405. border-radius:0px;
  4406. -moz-box-shadow:none;
  4407. -webkit-box-shadow:none;
  4408. box-shadow:none;
  4409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4410. font-weight:400;
  4411. font-style:normal;
  4412. font-size:16px;
  4413. }
  4414. #u82106 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:30px;
  4418. top:1117px;
  4419. width:65px;
  4420. height:22px;
  4421. display:flex;
  4422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4423. font-weight:400;
  4424. font-style:normal;
  4425. font-size:16px;
  4426. }
  4427. #u82106 .text {
  4428. position:absolute;
  4429. align-self:flex-start;
  4430. padding:0px 0px 0px 0px;
  4431. box-sizing:border-box;
  4432. width:100%;
  4433. }
  4434. #u82106_text {
  4435. border-width:0px;
  4436. white-space:nowrap;
  4437. text-transform:none;
  4438. }
  4439. #u82107_div {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:0px;
  4443. top:0px;
  4444. width:65px;
  4445. height:22px;
  4446. background:inherit;
  4447. background-color:rgba(255, 255, 255, 0);
  4448. border:none;
  4449. border-radius:0px;
  4450. -moz-box-shadow:none;
  4451. -webkit-box-shadow:none;
  4452. box-shadow:none;
  4453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4454. font-weight:400;
  4455. font-style:normal;
  4456. font-size:16px;
  4457. }
  4458. #u82107 {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:30px;
  4462. top:1201px;
  4463. width:65px;
  4464. height:22px;
  4465. display:flex;
  4466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4467. font-weight:400;
  4468. font-style:normal;
  4469. font-size:16px;
  4470. }
  4471. #u82107 .text {
  4472. position:absolute;
  4473. align-self:flex-start;
  4474. padding:0px 0px 0px 0px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u82107_text {
  4479. border-width:0px;
  4480. white-space:nowrap;
  4481. text-transform:none;
  4482. }
  4483. #u82108_div {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:65px;
  4489. height:22px;
  4490. background:inherit;
  4491. background-color:rgba(255, 255, 255, 0);
  4492. border:none;
  4493. border-radius:0px;
  4494. -moz-box-shadow:none;
  4495. -webkit-box-shadow:none;
  4496. box-shadow:none;
  4497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4498. font-weight:400;
  4499. font-style:normal;
  4500. font-size:16px;
  4501. }
  4502. #u82108 {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:30px;
  4506. top:1159px;
  4507. width:65px;
  4508. height:22px;
  4509. display:flex;
  4510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4511. font-weight:400;
  4512. font-style:normal;
  4513. font-size:16px;
  4514. }
  4515. #u82108 .text {
  4516. position:absolute;
  4517. align-self:flex-start;
  4518. padding:0px 0px 0px 0px;
  4519. box-sizing:border-box;
  4520. width:100%;
  4521. }
  4522. #u82108_text {
  4523. border-width:0px;
  4524. white-space:nowrap;
  4525. text-transform:none;
  4526. }
  4527. #u82109_div {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:0px;
  4531. top:0px;
  4532. width:65px;
  4533. height:22px;
  4534. background:inherit;
  4535. background-color:rgba(255, 255, 255, 0);
  4536. border:none;
  4537. border-radius:0px;
  4538. -moz-box-shadow:none;
  4539. -webkit-box-shadow:none;
  4540. box-shadow:none;
  4541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4542. font-weight:400;
  4543. font-style:normal;
  4544. font-size:16px;
  4545. }
  4546. #u82109 {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:30px;
  4550. top:1243px;
  4551. width:65px;
  4552. height:22px;
  4553. display:flex;
  4554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4555. font-weight:400;
  4556. font-style:normal;
  4557. font-size:16px;
  4558. }
  4559. #u82109 .text {
  4560. position:absolute;
  4561. align-self:flex-start;
  4562. padding:0px 0px 0px 0px;
  4563. box-sizing:border-box;
  4564. width:100%;
  4565. }
  4566. #u82109_text {
  4567. border-width:0px;
  4568. white-space:nowrap;
  4569. text-transform:none;
  4570. }
  4571. #u82110_div {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:65px;
  4577. height:22px;
  4578. background:inherit;
  4579. background-color:rgba(255, 255, 255, 0);
  4580. border:none;
  4581. border-radius:0px;
  4582. -moz-box-shadow:none;
  4583. -webkit-box-shadow:none;
  4584. box-shadow:none;
  4585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4586. font-weight:400;
  4587. font-style:normal;
  4588. font-size:16px;
  4589. }
  4590. #u82110 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:30px;
  4594. top:978px;
  4595. width:65px;
  4596. height:22px;
  4597. display:flex;
  4598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4599. font-weight:400;
  4600. font-style:normal;
  4601. font-size:16px;
  4602. }
  4603. #u82110 .text {
  4604. position:absolute;
  4605. align-self:flex-start;
  4606. padding:0px 0px 0px 0px;
  4607. box-sizing:border-box;
  4608. width:100%;
  4609. }
  4610. #u82110_text {
  4611. border-width:0px;
  4612. white-space:nowrap;
  4613. text-transform:none;
  4614. }
  4615. #u82111_div {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:0px;
  4619. top:0px;
  4620. width:65px;
  4621. height:22px;
  4622. background:inherit;
  4623. background-color:rgba(255, 255, 255, 0);
  4624. border:none;
  4625. border-radius:0px;
  4626. -moz-box-shadow:none;
  4627. -webkit-box-shadow:none;
  4628. box-shadow:none;
  4629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:16px;
  4633. }
  4634. #u82111 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:30px;
  4638. top:622px;
  4639. width:65px;
  4640. height:22px;
  4641. display:flex;
  4642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4643. font-weight:400;
  4644. font-style:normal;
  4645. font-size:16px;
  4646. }
  4647. #u82111 .text {
  4648. position:absolute;
  4649. align-self:flex-start;
  4650. padding:0px 0px 0px 0px;
  4651. box-sizing:border-box;
  4652. width:100%;
  4653. }
  4654. #u82111_text {
  4655. border-width:0px;
  4656. white-space:nowrap;
  4657. text-transform:none;
  4658. }
  4659. #u82112 {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:354px;
  4663. top:352px;
  4664. width:1212px;
  4665. height:321px;
  4666. }
  4667. #u82113_img {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:0px;
  4671. top:0px;
  4672. width:60px;
  4673. height:38px;
  4674. }
  4675. #u82113 {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:0px;
  4679. top:0px;
  4680. width:60px;
  4681. height:38px;
  4682. display:flex;
  4683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4684. font-weight:400;
  4685. font-style:normal;
  4686. font-size:12px;
  4687. color:#FFFFFF;
  4688. }
  4689. #u82113 .text {
  4690. position:absolute;
  4691. align-self:center;
  4692. padding:2px 2px 2px 0px;
  4693. box-sizing:border-box;
  4694. width:100%;
  4695. }
  4696. #u82113_text {
  4697. border-width:0px;
  4698. word-wrap:break-word;
  4699. text-transform:none;
  4700. }
  4701. #u82114_img {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:0px;
  4705. top:0px;
  4706. width:60px;
  4707. height:38px;
  4708. }
  4709. #u82114 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:60px;
  4713. top:0px;
  4714. width:60px;
  4715. height:38px;
  4716. display:flex;
  4717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4718. font-weight:400;
  4719. font-style:normal;
  4720. font-size:12px;
  4721. color:#FFFFFF;
  4722. }
  4723. #u82114 .text {
  4724. position:absolute;
  4725. align-self:center;
  4726. padding:2px 2px 2px 0px;
  4727. box-sizing:border-box;
  4728. width:100%;
  4729. }
  4730. #u82114_text {
  4731. border-width:0px;
  4732. word-wrap:break-word;
  4733. text-transform:none;
  4734. }
  4735. #u82115_img {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:60px;
  4741. height:38px;
  4742. }
  4743. #u82115 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:120px;
  4747. top:0px;
  4748. width:60px;
  4749. height:38px;
  4750. display:flex;
  4751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4752. font-weight:400;
  4753. font-style:normal;
  4754. font-size:12px;
  4755. color:#FFFFFF;
  4756. }
  4757. #u82115 .text {
  4758. position:absolute;
  4759. align-self:center;
  4760. padding:2px 2px 2px 0px;
  4761. box-sizing:border-box;
  4762. width:100%;
  4763. }
  4764. #u82115_text {
  4765. border-width:0px;
  4766. word-wrap:break-word;
  4767. text-transform:none;
  4768. }
  4769. #u82116_img {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:60px;
  4775. height:38px;
  4776. }
  4777. #u82116 {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:180px;
  4781. top:0px;
  4782. width:60px;
  4783. height:38px;
  4784. display:flex;
  4785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4786. font-weight:400;
  4787. font-style:normal;
  4788. font-size:12px;
  4789. color:#FFFFFF;
  4790. }
  4791. #u82116 .text {
  4792. position:absolute;
  4793. align-self:center;
  4794. padding:2px 2px 2px 0px;
  4795. box-sizing:border-box;
  4796. width:100%;
  4797. }
  4798. #u82116_text {
  4799. border-width:0px;
  4800. word-wrap:break-word;
  4801. text-transform:none;
  4802. }
  4803. #u82117_img {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:51px;
  4809. height:38px;
  4810. }
  4811. #u82117 {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:240px;
  4815. top:0px;
  4816. width:51px;
  4817. height:38px;
  4818. display:flex;
  4819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:12px;
  4823. color:#FFFFFF;
  4824. }
  4825. #u82117 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:2px 2px 2px 0px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u82117_text {
  4833. border-width:0px;
  4834. word-wrap:break-word;
  4835. text-transform:none;
  4836. }
  4837. #u82118_img {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:51px;
  4843. height:38px;
  4844. }
  4845. #u82118 {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:291px;
  4849. top:0px;
  4850. width:51px;
  4851. height:38px;
  4852. display:flex;
  4853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4854. font-weight:400;
  4855. font-style:normal;
  4856. font-size:12px;
  4857. color:#FFFFFF;
  4858. }
  4859. #u82118 .text {
  4860. position:absolute;
  4861. align-self:center;
  4862. padding:2px 2px 2px 0px;
  4863. box-sizing:border-box;
  4864. width:100%;
  4865. }
  4866. #u82118_text {
  4867. border-width:0px;
  4868. word-wrap:break-word;
  4869. text-transform:none;
  4870. }
  4871. #u82119_img {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:51px;
  4877. height:38px;
  4878. }
  4879. #u82119 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:342px;
  4883. top:0px;
  4884. width:51px;
  4885. height:38px;
  4886. display:flex;
  4887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4888. font-weight:400;
  4889. font-style:normal;
  4890. font-size:12px;
  4891. color:#FFFFFF;
  4892. }
  4893. #u82119 .text {
  4894. position:absolute;
  4895. align-self:center;
  4896. padding:2px 2px 2px 0px;
  4897. box-sizing:border-box;
  4898. width:100%;
  4899. }
  4900. #u82119_text {
  4901. border-width:0px;
  4902. word-wrap:break-word;
  4903. text-transform:none;
  4904. }
  4905. #u82120_img {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:65px;
  4911. height:38px;
  4912. }
  4913. #u82120 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:393px;
  4917. top:0px;
  4918. width:65px;
  4919. height:38px;
  4920. display:flex;
  4921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4922. font-weight:400;
  4923. font-style:normal;
  4924. font-size:12px;
  4925. color:#FFFFFF;
  4926. }
  4927. #u82120 .text {
  4928. position:absolute;
  4929. align-self:center;
  4930. padding:2px 2px 2px 0px;
  4931. box-sizing:border-box;
  4932. width:100%;
  4933. }
  4934. #u82120_text {
  4935. border-width:0px;
  4936. word-wrap:break-word;
  4937. text-transform:none;
  4938. }
  4939. #u82121_img {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:76px;
  4945. height:38px;
  4946. }
  4947. #u82121 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:458px;
  4951. top:0px;
  4952. width:76px;
  4953. height:38px;
  4954. display:flex;
  4955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4956. font-weight:400;
  4957. font-style:normal;
  4958. font-size:12px;
  4959. color:#FFFFFF;
  4960. }
  4961. #u82121 .text {
  4962. position:absolute;
  4963. align-self:center;
  4964. padding:2px 2px 2px 0px;
  4965. box-sizing:border-box;
  4966. width:100%;
  4967. }
  4968. #u82121_text {
  4969. border-width:0px;
  4970. word-wrap:break-word;
  4971. text-transform:none;
  4972. }
  4973. #u82122_img {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:0px;
  4978. width:75px;
  4979. height:38px;
  4980. }
  4981. #u82122 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:534px;
  4985. top:0px;
  4986. width:75px;
  4987. height:38px;
  4988. display:flex;
  4989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:12px;
  4993. color:#FFFFFF;
  4994. }
  4995. #u82122 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:2px 2px 2px 0px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u82122_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. }
  5007. #u82123_img {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:75px;
  5013. height:38px;
  5014. }
  5015. #u82123 {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:609px;
  5019. top:0px;
  5020. width:75px;
  5021. height:38px;
  5022. display:flex;
  5023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5024. font-weight:400;
  5025. font-style:normal;
  5026. font-size:12px;
  5027. color:#FFFFFF;
  5028. }
  5029. #u82123 .text {
  5030. position:absolute;
  5031. align-self:center;
  5032. padding:2px 2px 2px 0px;
  5033. box-sizing:border-box;
  5034. width:100%;
  5035. }
  5036. #u82123_text {
  5037. border-width:0px;
  5038. word-wrap:break-word;
  5039. text-transform:none;
  5040. }
  5041. #u82124_img {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:0px;
  5045. top:0px;
  5046. width:75px;
  5047. height:38px;
  5048. }
  5049. #u82124 {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:684px;
  5053. top:0px;
  5054. width:75px;
  5055. height:38px;
  5056. display:flex;
  5057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5058. font-weight:400;
  5059. font-style:normal;
  5060. font-size:12px;
  5061. color:#FFFFFF;
  5062. }
  5063. #u82124 .text {
  5064. position:absolute;
  5065. align-self:center;
  5066. padding:2px 2px 2px 0px;
  5067. box-sizing:border-box;
  5068. width:100%;
  5069. }
  5070. #u82124_text {
  5071. border-width:0px;
  5072. word-wrap:break-word;
  5073. text-transform:none;
  5074. }
  5075. #u82125_img {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:102px;
  5081. height:38px;
  5082. }
  5083. #u82125 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:759px;
  5087. top:0px;
  5088. width:102px;
  5089. height:38px;
  5090. display:flex;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:12px;
  5095. color:#FFFFFF;
  5096. }
  5097. #u82125 .text {
  5098. position:absolute;
  5099. align-self:center;
  5100. padding:2px 2px 2px 0px;
  5101. box-sizing:border-box;
  5102. width:100%;
  5103. }
  5104. #u82125_text {
  5105. border-width:0px;
  5106. word-wrap:break-word;
  5107. text-transform:none;
  5108. }
  5109. #u82126_img {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:0px;
  5113. top:0px;
  5114. width:82px;
  5115. height:38px;
  5116. }
  5117. #u82126 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:861px;
  5121. top:0px;
  5122. width:82px;
  5123. height:38px;
  5124. display:flex;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:12px;
  5129. color:#FFFFFF;
  5130. }
  5131. #u82126 .text {
  5132. position:absolute;
  5133. align-self:center;
  5134. padding:2px 2px 2px 0px;
  5135. box-sizing:border-box;
  5136. width:100%;
  5137. }
  5138. #u82126_text {
  5139. border-width:0px;
  5140. word-wrap:break-word;
  5141. text-transform:none;
  5142. }
  5143. #u82127_img {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:0px;
  5147. top:0px;
  5148. width:82px;
  5149. height:38px;
  5150. }
  5151. #u82127 {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:943px;
  5155. top:0px;
  5156. width:82px;
  5157. height:38px;
  5158. display:flex;
  5159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5160. font-weight:400;
  5161. font-style:normal;
  5162. font-size:12px;
  5163. color:#FFFFFF;
  5164. }
  5165. #u82127 .text {
  5166. position:absolute;
  5167. align-self:center;
  5168. padding:2px 2px 2px 0px;
  5169. box-sizing:border-box;
  5170. width:100%;
  5171. }
  5172. #u82127_text {
  5173. border-width:0px;
  5174. word-wrap:break-word;
  5175. text-transform:none;
  5176. }
  5177. #u82128_img {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:0px;
  5181. top:0px;
  5182. width:60px;
  5183. height:38px;
  5184. }
  5185. #u82128 {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:1025px;
  5189. top:0px;
  5190. width:60px;
  5191. height:38px;
  5192. display:flex;
  5193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:12px;
  5197. color:#FFFFFF;
  5198. }
  5199. #u82128 .text {
  5200. position:absolute;
  5201. align-self:center;
  5202. padding:2px 2px 2px 0px;
  5203. box-sizing:border-box;
  5204. width:100%;
  5205. }
  5206. #u82128_text {
  5207. border-width:0px;
  5208. word-wrap:break-word;
  5209. text-transform:none;
  5210. }
  5211. #u82129_img {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:0px;
  5215. top:0px;
  5216. width:60px;
  5217. height:38px;
  5218. }
  5219. #u82129 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:1085px;
  5223. top:0px;
  5224. width:60px;
  5225. height:38px;
  5226. display:flex;
  5227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5228. font-weight:400;
  5229. font-style:normal;
  5230. font-size:12px;
  5231. color:#FFFFFF;
  5232. }
  5233. #u82129 .text {
  5234. position:absolute;
  5235. align-self:center;
  5236. padding:2px 2px 2px 0px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u82129_text {
  5241. border-width:0px;
  5242. word-wrap:break-word;
  5243. text-transform:none;
  5244. }
  5245. #u82130_img {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:0px;
  5249. top:0px;
  5250. width:67px;
  5251. height:38px;
  5252. }
  5253. #u82130 {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:1145px;
  5257. top:0px;
  5258. width:67px;
  5259. height:38px;
  5260. display:flex;
  5261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5262. font-weight:400;
  5263. font-style:normal;
  5264. font-size:12px;
  5265. color:#FFFFFF;
  5266. }
  5267. #u82130 .text {
  5268. position:absolute;
  5269. align-self:center;
  5270. padding:2px 2px 2px 0px;
  5271. box-sizing:border-box;
  5272. width:100%;
  5273. }
  5274. #u82130_text {
  5275. border-width:0px;
  5276. word-wrap:break-word;
  5277. text-transform:none;
  5278. }
  5279. #u82131_img {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:60px;
  5285. height:38px;
  5286. }
  5287. #u82131 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:38px;
  5292. width:60px;
  5293. height:38px;
  5294. display:flex;
  5295. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5296. font-weight:400;
  5297. font-style:normal;
  5298. font-size:12px;
  5299. }
  5300. #u82131 .text {
  5301. position:absolute;
  5302. align-self:center;
  5303. padding:2px 2px 2px 0px;
  5304. box-sizing:border-box;
  5305. width:100%;
  5306. }
  5307. #u82131_text {
  5308. border-width:0px;
  5309. word-wrap:break-word;
  5310. text-transform:none;
  5311. visibility:hidden;
  5312. }
  5313. #u82132_img {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:60px;
  5319. height:38px;
  5320. }
  5321. #u82132 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:60px;
  5325. top:38px;
  5326. width:60px;
  5327. height:38px;
  5328. display:flex;
  5329. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:12px;
  5333. }
  5334. #u82132 .text {
  5335. position:absolute;
  5336. align-self:center;
  5337. padding:2px 2px 2px 0px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u82132_text {
  5342. border-width:0px;
  5343. word-wrap:break-word;
  5344. text-transform:none;
  5345. visibility:hidden;
  5346. }
  5347. #u82133_img {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:60px;
  5353. height:38px;
  5354. }
  5355. #u82133 {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:120px;
  5359. top:38px;
  5360. width:60px;
  5361. height:38px;
  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. }
  5368. #u82133 .text {
  5369. position:absolute;
  5370. align-self:center;
  5371. padding:2px 2px 2px 0px;
  5372. box-sizing:border-box;
  5373. width:100%;
  5374. }
  5375. #u82133_text {
  5376. border-width:0px;
  5377. word-wrap:break-word;
  5378. text-transform:none;
  5379. visibility:hidden;
  5380. }
  5381. #u82134_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:60px;
  5387. height:38px;
  5388. }
  5389. #u82134 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:180px;
  5393. top:38px;
  5394. width:60px;
  5395. height:38px;
  5396. display:flex;
  5397. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5398. font-weight:400;
  5399. font-style:normal;
  5400. font-size:12px;
  5401. }
  5402. #u82134 .text {
  5403. position:absolute;
  5404. align-self:center;
  5405. padding:2px 2px 2px 0px;
  5406. box-sizing:border-box;
  5407. width:100%;
  5408. }
  5409. #u82134_text {
  5410. border-width:0px;
  5411. word-wrap:break-word;
  5412. text-transform:none;
  5413. visibility:hidden;
  5414. }
  5415. #u82135_img {
  5416. border-width:0px;
  5417. position:absolute;
  5418. left:0px;
  5419. top:0px;
  5420. width:51px;
  5421. height:38px;
  5422. }
  5423. #u82135 {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:240px;
  5427. top:38px;
  5428. width:51px;
  5429. height:38px;
  5430. display:flex;
  5431. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5432. font-weight:400;
  5433. font-style:normal;
  5434. font-size:12px;
  5435. }
  5436. #u82135 .text {
  5437. position:absolute;
  5438. align-self:center;
  5439. padding:2px 2px 2px 0px;
  5440. box-sizing:border-box;
  5441. width:100%;
  5442. }
  5443. #u82135_text {
  5444. border-width:0px;
  5445. word-wrap:break-word;
  5446. text-transform:none;
  5447. visibility:hidden;
  5448. }
  5449. #u82136_img {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:0px;
  5453. top:0px;
  5454. width:51px;
  5455. height:38px;
  5456. }
  5457. #u82136 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:291px;
  5461. top:38px;
  5462. width:51px;
  5463. height:38px;
  5464. display:flex;
  5465. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. font-size:12px;
  5469. }
  5470. #u82136 .text {
  5471. position:absolute;
  5472. align-self:center;
  5473. padding:2px 2px 2px 0px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u82136_text {
  5478. border-width:0px;
  5479. word-wrap:break-word;
  5480. text-transform:none;
  5481. visibility:hidden;
  5482. }
  5483. #u82137_img {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:51px;
  5489. height:38px;
  5490. }
  5491. #u82137 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:342px;
  5495. top:38px;
  5496. width:51px;
  5497. height:38px;
  5498. display:flex;
  5499. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5500. font-weight:400;
  5501. font-style:normal;
  5502. font-size:12px;
  5503. }
  5504. #u82137 .text {
  5505. position:absolute;
  5506. align-self:center;
  5507. padding:2px 2px 2px 0px;
  5508. box-sizing:border-box;
  5509. width:100%;
  5510. }
  5511. #u82137_text {
  5512. border-width:0px;
  5513. word-wrap:break-word;
  5514. text-transform:none;
  5515. visibility:hidden;
  5516. }
  5517. #u82138_img {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:65px;
  5523. height:38px;
  5524. }
  5525. #u82138 {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:393px;
  5529. top:38px;
  5530. width:65px;
  5531. height:38px;
  5532. display:flex;
  5533. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5534. font-weight:400;
  5535. font-style:normal;
  5536. font-size:12px;
  5537. }
  5538. #u82138 .text {
  5539. position:absolute;
  5540. align-self:center;
  5541. padding:2px 2px 2px 0px;
  5542. box-sizing:border-box;
  5543. width:100%;
  5544. }
  5545. #u82138_text {
  5546. border-width:0px;
  5547. word-wrap:break-word;
  5548. text-transform:none;
  5549. visibility:hidden;
  5550. }
  5551. #u82139_img {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:76px;
  5557. height:38px;
  5558. }
  5559. #u82139 {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:458px;
  5563. top:38px;
  5564. width:76px;
  5565. height:38px;
  5566. display:flex;
  5567. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:12px;
  5571. }
  5572. #u82139 .text {
  5573. position:absolute;
  5574. align-self:center;
  5575. padding:2px 2px 2px 0px;
  5576. box-sizing:border-box;
  5577. width:100%;
  5578. }
  5579. #u82139_text {
  5580. border-width:0px;
  5581. word-wrap:break-word;
  5582. text-transform:none;
  5583. visibility:hidden;
  5584. }
  5585. #u82140_img {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:0px;
  5589. top:0px;
  5590. width:75px;
  5591. height:38px;
  5592. }
  5593. #u82140 {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:534px;
  5597. top:38px;
  5598. width:75px;
  5599. height:38px;
  5600. display:flex;
  5601. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:12px;
  5605. }
  5606. #u82140 .text {
  5607. position:absolute;
  5608. align-self:center;
  5609. padding:2px 2px 2px 0px;
  5610. box-sizing:border-box;
  5611. width:100%;
  5612. }
  5613. #u82140_text {
  5614. border-width:0px;
  5615. word-wrap:break-word;
  5616. text-transform:none;
  5617. visibility:hidden;
  5618. }
  5619. #u82141_img {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:75px;
  5625. height:38px;
  5626. }
  5627. #u82141 {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:609px;
  5631. top:38px;
  5632. width:75px;
  5633. height:38px;
  5634. display:flex;
  5635. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5636. font-weight:400;
  5637. font-style:normal;
  5638. font-size:12px;
  5639. }
  5640. #u82141 .text {
  5641. position:absolute;
  5642. align-self:center;
  5643. padding:2px 2px 2px 0px;
  5644. box-sizing:border-box;
  5645. width:100%;
  5646. }
  5647. #u82141_text {
  5648. border-width:0px;
  5649. word-wrap:break-word;
  5650. text-transform:none;
  5651. visibility:hidden;
  5652. }
  5653. #u82142_img {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:75px;
  5659. height:38px;
  5660. }
  5661. #u82142 {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:684px;
  5665. top:38px;
  5666. width:75px;
  5667. height:38px;
  5668. display:flex;
  5669. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5670. font-weight:400;
  5671. font-style:normal;
  5672. font-size:12px;
  5673. }
  5674. #u82142 .text {
  5675. position:absolute;
  5676. align-self:center;
  5677. padding:2px 2px 2px 0px;
  5678. box-sizing:border-box;
  5679. width:100%;
  5680. }
  5681. #u82142_text {
  5682. border-width:0px;
  5683. word-wrap:break-word;
  5684. text-transform:none;
  5685. visibility:hidden;
  5686. }
  5687. #u82143_img {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:102px;
  5693. height:38px;
  5694. }
  5695. #u82143 {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:759px;
  5699. top:38px;
  5700. width:102px;
  5701. height:38px;
  5702. display:flex;
  5703. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5704. font-weight:400;
  5705. font-style:normal;
  5706. font-size:12px;
  5707. }
  5708. #u82143 .text {
  5709. position:absolute;
  5710. align-self:center;
  5711. padding:2px 2px 2px 0px;
  5712. box-sizing:border-box;
  5713. width:100%;
  5714. }
  5715. #u82143_text {
  5716. border-width:0px;
  5717. word-wrap:break-word;
  5718. text-transform:none;
  5719. visibility:hidden;
  5720. }
  5721. #u82144_img {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:0px;
  5725. top:0px;
  5726. width:82px;
  5727. height:38px;
  5728. }
  5729. #u82144 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:861px;
  5733. top:38px;
  5734. width:82px;
  5735. height:38px;
  5736. display:flex;
  5737. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:12px;
  5741. }
  5742. #u82144 .text {
  5743. position:absolute;
  5744. align-self:center;
  5745. padding:2px 2px 2px 0px;
  5746. box-sizing:border-box;
  5747. width:100%;
  5748. }
  5749. #u82144_text {
  5750. border-width:0px;
  5751. word-wrap:break-word;
  5752. text-transform:none;
  5753. visibility:hidden;
  5754. }
  5755. #u82145_img {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:82px;
  5761. height:38px;
  5762. }
  5763. #u82145 {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:943px;
  5767. top:38px;
  5768. width:82px;
  5769. height:38px;
  5770. display:flex;
  5771. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5772. font-weight:400;
  5773. font-style:normal;
  5774. font-size:12px;
  5775. }
  5776. #u82145 .text {
  5777. position:absolute;
  5778. align-self:center;
  5779. padding:2px 2px 2px 0px;
  5780. box-sizing:border-box;
  5781. width:100%;
  5782. }
  5783. #u82145_text {
  5784. border-width:0px;
  5785. word-wrap:break-word;
  5786. text-transform:none;
  5787. visibility:hidden;
  5788. }
  5789. #u82146_img {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:0px;
  5793. top:0px;
  5794. width:60px;
  5795. height:38px;
  5796. }
  5797. #u82146 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:1025px;
  5801. top:38px;
  5802. width:60px;
  5803. height:38px;
  5804. display:flex;
  5805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5806. font-weight:400;
  5807. font-style:normal;
  5808. font-size:12px;
  5809. }
  5810. #u82146 .text {
  5811. position:absolute;
  5812. align-self:center;
  5813. padding:2px 2px 2px 0px;
  5814. box-sizing:border-box;
  5815. width:100%;
  5816. }
  5817. #u82146_text {
  5818. border-width:0px;
  5819. word-wrap:break-word;
  5820. text-transform:none;
  5821. }
  5822. #u82147_img {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:60px;
  5828. height:38px;
  5829. }
  5830. #u82147 {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:1085px;
  5834. top:38px;
  5835. width:60px;
  5836. height:38px;
  5837. display:flex;
  5838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5839. font-weight:400;
  5840. font-style:normal;
  5841. font-size:12px;
  5842. }
  5843. #u82147 .text {
  5844. position:absolute;
  5845. align-self:center;
  5846. padding:2px 2px 2px 0px;
  5847. box-sizing:border-box;
  5848. width:100%;
  5849. }
  5850. #u82147_text {
  5851. border-width:0px;
  5852. word-wrap:break-word;
  5853. text-transform:none;
  5854. }
  5855. #u82148_img {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:0px;
  5860. width:67px;
  5861. height:38px;
  5862. }
  5863. #u82148 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:1145px;
  5867. top:38px;
  5868. width:67px;
  5869. height:38px;
  5870. display:flex;
  5871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5872. font-weight:400;
  5873. font-style:normal;
  5874. font-size:12px;
  5875. color:#1890FF;
  5876. }
  5877. #u82148 .text {
  5878. position:absolute;
  5879. align-self:center;
  5880. padding:2px 2px 2px 0px;
  5881. box-sizing:border-box;
  5882. width:100%;
  5883. }
  5884. #u82148_text {
  5885. border-width:0px;
  5886. word-wrap:break-word;
  5887. text-transform:none;
  5888. }
  5889. #u82149_img {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:60px;
  5895. height:38px;
  5896. }
  5897. #u82149 {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:76px;
  5902. width:60px;
  5903. height:38px;
  5904. display:flex;
  5905. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5906. font-weight:400;
  5907. font-style:normal;
  5908. font-size:12px;
  5909. color:#606266;
  5910. }
  5911. #u82149 .text {
  5912. position:absolute;
  5913. align-self:center;
  5914. padding:2px 2px 2px 0px;
  5915. box-sizing:border-box;
  5916. width:100%;
  5917. }
  5918. #u82149_text {
  5919. border-width:0px;
  5920. word-wrap:break-word;
  5921. text-transform:none;
  5922. visibility:hidden;
  5923. }
  5924. #u82150_img {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:0px;
  5928. top:0px;
  5929. width:60px;
  5930. height:38px;
  5931. }
  5932. #u82150 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:60px;
  5936. top:76px;
  5937. width:60px;
  5938. height:38px;
  5939. display:flex;
  5940. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:12px;
  5944. color:#606266;
  5945. }
  5946. #u82150 .text {
  5947. position:absolute;
  5948. align-self:center;
  5949. padding:2px 2px 2px 0px;
  5950. box-sizing:border-box;
  5951. width:100%;
  5952. }
  5953. #u82150_text {
  5954. border-width:0px;
  5955. word-wrap:break-word;
  5956. text-transform:none;
  5957. visibility:hidden;
  5958. }
  5959. #u82151_img {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:0px;
  5963. top:0px;
  5964. width:60px;
  5965. height:38px;
  5966. }
  5967. #u82151 {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:120px;
  5971. top:76px;
  5972. width:60px;
  5973. height:38px;
  5974. display:flex;
  5975. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5976. font-weight:400;
  5977. font-style:normal;
  5978. font-size:12px;
  5979. color:#606266;
  5980. }
  5981. #u82151 .text {
  5982. position:absolute;
  5983. align-self:center;
  5984. padding:2px 2px 2px 0px;
  5985. box-sizing:border-box;
  5986. width:100%;
  5987. }
  5988. #u82151_text {
  5989. border-width:0px;
  5990. word-wrap:break-word;
  5991. text-transform:none;
  5992. visibility:hidden;
  5993. }
  5994. #u82152_img {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:0px;
  5998. top:0px;
  5999. width:60px;
  6000. height:38px;
  6001. }
  6002. #u82152 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:180px;
  6006. top:76px;
  6007. width:60px;
  6008. height:38px;
  6009. display:flex;
  6010. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:12px;
  6014. color:#606266;
  6015. }
  6016. #u82152 .text {
  6017. position:absolute;
  6018. align-self:center;
  6019. padding:2px 2px 2px 0px;
  6020. box-sizing:border-box;
  6021. width:100%;
  6022. }
  6023. #u82152_text {
  6024. border-width:0px;
  6025. word-wrap:break-word;
  6026. text-transform:none;
  6027. visibility:hidden;
  6028. }
  6029. #u82153_img {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:0px;
  6033. top:0px;
  6034. width:51px;
  6035. height:38px;
  6036. }
  6037. #u82153 {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:240px;
  6041. top:76px;
  6042. width:51px;
  6043. height:38px;
  6044. display:flex;
  6045. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6046. font-weight:400;
  6047. font-style:normal;
  6048. font-size:12px;
  6049. color:#606266;
  6050. }
  6051. #u82153 .text {
  6052. position:absolute;
  6053. align-self:center;
  6054. padding:2px 2px 2px 0px;
  6055. box-sizing:border-box;
  6056. width:100%;
  6057. }
  6058. #u82153_text {
  6059. border-width:0px;
  6060. word-wrap:break-word;
  6061. text-transform:none;
  6062. visibility:hidden;
  6063. }
  6064. #u82154_img {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:0px;
  6068. top:0px;
  6069. width:51px;
  6070. height:38px;
  6071. }
  6072. #u82154 {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:291px;
  6076. top:76px;
  6077. width:51px;
  6078. height:38px;
  6079. display:flex;
  6080. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6081. font-weight:400;
  6082. font-style:normal;
  6083. font-size:12px;
  6084. color:#606266;
  6085. }
  6086. #u82154 .text {
  6087. position:absolute;
  6088. align-self:center;
  6089. padding:2px 2px 2px 0px;
  6090. box-sizing:border-box;
  6091. width:100%;
  6092. }
  6093. #u82154_text {
  6094. border-width:0px;
  6095. word-wrap:break-word;
  6096. text-transform:none;
  6097. visibility:hidden;
  6098. }
  6099. #u82155_img {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:0px;
  6103. top:0px;
  6104. width:51px;
  6105. height:38px;
  6106. }
  6107. #u82155 {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:342px;
  6111. top:76px;
  6112. width:51px;
  6113. height:38px;
  6114. display:flex;
  6115. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6116. font-weight:400;
  6117. font-style:normal;
  6118. font-size:12px;
  6119. color:#606266;
  6120. }
  6121. #u82155 .text {
  6122. position:absolute;
  6123. align-self:center;
  6124. padding:2px 2px 2px 0px;
  6125. box-sizing:border-box;
  6126. width:100%;
  6127. }
  6128. #u82155_text {
  6129. border-width:0px;
  6130. word-wrap:break-word;
  6131. text-transform:none;
  6132. visibility:hidden;
  6133. }
  6134. #u82156_img {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:0px;
  6138. top:0px;
  6139. width:65px;
  6140. height:38px;
  6141. }
  6142. #u82156 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:393px;
  6146. top:76px;
  6147. width:65px;
  6148. height:38px;
  6149. display:flex;
  6150. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6151. font-weight:400;
  6152. font-style:normal;
  6153. font-size:12px;
  6154. color:#606266;
  6155. }
  6156. #u82156 .text {
  6157. position:absolute;
  6158. align-self:center;
  6159. padding:2px 2px 2px 0px;
  6160. box-sizing:border-box;
  6161. width:100%;
  6162. }
  6163. #u82156_text {
  6164. border-width:0px;
  6165. word-wrap:break-word;
  6166. text-transform:none;
  6167. visibility:hidden;
  6168. }
  6169. #u82157_img {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:0px;
  6173. top:0px;
  6174. width:76px;
  6175. height:38px;
  6176. }
  6177. #u82157 {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:458px;
  6181. top:76px;
  6182. width:76px;
  6183. height:38px;
  6184. display:flex;
  6185. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6186. font-weight:400;
  6187. font-style:normal;
  6188. font-size:12px;
  6189. color:#606266;
  6190. }
  6191. #u82157 .text {
  6192. position:absolute;
  6193. align-self:center;
  6194. padding:2px 2px 2px 0px;
  6195. box-sizing:border-box;
  6196. width:100%;
  6197. }
  6198. #u82157_text {
  6199. border-width:0px;
  6200. word-wrap:break-word;
  6201. text-transform:none;
  6202. visibility:hidden;
  6203. }
  6204. #u82158_img {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:0px;
  6208. top:0px;
  6209. width:75px;
  6210. height:38px;
  6211. }
  6212. #u82158 {
  6213. border-width:0px;
  6214. position:absolute;
  6215. left:534px;
  6216. top:76px;
  6217. width:75px;
  6218. height:38px;
  6219. display:flex;
  6220. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6221. font-weight:400;
  6222. font-style:normal;
  6223. font-size:12px;
  6224. color:#606266;
  6225. }
  6226. #u82158 .text {
  6227. position:absolute;
  6228. align-self:center;
  6229. padding:2px 2px 2px 0px;
  6230. box-sizing:border-box;
  6231. width:100%;
  6232. }
  6233. #u82158_text {
  6234. border-width:0px;
  6235. word-wrap:break-word;
  6236. text-transform:none;
  6237. visibility:hidden;
  6238. }
  6239. #u82159_img {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:0px;
  6243. top:0px;
  6244. width:75px;
  6245. height:38px;
  6246. }
  6247. #u82159 {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:609px;
  6251. top:76px;
  6252. width:75px;
  6253. height:38px;
  6254. display:flex;
  6255. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:12px;
  6259. color:#606266;
  6260. }
  6261. #u82159 .text {
  6262. position:absolute;
  6263. align-self:center;
  6264. padding:2px 2px 2px 0px;
  6265. box-sizing:border-box;
  6266. width:100%;
  6267. }
  6268. #u82159_text {
  6269. border-width:0px;
  6270. word-wrap:break-word;
  6271. text-transform:none;
  6272. visibility:hidden;
  6273. }
  6274. #u82160_img {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:0px;
  6278. top:0px;
  6279. width:75px;
  6280. height:38px;
  6281. }
  6282. #u82160 {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:684px;
  6286. top:76px;
  6287. width:75px;
  6288. height:38px;
  6289. display:flex;
  6290. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6291. font-weight:400;
  6292. font-style:normal;
  6293. font-size:12px;
  6294. color:#606266;
  6295. }
  6296. #u82160 .text {
  6297. position:absolute;
  6298. align-self:center;
  6299. padding:2px 2px 2px 0px;
  6300. box-sizing:border-box;
  6301. width:100%;
  6302. }
  6303. #u82160_text {
  6304. border-width:0px;
  6305. word-wrap:break-word;
  6306. text-transform:none;
  6307. visibility:hidden;
  6308. }
  6309. #u82161_img {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:0px;
  6313. top:0px;
  6314. width:102px;
  6315. height:38px;
  6316. }
  6317. #u82161 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:759px;
  6321. top:76px;
  6322. width:102px;
  6323. height:38px;
  6324. display:flex;
  6325. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6326. font-weight:400;
  6327. font-style:normal;
  6328. font-size:12px;
  6329. color:#606266;
  6330. }
  6331. #u82161 .text {
  6332. position:absolute;
  6333. align-self:center;
  6334. padding:2px 2px 2px 0px;
  6335. box-sizing:border-box;
  6336. width:100%;
  6337. }
  6338. #u82161_text {
  6339. border-width:0px;
  6340. word-wrap:break-word;
  6341. text-transform:none;
  6342. visibility:hidden;
  6343. }
  6344. #u82162_img {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:82px;
  6350. height:38px;
  6351. }
  6352. #u82162 {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:861px;
  6356. top:76px;
  6357. width:82px;
  6358. height:38px;
  6359. display:flex;
  6360. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6361. font-weight:400;
  6362. font-style:normal;
  6363. font-size:12px;
  6364. color:#606266;
  6365. }
  6366. #u82162 .text {
  6367. position:absolute;
  6368. align-self:center;
  6369. padding:2px 2px 2px 0px;
  6370. box-sizing:border-box;
  6371. width:100%;
  6372. }
  6373. #u82162_text {
  6374. border-width:0px;
  6375. word-wrap:break-word;
  6376. text-transform:none;
  6377. visibility:hidden;
  6378. }
  6379. #u82163_img {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:0px;
  6383. top:0px;
  6384. width:82px;
  6385. height:38px;
  6386. }
  6387. #u82163 {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:943px;
  6391. top:76px;
  6392. width:82px;
  6393. height:38px;
  6394. display:flex;
  6395. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6396. font-weight:400;
  6397. font-style:normal;
  6398. font-size:12px;
  6399. color:#606266;
  6400. }
  6401. #u82163 .text {
  6402. position:absolute;
  6403. align-self:center;
  6404. padding:2px 2px 2px 0px;
  6405. box-sizing:border-box;
  6406. width:100%;
  6407. }
  6408. #u82163_text {
  6409. border-width:0px;
  6410. word-wrap:break-word;
  6411. text-transform:none;
  6412. visibility:hidden;
  6413. }
  6414. #u82164_img {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:60px;
  6420. height:38px;
  6421. }
  6422. #u82164 {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:1025px;
  6426. top:76px;
  6427. width:60px;
  6428. height:38px;
  6429. display:flex;
  6430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6431. font-weight:400;
  6432. font-style:normal;
  6433. font-size:12px;
  6434. color:#606266;
  6435. }
  6436. #u82164 .text {
  6437. position:absolute;
  6438. align-self:center;
  6439. padding:2px 2px 2px 0px;
  6440. box-sizing:border-box;
  6441. width:100%;
  6442. }
  6443. #u82164_text {
  6444. border-width:0px;
  6445. word-wrap:break-word;
  6446. text-transform:none;
  6447. }
  6448. #u82165_img {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:0px;
  6452. top:0px;
  6453. width:60px;
  6454. height:38px;
  6455. }
  6456. #u82165 {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:1085px;
  6460. top:76px;
  6461. width:60px;
  6462. height:38px;
  6463. display:flex;
  6464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6465. font-weight:400;
  6466. font-style:normal;
  6467. font-size:12px;
  6468. color:#606266;
  6469. }
  6470. #u82165 .text {
  6471. position:absolute;
  6472. align-self:center;
  6473. padding:2px 2px 2px 0px;
  6474. box-sizing:border-box;
  6475. width:100%;
  6476. }
  6477. #u82165_text {
  6478. border-width:0px;
  6479. word-wrap:break-word;
  6480. text-transform:none;
  6481. }
  6482. #u82166_img {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:0px;
  6486. top:0px;
  6487. width:67px;
  6488. height:38px;
  6489. }
  6490. #u82166 {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:1145px;
  6494. top:76px;
  6495. width:67px;
  6496. height:38px;
  6497. display:flex;
  6498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6499. font-weight:400;
  6500. font-style:normal;
  6501. font-size:12px;
  6502. color:#1890FF;
  6503. }
  6504. #u82166 .text {
  6505. position:absolute;
  6506. align-self:center;
  6507. padding:2px 2px 2px 0px;
  6508. box-sizing:border-box;
  6509. width:100%;
  6510. }
  6511. #u82166_text {
  6512. border-width:0px;
  6513. word-wrap:break-word;
  6514. text-transform:none;
  6515. }
  6516. #u82167_img {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:60px;
  6522. height:38px;
  6523. }
  6524. #u82167 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:0px;
  6528. top:114px;
  6529. width:60px;
  6530. height:38px;
  6531. display:flex;
  6532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. font-size:12px;
  6536. color:#606266;
  6537. }
  6538. #u82167 .text {
  6539. position:absolute;
  6540. align-self:center;
  6541. padding:2px 2px 2px 0px;
  6542. box-sizing:border-box;
  6543. width:100%;
  6544. }
  6545. #u82167_text {
  6546. border-width:0px;
  6547. word-wrap:break-word;
  6548. text-transform:none;
  6549. visibility:hidden;
  6550. }
  6551. #u82168_img {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:60px;
  6557. height:38px;
  6558. }
  6559. #u82168 {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:60px;
  6563. top:114px;
  6564. width:60px;
  6565. height:38px;
  6566. display:flex;
  6567. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:12px;
  6571. color:#606266;
  6572. }
  6573. #u82168 .text {
  6574. position:absolute;
  6575. align-self:center;
  6576. padding:2px 2px 2px 0px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u82168_text {
  6581. border-width:0px;
  6582. word-wrap:break-word;
  6583. text-transform:none;
  6584. visibility:hidden;
  6585. }
  6586. #u82169_img {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:60px;
  6592. height:38px;
  6593. }
  6594. #u82169 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:120px;
  6598. top:114px;
  6599. width:60px;
  6600. height:38px;
  6601. display:flex;
  6602. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:12px;
  6606. color:#606266;
  6607. }
  6608. #u82169 .text {
  6609. position:absolute;
  6610. align-self:center;
  6611. padding:2px 2px 2px 0px;
  6612. box-sizing:border-box;
  6613. width:100%;
  6614. }
  6615. #u82169_text {
  6616. border-width:0px;
  6617. word-wrap:break-word;
  6618. text-transform:none;
  6619. visibility:hidden;
  6620. }
  6621. #u82170_img {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:0px;
  6625. top:0px;
  6626. width:60px;
  6627. height:38px;
  6628. }
  6629. #u82170 {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:180px;
  6633. top:114px;
  6634. width:60px;
  6635. height:38px;
  6636. display:flex;
  6637. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6638. font-weight:400;
  6639. font-style:normal;
  6640. font-size:12px;
  6641. color:#606266;
  6642. }
  6643. #u82170 .text {
  6644. position:absolute;
  6645. align-self:center;
  6646. padding:2px 2px 2px 0px;
  6647. box-sizing:border-box;
  6648. width:100%;
  6649. }
  6650. #u82170_text {
  6651. border-width:0px;
  6652. word-wrap:break-word;
  6653. text-transform:none;
  6654. visibility:hidden;
  6655. }
  6656. #u82171_img {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:0px;
  6660. top:0px;
  6661. width:51px;
  6662. height:38px;
  6663. }
  6664. #u82171 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:240px;
  6668. top:114px;
  6669. width:51px;
  6670. height:38px;
  6671. display:flex;
  6672. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6673. font-weight:400;
  6674. font-style:normal;
  6675. font-size:12px;
  6676. color:#606266;
  6677. }
  6678. #u82171 .text {
  6679. position:absolute;
  6680. align-self:center;
  6681. padding:2px 2px 2px 0px;
  6682. box-sizing:border-box;
  6683. width:100%;
  6684. }
  6685. #u82171_text {
  6686. border-width:0px;
  6687. word-wrap:break-word;
  6688. text-transform:none;
  6689. visibility:hidden;
  6690. }
  6691. #u82172_img {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:0px;
  6695. top:0px;
  6696. width:51px;
  6697. height:38px;
  6698. }
  6699. #u82172 {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:291px;
  6703. top:114px;
  6704. width:51px;
  6705. height:38px;
  6706. display:flex;
  6707. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. font-size:12px;
  6711. color:#606266;
  6712. }
  6713. #u82172 .text {
  6714. position:absolute;
  6715. align-self:center;
  6716. padding:2px 2px 2px 0px;
  6717. box-sizing:border-box;
  6718. width:100%;
  6719. }
  6720. #u82172_text {
  6721. border-width:0px;
  6722. word-wrap:break-word;
  6723. text-transform:none;
  6724. visibility:hidden;
  6725. }
  6726. #u82173_img {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:0px;
  6731. width:51px;
  6732. height:38px;
  6733. }
  6734. #u82173 {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:342px;
  6738. top:114px;
  6739. width:51px;
  6740. height:38px;
  6741. display:flex;
  6742. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6743. font-weight:400;
  6744. font-style:normal;
  6745. font-size:12px;
  6746. color:#606266;
  6747. }
  6748. #u82173 .text {
  6749. position:absolute;
  6750. align-self:center;
  6751. padding:2px 2px 2px 0px;
  6752. box-sizing:border-box;
  6753. width:100%;
  6754. }
  6755. #u82173_text {
  6756. border-width:0px;
  6757. word-wrap:break-word;
  6758. text-transform:none;
  6759. visibility:hidden;
  6760. }
  6761. #u82174_img {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:0px;
  6765. top:0px;
  6766. width:65px;
  6767. height:38px;
  6768. }
  6769. #u82174 {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:393px;
  6773. top:114px;
  6774. width:65px;
  6775. height:38px;
  6776. display:flex;
  6777. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. font-size:12px;
  6781. color:#606266;
  6782. }
  6783. #u82174 .text {
  6784. position:absolute;
  6785. align-self:center;
  6786. padding:2px 2px 2px 0px;
  6787. box-sizing:border-box;
  6788. width:100%;
  6789. }
  6790. #u82174_text {
  6791. border-width:0px;
  6792. word-wrap:break-word;
  6793. text-transform:none;
  6794. visibility:hidden;
  6795. }
  6796. #u82175_img {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:76px;
  6802. height:38px;
  6803. }
  6804. #u82175 {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:458px;
  6808. top:114px;
  6809. width:76px;
  6810. height:38px;
  6811. display:flex;
  6812. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:12px;
  6816. color:#606266;
  6817. }
  6818. #u82175 .text {
  6819. position:absolute;
  6820. align-self:center;
  6821. padding:2px 2px 2px 0px;
  6822. box-sizing:border-box;
  6823. width:100%;
  6824. }
  6825. #u82175_text {
  6826. border-width:0px;
  6827. word-wrap:break-word;
  6828. text-transform:none;
  6829. visibility:hidden;
  6830. }
  6831. #u82176_img {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:0px;
  6835. top:0px;
  6836. width:75px;
  6837. height:38px;
  6838. }
  6839. #u82176 {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:534px;
  6843. top:114px;
  6844. width:75px;
  6845. height:38px;
  6846. display:flex;
  6847. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6848. font-weight:400;
  6849. font-style:normal;
  6850. font-size:12px;
  6851. color:#606266;
  6852. }
  6853. #u82176 .text {
  6854. position:absolute;
  6855. align-self:center;
  6856. padding:2px 2px 2px 0px;
  6857. box-sizing:border-box;
  6858. width:100%;
  6859. }
  6860. #u82176_text {
  6861. border-width:0px;
  6862. word-wrap:break-word;
  6863. text-transform:none;
  6864. visibility:hidden;
  6865. }
  6866. #u82177_img {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:0px;
  6870. top:0px;
  6871. width:75px;
  6872. height:38px;
  6873. }
  6874. #u82177 {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:609px;
  6878. top:114px;
  6879. width:75px;
  6880. height:38px;
  6881. display:flex;
  6882. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6883. font-weight:400;
  6884. font-style:normal;
  6885. font-size:12px;
  6886. color:#606266;
  6887. }
  6888. #u82177 .text {
  6889. position:absolute;
  6890. align-self:center;
  6891. padding:2px 2px 2px 0px;
  6892. box-sizing:border-box;
  6893. width:100%;
  6894. }
  6895. #u82177_text {
  6896. border-width:0px;
  6897. word-wrap:break-word;
  6898. text-transform:none;
  6899. visibility:hidden;
  6900. }
  6901. #u82178_img {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:0px;
  6905. top:0px;
  6906. width:75px;
  6907. height:38px;
  6908. }
  6909. #u82178 {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:684px;
  6913. top:114px;
  6914. width:75px;
  6915. height:38px;
  6916. display:flex;
  6917. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6918. font-weight:400;
  6919. font-style:normal;
  6920. font-size:12px;
  6921. color:#606266;
  6922. }
  6923. #u82178 .text {
  6924. position:absolute;
  6925. align-self:center;
  6926. padding:2px 2px 2px 0px;
  6927. box-sizing:border-box;
  6928. width:100%;
  6929. }
  6930. #u82178_text {
  6931. border-width:0px;
  6932. word-wrap:break-word;
  6933. text-transform:none;
  6934. visibility:hidden;
  6935. }
  6936. #u82179_img {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:0px;
  6940. top:0px;
  6941. width:102px;
  6942. height:38px;
  6943. }
  6944. #u82179 {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:759px;
  6948. top:114px;
  6949. width:102px;
  6950. height:38px;
  6951. display:flex;
  6952. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6953. font-weight:400;
  6954. font-style:normal;
  6955. font-size:12px;
  6956. color:#606266;
  6957. }
  6958. #u82179 .text {
  6959. position:absolute;
  6960. align-self:center;
  6961. padding:2px 2px 2px 0px;
  6962. box-sizing:border-box;
  6963. width:100%;
  6964. }
  6965. #u82179_text {
  6966. border-width:0px;
  6967. word-wrap:break-word;
  6968. text-transform:none;
  6969. visibility:hidden;
  6970. }
  6971. #u82180_img {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:0px;
  6975. top:0px;
  6976. width:82px;
  6977. height:38px;
  6978. }
  6979. #u82180 {
  6980. border-width:0px;
  6981. position:absolute;
  6982. left:861px;
  6983. top:114px;
  6984. width:82px;
  6985. height:38px;
  6986. display:flex;
  6987. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6988. font-weight:400;
  6989. font-style:normal;
  6990. font-size:12px;
  6991. color:#606266;
  6992. }
  6993. #u82180 .text {
  6994. position:absolute;
  6995. align-self:center;
  6996. padding:2px 2px 2px 0px;
  6997. box-sizing:border-box;
  6998. width:100%;
  6999. }
  7000. #u82180_text {
  7001. border-width:0px;
  7002. word-wrap:break-word;
  7003. text-transform:none;
  7004. visibility:hidden;
  7005. }
  7006. #u82181_img {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:82px;
  7012. height:38px;
  7013. }
  7014. #u82181 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:943px;
  7018. top:114px;
  7019. width:82px;
  7020. height:38px;
  7021. display:flex;
  7022. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7023. font-weight:400;
  7024. font-style:normal;
  7025. font-size:12px;
  7026. color:#606266;
  7027. }
  7028. #u82181 .text {
  7029. position:absolute;
  7030. align-self:center;
  7031. padding:2px 2px 2px 0px;
  7032. box-sizing:border-box;
  7033. width:100%;
  7034. }
  7035. #u82181_text {
  7036. border-width:0px;
  7037. word-wrap:break-word;
  7038. text-transform:none;
  7039. visibility:hidden;
  7040. }
  7041. #u82182_img {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:0px;
  7045. top:0px;
  7046. width:60px;
  7047. height:38px;
  7048. }
  7049. #u82182 {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:1025px;
  7053. top:114px;
  7054. width:60px;
  7055. height:38px;
  7056. display:flex;
  7057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7058. font-weight:400;
  7059. font-style:normal;
  7060. font-size:12px;
  7061. color:#606266;
  7062. }
  7063. #u82182 .text {
  7064. position:absolute;
  7065. align-self:center;
  7066. padding:2px 2px 2px 0px;
  7067. box-sizing:border-box;
  7068. width:100%;
  7069. }
  7070. #u82182_text {
  7071. border-width:0px;
  7072. word-wrap:break-word;
  7073. text-transform:none;
  7074. visibility:hidden;
  7075. }
  7076. #u82183_img {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:0px;
  7080. top:0px;
  7081. width:60px;
  7082. height:38px;
  7083. }
  7084. #u82183 {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:1085px;
  7088. top:114px;
  7089. width:60px;
  7090. height:38px;
  7091. display:flex;
  7092. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7093. font-weight:400;
  7094. font-style:normal;
  7095. font-size:12px;
  7096. color:#606266;
  7097. }
  7098. #u82183 .text {
  7099. position:absolute;
  7100. align-self:center;
  7101. padding:2px 2px 2px 0px;
  7102. box-sizing:border-box;
  7103. width:100%;
  7104. }
  7105. #u82183_text {
  7106. border-width:0px;
  7107. word-wrap:break-word;
  7108. text-transform:none;
  7109. visibility:hidden;
  7110. }
  7111. #u82184_img {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:0px;
  7115. top:0px;
  7116. width:67px;
  7117. height:38px;
  7118. }
  7119. #u82184 {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:1145px;
  7123. top:114px;
  7124. width:67px;
  7125. height:38px;
  7126. display:flex;
  7127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7128. font-weight:400;
  7129. font-style:normal;
  7130. font-size:12px;
  7131. color:#02A7F0;
  7132. }
  7133. #u82184 .text {
  7134. position:absolute;
  7135. align-self:center;
  7136. padding:2px 2px 2px 0px;
  7137. box-sizing:border-box;
  7138. width:100%;
  7139. }
  7140. #u82184_text {
  7141. border-width:0px;
  7142. word-wrap:break-word;
  7143. text-transform:none;
  7144. visibility:hidden;
  7145. }
  7146. #u82185_img {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:0px;
  7150. top:0px;
  7151. width:60px;
  7152. height:38px;
  7153. }
  7154. #u82185 {
  7155. border-width:0px;
  7156. position:absolute;
  7157. left:0px;
  7158. top:152px;
  7159. width:60px;
  7160. height:38px;
  7161. display:flex;
  7162. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7163. font-weight:400;
  7164. font-style:normal;
  7165. font-size:12px;
  7166. color:#606266;
  7167. }
  7168. #u82185 .text {
  7169. position:absolute;
  7170. align-self:center;
  7171. padding:2px 2px 2px 0px;
  7172. box-sizing:border-box;
  7173. width:100%;
  7174. }
  7175. #u82185_text {
  7176. border-width:0px;
  7177. word-wrap:break-word;
  7178. text-transform:none;
  7179. visibility:hidden;
  7180. }
  7181. #u82186_img {
  7182. border-width:0px;
  7183. position:absolute;
  7184. left:0px;
  7185. top:0px;
  7186. width:60px;
  7187. height:38px;
  7188. }
  7189. #u82186 {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:60px;
  7193. top:152px;
  7194. width:60px;
  7195. height:38px;
  7196. display:flex;
  7197. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7198. font-weight:400;
  7199. font-style:normal;
  7200. font-size:12px;
  7201. color:#606266;
  7202. }
  7203. #u82186 .text {
  7204. position:absolute;
  7205. align-self:center;
  7206. padding:2px 2px 2px 0px;
  7207. box-sizing:border-box;
  7208. width:100%;
  7209. }
  7210. #u82186_text {
  7211. border-width:0px;
  7212. word-wrap:break-word;
  7213. text-transform:none;
  7214. visibility:hidden;
  7215. }
  7216. #u82187_img {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:0px;
  7220. top:0px;
  7221. width:60px;
  7222. height:38px;
  7223. }
  7224. #u82187 {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:120px;
  7228. top:152px;
  7229. width:60px;
  7230. height:38px;
  7231. display:flex;
  7232. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7233. font-weight:400;
  7234. font-style:normal;
  7235. font-size:12px;
  7236. color:#606266;
  7237. }
  7238. #u82187 .text {
  7239. position:absolute;
  7240. align-self:center;
  7241. padding:2px 2px 2px 0px;
  7242. box-sizing:border-box;
  7243. width:100%;
  7244. }
  7245. #u82187_text {
  7246. border-width:0px;
  7247. word-wrap:break-word;
  7248. text-transform:none;
  7249. visibility:hidden;
  7250. }
  7251. #u82188_img {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:0px;
  7255. top:0px;
  7256. width:60px;
  7257. height:38px;
  7258. }
  7259. #u82188 {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:180px;
  7263. top:152px;
  7264. width:60px;
  7265. height:38px;
  7266. display:flex;
  7267. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7268. font-weight:400;
  7269. font-style:normal;
  7270. font-size:12px;
  7271. color:#606266;
  7272. }
  7273. #u82188 .text {
  7274. position:absolute;
  7275. align-self:center;
  7276. padding:2px 2px 2px 0px;
  7277. box-sizing:border-box;
  7278. width:100%;
  7279. }
  7280. #u82188_text {
  7281. border-width:0px;
  7282. word-wrap:break-word;
  7283. text-transform:none;
  7284. visibility:hidden;
  7285. }
  7286. #u82189_img {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:0px;
  7290. top:0px;
  7291. width:51px;
  7292. height:38px;
  7293. }
  7294. #u82189 {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:240px;
  7298. top:152px;
  7299. width:51px;
  7300. height:38px;
  7301. display:flex;
  7302. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7303. font-weight:400;
  7304. font-style:normal;
  7305. font-size:12px;
  7306. color:#606266;
  7307. }
  7308. #u82189 .text {
  7309. position:absolute;
  7310. align-self:center;
  7311. padding:2px 2px 2px 0px;
  7312. box-sizing:border-box;
  7313. width:100%;
  7314. }
  7315. #u82189_text {
  7316. border-width:0px;
  7317. word-wrap:break-word;
  7318. text-transform:none;
  7319. visibility:hidden;
  7320. }
  7321. #u82190_img {
  7322. border-width:0px;
  7323. position:absolute;
  7324. left:0px;
  7325. top:0px;
  7326. width:51px;
  7327. height:38px;
  7328. }
  7329. #u82190 {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:291px;
  7333. top:152px;
  7334. width:51px;
  7335. height:38px;
  7336. display:flex;
  7337. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7338. font-weight:400;
  7339. font-style:normal;
  7340. font-size:12px;
  7341. color:#606266;
  7342. }
  7343. #u82190 .text {
  7344. position:absolute;
  7345. align-self:center;
  7346. padding:2px 2px 2px 0px;
  7347. box-sizing:border-box;
  7348. width:100%;
  7349. }
  7350. #u82190_text {
  7351. border-width:0px;
  7352. word-wrap:break-word;
  7353. text-transform:none;
  7354. visibility:hidden;
  7355. }
  7356. #u82191_img {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:0px;
  7360. top:0px;
  7361. width:51px;
  7362. height:38px;
  7363. }
  7364. #u82191 {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:342px;
  7368. top:152px;
  7369. width:51px;
  7370. height:38px;
  7371. display:flex;
  7372. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7373. font-weight:400;
  7374. font-style:normal;
  7375. font-size:12px;
  7376. color:#606266;
  7377. }
  7378. #u82191 .text {
  7379. position:absolute;
  7380. align-self:center;
  7381. padding:2px 2px 2px 0px;
  7382. box-sizing:border-box;
  7383. width:100%;
  7384. }
  7385. #u82191_text {
  7386. border-width:0px;
  7387. word-wrap:break-word;
  7388. text-transform:none;
  7389. visibility:hidden;
  7390. }
  7391. #u82192_img {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:0px;
  7395. top:0px;
  7396. width:65px;
  7397. height:38px;
  7398. }
  7399. #u82192 {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:393px;
  7403. top:152px;
  7404. width:65px;
  7405. height:38px;
  7406. display:flex;
  7407. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7408. font-weight:400;
  7409. font-style:normal;
  7410. font-size:12px;
  7411. color:#606266;
  7412. }
  7413. #u82192 .text {
  7414. position:absolute;
  7415. align-self:center;
  7416. padding:2px 2px 2px 0px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u82192_text {
  7421. border-width:0px;
  7422. word-wrap:break-word;
  7423. text-transform:none;
  7424. visibility:hidden;
  7425. }
  7426. #u82193_img {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:76px;
  7432. height:38px;
  7433. }
  7434. #u82193 {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:458px;
  7438. top:152px;
  7439. width:76px;
  7440. height:38px;
  7441. display:flex;
  7442. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. font-size:12px;
  7446. color:#606266;
  7447. }
  7448. #u82193 .text {
  7449. position:absolute;
  7450. align-self:center;
  7451. padding:2px 2px 2px 0px;
  7452. box-sizing:border-box;
  7453. width:100%;
  7454. }
  7455. #u82193_text {
  7456. border-width:0px;
  7457. word-wrap:break-word;
  7458. text-transform:none;
  7459. visibility:hidden;
  7460. }
  7461. #u82194_img {
  7462. border-width:0px;
  7463. position:absolute;
  7464. left:0px;
  7465. top:0px;
  7466. width:75px;
  7467. height:38px;
  7468. }
  7469. #u82194 {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:534px;
  7473. top:152px;
  7474. width:75px;
  7475. height:38px;
  7476. display:flex;
  7477. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7478. font-weight:400;
  7479. font-style:normal;
  7480. font-size:12px;
  7481. color:#606266;
  7482. }
  7483. #u82194 .text {
  7484. position:absolute;
  7485. align-self:center;
  7486. padding:2px 2px 2px 0px;
  7487. box-sizing:border-box;
  7488. width:100%;
  7489. }
  7490. #u82194_text {
  7491. border-width:0px;
  7492. word-wrap:break-word;
  7493. text-transform:none;
  7494. visibility:hidden;
  7495. }
  7496. #u82195_img {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:0px;
  7500. top:0px;
  7501. width:75px;
  7502. height:38px;
  7503. }
  7504. #u82195 {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:609px;
  7508. top:152px;
  7509. width:75px;
  7510. height:38px;
  7511. display:flex;
  7512. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7513. font-weight:400;
  7514. font-style:normal;
  7515. font-size:12px;
  7516. color:#606266;
  7517. }
  7518. #u82195 .text {
  7519. position:absolute;
  7520. align-self:center;
  7521. padding:2px 2px 2px 0px;
  7522. box-sizing:border-box;
  7523. width:100%;
  7524. }
  7525. #u82195_text {
  7526. border-width:0px;
  7527. word-wrap:break-word;
  7528. text-transform:none;
  7529. visibility:hidden;
  7530. }
  7531. #u82196_img {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:0px;
  7535. top:0px;
  7536. width:75px;
  7537. height:38px;
  7538. }
  7539. #u82196 {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:684px;
  7543. top:152px;
  7544. width:75px;
  7545. height:38px;
  7546. display:flex;
  7547. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:12px;
  7551. color:#606266;
  7552. }
  7553. #u82196 .text {
  7554. position:absolute;
  7555. align-self:center;
  7556. padding:2px 2px 2px 0px;
  7557. box-sizing:border-box;
  7558. width:100%;
  7559. }
  7560. #u82196_text {
  7561. border-width:0px;
  7562. word-wrap:break-word;
  7563. text-transform:none;
  7564. visibility:hidden;
  7565. }
  7566. #u82197_img {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:102px;
  7572. height:38px;
  7573. }
  7574. #u82197 {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:759px;
  7578. top:152px;
  7579. width:102px;
  7580. height:38px;
  7581. display:flex;
  7582. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7583. font-weight:400;
  7584. font-style:normal;
  7585. font-size:12px;
  7586. color:#606266;
  7587. }
  7588. #u82197 .text {
  7589. position:absolute;
  7590. align-self:center;
  7591. padding:2px 2px 2px 0px;
  7592. box-sizing:border-box;
  7593. width:100%;
  7594. }
  7595. #u82197_text {
  7596. border-width:0px;
  7597. word-wrap:break-word;
  7598. text-transform:none;
  7599. visibility:hidden;
  7600. }
  7601. #u82198_img {
  7602. border-width:0px;
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:82px;
  7607. height:38px;
  7608. }
  7609. #u82198 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:861px;
  7613. top:152px;
  7614. width:82px;
  7615. height:38px;
  7616. display:flex;
  7617. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7618. font-weight:400;
  7619. font-style:normal;
  7620. font-size:12px;
  7621. color:#606266;
  7622. }
  7623. #u82198 .text {
  7624. position:absolute;
  7625. align-self:center;
  7626. padding:2px 2px 2px 0px;
  7627. box-sizing:border-box;
  7628. width:100%;
  7629. }
  7630. #u82198_text {
  7631. border-width:0px;
  7632. word-wrap:break-word;
  7633. text-transform:none;
  7634. visibility:hidden;
  7635. }
  7636. #u82199_img {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:0px;
  7640. top:0px;
  7641. width:82px;
  7642. height:38px;
  7643. }
  7644. #u82199 {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:943px;
  7648. top:152px;
  7649. width:82px;
  7650. height:38px;
  7651. display:flex;
  7652. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7653. font-weight:400;
  7654. font-style:normal;
  7655. font-size:12px;
  7656. color:#606266;
  7657. }
  7658. #u82199 .text {
  7659. position:absolute;
  7660. align-self:center;
  7661. padding:2px 2px 2px 0px;
  7662. box-sizing:border-box;
  7663. width:100%;
  7664. }
  7665. #u82199_text {
  7666. border-width:0px;
  7667. word-wrap:break-word;
  7668. text-transform:none;
  7669. visibility:hidden;
  7670. }
  7671. #u82200_img {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:0px;
  7675. top:0px;
  7676. width:60px;
  7677. height:38px;
  7678. }
  7679. #u82200 {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:1025px;
  7683. top:152px;
  7684. width:60px;
  7685. height:38px;
  7686. display:flex;
  7687. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. font-size:12px;
  7691. color:#606266;
  7692. }
  7693. #u82200 .text {
  7694. position:absolute;
  7695. align-self:center;
  7696. padding:2px 2px 2px 0px;
  7697. box-sizing:border-box;
  7698. width:100%;
  7699. }
  7700. #u82200_text {
  7701. border-width:0px;
  7702. word-wrap:break-word;
  7703. text-transform:none;
  7704. visibility:hidden;
  7705. }
  7706. #u82201_img {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:0px;
  7710. top:0px;
  7711. width:60px;
  7712. height:38px;
  7713. }
  7714. #u82201 {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:1085px;
  7718. top:152px;
  7719. width:60px;
  7720. height:38px;
  7721. display:flex;
  7722. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7723. font-weight:400;
  7724. font-style:normal;
  7725. font-size:12px;
  7726. color:#606266;
  7727. }
  7728. #u82201 .text {
  7729. position:absolute;
  7730. align-self:center;
  7731. padding:2px 2px 2px 0px;
  7732. box-sizing:border-box;
  7733. width:100%;
  7734. }
  7735. #u82201_text {
  7736. border-width:0px;
  7737. word-wrap:break-word;
  7738. text-transform:none;
  7739. visibility:hidden;
  7740. }
  7741. #u82202_img {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:0px;
  7745. top:0px;
  7746. width:67px;
  7747. height:38px;
  7748. }
  7749. #u82202 {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:1145px;
  7753. top:152px;
  7754. width:67px;
  7755. height:38px;
  7756. display:flex;
  7757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7758. font-weight:400;
  7759. font-style:normal;
  7760. font-size:12px;
  7761. color:#02A7F0;
  7762. }
  7763. #u82202 .text {
  7764. position:absolute;
  7765. align-self:center;
  7766. padding:2px 2px 2px 0px;
  7767. box-sizing:border-box;
  7768. width:100%;
  7769. }
  7770. #u82202_text {
  7771. border-width:0px;
  7772. word-wrap:break-word;
  7773. text-transform:none;
  7774. visibility:hidden;
  7775. }
  7776. #u82203_img {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:0px;
  7780. top:0px;
  7781. width:60px;
  7782. height:35px;
  7783. }
  7784. #u82203 {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:0px;
  7788. top:190px;
  7789. width:60px;
  7790. height:35px;
  7791. display:flex;
  7792. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7793. font-weight:400;
  7794. font-style:normal;
  7795. font-size:12px;
  7796. color:#606266;
  7797. }
  7798. #u82203 .text {
  7799. position:absolute;
  7800. align-self:center;
  7801. padding:2px 2px 2px 0px;
  7802. box-sizing:border-box;
  7803. width:100%;
  7804. }
  7805. #u82203_text {
  7806. border-width:0px;
  7807. word-wrap:break-word;
  7808. text-transform:none;
  7809. visibility:hidden;
  7810. }
  7811. #u82204_img {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:60px;
  7817. height:35px;
  7818. }
  7819. #u82204 {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:60px;
  7823. top:190px;
  7824. width:60px;
  7825. height:35px;
  7826. display:flex;
  7827. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7828. font-weight:400;
  7829. font-style:normal;
  7830. font-size:12px;
  7831. color:#606266;
  7832. }
  7833. #u82204 .text {
  7834. position:absolute;
  7835. align-self:center;
  7836. padding:2px 2px 2px 0px;
  7837. box-sizing:border-box;
  7838. width:100%;
  7839. }
  7840. #u82204_text {
  7841. border-width:0px;
  7842. word-wrap:break-word;
  7843. text-transform:none;
  7844. visibility:hidden;
  7845. }
  7846. #u82205_img {
  7847. border-width:0px;
  7848. position:absolute;
  7849. left:0px;
  7850. top:0px;
  7851. width:60px;
  7852. height:35px;
  7853. }
  7854. #u82205 {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:120px;
  7858. top:190px;
  7859. width:60px;
  7860. height:35px;
  7861. display:flex;
  7862. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:12px;
  7866. color:#606266;
  7867. }
  7868. #u82205 .text {
  7869. position:absolute;
  7870. align-self:center;
  7871. padding:2px 2px 2px 0px;
  7872. box-sizing:border-box;
  7873. width:100%;
  7874. }
  7875. #u82205_text {
  7876. border-width:0px;
  7877. word-wrap:break-word;
  7878. text-transform:none;
  7879. visibility:hidden;
  7880. }
  7881. #u82206_img {
  7882. border-width:0px;
  7883. position:absolute;
  7884. left:0px;
  7885. top:0px;
  7886. width:60px;
  7887. height:35px;
  7888. }
  7889. #u82206 {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:180px;
  7893. top:190px;
  7894. width:60px;
  7895. height:35px;
  7896. display:flex;
  7897. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7898. font-weight:400;
  7899. font-style:normal;
  7900. font-size:12px;
  7901. color:#606266;
  7902. }
  7903. #u82206 .text {
  7904. position:absolute;
  7905. align-self:center;
  7906. padding:2px 2px 2px 0px;
  7907. box-sizing:border-box;
  7908. width:100%;
  7909. }
  7910. #u82206_text {
  7911. border-width:0px;
  7912. word-wrap:break-word;
  7913. text-transform:none;
  7914. visibility:hidden;
  7915. }
  7916. #u82207_img {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:0px;
  7920. top:0px;
  7921. width:51px;
  7922. height:35px;
  7923. }
  7924. #u82207 {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:240px;
  7928. top:190px;
  7929. width:51px;
  7930. height:35px;
  7931. display:flex;
  7932. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7933. font-weight:400;
  7934. font-style:normal;
  7935. font-size:12px;
  7936. color:#606266;
  7937. }
  7938. #u82207 .text {
  7939. position:absolute;
  7940. align-self:center;
  7941. padding:2px 2px 2px 0px;
  7942. box-sizing:border-box;
  7943. width:100%;
  7944. }
  7945. #u82207_text {
  7946. border-width:0px;
  7947. word-wrap:break-word;
  7948. text-transform:none;
  7949. visibility:hidden;
  7950. }
  7951. #u82208_img {
  7952. border-width:0px;
  7953. position:absolute;
  7954. left:0px;
  7955. top:0px;
  7956. width:51px;
  7957. height:35px;
  7958. }
  7959. #u82208 {
  7960. border-width:0px;
  7961. position:absolute;
  7962. left:291px;
  7963. top:190px;
  7964. width:51px;
  7965. height:35px;
  7966. display:flex;
  7967. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7968. font-weight:400;
  7969. font-style:normal;
  7970. font-size:12px;
  7971. color:#606266;
  7972. }
  7973. #u82208 .text {
  7974. position:absolute;
  7975. align-self:center;
  7976. padding:2px 2px 2px 0px;
  7977. box-sizing:border-box;
  7978. width:100%;
  7979. }
  7980. #u82208_text {
  7981. border-width:0px;
  7982. word-wrap:break-word;
  7983. text-transform:none;
  7984. visibility:hidden;
  7985. }
  7986. #u82209_img {
  7987. border-width:0px;
  7988. position:absolute;
  7989. left:0px;
  7990. top:0px;
  7991. width:51px;
  7992. height:35px;
  7993. }
  7994. #u82209 {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:342px;
  7998. top:190px;
  7999. width:51px;
  8000. height:35px;
  8001. display:flex;
  8002. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8003. font-weight:400;
  8004. font-style:normal;
  8005. font-size:12px;
  8006. color:#606266;
  8007. }
  8008. #u82209 .text {
  8009. position:absolute;
  8010. align-self:center;
  8011. padding:2px 2px 2px 0px;
  8012. box-sizing:border-box;
  8013. width:100%;
  8014. }
  8015. #u82209_text {
  8016. border-width:0px;
  8017. word-wrap:break-word;
  8018. text-transform:none;
  8019. visibility:hidden;
  8020. }
  8021. #u82210_img {
  8022. border-width:0px;
  8023. position:absolute;
  8024. left:0px;
  8025. top:0px;
  8026. width:65px;
  8027. height:35px;
  8028. }
  8029. #u82210 {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:393px;
  8033. top:190px;
  8034. width:65px;
  8035. height:35px;
  8036. display:flex;
  8037. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8038. font-weight:400;
  8039. font-style:normal;
  8040. font-size:12px;
  8041. color:#606266;
  8042. }
  8043. #u82210 .text {
  8044. position:absolute;
  8045. align-self:center;
  8046. padding:2px 2px 2px 0px;
  8047. box-sizing:border-box;
  8048. width:100%;
  8049. }
  8050. #u82210_text {
  8051. border-width:0px;
  8052. word-wrap:break-word;
  8053. text-transform:none;
  8054. visibility:hidden;
  8055. }
  8056. #u82211_img {
  8057. border-width:0px;
  8058. position:absolute;
  8059. left:0px;
  8060. top:0px;
  8061. width:76px;
  8062. height:35px;
  8063. }
  8064. #u82211 {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:458px;
  8068. top:190px;
  8069. width:76px;
  8070. height:35px;
  8071. display:flex;
  8072. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8073. font-weight:400;
  8074. font-style:normal;
  8075. font-size:12px;
  8076. color:#606266;
  8077. }
  8078. #u82211 .text {
  8079. position:absolute;
  8080. align-self:center;
  8081. padding:2px 2px 2px 0px;
  8082. box-sizing:border-box;
  8083. width:100%;
  8084. }
  8085. #u82211_text {
  8086. border-width:0px;
  8087. word-wrap:break-word;
  8088. text-transform:none;
  8089. visibility:hidden;
  8090. }
  8091. #u82212_img {
  8092. border-width:0px;
  8093. position:absolute;
  8094. left:0px;
  8095. top:0px;
  8096. width:75px;
  8097. height:35px;
  8098. }
  8099. #u82212 {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:534px;
  8103. top:190px;
  8104. width:75px;
  8105. height:35px;
  8106. display:flex;
  8107. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8108. font-weight:400;
  8109. font-style:normal;
  8110. font-size:12px;
  8111. color:#606266;
  8112. }
  8113. #u82212 .text {
  8114. position:absolute;
  8115. align-self:center;
  8116. padding:2px 2px 2px 0px;
  8117. box-sizing:border-box;
  8118. width:100%;
  8119. }
  8120. #u82212_text {
  8121. border-width:0px;
  8122. word-wrap:break-word;
  8123. text-transform:none;
  8124. visibility:hidden;
  8125. }
  8126. #u82213_img {
  8127. border-width:0px;
  8128. position:absolute;
  8129. left:0px;
  8130. top:0px;
  8131. width:75px;
  8132. height:35px;
  8133. }
  8134. #u82213 {
  8135. border-width:0px;
  8136. position:absolute;
  8137. left:609px;
  8138. top:190px;
  8139. width:75px;
  8140. height:35px;
  8141. display:flex;
  8142. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8143. font-weight:400;
  8144. font-style:normal;
  8145. font-size:12px;
  8146. color:#606266;
  8147. }
  8148. #u82213 .text {
  8149. position:absolute;
  8150. align-self:center;
  8151. padding:2px 2px 2px 0px;
  8152. box-sizing:border-box;
  8153. width:100%;
  8154. }
  8155. #u82213_text {
  8156. border-width:0px;
  8157. word-wrap:break-word;
  8158. text-transform:none;
  8159. visibility:hidden;
  8160. }
  8161. #u82214_img {
  8162. border-width:0px;
  8163. position:absolute;
  8164. left:0px;
  8165. top:0px;
  8166. width:75px;
  8167. height:35px;
  8168. }
  8169. #u82214 {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:684px;
  8173. top:190px;
  8174. width:75px;
  8175. height:35px;
  8176. display:flex;
  8177. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8178. font-weight:400;
  8179. font-style:normal;
  8180. font-size:12px;
  8181. color:#606266;
  8182. }
  8183. #u82214 .text {
  8184. position:absolute;
  8185. align-self:center;
  8186. padding:2px 2px 2px 0px;
  8187. box-sizing:border-box;
  8188. width:100%;
  8189. }
  8190. #u82214_text {
  8191. border-width:0px;
  8192. word-wrap:break-word;
  8193. text-transform:none;
  8194. visibility:hidden;
  8195. }
  8196. #u82215_img {
  8197. border-width:0px;
  8198. position:absolute;
  8199. left:0px;
  8200. top:0px;
  8201. width:102px;
  8202. height:35px;
  8203. }
  8204. #u82215 {
  8205. border-width:0px;
  8206. position:absolute;
  8207. left:759px;
  8208. top:190px;
  8209. width:102px;
  8210. height:35px;
  8211. display:flex;
  8212. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8213. font-weight:400;
  8214. font-style:normal;
  8215. font-size:12px;
  8216. color:#606266;
  8217. }
  8218. #u82215 .text {
  8219. position:absolute;
  8220. align-self:center;
  8221. padding:2px 2px 2px 0px;
  8222. box-sizing:border-box;
  8223. width:100%;
  8224. }
  8225. #u82215_text {
  8226. border-width:0px;
  8227. word-wrap:break-word;
  8228. text-transform:none;
  8229. visibility:hidden;
  8230. }
  8231. #u82216_img {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:0px;
  8235. top:0px;
  8236. width:82px;
  8237. height:35px;
  8238. }
  8239. #u82216 {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:861px;
  8243. top:190px;
  8244. width:82px;
  8245. height:35px;
  8246. display:flex;
  8247. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8248. font-weight:400;
  8249. font-style:normal;
  8250. font-size:12px;
  8251. color:#606266;
  8252. }
  8253. #u82216 .text {
  8254. position:absolute;
  8255. align-self:center;
  8256. padding:2px 2px 2px 0px;
  8257. box-sizing:border-box;
  8258. width:100%;
  8259. }
  8260. #u82216_text {
  8261. border-width:0px;
  8262. word-wrap:break-word;
  8263. text-transform:none;
  8264. visibility:hidden;
  8265. }
  8266. #u82217_img {
  8267. border-width:0px;
  8268. position:absolute;
  8269. left:0px;
  8270. top:0px;
  8271. width:82px;
  8272. height:35px;
  8273. }
  8274. #u82217 {
  8275. border-width:0px;
  8276. position:absolute;
  8277. left:943px;
  8278. top:190px;
  8279. width:82px;
  8280. height:35px;
  8281. display:flex;
  8282. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8283. font-weight:400;
  8284. font-style:normal;
  8285. font-size:12px;
  8286. color:#606266;
  8287. }
  8288. #u82217 .text {
  8289. position:absolute;
  8290. align-self:center;
  8291. padding:2px 2px 2px 0px;
  8292. box-sizing:border-box;
  8293. width:100%;
  8294. }
  8295. #u82217_text {
  8296. border-width:0px;
  8297. word-wrap:break-word;
  8298. text-transform:none;
  8299. visibility:hidden;
  8300. }
  8301. #u82218_img {
  8302. border-width:0px;
  8303. position:absolute;
  8304. left:0px;
  8305. top:0px;
  8306. width:60px;
  8307. height:35px;
  8308. }
  8309. #u82218 {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:1025px;
  8313. top:190px;
  8314. width:60px;
  8315. height:35px;
  8316. display:flex;
  8317. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8318. font-weight:400;
  8319. font-style:normal;
  8320. font-size:12px;
  8321. color:#606266;
  8322. }
  8323. #u82218 .text {
  8324. position:absolute;
  8325. align-self:center;
  8326. padding:2px 2px 2px 0px;
  8327. box-sizing:border-box;
  8328. width:100%;
  8329. }
  8330. #u82218_text {
  8331. border-width:0px;
  8332. word-wrap:break-word;
  8333. text-transform:none;
  8334. visibility:hidden;
  8335. }
  8336. #u82219_img {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:0px;
  8340. top:0px;
  8341. width:60px;
  8342. height:35px;
  8343. }
  8344. #u82219 {
  8345. border-width:0px;
  8346. position:absolute;
  8347. left:1085px;
  8348. top:190px;
  8349. width:60px;
  8350. height:35px;
  8351. display:flex;
  8352. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8353. font-weight:400;
  8354. font-style:normal;
  8355. font-size:12px;
  8356. color:#606266;
  8357. }
  8358. #u82219 .text {
  8359. position:absolute;
  8360. align-self:center;
  8361. padding:2px 2px 2px 0px;
  8362. box-sizing:border-box;
  8363. width:100%;
  8364. }
  8365. #u82219_text {
  8366. border-width:0px;
  8367. word-wrap:break-word;
  8368. text-transform:none;
  8369. visibility:hidden;
  8370. }
  8371. #u82220_img {
  8372. border-width:0px;
  8373. position:absolute;
  8374. left:0px;
  8375. top:0px;
  8376. width:67px;
  8377. height:35px;
  8378. }
  8379. #u82220 {
  8380. border-width:0px;
  8381. position:absolute;
  8382. left:1145px;
  8383. top:190px;
  8384. width:67px;
  8385. height:35px;
  8386. display:flex;
  8387. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8388. font-weight:400;
  8389. font-style:normal;
  8390. font-size:12px;
  8391. color:#606266;
  8392. }
  8393. #u82220 .text {
  8394. position:absolute;
  8395. align-self:center;
  8396. padding:2px 2px 2px 0px;
  8397. box-sizing:border-box;
  8398. width:100%;
  8399. }
  8400. #u82220_text {
  8401. border-width:0px;
  8402. word-wrap:break-word;
  8403. text-transform:none;
  8404. visibility:hidden;
  8405. }
  8406. #u82221_img {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:0px;
  8410. top:0px;
  8411. width:60px;
  8412. height:34px;
  8413. }
  8414. #u82221 {
  8415. border-width:0px;
  8416. position:absolute;
  8417. left:0px;
  8418. top:225px;
  8419. width:60px;
  8420. height:34px;
  8421. display:flex;
  8422. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8423. font-weight:400;
  8424. font-style:normal;
  8425. font-size:12px;
  8426. color:#606266;
  8427. }
  8428. #u82221 .text {
  8429. position:absolute;
  8430. align-self:center;
  8431. padding:2px 2px 2px 0px;
  8432. box-sizing:border-box;
  8433. width:100%;
  8434. }
  8435. #u82221_text {
  8436. border-width:0px;
  8437. word-wrap:break-word;
  8438. text-transform:none;
  8439. visibility:hidden;
  8440. }
  8441. #u82222_img {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:0px;
  8445. top:0px;
  8446. width:60px;
  8447. height:34px;
  8448. }
  8449. #u82222 {
  8450. border-width:0px;
  8451. position:absolute;
  8452. left:60px;
  8453. top:225px;
  8454. width:60px;
  8455. height:34px;
  8456. display:flex;
  8457. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8458. font-weight:400;
  8459. font-style:normal;
  8460. font-size:12px;
  8461. color:#606266;
  8462. }
  8463. #u82222 .text {
  8464. position:absolute;
  8465. align-self:center;
  8466. padding:2px 2px 2px 0px;
  8467. box-sizing:border-box;
  8468. width:100%;
  8469. }
  8470. #u82222_text {
  8471. border-width:0px;
  8472. word-wrap:break-word;
  8473. text-transform:none;
  8474. visibility:hidden;
  8475. }
  8476. #u82223_img {
  8477. border-width:0px;
  8478. position:absolute;
  8479. left:0px;
  8480. top:0px;
  8481. width:60px;
  8482. height:34px;
  8483. }
  8484. #u82223 {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:120px;
  8488. top:225px;
  8489. width:60px;
  8490. height:34px;
  8491. display:flex;
  8492. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8493. font-weight:400;
  8494. font-style:normal;
  8495. font-size:12px;
  8496. color:#606266;
  8497. }
  8498. #u82223 .text {
  8499. position:absolute;
  8500. align-self:center;
  8501. padding:2px 2px 2px 0px;
  8502. box-sizing:border-box;
  8503. width:100%;
  8504. }
  8505. #u82223_text {
  8506. border-width:0px;
  8507. word-wrap:break-word;
  8508. text-transform:none;
  8509. visibility:hidden;
  8510. }
  8511. #u82224_img {
  8512. border-width:0px;
  8513. position:absolute;
  8514. left:0px;
  8515. top:0px;
  8516. width:60px;
  8517. height:34px;
  8518. }
  8519. #u82224 {
  8520. border-width:0px;
  8521. position:absolute;
  8522. left:180px;
  8523. top:225px;
  8524. width:60px;
  8525. height:34px;
  8526. display:flex;
  8527. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8528. font-weight:400;
  8529. font-style:normal;
  8530. font-size:12px;
  8531. color:#606266;
  8532. }
  8533. #u82224 .text {
  8534. position:absolute;
  8535. align-self:center;
  8536. padding:2px 2px 2px 0px;
  8537. box-sizing:border-box;
  8538. width:100%;
  8539. }
  8540. #u82224_text {
  8541. border-width:0px;
  8542. word-wrap:break-word;
  8543. text-transform:none;
  8544. visibility:hidden;
  8545. }
  8546. #u82225_img {
  8547. border-width:0px;
  8548. position:absolute;
  8549. left:0px;
  8550. top:0px;
  8551. width:51px;
  8552. height:34px;
  8553. }
  8554. #u82225 {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:240px;
  8558. top:225px;
  8559. width:51px;
  8560. height:34px;
  8561. display:flex;
  8562. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8563. font-weight:400;
  8564. font-style:normal;
  8565. font-size:12px;
  8566. color:#606266;
  8567. }
  8568. #u82225 .text {
  8569. position:absolute;
  8570. align-self:center;
  8571. padding:2px 2px 2px 0px;
  8572. box-sizing:border-box;
  8573. width:100%;
  8574. }
  8575. #u82225_text {
  8576. border-width:0px;
  8577. word-wrap:break-word;
  8578. text-transform:none;
  8579. visibility:hidden;
  8580. }
  8581. #u82226_img {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:0px;
  8585. top:0px;
  8586. width:51px;
  8587. height:34px;
  8588. }
  8589. #u82226 {
  8590. border-width:0px;
  8591. position:absolute;
  8592. left:291px;
  8593. top:225px;
  8594. width:51px;
  8595. height:34px;
  8596. display:flex;
  8597. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8598. font-weight:400;
  8599. font-style:normal;
  8600. font-size:12px;
  8601. color:#606266;
  8602. }
  8603. #u82226 .text {
  8604. position:absolute;
  8605. align-self:center;
  8606. padding:2px 2px 2px 0px;
  8607. box-sizing:border-box;
  8608. width:100%;
  8609. }
  8610. #u82226_text {
  8611. border-width:0px;
  8612. word-wrap:break-word;
  8613. text-transform:none;
  8614. visibility:hidden;
  8615. }
  8616. #u82227_img {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:51px;
  8622. height:34px;
  8623. }
  8624. #u82227 {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:342px;
  8628. top:225px;
  8629. width:51px;
  8630. height:34px;
  8631. display:flex;
  8632. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8633. font-weight:400;
  8634. font-style:normal;
  8635. font-size:12px;
  8636. color:#606266;
  8637. }
  8638. #u82227 .text {
  8639. position:absolute;
  8640. align-self:center;
  8641. padding:2px 2px 2px 0px;
  8642. box-sizing:border-box;
  8643. width:100%;
  8644. }
  8645. #u82227_text {
  8646. border-width:0px;
  8647. word-wrap:break-word;
  8648. text-transform:none;
  8649. visibility:hidden;
  8650. }
  8651. #u82228_img {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:65px;
  8657. height:34px;
  8658. }
  8659. #u82228 {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:393px;
  8663. top:225px;
  8664. width:65px;
  8665. height:34px;
  8666. display:flex;
  8667. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8668. font-weight:400;
  8669. font-style:normal;
  8670. font-size:12px;
  8671. color:#606266;
  8672. }
  8673. #u82228 .text {
  8674. position:absolute;
  8675. align-self:center;
  8676. padding:2px 2px 2px 0px;
  8677. box-sizing:border-box;
  8678. width:100%;
  8679. }
  8680. #u82228_text {
  8681. border-width:0px;
  8682. word-wrap:break-word;
  8683. text-transform:none;
  8684. visibility:hidden;
  8685. }
  8686. #u82229_img {
  8687. border-width:0px;
  8688. position:absolute;
  8689. left:0px;
  8690. top:0px;
  8691. width:76px;
  8692. height:34px;
  8693. }
  8694. #u82229 {
  8695. border-width:0px;
  8696. position:absolute;
  8697. left:458px;
  8698. top:225px;
  8699. width:76px;
  8700. height:34px;
  8701. display:flex;
  8702. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8703. font-weight:400;
  8704. font-style:normal;
  8705. font-size:12px;
  8706. color:#606266;
  8707. }
  8708. #u82229 .text {
  8709. position:absolute;
  8710. align-self:center;
  8711. padding:2px 2px 2px 0px;
  8712. box-sizing:border-box;
  8713. width:100%;
  8714. }
  8715. #u82229_text {
  8716. border-width:0px;
  8717. word-wrap:break-word;
  8718. text-transform:none;
  8719. visibility:hidden;
  8720. }
  8721. #u82230_img {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:0px;
  8725. top:0px;
  8726. width:75px;
  8727. height:34px;
  8728. }
  8729. #u82230 {
  8730. border-width:0px;
  8731. position:absolute;
  8732. left:534px;
  8733. top:225px;
  8734. width:75px;
  8735. height:34px;
  8736. display:flex;
  8737. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8738. font-weight:400;
  8739. font-style:normal;
  8740. font-size:12px;
  8741. color:#606266;
  8742. }
  8743. #u82230 .text {
  8744. position:absolute;
  8745. align-self:center;
  8746. padding:2px 2px 2px 0px;
  8747. box-sizing:border-box;
  8748. width:100%;
  8749. }
  8750. #u82230_text {
  8751. border-width:0px;
  8752. word-wrap:break-word;
  8753. text-transform:none;
  8754. visibility:hidden;
  8755. }
  8756. #u82231_img {
  8757. border-width:0px;
  8758. position:absolute;
  8759. left:0px;
  8760. top:0px;
  8761. width:75px;
  8762. height:34px;
  8763. }
  8764. #u82231 {
  8765. border-width:0px;
  8766. position:absolute;
  8767. left:609px;
  8768. top:225px;
  8769. width:75px;
  8770. height:34px;
  8771. display:flex;
  8772. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8773. font-weight:400;
  8774. font-style:normal;
  8775. font-size:12px;
  8776. color:#606266;
  8777. }
  8778. #u82231 .text {
  8779. position:absolute;
  8780. align-self:center;
  8781. padding:2px 2px 2px 0px;
  8782. box-sizing:border-box;
  8783. width:100%;
  8784. }
  8785. #u82231_text {
  8786. border-width:0px;
  8787. word-wrap:break-word;
  8788. text-transform:none;
  8789. visibility:hidden;
  8790. }
  8791. #u82232_img {
  8792. border-width:0px;
  8793. position:absolute;
  8794. left:0px;
  8795. top:0px;
  8796. width:75px;
  8797. height:34px;
  8798. }
  8799. #u82232 {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:684px;
  8803. top:225px;
  8804. width:75px;
  8805. height:34px;
  8806. display:flex;
  8807. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8808. font-weight:400;
  8809. font-style:normal;
  8810. font-size:12px;
  8811. color:#606266;
  8812. }
  8813. #u82232 .text {
  8814. position:absolute;
  8815. align-self:center;
  8816. padding:2px 2px 2px 0px;
  8817. box-sizing:border-box;
  8818. width:100%;
  8819. }
  8820. #u82232_text {
  8821. border-width:0px;
  8822. word-wrap:break-word;
  8823. text-transform:none;
  8824. visibility:hidden;
  8825. }
  8826. #u82233_img {
  8827. border-width:0px;
  8828. position:absolute;
  8829. left:0px;
  8830. top:0px;
  8831. width:102px;
  8832. height:34px;
  8833. }
  8834. #u82233 {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:759px;
  8838. top:225px;
  8839. width:102px;
  8840. height:34px;
  8841. display:flex;
  8842. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8843. font-weight:400;
  8844. font-style:normal;
  8845. font-size:12px;
  8846. color:#606266;
  8847. }
  8848. #u82233 .text {
  8849. position:absolute;
  8850. align-self:center;
  8851. padding:2px 2px 2px 0px;
  8852. box-sizing:border-box;
  8853. width:100%;
  8854. }
  8855. #u82233_text {
  8856. border-width:0px;
  8857. word-wrap:break-word;
  8858. text-transform:none;
  8859. visibility:hidden;
  8860. }
  8861. #u82234_img {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:0px;
  8865. top:0px;
  8866. width:82px;
  8867. height:34px;
  8868. }
  8869. #u82234 {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:861px;
  8873. top:225px;
  8874. width:82px;
  8875. height:34px;
  8876. display:flex;
  8877. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8878. font-weight:400;
  8879. font-style:normal;
  8880. font-size:12px;
  8881. color:#606266;
  8882. }
  8883. #u82234 .text {
  8884. position:absolute;
  8885. align-self:center;
  8886. padding:2px 2px 2px 0px;
  8887. box-sizing:border-box;
  8888. width:100%;
  8889. }
  8890. #u82234_text {
  8891. border-width:0px;
  8892. word-wrap:break-word;
  8893. text-transform:none;
  8894. visibility:hidden;
  8895. }
  8896. #u82235_img {
  8897. border-width:0px;
  8898. position:absolute;
  8899. left:0px;
  8900. top:0px;
  8901. width:82px;
  8902. height:34px;
  8903. }
  8904. #u82235 {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:943px;
  8908. top:225px;
  8909. width:82px;
  8910. height:34px;
  8911. display:flex;
  8912. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8913. font-weight:400;
  8914. font-style:normal;
  8915. font-size:12px;
  8916. color:#606266;
  8917. }
  8918. #u82235 .text {
  8919. position:absolute;
  8920. align-self:center;
  8921. padding:2px 2px 2px 0px;
  8922. box-sizing:border-box;
  8923. width:100%;
  8924. }
  8925. #u82235_text {
  8926. border-width:0px;
  8927. word-wrap:break-word;
  8928. text-transform:none;
  8929. visibility:hidden;
  8930. }
  8931. #u82236_img {
  8932. border-width:0px;
  8933. position:absolute;
  8934. left:0px;
  8935. top:0px;
  8936. width:60px;
  8937. height:34px;
  8938. }
  8939. #u82236 {
  8940. border-width:0px;
  8941. position:absolute;
  8942. left:1025px;
  8943. top:225px;
  8944. width:60px;
  8945. height:34px;
  8946. display:flex;
  8947. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8948. font-weight:400;
  8949. font-style:normal;
  8950. font-size:12px;
  8951. color:#606266;
  8952. }
  8953. #u82236 .text {
  8954. position:absolute;
  8955. align-self:center;
  8956. padding:2px 2px 2px 0px;
  8957. box-sizing:border-box;
  8958. width:100%;
  8959. }
  8960. #u82236_text {
  8961. border-width:0px;
  8962. word-wrap:break-word;
  8963. text-transform:none;
  8964. visibility:hidden;
  8965. }
  8966. #u82237_img {
  8967. border-width:0px;
  8968. position:absolute;
  8969. left:0px;
  8970. top:0px;
  8971. width:60px;
  8972. height:34px;
  8973. }
  8974. #u82237 {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:1085px;
  8978. top:225px;
  8979. width:60px;
  8980. height:34px;
  8981. display:flex;
  8982. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8983. font-weight:400;
  8984. font-style:normal;
  8985. font-size:12px;
  8986. color:#606266;
  8987. }
  8988. #u82237 .text {
  8989. position:absolute;
  8990. align-self:center;
  8991. padding:2px 2px 2px 0px;
  8992. box-sizing:border-box;
  8993. width:100%;
  8994. }
  8995. #u82237_text {
  8996. border-width:0px;
  8997. word-wrap:break-word;
  8998. text-transform:none;
  8999. visibility:hidden;
  9000. }
  9001. #u82238_img {
  9002. border-width:0px;
  9003. position:absolute;
  9004. left:0px;
  9005. top:0px;
  9006. width:67px;
  9007. height:34px;
  9008. }
  9009. #u82238 {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:1145px;
  9013. top:225px;
  9014. width:67px;
  9015. height:34px;
  9016. display:flex;
  9017. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9018. font-weight:400;
  9019. font-style:normal;
  9020. font-size:12px;
  9021. color:#606266;
  9022. }
  9023. #u82238 .text {
  9024. position:absolute;
  9025. align-self:center;
  9026. padding:2px 2px 2px 0px;
  9027. box-sizing:border-box;
  9028. width:100%;
  9029. }
  9030. #u82238_text {
  9031. border-width:0px;
  9032. word-wrap:break-word;
  9033. text-transform:none;
  9034. visibility:hidden;
  9035. }
  9036. #u82239_img {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:0px;
  9040. top:0px;
  9041. width:60px;
  9042. height:32px;
  9043. }
  9044. #u82239 {
  9045. border-width:0px;
  9046. position:absolute;
  9047. left:0px;
  9048. top:259px;
  9049. width:60px;
  9050. height:32px;
  9051. display:flex;
  9052. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9053. font-weight:400;
  9054. font-style:normal;
  9055. font-size:12px;
  9056. color:#606266;
  9057. }
  9058. #u82239 .text {
  9059. position:absolute;
  9060. align-self:center;
  9061. padding:2px 2px 2px 0px;
  9062. box-sizing:border-box;
  9063. width:100%;
  9064. }
  9065. #u82239_text {
  9066. border-width:0px;
  9067. word-wrap:break-word;
  9068. text-transform:none;
  9069. visibility:hidden;
  9070. }
  9071. #u82240_img {
  9072. border-width:0px;
  9073. position:absolute;
  9074. left:0px;
  9075. top:0px;
  9076. width:60px;
  9077. height:32px;
  9078. }
  9079. #u82240 {
  9080. border-width:0px;
  9081. position:absolute;
  9082. left:60px;
  9083. top:259px;
  9084. width:60px;
  9085. height:32px;
  9086. display:flex;
  9087. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9088. font-weight:400;
  9089. font-style:normal;
  9090. font-size:12px;
  9091. color:#606266;
  9092. }
  9093. #u82240 .text {
  9094. position:absolute;
  9095. align-self:center;
  9096. padding:2px 2px 2px 0px;
  9097. box-sizing:border-box;
  9098. width:100%;
  9099. }
  9100. #u82240_text {
  9101. border-width:0px;
  9102. word-wrap:break-word;
  9103. text-transform:none;
  9104. visibility:hidden;
  9105. }
  9106. #u82241_img {
  9107. border-width:0px;
  9108. position:absolute;
  9109. left:0px;
  9110. top:0px;
  9111. width:60px;
  9112. height:32px;
  9113. }
  9114. #u82241 {
  9115. border-width:0px;
  9116. position:absolute;
  9117. left:120px;
  9118. top:259px;
  9119. width:60px;
  9120. height:32px;
  9121. display:flex;
  9122. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9123. font-weight:400;
  9124. font-style:normal;
  9125. font-size:12px;
  9126. color:#606266;
  9127. }
  9128. #u82241 .text {
  9129. position:absolute;
  9130. align-self:center;
  9131. padding:2px 2px 2px 0px;
  9132. box-sizing:border-box;
  9133. width:100%;
  9134. }
  9135. #u82241_text {
  9136. border-width:0px;
  9137. word-wrap:break-word;
  9138. text-transform:none;
  9139. visibility:hidden;
  9140. }
  9141. #u82242_img {
  9142. border-width:0px;
  9143. position:absolute;
  9144. left:0px;
  9145. top:0px;
  9146. width:60px;
  9147. height:32px;
  9148. }
  9149. #u82242 {
  9150. border-width:0px;
  9151. position:absolute;
  9152. left:180px;
  9153. top:259px;
  9154. width:60px;
  9155. height:32px;
  9156. display:flex;
  9157. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9158. font-weight:400;
  9159. font-style:normal;
  9160. font-size:12px;
  9161. color:#606266;
  9162. }
  9163. #u82242 .text {
  9164. position:absolute;
  9165. align-self:center;
  9166. padding:2px 2px 2px 0px;
  9167. box-sizing:border-box;
  9168. width:100%;
  9169. }
  9170. #u82242_text {
  9171. border-width:0px;
  9172. word-wrap:break-word;
  9173. text-transform:none;
  9174. visibility:hidden;
  9175. }
  9176. #u82243_img {
  9177. border-width:0px;
  9178. position:absolute;
  9179. left:0px;
  9180. top:0px;
  9181. width:51px;
  9182. height:32px;
  9183. }
  9184. #u82243 {
  9185. border-width:0px;
  9186. position:absolute;
  9187. left:240px;
  9188. top:259px;
  9189. width:51px;
  9190. height:32px;
  9191. display:flex;
  9192. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9193. font-weight:400;
  9194. font-style:normal;
  9195. font-size:12px;
  9196. color:#606266;
  9197. }
  9198. #u82243 .text {
  9199. position:absolute;
  9200. align-self:center;
  9201. padding:2px 2px 2px 0px;
  9202. box-sizing:border-box;
  9203. width:100%;
  9204. }
  9205. #u82243_text {
  9206. border-width:0px;
  9207. word-wrap:break-word;
  9208. text-transform:none;
  9209. visibility:hidden;
  9210. }
  9211. #u82244_img {
  9212. border-width:0px;
  9213. position:absolute;
  9214. left:0px;
  9215. top:0px;
  9216. width:51px;
  9217. height:32px;
  9218. }
  9219. #u82244 {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:291px;
  9223. top:259px;
  9224. width:51px;
  9225. height:32px;
  9226. display:flex;
  9227. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9228. font-weight:400;
  9229. font-style:normal;
  9230. font-size:12px;
  9231. color:#606266;
  9232. }
  9233. #u82244 .text {
  9234. position:absolute;
  9235. align-self:center;
  9236. padding:2px 2px 2px 0px;
  9237. box-sizing:border-box;
  9238. width:100%;
  9239. }
  9240. #u82244_text {
  9241. border-width:0px;
  9242. word-wrap:break-word;
  9243. text-transform:none;
  9244. visibility:hidden;
  9245. }
  9246. #u82245_img {
  9247. border-width:0px;
  9248. position:absolute;
  9249. left:0px;
  9250. top:0px;
  9251. width:51px;
  9252. height:32px;
  9253. }
  9254. #u82245 {
  9255. border-width:0px;
  9256. position:absolute;
  9257. left:342px;
  9258. top:259px;
  9259. width:51px;
  9260. height:32px;
  9261. display:flex;
  9262. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9263. font-weight:400;
  9264. font-style:normal;
  9265. font-size:12px;
  9266. color:#606266;
  9267. }
  9268. #u82245 .text {
  9269. position:absolute;
  9270. align-self:center;
  9271. padding:2px 2px 2px 0px;
  9272. box-sizing:border-box;
  9273. width:100%;
  9274. }
  9275. #u82245_text {
  9276. border-width:0px;
  9277. word-wrap:break-word;
  9278. text-transform:none;
  9279. visibility:hidden;
  9280. }
  9281. #u82246_img {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:0px;
  9285. top:0px;
  9286. width:65px;
  9287. height:32px;
  9288. }
  9289. #u82246 {
  9290. border-width:0px;
  9291. position:absolute;
  9292. left:393px;
  9293. top:259px;
  9294. width:65px;
  9295. height:32px;
  9296. display:flex;
  9297. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9298. font-weight:400;
  9299. font-style:normal;
  9300. font-size:12px;
  9301. color:#606266;
  9302. }
  9303. #u82246 .text {
  9304. position:absolute;
  9305. align-self:center;
  9306. padding:2px 2px 2px 0px;
  9307. box-sizing:border-box;
  9308. width:100%;
  9309. }
  9310. #u82246_text {
  9311. border-width:0px;
  9312. word-wrap:break-word;
  9313. text-transform:none;
  9314. visibility:hidden;
  9315. }
  9316. #u82247_img {
  9317. border-width:0px;
  9318. position:absolute;
  9319. left:0px;
  9320. top:0px;
  9321. width:76px;
  9322. height:32px;
  9323. }
  9324. #u82247 {
  9325. border-width:0px;
  9326. position:absolute;
  9327. left:458px;
  9328. top:259px;
  9329. width:76px;
  9330. height:32px;
  9331. display:flex;
  9332. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9333. font-weight:400;
  9334. font-style:normal;
  9335. font-size:12px;
  9336. color:#606266;
  9337. }
  9338. #u82247 .text {
  9339. position:absolute;
  9340. align-self:center;
  9341. padding:2px 2px 2px 0px;
  9342. box-sizing:border-box;
  9343. width:100%;
  9344. }
  9345. #u82247_text {
  9346. border-width:0px;
  9347. word-wrap:break-word;
  9348. text-transform:none;
  9349. visibility:hidden;
  9350. }
  9351. #u82248_img {
  9352. border-width:0px;
  9353. position:absolute;
  9354. left:0px;
  9355. top:0px;
  9356. width:75px;
  9357. height:32px;
  9358. }
  9359. #u82248 {
  9360. border-width:0px;
  9361. position:absolute;
  9362. left:534px;
  9363. top:259px;
  9364. width:75px;
  9365. height:32px;
  9366. display:flex;
  9367. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9368. font-weight:400;
  9369. font-style:normal;
  9370. font-size:12px;
  9371. color:#606266;
  9372. }
  9373. #u82248 .text {
  9374. position:absolute;
  9375. align-self:center;
  9376. padding:2px 2px 2px 0px;
  9377. box-sizing:border-box;
  9378. width:100%;
  9379. }
  9380. #u82248_text {
  9381. border-width:0px;
  9382. word-wrap:break-word;
  9383. text-transform:none;
  9384. visibility:hidden;
  9385. }
  9386. #u82249_img {
  9387. border-width:0px;
  9388. position:absolute;
  9389. left:0px;
  9390. top:0px;
  9391. width:75px;
  9392. height:32px;
  9393. }
  9394. #u82249 {
  9395. border-width:0px;
  9396. position:absolute;
  9397. left:609px;
  9398. top:259px;
  9399. width:75px;
  9400. height:32px;
  9401. display:flex;
  9402. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9403. font-weight:400;
  9404. font-style:normal;
  9405. font-size:12px;
  9406. color:#606266;
  9407. }
  9408. #u82249 .text {
  9409. position:absolute;
  9410. align-self:center;
  9411. padding:2px 2px 2px 0px;
  9412. box-sizing:border-box;
  9413. width:100%;
  9414. }
  9415. #u82249_text {
  9416. border-width:0px;
  9417. word-wrap:break-word;
  9418. text-transform:none;
  9419. visibility:hidden;
  9420. }
  9421. #u82250_img {
  9422. border-width:0px;
  9423. position:absolute;
  9424. left:0px;
  9425. top:0px;
  9426. width:75px;
  9427. height:32px;
  9428. }
  9429. #u82250 {
  9430. border-width:0px;
  9431. position:absolute;
  9432. left:684px;
  9433. top:259px;
  9434. width:75px;
  9435. height:32px;
  9436. display:flex;
  9437. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9438. font-weight:400;
  9439. font-style:normal;
  9440. font-size:12px;
  9441. color:#606266;
  9442. }
  9443. #u82250 .text {
  9444. position:absolute;
  9445. align-self:center;
  9446. padding:2px 2px 2px 0px;
  9447. box-sizing:border-box;
  9448. width:100%;
  9449. }
  9450. #u82250_text {
  9451. border-width:0px;
  9452. word-wrap:break-word;
  9453. text-transform:none;
  9454. visibility:hidden;
  9455. }
  9456. #u82251_img {
  9457. border-width:0px;
  9458. position:absolute;
  9459. left:0px;
  9460. top:0px;
  9461. width:102px;
  9462. height:32px;
  9463. }
  9464. #u82251 {
  9465. border-width:0px;
  9466. position:absolute;
  9467. left:759px;
  9468. top:259px;
  9469. width:102px;
  9470. height:32px;
  9471. display:flex;
  9472. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9473. font-weight:400;
  9474. font-style:normal;
  9475. font-size:12px;
  9476. color:#606266;
  9477. }
  9478. #u82251 .text {
  9479. position:absolute;
  9480. align-self:center;
  9481. padding:2px 2px 2px 0px;
  9482. box-sizing:border-box;
  9483. width:100%;
  9484. }
  9485. #u82251_text {
  9486. border-width:0px;
  9487. word-wrap:break-word;
  9488. text-transform:none;
  9489. visibility:hidden;
  9490. }
  9491. #u82252_img {
  9492. border-width:0px;
  9493. position:absolute;
  9494. left:0px;
  9495. top:0px;
  9496. width:82px;
  9497. height:32px;
  9498. }
  9499. #u82252 {
  9500. border-width:0px;
  9501. position:absolute;
  9502. left:861px;
  9503. top:259px;
  9504. width:82px;
  9505. height:32px;
  9506. display:flex;
  9507. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9508. font-weight:400;
  9509. font-style:normal;
  9510. font-size:12px;
  9511. color:#606266;
  9512. }
  9513. #u82252 .text {
  9514. position:absolute;
  9515. align-self:center;
  9516. padding:2px 2px 2px 0px;
  9517. box-sizing:border-box;
  9518. width:100%;
  9519. }
  9520. #u82252_text {
  9521. border-width:0px;
  9522. word-wrap:break-word;
  9523. text-transform:none;
  9524. visibility:hidden;
  9525. }
  9526. #u82253_img {
  9527. border-width:0px;
  9528. position:absolute;
  9529. left:0px;
  9530. top:0px;
  9531. width:82px;
  9532. height:32px;
  9533. }
  9534. #u82253 {
  9535. border-width:0px;
  9536. position:absolute;
  9537. left:943px;
  9538. top:259px;
  9539. width:82px;
  9540. height:32px;
  9541. display:flex;
  9542. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9543. font-weight:400;
  9544. font-style:normal;
  9545. font-size:12px;
  9546. color:#606266;
  9547. }
  9548. #u82253 .text {
  9549. position:absolute;
  9550. align-self:center;
  9551. padding:2px 2px 2px 0px;
  9552. box-sizing:border-box;
  9553. width:100%;
  9554. }
  9555. #u82253_text {
  9556. border-width:0px;
  9557. word-wrap:break-word;
  9558. text-transform:none;
  9559. visibility:hidden;
  9560. }
  9561. #u82254_img {
  9562. border-width:0px;
  9563. position:absolute;
  9564. left:0px;
  9565. top:0px;
  9566. width:60px;
  9567. height:32px;
  9568. }
  9569. #u82254 {
  9570. border-width:0px;
  9571. position:absolute;
  9572. left:1025px;
  9573. top:259px;
  9574. width:60px;
  9575. height:32px;
  9576. display:flex;
  9577. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9578. font-weight:400;
  9579. font-style:normal;
  9580. font-size:12px;
  9581. color:#606266;
  9582. }
  9583. #u82254 .text {
  9584. position:absolute;
  9585. align-self:center;
  9586. padding:2px 2px 2px 0px;
  9587. box-sizing:border-box;
  9588. width:100%;
  9589. }
  9590. #u82254_text {
  9591. border-width:0px;
  9592. word-wrap:break-word;
  9593. text-transform:none;
  9594. visibility:hidden;
  9595. }
  9596. #u82255_img {
  9597. border-width:0px;
  9598. position:absolute;
  9599. left:0px;
  9600. top:0px;
  9601. width:60px;
  9602. height:32px;
  9603. }
  9604. #u82255 {
  9605. border-width:0px;
  9606. position:absolute;
  9607. left:1085px;
  9608. top:259px;
  9609. width:60px;
  9610. height:32px;
  9611. display:flex;
  9612. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9613. font-weight:400;
  9614. font-style:normal;
  9615. font-size:12px;
  9616. color:#606266;
  9617. }
  9618. #u82255 .text {
  9619. position:absolute;
  9620. align-self:center;
  9621. padding:2px 2px 2px 0px;
  9622. box-sizing:border-box;
  9623. width:100%;
  9624. }
  9625. #u82255_text {
  9626. border-width:0px;
  9627. word-wrap:break-word;
  9628. text-transform:none;
  9629. visibility:hidden;
  9630. }
  9631. #u82256_img {
  9632. border-width:0px;
  9633. position:absolute;
  9634. left:0px;
  9635. top:0px;
  9636. width:67px;
  9637. height:32px;
  9638. }
  9639. #u82256 {
  9640. border-width:0px;
  9641. position:absolute;
  9642. left:1145px;
  9643. top:259px;
  9644. width:67px;
  9645. height:32px;
  9646. display:flex;
  9647. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9648. font-weight:400;
  9649. font-style:normal;
  9650. font-size:12px;
  9651. color:#606266;
  9652. }
  9653. #u82256 .text {
  9654. position:absolute;
  9655. align-self:center;
  9656. padding:2px 2px 2px 0px;
  9657. box-sizing:border-box;
  9658. width:100%;
  9659. }
  9660. #u82256_text {
  9661. border-width:0px;
  9662. word-wrap:break-word;
  9663. text-transform:none;
  9664. visibility:hidden;
  9665. }
  9666. #u82257_img {
  9667. border-width:0px;
  9668. position:absolute;
  9669. left:0px;
  9670. top:0px;
  9671. width:60px;
  9672. height:30px;
  9673. }
  9674. #u82257 {
  9675. border-width:0px;
  9676. position:absolute;
  9677. left:0px;
  9678. top:291px;
  9679. width:60px;
  9680. height:30px;
  9681. display:flex;
  9682. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9683. font-weight:400;
  9684. font-style:normal;
  9685. font-size:12px;
  9686. color:#606266;
  9687. }
  9688. #u82257 .text {
  9689. position:absolute;
  9690. align-self:center;
  9691. padding:2px 2px 2px 0px;
  9692. box-sizing:border-box;
  9693. width:100%;
  9694. }
  9695. #u82257_text {
  9696. border-width:0px;
  9697. word-wrap:break-word;
  9698. text-transform:none;
  9699. visibility:hidden;
  9700. }
  9701. #u82258_img {
  9702. border-width:0px;
  9703. position:absolute;
  9704. left:0px;
  9705. top:0px;
  9706. width:60px;
  9707. height:30px;
  9708. }
  9709. #u82258 {
  9710. border-width:0px;
  9711. position:absolute;
  9712. left:60px;
  9713. top:291px;
  9714. width:60px;
  9715. height:30px;
  9716. display:flex;
  9717. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9718. font-weight:400;
  9719. font-style:normal;
  9720. font-size:12px;
  9721. color:#606266;
  9722. }
  9723. #u82258 .text {
  9724. position:absolute;
  9725. align-self:center;
  9726. padding:2px 2px 2px 0px;
  9727. box-sizing:border-box;
  9728. width:100%;
  9729. }
  9730. #u82258_text {
  9731. border-width:0px;
  9732. word-wrap:break-word;
  9733. text-transform:none;
  9734. visibility:hidden;
  9735. }
  9736. #u82259_img {
  9737. border-width:0px;
  9738. position:absolute;
  9739. left:0px;
  9740. top:0px;
  9741. width:60px;
  9742. height:30px;
  9743. }
  9744. #u82259 {
  9745. border-width:0px;
  9746. position:absolute;
  9747. left:120px;
  9748. top:291px;
  9749. width:60px;
  9750. height:30px;
  9751. display:flex;
  9752. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9753. font-weight:400;
  9754. font-style:normal;
  9755. font-size:12px;
  9756. color:#606266;
  9757. }
  9758. #u82259 .text {
  9759. position:absolute;
  9760. align-self:center;
  9761. padding:2px 2px 2px 0px;
  9762. box-sizing:border-box;
  9763. width:100%;
  9764. }
  9765. #u82259_text {
  9766. border-width:0px;
  9767. word-wrap:break-word;
  9768. text-transform:none;
  9769. visibility:hidden;
  9770. }
  9771. #u82260_img {
  9772. border-width:0px;
  9773. position:absolute;
  9774. left:0px;
  9775. top:0px;
  9776. width:60px;
  9777. height:30px;
  9778. }
  9779. #u82260 {
  9780. border-width:0px;
  9781. position:absolute;
  9782. left:180px;
  9783. top:291px;
  9784. width:60px;
  9785. height:30px;
  9786. display:flex;
  9787. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9788. font-weight:400;
  9789. font-style:normal;
  9790. font-size:12px;
  9791. color:#606266;
  9792. }
  9793. #u82260 .text {
  9794. position:absolute;
  9795. align-self:center;
  9796. padding:2px 2px 2px 0px;
  9797. box-sizing:border-box;
  9798. width:100%;
  9799. }
  9800. #u82260_text {
  9801. border-width:0px;
  9802. word-wrap:break-word;
  9803. text-transform:none;
  9804. visibility:hidden;
  9805. }
  9806. #u82261_img {
  9807. border-width:0px;
  9808. position:absolute;
  9809. left:0px;
  9810. top:0px;
  9811. width:51px;
  9812. height:30px;
  9813. }
  9814. #u82261 {
  9815. border-width:0px;
  9816. position:absolute;
  9817. left:240px;
  9818. top:291px;
  9819. width:51px;
  9820. height:30px;
  9821. display:flex;
  9822. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9823. font-weight:400;
  9824. font-style:normal;
  9825. font-size:12px;
  9826. color:#606266;
  9827. }
  9828. #u82261 .text {
  9829. position:absolute;
  9830. align-self:center;
  9831. padding:2px 2px 2px 0px;
  9832. box-sizing:border-box;
  9833. width:100%;
  9834. }
  9835. #u82261_text {
  9836. border-width:0px;
  9837. word-wrap:break-word;
  9838. text-transform:none;
  9839. visibility:hidden;
  9840. }
  9841. #u82262_img {
  9842. border-width:0px;
  9843. position:absolute;
  9844. left:0px;
  9845. top:0px;
  9846. width:51px;
  9847. height:30px;
  9848. }
  9849. #u82262 {
  9850. border-width:0px;
  9851. position:absolute;
  9852. left:291px;
  9853. top:291px;
  9854. width:51px;
  9855. height:30px;
  9856. display:flex;
  9857. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9858. font-weight:400;
  9859. font-style:normal;
  9860. font-size:12px;
  9861. color:#606266;
  9862. }
  9863. #u82262 .text {
  9864. position:absolute;
  9865. align-self:center;
  9866. padding:2px 2px 2px 0px;
  9867. box-sizing:border-box;
  9868. width:100%;
  9869. }
  9870. #u82262_text {
  9871. border-width:0px;
  9872. word-wrap:break-word;
  9873. text-transform:none;
  9874. visibility:hidden;
  9875. }
  9876. #u82263_img {
  9877. border-width:0px;
  9878. position:absolute;
  9879. left:0px;
  9880. top:0px;
  9881. width:51px;
  9882. height:30px;
  9883. }
  9884. #u82263 {
  9885. border-width:0px;
  9886. position:absolute;
  9887. left:342px;
  9888. top:291px;
  9889. width:51px;
  9890. height:30px;
  9891. display:flex;
  9892. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9893. font-weight:400;
  9894. font-style:normal;
  9895. font-size:12px;
  9896. color:#606266;
  9897. }
  9898. #u82263 .text {
  9899. position:absolute;
  9900. align-self:center;
  9901. padding:2px 2px 2px 0px;
  9902. box-sizing:border-box;
  9903. width:100%;
  9904. }
  9905. #u82263_text {
  9906. border-width:0px;
  9907. word-wrap:break-word;
  9908. text-transform:none;
  9909. visibility:hidden;
  9910. }
  9911. #u82264_img {
  9912. border-width:0px;
  9913. position:absolute;
  9914. left:0px;
  9915. top:0px;
  9916. width:65px;
  9917. height:30px;
  9918. }
  9919. #u82264 {
  9920. border-width:0px;
  9921. position:absolute;
  9922. left:393px;
  9923. top:291px;
  9924. width:65px;
  9925. height:30px;
  9926. display:flex;
  9927. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9928. font-weight:400;
  9929. font-style:normal;
  9930. font-size:12px;
  9931. color:#606266;
  9932. }
  9933. #u82264 .text {
  9934. position:absolute;
  9935. align-self:center;
  9936. padding:2px 2px 2px 0px;
  9937. box-sizing:border-box;
  9938. width:100%;
  9939. }
  9940. #u82264_text {
  9941. border-width:0px;
  9942. word-wrap:break-word;
  9943. text-transform:none;
  9944. visibility:hidden;
  9945. }
  9946. #u82265_img {
  9947. border-width:0px;
  9948. position:absolute;
  9949. left:0px;
  9950. top:0px;
  9951. width:76px;
  9952. height:30px;
  9953. }
  9954. #u82265 {
  9955. border-width:0px;
  9956. position:absolute;
  9957. left:458px;
  9958. top:291px;
  9959. width:76px;
  9960. height:30px;
  9961. display:flex;
  9962. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9963. font-weight:400;
  9964. font-style:normal;
  9965. font-size:12px;
  9966. color:#606266;
  9967. }
  9968. #u82265 .text {
  9969. position:absolute;
  9970. align-self:center;
  9971. padding:2px 2px 2px 0px;
  9972. box-sizing:border-box;
  9973. width:100%;
  9974. }
  9975. #u82265_text {
  9976. border-width:0px;
  9977. word-wrap:break-word;
  9978. text-transform:none;
  9979. visibility:hidden;
  9980. }
  9981. #u82266_img {
  9982. border-width:0px;
  9983. position:absolute;
  9984. left:0px;
  9985. top:0px;
  9986. width:75px;
  9987. height:30px;
  9988. }
  9989. #u82266 {
  9990. border-width:0px;
  9991. position:absolute;
  9992. left:534px;
  9993. top:291px;
  9994. width:75px;
  9995. height:30px;
  9996. display:flex;
  9997. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9998. font-weight:400;
  9999. font-style:normal;
  10000. font-size:12px;
  10001. color:#606266;
  10002. }
  10003. #u82266 .text {
  10004. position:absolute;
  10005. align-self:center;
  10006. padding:2px 2px 2px 0px;
  10007. box-sizing:border-box;
  10008. width:100%;
  10009. }
  10010. #u82266_text {
  10011. border-width:0px;
  10012. word-wrap:break-word;
  10013. text-transform:none;
  10014. visibility:hidden;
  10015. }
  10016. #u82267_img {
  10017. border-width:0px;
  10018. position:absolute;
  10019. left:0px;
  10020. top:0px;
  10021. width:75px;
  10022. height:30px;
  10023. }
  10024. #u82267 {
  10025. border-width:0px;
  10026. position:absolute;
  10027. left:609px;
  10028. top:291px;
  10029. width:75px;
  10030. height:30px;
  10031. display:flex;
  10032. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10033. font-weight:400;
  10034. font-style:normal;
  10035. font-size:12px;
  10036. color:#606266;
  10037. }
  10038. #u82267 .text {
  10039. position:absolute;
  10040. align-self:center;
  10041. padding:2px 2px 2px 0px;
  10042. box-sizing:border-box;
  10043. width:100%;
  10044. }
  10045. #u82267_text {
  10046. border-width:0px;
  10047. word-wrap:break-word;
  10048. text-transform:none;
  10049. visibility:hidden;
  10050. }
  10051. #u82268_img {
  10052. border-width:0px;
  10053. position:absolute;
  10054. left:0px;
  10055. top:0px;
  10056. width:75px;
  10057. height:30px;
  10058. }
  10059. #u82268 {
  10060. border-width:0px;
  10061. position:absolute;
  10062. left:684px;
  10063. top:291px;
  10064. width:75px;
  10065. height:30px;
  10066. display:flex;
  10067. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10068. font-weight:400;
  10069. font-style:normal;
  10070. font-size:12px;
  10071. color:#606266;
  10072. }
  10073. #u82268 .text {
  10074. position:absolute;
  10075. align-self:center;
  10076. padding:2px 2px 2px 0px;
  10077. box-sizing:border-box;
  10078. width:100%;
  10079. }
  10080. #u82268_text {
  10081. border-width:0px;
  10082. word-wrap:break-word;
  10083. text-transform:none;
  10084. visibility:hidden;
  10085. }
  10086. #u82269_img {
  10087. border-width:0px;
  10088. position:absolute;
  10089. left:0px;
  10090. top:0px;
  10091. width:102px;
  10092. height:30px;
  10093. }
  10094. #u82269 {
  10095. border-width:0px;
  10096. position:absolute;
  10097. left:759px;
  10098. top:291px;
  10099. width:102px;
  10100. height:30px;
  10101. display:flex;
  10102. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10103. font-weight:400;
  10104. font-style:normal;
  10105. font-size:12px;
  10106. color:#606266;
  10107. }
  10108. #u82269 .text {
  10109. position:absolute;
  10110. align-self:center;
  10111. padding:2px 2px 2px 0px;
  10112. box-sizing:border-box;
  10113. width:100%;
  10114. }
  10115. #u82269_text {
  10116. border-width:0px;
  10117. word-wrap:break-word;
  10118. text-transform:none;
  10119. visibility:hidden;
  10120. }
  10121. #u82270_img {
  10122. border-width:0px;
  10123. position:absolute;
  10124. left:0px;
  10125. top:0px;
  10126. width:82px;
  10127. height:30px;
  10128. }
  10129. #u82270 {
  10130. border-width:0px;
  10131. position:absolute;
  10132. left:861px;
  10133. top:291px;
  10134. width:82px;
  10135. height:30px;
  10136. display:flex;
  10137. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10138. font-weight:400;
  10139. font-style:normal;
  10140. font-size:12px;
  10141. color:#606266;
  10142. }
  10143. #u82270 .text {
  10144. position:absolute;
  10145. align-self:center;
  10146. padding:2px 2px 2px 0px;
  10147. box-sizing:border-box;
  10148. width:100%;
  10149. }
  10150. #u82270_text {
  10151. border-width:0px;
  10152. word-wrap:break-word;
  10153. text-transform:none;
  10154. visibility:hidden;
  10155. }
  10156. #u82271_img {
  10157. border-width:0px;
  10158. position:absolute;
  10159. left:0px;
  10160. top:0px;
  10161. width:82px;
  10162. height:30px;
  10163. }
  10164. #u82271 {
  10165. border-width:0px;
  10166. position:absolute;
  10167. left:943px;
  10168. top:291px;
  10169. width:82px;
  10170. height:30px;
  10171. display:flex;
  10172. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10173. font-weight:400;
  10174. font-style:normal;
  10175. font-size:12px;
  10176. color:#606266;
  10177. }
  10178. #u82271 .text {
  10179. position:absolute;
  10180. align-self:center;
  10181. padding:2px 2px 2px 0px;
  10182. box-sizing:border-box;
  10183. width:100%;
  10184. }
  10185. #u82271_text {
  10186. border-width:0px;
  10187. word-wrap:break-word;
  10188. text-transform:none;
  10189. visibility:hidden;
  10190. }
  10191. #u82272_img {
  10192. border-width:0px;
  10193. position:absolute;
  10194. left:0px;
  10195. top:0px;
  10196. width:60px;
  10197. height:30px;
  10198. }
  10199. #u82272 {
  10200. border-width:0px;
  10201. position:absolute;
  10202. left:1025px;
  10203. top:291px;
  10204. width:60px;
  10205. height:30px;
  10206. display:flex;
  10207. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10208. font-weight:400;
  10209. font-style:normal;
  10210. font-size:12px;
  10211. color:#606266;
  10212. }
  10213. #u82272 .text {
  10214. position:absolute;
  10215. align-self:center;
  10216. padding:2px 2px 2px 0px;
  10217. box-sizing:border-box;
  10218. width:100%;
  10219. }
  10220. #u82272_text {
  10221. border-width:0px;
  10222. word-wrap:break-word;
  10223. text-transform:none;
  10224. visibility:hidden;
  10225. }
  10226. #u82273_img {
  10227. border-width:0px;
  10228. position:absolute;
  10229. left:0px;
  10230. top:0px;
  10231. width:60px;
  10232. height:30px;
  10233. }
  10234. #u82273 {
  10235. border-width:0px;
  10236. position:absolute;
  10237. left:1085px;
  10238. top:291px;
  10239. width:60px;
  10240. height:30px;
  10241. display:flex;
  10242. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10243. font-weight:400;
  10244. font-style:normal;
  10245. font-size:12px;
  10246. color:#606266;
  10247. }
  10248. #u82273 .text {
  10249. position:absolute;
  10250. align-self:center;
  10251. padding:2px 2px 2px 0px;
  10252. box-sizing:border-box;
  10253. width:100%;
  10254. }
  10255. #u82273_text {
  10256. border-width:0px;
  10257. word-wrap:break-word;
  10258. text-transform:none;
  10259. visibility:hidden;
  10260. }
  10261. #u82274_img {
  10262. border-width:0px;
  10263. position:absolute;
  10264. left:0px;
  10265. top:0px;
  10266. width:67px;
  10267. height:30px;
  10268. }
  10269. #u82274 {
  10270. border-width:0px;
  10271. position:absolute;
  10272. left:1145px;
  10273. top:291px;
  10274. width:67px;
  10275. height:30px;
  10276. display:flex;
  10277. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10278. font-weight:400;
  10279. font-style:normal;
  10280. font-size:12px;
  10281. color:#606266;
  10282. }
  10283. #u82274 .text {
  10284. position:absolute;
  10285. align-self:center;
  10286. padding:2px 2px 2px 0px;
  10287. box-sizing:border-box;
  10288. width:100%;
  10289. }
  10290. #u82274_text {
  10291. border-width:0px;
  10292. word-wrap:break-word;
  10293. text-transform:none;
  10294. visibility:hidden;
  10295. }
  10296. #u82275_div {
  10297. border-width:0px;
  10298. position:absolute;
  10299. left:0px;
  10300. top:0px;
  10301. width:55px;
  10302. height:30px;
  10303. background:inherit;
  10304. background-color:rgba(255, 255, 255, 1);
  10305. box-sizing:border-box;
  10306. border-width:1px;
  10307. border-style:solid;
  10308. border-color:rgba(170, 170, 170, 1);
  10309. border-radius:4px;
  10310. -moz-box-shadow:none;
  10311. -webkit-box-shadow:none;
  10312. box-shadow:none;
  10313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10314. font-weight:400;
  10315. font-style:normal;
  10316. font-size:12px;
  10317. color:#555555;
  10318. }
  10319. #u82275 {
  10320. border-width:0px;
  10321. position:absolute;
  10322. left:1511px;
  10323. top:302px;
  10324. width:55px;
  10325. height:30px;
  10326. display:flex;
  10327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10328. font-weight:400;
  10329. font-style:normal;
  10330. font-size:12px;
  10331. color:#555555;
  10332. }
  10333. #u82275 .text {
  10334. position:absolute;
  10335. align-self:center;
  10336. padding:5px 15px 5px 15px;
  10337. box-sizing:border-box;
  10338. width:100%;
  10339. }
  10340. #u82275_text {
  10341. border-width:0px;
  10342. white-space:nowrap;
  10343. text-transform:none;
  10344. }
  10345. #u82276_div {
  10346. border-width:0px;
  10347. position:absolute;
  10348. left:0px;
  10349. top:0px;
  10350. width:59px;
  10351. height:30px;
  10352. background:inherit;
  10353. background-color:rgba(24, 144, 255, 1);
  10354. box-sizing:border-box;
  10355. border-width:1px;
  10356. border-style:solid;
  10357. border-color:rgba(0, 153, 255, 1);
  10358. border-radius:4px;
  10359. -moz-box-shadow:none;
  10360. -webkit-box-shadow:none;
  10361. box-shadow:none;
  10362. font-family:'Microsoft YaHei', sans-serif;
  10363. font-weight:400;
  10364. font-style:normal;
  10365. font-size:14px;
  10366. color:#FFFFFF;
  10367. }
  10368. #u82276 {
  10369. border-width:0px;
  10370. position:absolute;
  10371. left:803px;
  10372. top:302px;
  10373. width:59px;
  10374. height:30px;
  10375. display:flex;
  10376. font-family:'Microsoft YaHei', sans-serif;
  10377. font-weight:400;
  10378. font-style:normal;
  10379. font-size:14px;
  10380. color:#FFFFFF;
  10381. }
  10382. #u82276 .text {
  10383. position:absolute;
  10384. align-self:center;
  10385. padding:5px 15px 5px 15px;
  10386. box-sizing:border-box;
  10387. width:100%;
  10388. }
  10389. #u82276_text {
  10390. border-width:0px;
  10391. white-space:nowrap;
  10392. text-transform:none;
  10393. }
  10394. #u82277_div {
  10395. border-width:0px;
  10396. position:absolute;
  10397. left:0px;
  10398. top:0px;
  10399. width:55px;
  10400. height:30px;
  10401. background:inherit;
  10402. background-color:rgba(255, 255, 255, 1);
  10403. box-sizing:border-box;
  10404. border-width:1px;
  10405. border-style:solid;
  10406. border-color:rgba(170, 170, 170, 1);
  10407. border-radius:4px;
  10408. -moz-box-shadow:none;
  10409. -webkit-box-shadow:none;
  10410. box-shadow:none;
  10411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10412. font-weight:400;
  10413. font-style:normal;
  10414. font-size:12px;
  10415. color:#555555;
  10416. }
  10417. #u82277 {
  10418. border-width:0px;
  10419. position:absolute;
  10420. left:872px;
  10421. top:302px;
  10422. width:55px;
  10423. height:30px;
  10424. display:flex;
  10425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10426. font-weight:400;
  10427. font-style:normal;
  10428. font-size:12px;
  10429. color:#555555;
  10430. }
  10431. #u82277 .text {
  10432. position:absolute;
  10433. align-self:center;
  10434. padding:5px 15px 5px 15px;
  10435. box-sizing:border-box;
  10436. width:100%;
  10437. }
  10438. #u82277_text {
  10439. border-width:0px;
  10440. white-space:nowrap;
  10441. text-transform:none;
  10442. }
  10443. #u82278 {
  10444. border-width:0px;
  10445. position:absolute;
  10446. left:0px;
  10447. top:0px;
  10448. width:0px;
  10449. height:0px;
  10450. }
  10451. #u82279_div {
  10452. border-width:0px;
  10453. position:absolute;
  10454. left:0px;
  10455. top:0px;
  10456. width:140px;
  10457. height:30px;
  10458. background:inherit;
  10459. background-color:rgba(255, 255, 255, 1);
  10460. box-sizing:border-box;
  10461. border-width:1px;
  10462. border-style:solid;
  10463. border-color:rgba(215, 215, 215, 1);
  10464. border-radius:4px;
  10465. -moz-box-shadow:none;
  10466. -webkit-box-shadow:none;
  10467. box-shadow:none;
  10468. font-size:11px;
  10469. }
  10470. #u82279 {
  10471. border-width:0px;
  10472. position:absolute;
  10473. left:503px;
  10474. top:262px;
  10475. width:140px;
  10476. height:30px;
  10477. display:flex;
  10478. font-size:11px;
  10479. }
  10480. #u82279 .text {
  10481. position:absolute;
  10482. align-self:center;
  10483. padding:2px 2px 2px 2px;
  10484. box-sizing:border-box;
  10485. width:100%;
  10486. }
  10487. #u82279_text {
  10488. border-width:0px;
  10489. word-wrap:break-word;
  10490. text-transform:none;
  10491. visibility:hidden;
  10492. }
  10493. #u82280_input {
  10494. position:absolute;
  10495. left:0px;
  10496. top:0px;
  10497. width:125px;
  10498. height:23px;
  10499. padding:2px 2px 2px 2px;
  10500. font-family:'ArialMT', 'Arial', sans-serif;
  10501. font-weight:400;
  10502. font-style:normal;
  10503. font-size:11px;
  10504. letter-spacing:normal;
  10505. color:#AAAAAA;
  10506. vertical-align:none;
  10507. text-align:left;
  10508. text-transform:none;
  10509. background-color:transparent;
  10510. border-color:transparent;
  10511. }
  10512. #u82280_input.disabled {
  10513. position:absolute;
  10514. left:0px;
  10515. top:0px;
  10516. width:125px;
  10517. height:23px;
  10518. padding:2px 2px 2px 2px;
  10519. font-family:'ArialMT', 'Arial', sans-serif;
  10520. font-weight:400;
  10521. font-style:normal;
  10522. font-size:11px;
  10523. letter-spacing:normal;
  10524. color:#AAAAAA;
  10525. vertical-align:none;
  10526. text-align:left;
  10527. text-transform:none;
  10528. background-color:transparent;
  10529. border-color:transparent;
  10530. }
  10531. #u82280_div {
  10532. border-width:0px;
  10533. position:absolute;
  10534. left:0px;
  10535. top:0px;
  10536. width:125px;
  10537. height:23px;
  10538. background:inherit;
  10539. background-color:rgba(255, 255, 255, 1);
  10540. border:none;
  10541. border-radius:0px;
  10542. -moz-box-shadow:none;
  10543. -webkit-box-shadow:none;
  10544. box-shadow:none;
  10545. font-size:11px;
  10546. color:#AAAAAA;
  10547. }
  10548. #u82280 {
  10549. border-width:0px;
  10550. position:absolute;
  10551. left:509px;
  10552. top:264px;
  10553. width:125px;
  10554. height:23px;
  10555. display:flex;
  10556. font-size:11px;
  10557. color:#AAAAAA;
  10558. }
  10559. #u82280 .text {
  10560. position:absolute;
  10561. align-self:flex-start;
  10562. padding:2px 2px 2px 2px;
  10563. box-sizing:border-box;
  10564. width:100%;
  10565. }
  10566. #u82280_div.disabled {
  10567. border-width:0px;
  10568. position:absolute;
  10569. left:0px;
  10570. top:0px;
  10571. width:125px;
  10572. height:23px;
  10573. background:inherit;
  10574. background-color:rgba(240, 240, 240, 1);
  10575. border:none;
  10576. border-radius:0px;
  10577. -moz-box-shadow:none;
  10578. -webkit-box-shadow:none;
  10579. box-shadow:none;
  10580. font-size:11px;
  10581. color:#AAAAAA;
  10582. }
  10583. #u82280.disabled {
  10584. }
  10585. .u82280_input_option {
  10586. font-size:11px;
  10587. }
  10588. #u82281 {
  10589. border-width:0px;
  10590. position:absolute;
  10591. left:0px;
  10592. top:0px;
  10593. width:0px;
  10594. height:0px;
  10595. }
  10596. #u82282_div {
  10597. border-width:0px;
  10598. position:absolute;
  10599. left:0px;
  10600. top:0px;
  10601. width:140px;
  10602. height:30px;
  10603. background:inherit;
  10604. background-color:rgba(255, 255, 255, 1);
  10605. box-sizing:border-box;
  10606. border-width:1px;
  10607. border-style:solid;
  10608. border-color:rgba(201, 201, 201, 1);
  10609. border-radius:4px;
  10610. -moz-box-shadow:none;
  10611. -webkit-box-shadow:none;
  10612. box-shadow:none;
  10613. font-family:'Microsoft YaHei', sans-serif;
  10614. font-weight:400;
  10615. font-style:normal;
  10616. font-size:14px;
  10617. color:#CCCCCC;
  10618. text-align:left;
  10619. }
  10620. #u82282 {
  10621. border-width:0px;
  10622. position:absolute;
  10623. left:652px;
  10624. top:261px;
  10625. width:140px;
  10626. height:30px;
  10627. display:flex;
  10628. font-family:'Microsoft YaHei', sans-serif;
  10629. font-weight:400;
  10630. font-style:normal;
  10631. font-size:14px;
  10632. color:#CCCCCC;
  10633. text-align:left;
  10634. }
  10635. #u82282 .text {
  10636. position:absolute;
  10637. align-self:center;
  10638. padding:2px 8px 2px 8px;
  10639. box-sizing:border-box;
  10640. width:100%;
  10641. }
  10642. #u82282_text {
  10643. border-width:0px;
  10644. word-wrap:break-word;
  10645. text-transform:none;
  10646. visibility:hidden;
  10647. }
  10648. #u82283_input {
  10649. position:absolute;
  10650. left:0px;
  10651. top:0px;
  10652. width:126px;
  10653. height:25px;
  10654. padding:2px 2px 2px 2px;
  10655. font-family:'Microsoft YaHei', sans-serif;
  10656. font-weight:400;
  10657. font-style:normal;
  10658. font-size:10px;
  10659. letter-spacing:normal;
  10660. color:#000000;
  10661. vertical-align:none;
  10662. text-align:left;
  10663. text-transform:none;
  10664. background-color:transparent;
  10665. border-color:transparent;
  10666. }
  10667. #u82283_input.disabled {
  10668. position:absolute;
  10669. left:0px;
  10670. top:0px;
  10671. width:126px;
  10672. height:25px;
  10673. padding:2px 2px 2px 2px;
  10674. font-family:'Microsoft YaHei', sans-serif;
  10675. font-weight:400;
  10676. font-style:normal;
  10677. font-size:10px;
  10678. letter-spacing:normal;
  10679. color:#000000;
  10680. vertical-align:none;
  10681. text-align:left;
  10682. text-transform:none;
  10683. background-color:transparent;
  10684. border-color:transparent;
  10685. }
  10686. #u82283_div {
  10687. border-width:0px;
  10688. position:absolute;
  10689. left:0px;
  10690. top:0px;
  10691. width:126px;
  10692. height:25px;
  10693. background:inherit;
  10694. background-color:rgba(255, 255, 255, 1);
  10695. border:none;
  10696. border-radius:0px;
  10697. -moz-box-shadow:none;
  10698. -webkit-box-shadow:none;
  10699. box-shadow:none;
  10700. font-family:'Microsoft YaHei', sans-serif;
  10701. font-weight:400;
  10702. font-style:normal;
  10703. font-size:10px;
  10704. }
  10705. #u82283 {
  10706. border-width:0px;
  10707. position:absolute;
  10708. left:661px;
  10709. top:262px;
  10710. width:126px;
  10711. height:25px;
  10712. display:flex;
  10713. font-family:'Microsoft YaHei', sans-serif;
  10714. font-weight:400;
  10715. font-style:normal;
  10716. font-size:10px;
  10717. }
  10718. #u82283 .text {
  10719. position:absolute;
  10720. align-self:center;
  10721. padding:2px 2px 2px 2px;
  10722. box-sizing:border-box;
  10723. width:100%;
  10724. }
  10725. #u82283_div.disabled {
  10726. border-width:0px;
  10727. position:absolute;
  10728. left:0px;
  10729. top:0px;
  10730. width:126px;
  10731. height:25px;
  10732. background:inherit;
  10733. background-color:rgba(240, 240, 240, 1);
  10734. border:none;
  10735. border-radius:0px;
  10736. -moz-box-shadow:none;
  10737. -webkit-box-shadow:none;
  10738. box-shadow:none;
  10739. font-family:'Microsoft YaHei', sans-serif;
  10740. font-weight:400;
  10741. font-style:normal;
  10742. font-size:10px;
  10743. }
  10744. #u82283.disabled {
  10745. }
  10746. #u82284 {
  10747. border-width:0px;
  10748. position:absolute;
  10749. left:0px;
  10750. top:0px;
  10751. width:0px;
  10752. height:0px;
  10753. }
  10754. #u82285_div {
  10755. border-width:0px;
  10756. position:absolute;
  10757. left:0px;
  10758. top:0px;
  10759. width:140px;
  10760. height:30px;
  10761. background:inherit;
  10762. background-color:rgba(255, 255, 255, 1);
  10763. box-sizing:border-box;
  10764. border-width:1px;
  10765. border-style:solid;
  10766. border-color:rgba(215, 215, 215, 1);
  10767. border-radius:4px;
  10768. -moz-box-shadow:none;
  10769. -webkit-box-shadow:none;
  10770. box-shadow:none;
  10771. font-size:11px;
  10772. }
  10773. #u82285 {
  10774. border-width:0px;
  10775. position:absolute;
  10776. left:953px;
  10777. top:262px;
  10778. width:140px;
  10779. height:30px;
  10780. display:flex;
  10781. font-size:11px;
  10782. }
  10783. #u82285 .text {
  10784. position:absolute;
  10785. align-self:center;
  10786. padding:2px 2px 2px 2px;
  10787. box-sizing:border-box;
  10788. width:100%;
  10789. }
  10790. #u82285_text {
  10791. border-width:0px;
  10792. word-wrap:break-word;
  10793. text-transform:none;
  10794. visibility:hidden;
  10795. }
  10796. #u82286_input {
  10797. position:absolute;
  10798. left:0px;
  10799. top:0px;
  10800. width:125px;
  10801. height:23px;
  10802. padding:2px 2px 2px 2px;
  10803. font-family:'ArialMT', 'Arial', sans-serif;
  10804. font-weight:400;
  10805. font-style:normal;
  10806. font-size:11px;
  10807. letter-spacing:normal;
  10808. color:#AAAAAA;
  10809. vertical-align:none;
  10810. text-align:left;
  10811. text-transform:none;
  10812. background-color:transparent;
  10813. border-color:transparent;
  10814. }
  10815. #u82286_input.disabled {
  10816. position:absolute;
  10817. left:0px;
  10818. top:0px;
  10819. width:125px;
  10820. height:23px;
  10821. padding:2px 2px 2px 2px;
  10822. font-family:'ArialMT', 'Arial', sans-serif;
  10823. font-weight:400;
  10824. font-style:normal;
  10825. font-size:11px;
  10826. letter-spacing:normal;
  10827. color:#AAAAAA;
  10828. vertical-align:none;
  10829. text-align:left;
  10830. text-transform:none;
  10831. background-color:transparent;
  10832. border-color:transparent;
  10833. }
  10834. #u82286_div {
  10835. border-width:0px;
  10836. position:absolute;
  10837. left:0px;
  10838. top:0px;
  10839. width:125px;
  10840. height:23px;
  10841. background:inherit;
  10842. background-color:rgba(255, 255, 255, 1);
  10843. border:none;
  10844. border-radius:0px;
  10845. -moz-box-shadow:none;
  10846. -webkit-box-shadow:none;
  10847. box-shadow:none;
  10848. font-size:11px;
  10849. color:#AAAAAA;
  10850. }
  10851. #u82286 {
  10852. border-width:0px;
  10853. position:absolute;
  10854. left:959px;
  10855. top:264px;
  10856. width:125px;
  10857. height:23px;
  10858. display:flex;
  10859. font-size:11px;
  10860. color:#AAAAAA;
  10861. }
  10862. #u82286 .text {
  10863. position:absolute;
  10864. align-self:flex-start;
  10865. padding:2px 2px 2px 2px;
  10866. box-sizing:border-box;
  10867. width:100%;
  10868. }
  10869. #u82286_div.disabled {
  10870. border-width:0px;
  10871. position:absolute;
  10872. left:0px;
  10873. top:0px;
  10874. width:125px;
  10875. height:23px;
  10876. background:inherit;
  10877. background-color:rgba(240, 240, 240, 1);
  10878. border:none;
  10879. border-radius:0px;
  10880. -moz-box-shadow:none;
  10881. -webkit-box-shadow:none;
  10882. box-shadow:none;
  10883. font-size:11px;
  10884. color:#AAAAAA;
  10885. }
  10886. #u82286.disabled {
  10887. }
  10888. .u82286_input_option {
  10889. font-size:11px;
  10890. }
  10891. #u82287 {
  10892. border-width:0px;
  10893. position:absolute;
  10894. left:0px;
  10895. top:0px;
  10896. width:0px;
  10897. height:0px;
  10898. }
  10899. #u82288_div {
  10900. border-width:0px;
  10901. position:absolute;
  10902. left:0px;
  10903. top:0px;
  10904. width:140px;
  10905. height:30px;
  10906. background:inherit;
  10907. background-color:rgba(255, 255, 255, 1);
  10908. box-sizing:border-box;
  10909. border-width:1px;
  10910. border-style:solid;
  10911. border-color:rgba(201, 201, 201, 1);
  10912. border-radius:4px;
  10913. -moz-box-shadow:none;
  10914. -webkit-box-shadow:none;
  10915. box-shadow:none;
  10916. font-family:'Microsoft YaHei', sans-serif;
  10917. font-weight:400;
  10918. font-style:normal;
  10919. font-size:14px;
  10920. color:#CCCCCC;
  10921. text-align:left;
  10922. }
  10923. #u82288 {
  10924. border-width:0px;
  10925. position:absolute;
  10926. left:1103px;
  10927. top:261px;
  10928. width:140px;
  10929. height:30px;
  10930. display:flex;
  10931. font-family:'Microsoft YaHei', sans-serif;
  10932. font-weight:400;
  10933. font-style:normal;
  10934. font-size:14px;
  10935. color:#CCCCCC;
  10936. text-align:left;
  10937. }
  10938. #u82288 .text {
  10939. position:absolute;
  10940. align-self:center;
  10941. padding:2px 8px 2px 8px;
  10942. box-sizing:border-box;
  10943. width:100%;
  10944. }
  10945. #u82288_text {
  10946. border-width:0px;
  10947. word-wrap:break-word;
  10948. text-transform:none;
  10949. visibility:hidden;
  10950. }
  10951. #u82289_input {
  10952. position:absolute;
  10953. left:0px;
  10954. top:0px;
  10955. width:126px;
  10956. height:25px;
  10957. padding:2px 2px 2px 2px;
  10958. font-family:'Microsoft YaHei', sans-serif;
  10959. font-weight:400;
  10960. font-style:normal;
  10961. font-size:10px;
  10962. letter-spacing:normal;
  10963. color:#000000;
  10964. vertical-align:none;
  10965. text-align:left;
  10966. text-transform:none;
  10967. background-color:transparent;
  10968. border-color:transparent;
  10969. }
  10970. #u82289_input.disabled {
  10971. position:absolute;
  10972. left:0px;
  10973. top:0px;
  10974. width:126px;
  10975. height:25px;
  10976. padding:2px 2px 2px 2px;
  10977. font-family:'Microsoft YaHei', sans-serif;
  10978. font-weight:400;
  10979. font-style:normal;
  10980. font-size:10px;
  10981. letter-spacing:normal;
  10982. color:#000000;
  10983. vertical-align:none;
  10984. text-align:left;
  10985. text-transform:none;
  10986. background-color:transparent;
  10987. border-color:transparent;
  10988. }
  10989. #u82289_div {
  10990. border-width:0px;
  10991. position:absolute;
  10992. left:0px;
  10993. top:0px;
  10994. width:126px;
  10995. height:25px;
  10996. background:inherit;
  10997. background-color:rgba(255, 255, 255, 1);
  10998. border:none;
  10999. border-radius:0px;
  11000. -moz-box-shadow:none;
  11001. -webkit-box-shadow:none;
  11002. box-shadow:none;
  11003. font-family:'Microsoft YaHei', sans-serif;
  11004. font-weight:400;
  11005. font-style:normal;
  11006. font-size:10px;
  11007. }
  11008. #u82289 {
  11009. border-width:0px;
  11010. position:absolute;
  11011. left:1112px;
  11012. top:262px;
  11013. width:126px;
  11014. height:25px;
  11015. display:flex;
  11016. font-family:'Microsoft YaHei', sans-serif;
  11017. font-weight:400;
  11018. font-style:normal;
  11019. font-size:10px;
  11020. }
  11021. #u82289 .text {
  11022. position:absolute;
  11023. align-self:center;
  11024. padding:2px 2px 2px 2px;
  11025. box-sizing:border-box;
  11026. width:100%;
  11027. }
  11028. #u82289_div.disabled {
  11029. border-width:0px;
  11030. position:absolute;
  11031. left:0px;
  11032. top:0px;
  11033. width:126px;
  11034. height:25px;
  11035. background:inherit;
  11036. background-color:rgba(240, 240, 240, 1);
  11037. border:none;
  11038. border-radius:0px;
  11039. -moz-box-shadow:none;
  11040. -webkit-box-shadow:none;
  11041. box-shadow:none;
  11042. font-family:'Microsoft YaHei', sans-serif;
  11043. font-weight:400;
  11044. font-style:normal;
  11045. font-size:10px;
  11046. }
  11047. #u82289.disabled {
  11048. }
  11049. #u82290 {
  11050. border-width:0px;
  11051. position:absolute;
  11052. left:0px;
  11053. top:0px;
  11054. width:0px;
  11055. height:0px;
  11056. }
  11057. #u82291_div {
  11058. border-width:0px;
  11059. position:absolute;
  11060. left:0px;
  11061. top:0px;
  11062. width:140px;
  11063. height:30px;
  11064. background:inherit;
  11065. background-color:rgba(255, 255, 255, 1);
  11066. box-sizing:border-box;
  11067. border-width:1px;
  11068. border-style:solid;
  11069. border-color:rgba(215, 215, 215, 1);
  11070. border-radius:4px;
  11071. -moz-box-shadow:none;
  11072. -webkit-box-shadow:none;
  11073. box-shadow:none;
  11074. font-size:11px;
  11075. }
  11076. #u82291 {
  11077. border-width:0px;
  11078. position:absolute;
  11079. left:1403px;
  11080. top:262px;
  11081. width:140px;
  11082. height:30px;
  11083. display:flex;
  11084. font-size:11px;
  11085. }
  11086. #u82291 .text {
  11087. position:absolute;
  11088. align-self:center;
  11089. padding:2px 2px 2px 2px;
  11090. box-sizing:border-box;
  11091. width:100%;
  11092. }
  11093. #u82291_text {
  11094. border-width:0px;
  11095. word-wrap:break-word;
  11096. text-transform:none;
  11097. visibility:hidden;
  11098. }
  11099. #u82292_input {
  11100. position:absolute;
  11101. left:0px;
  11102. top:0px;
  11103. width:125px;
  11104. height:23px;
  11105. padding:2px 2px 2px 2px;
  11106. font-family:'ArialMT', 'Arial', sans-serif;
  11107. font-weight:400;
  11108. font-style:normal;
  11109. font-size:11px;
  11110. letter-spacing:normal;
  11111. color:#AAAAAA;
  11112. vertical-align:none;
  11113. text-align:left;
  11114. text-transform:none;
  11115. background-color:transparent;
  11116. border-color:transparent;
  11117. }
  11118. #u82292_input.disabled {
  11119. position:absolute;
  11120. left:0px;
  11121. top:0px;
  11122. width:125px;
  11123. height:23px;
  11124. padding:2px 2px 2px 2px;
  11125. font-family:'ArialMT', 'Arial', sans-serif;
  11126. font-weight:400;
  11127. font-style:normal;
  11128. font-size:11px;
  11129. letter-spacing:normal;
  11130. color:#AAAAAA;
  11131. vertical-align:none;
  11132. text-align:left;
  11133. text-transform:none;
  11134. background-color:transparent;
  11135. border-color:transparent;
  11136. }
  11137. #u82292_div {
  11138. border-width:0px;
  11139. position:absolute;
  11140. left:0px;
  11141. top:0px;
  11142. width:125px;
  11143. height:23px;
  11144. background:inherit;
  11145. background-color:rgba(255, 255, 255, 1);
  11146. border:none;
  11147. border-radius:0px;
  11148. -moz-box-shadow:none;
  11149. -webkit-box-shadow:none;
  11150. box-shadow:none;
  11151. font-size:11px;
  11152. color:#AAAAAA;
  11153. }
  11154. #u82292 {
  11155. border-width:0px;
  11156. position:absolute;
  11157. left:1409px;
  11158. top:264px;
  11159. width:125px;
  11160. height:23px;
  11161. display:flex;
  11162. font-size:11px;
  11163. color:#AAAAAA;
  11164. }
  11165. #u82292 .text {
  11166. position:absolute;
  11167. align-self:flex-start;
  11168. padding:2px 2px 2px 2px;
  11169. box-sizing:border-box;
  11170. width:100%;
  11171. }
  11172. #u82292_div.disabled {
  11173. border-width:0px;
  11174. position:absolute;
  11175. left:0px;
  11176. top:0px;
  11177. width:125px;
  11178. height:23px;
  11179. background:inherit;
  11180. background-color:rgba(240, 240, 240, 1);
  11181. border:none;
  11182. border-radius:0px;
  11183. -moz-box-shadow:none;
  11184. -webkit-box-shadow:none;
  11185. box-shadow:none;
  11186. font-size:11px;
  11187. color:#AAAAAA;
  11188. }
  11189. #u82292.disabled {
  11190. }
  11191. .u82292_input_option {
  11192. font-size:11px;
  11193. }
  11194. #u82293 {
  11195. border-width:0px;
  11196. position:absolute;
  11197. left:0px;
  11198. top:0px;
  11199. width:0px;
  11200. height:0px;
  11201. }
  11202. #u82294_div {
  11203. border-width:0px;
  11204. position:absolute;
  11205. left:0px;
  11206. top:0px;
  11207. width:140px;
  11208. height:30px;
  11209. background:inherit;
  11210. background-color:rgba(255, 255, 255, 1);
  11211. box-sizing:border-box;
  11212. border-width:1px;
  11213. border-style:solid;
  11214. border-color:rgba(201, 201, 201, 1);
  11215. border-radius:4px;
  11216. -moz-box-shadow:none;
  11217. -webkit-box-shadow:none;
  11218. box-shadow:none;
  11219. font-family:'Microsoft YaHei', sans-serif;
  11220. font-weight:400;
  11221. font-style:normal;
  11222. font-size:14px;
  11223. color:#CCCCCC;
  11224. text-align:left;
  11225. }
  11226. #u82294 {
  11227. border-width:0px;
  11228. position:absolute;
  11229. left:803px;
  11230. top:262px;
  11231. width:140px;
  11232. height:30px;
  11233. display:flex;
  11234. font-family:'Microsoft YaHei', sans-serif;
  11235. font-weight:400;
  11236. font-style:normal;
  11237. font-size:14px;
  11238. color:#CCCCCC;
  11239. text-align:left;
  11240. }
  11241. #u82294 .text {
  11242. position:absolute;
  11243. align-self:center;
  11244. padding:2px 8px 2px 8px;
  11245. box-sizing:border-box;
  11246. width:100%;
  11247. }
  11248. #u82294_text {
  11249. border-width:0px;
  11250. word-wrap:break-word;
  11251. text-transform:none;
  11252. visibility:hidden;
  11253. }
  11254. #u82295_input {
  11255. position:absolute;
  11256. left:0px;
  11257. top:0px;
  11258. width:126px;
  11259. height:25px;
  11260. padding:2px 2px 2px 2px;
  11261. font-family:'Microsoft YaHei', sans-serif;
  11262. font-weight:400;
  11263. font-style:normal;
  11264. font-size:10px;
  11265. letter-spacing:normal;
  11266. color:#000000;
  11267. vertical-align:none;
  11268. text-align:left;
  11269. text-transform:none;
  11270. background-color:transparent;
  11271. border-color:transparent;
  11272. }
  11273. #u82295_input.disabled {
  11274. position:absolute;
  11275. left:0px;
  11276. top:0px;
  11277. width:126px;
  11278. height:25px;
  11279. padding:2px 2px 2px 2px;
  11280. font-family:'Microsoft YaHei', sans-serif;
  11281. font-weight:400;
  11282. font-style:normal;
  11283. font-size:10px;
  11284. letter-spacing:normal;
  11285. color:#000000;
  11286. vertical-align:none;
  11287. text-align:left;
  11288. text-transform:none;
  11289. background-color:transparent;
  11290. border-color:transparent;
  11291. }
  11292. #u82295_div {
  11293. border-width:0px;
  11294. position:absolute;
  11295. left:0px;
  11296. top:0px;
  11297. width:126px;
  11298. height:25px;
  11299. background:inherit;
  11300. background-color:rgba(255, 255, 255, 1);
  11301. border:none;
  11302. border-radius:0px;
  11303. -moz-box-shadow:none;
  11304. -webkit-box-shadow:none;
  11305. box-shadow:none;
  11306. font-family:'Microsoft YaHei', sans-serif;
  11307. font-weight:400;
  11308. font-style:normal;
  11309. font-size:10px;
  11310. }
  11311. #u82295 {
  11312. border-width:0px;
  11313. position:absolute;
  11314. left:812px;
  11315. top:263px;
  11316. width:126px;
  11317. height:25px;
  11318. display:flex;
  11319. font-family:'Microsoft YaHei', sans-serif;
  11320. font-weight:400;
  11321. font-style:normal;
  11322. font-size:10px;
  11323. }
  11324. #u82295 .text {
  11325. position:absolute;
  11326. align-self:center;
  11327. padding:2px 2px 2px 2px;
  11328. box-sizing:border-box;
  11329. width:100%;
  11330. }
  11331. #u82295_div.disabled {
  11332. border-width:0px;
  11333. position:absolute;
  11334. left:0px;
  11335. top:0px;
  11336. width:126px;
  11337. height:25px;
  11338. background:inherit;
  11339. background-color:rgba(240, 240, 240, 1);
  11340. border:none;
  11341. border-radius:0px;
  11342. -moz-box-shadow:none;
  11343. -webkit-box-shadow:none;
  11344. box-shadow:none;
  11345. font-family:'Microsoft YaHei', sans-serif;
  11346. font-weight:400;
  11347. font-style:normal;
  11348. font-size:10px;
  11349. }
  11350. #u82295.disabled {
  11351. }
  11352. #u82296 {
  11353. border-width:0px;
  11354. position:absolute;
  11355. left:0px;
  11356. top:0px;
  11357. width:0px;
  11358. height:0px;
  11359. }
  11360. #u82297_div {
  11361. border-width:0px;
  11362. position:absolute;
  11363. left:0px;
  11364. top:0px;
  11365. width:140px;
  11366. height:30px;
  11367. background:inherit;
  11368. background-color:rgba(255, 255, 255, 1);
  11369. box-sizing:border-box;
  11370. border-width:1px;
  11371. border-style:solid;
  11372. border-color:rgba(215, 215, 215, 1);
  11373. border-radius:4px;
  11374. -moz-box-shadow:none;
  11375. -webkit-box-shadow:none;
  11376. box-shadow:none;
  11377. font-size:11px;
  11378. }
  11379. #u82297 {
  11380. border-width:0px;
  11381. position:absolute;
  11382. left:354px;
  11383. top:302px;
  11384. width:140px;
  11385. height:30px;
  11386. display:flex;
  11387. font-size:11px;
  11388. }
  11389. #u82297 .text {
  11390. position:absolute;
  11391. align-self:center;
  11392. padding:2px 2px 2px 2px;
  11393. box-sizing:border-box;
  11394. width:100%;
  11395. }
  11396. #u82297_text {
  11397. border-width:0px;
  11398. word-wrap:break-word;
  11399. text-transform:none;
  11400. visibility:hidden;
  11401. }
  11402. #u82298_input {
  11403. position:absolute;
  11404. left:0px;
  11405. top:0px;
  11406. width:125px;
  11407. height:23px;
  11408. padding:2px 2px 2px 2px;
  11409. font-family:'ArialMT', 'Arial', sans-serif;
  11410. font-weight:400;
  11411. font-style:normal;
  11412. font-size:11px;
  11413. letter-spacing:normal;
  11414. color:#AAAAAA;
  11415. vertical-align:none;
  11416. text-align:left;
  11417. text-transform:none;
  11418. background-color:transparent;
  11419. border-color:transparent;
  11420. }
  11421. #u82298_input.disabled {
  11422. position:absolute;
  11423. left:0px;
  11424. top:0px;
  11425. width:125px;
  11426. height:23px;
  11427. padding:2px 2px 2px 2px;
  11428. font-family:'ArialMT', 'Arial', sans-serif;
  11429. font-weight:400;
  11430. font-style:normal;
  11431. font-size:11px;
  11432. letter-spacing:normal;
  11433. color:#AAAAAA;
  11434. vertical-align:none;
  11435. text-align:left;
  11436. text-transform:none;
  11437. background-color:transparent;
  11438. border-color:transparent;
  11439. }
  11440. #u82298_div {
  11441. border-width:0px;
  11442. position:absolute;
  11443. left:0px;
  11444. top:0px;
  11445. width:125px;
  11446. height:23px;
  11447. background:inherit;
  11448. background-color:rgba(255, 255, 255, 1);
  11449. border:none;
  11450. border-radius:0px;
  11451. -moz-box-shadow:none;
  11452. -webkit-box-shadow:none;
  11453. box-shadow:none;
  11454. font-size:11px;
  11455. color:#AAAAAA;
  11456. }
  11457. #u82298 {
  11458. border-width:0px;
  11459. position:absolute;
  11460. left:361px;
  11461. top:304px;
  11462. width:125px;
  11463. height:23px;
  11464. display:flex;
  11465. font-size:11px;
  11466. color:#AAAAAA;
  11467. }
  11468. #u82298 .text {
  11469. position:absolute;
  11470. align-self:flex-start;
  11471. padding:2px 2px 2px 2px;
  11472. box-sizing:border-box;
  11473. width:100%;
  11474. }
  11475. #u82298_div.disabled {
  11476. border-width:0px;
  11477. position:absolute;
  11478. left:0px;
  11479. top:0px;
  11480. width:125px;
  11481. height:23px;
  11482. background:inherit;
  11483. background-color:rgba(240, 240, 240, 1);
  11484. border:none;
  11485. border-radius:0px;
  11486. -moz-box-shadow:none;
  11487. -webkit-box-shadow:none;
  11488. box-shadow:none;
  11489. font-size:11px;
  11490. color:#AAAAAA;
  11491. }
  11492. #u82298.disabled {
  11493. }
  11494. .u82298_input_option {
  11495. font-size:11px;
  11496. }
  11497. #u82299 {
  11498. border-width:0px;
  11499. position:absolute;
  11500. left:0px;
  11501. top:0px;
  11502. width:0px;
  11503. height:0px;
  11504. }
  11505. #u82300_div {
  11506. border-width:0px;
  11507. position:absolute;
  11508. left:0px;
  11509. top:0px;
  11510. width:140px;
  11511. height:28px;
  11512. background:inherit;
  11513. background-color:rgba(255, 255, 255, 1);
  11514. box-sizing:border-box;
  11515. border-width:1px;
  11516. border-style:solid;
  11517. border-color:rgba(201, 201, 201, 1);
  11518. border-radius:4px;
  11519. -moz-box-shadow:none;
  11520. -webkit-box-shadow:none;
  11521. box-shadow:none;
  11522. font-family:'Microsoft YaHei', sans-serif;
  11523. font-weight:400;
  11524. font-style:normal;
  11525. font-size:14px;
  11526. color:#CCCCCC;
  11527. text-align:left;
  11528. }
  11529. #u82300 {
  11530. border-width:0px;
  11531. position:absolute;
  11532. left:503px;
  11533. top:304px;
  11534. width:140px;
  11535. height:28px;
  11536. display:flex;
  11537. font-family:'Microsoft YaHei', sans-serif;
  11538. font-weight:400;
  11539. font-style:normal;
  11540. font-size:14px;
  11541. color:#CCCCCC;
  11542. text-align:left;
  11543. }
  11544. #u82300 .text {
  11545. position:absolute;
  11546. align-self:center;
  11547. padding:2px 8px 2px 8px;
  11548. box-sizing:border-box;
  11549. width:100%;
  11550. }
  11551. #u82300_text {
  11552. border-width:0px;
  11553. word-wrap:break-word;
  11554. text-transform:none;
  11555. visibility:hidden;
  11556. }
  11557. #u82301_input {
  11558. position:absolute;
  11559. left:0px;
  11560. top:0px;
  11561. width:113px;
  11562. height:26px;
  11563. padding:2px 2px 2px 2px;
  11564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11565. font-weight:400;
  11566. font-style:normal;
  11567. font-size:14px;
  11568. letter-spacing:normal;
  11569. color:#000000;
  11570. vertical-align:none;
  11571. text-align:left;
  11572. text-transform:none;
  11573. background-color:transparent;
  11574. border-color:transparent;
  11575. }
  11576. #u82301_input.disabled {
  11577. position:absolute;
  11578. left:0px;
  11579. top:0px;
  11580. width:113px;
  11581. height:26px;
  11582. padding:2px 2px 2px 2px;
  11583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11584. font-weight:400;
  11585. font-style:normal;
  11586. font-size:14px;
  11587. letter-spacing:normal;
  11588. color:#000000;
  11589. vertical-align:none;
  11590. text-align:left;
  11591. text-transform:none;
  11592. background-color:transparent;
  11593. border-color:transparent;
  11594. }
  11595. #u82301_div {
  11596. border-width:0px;
  11597. position:absolute;
  11598. left:0px;
  11599. top:0px;
  11600. width:113px;
  11601. height:26px;
  11602. background:inherit;
  11603. background-color:rgba(255, 255, 255, 1);
  11604. border:none;
  11605. border-radius:0px;
  11606. -moz-box-shadow:none;
  11607. -webkit-box-shadow:none;
  11608. box-shadow:none;
  11609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11610. font-weight:400;
  11611. font-style:normal;
  11612. font-size:14px;
  11613. }
  11614. #u82301 {
  11615. border-width:0px;
  11616. position:absolute;
  11617. left:508px;
  11618. top:305px;
  11619. width:113px;
  11620. height:26px;
  11621. display:flex;
  11622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11623. font-weight:400;
  11624. font-style:normal;
  11625. font-size:14px;
  11626. }
  11627. #u82301 .text {
  11628. position:absolute;
  11629. align-self:center;
  11630. padding:2px 2px 2px 2px;
  11631. box-sizing:border-box;
  11632. width:100%;
  11633. }
  11634. #u82301_div.disabled {
  11635. border-width:0px;
  11636. position:absolute;
  11637. left:0px;
  11638. top:0px;
  11639. width:113px;
  11640. height:26px;
  11641. background:inherit;
  11642. background-color:rgba(240, 240, 240, 1);
  11643. border:none;
  11644. border-radius:0px;
  11645. -moz-box-shadow:none;
  11646. -webkit-box-shadow:none;
  11647. box-shadow:none;
  11648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11649. font-weight:400;
  11650. font-style:normal;
  11651. font-size:14px;
  11652. }
  11653. #u82301.disabled {
  11654. }
  11655. #u82302_img {
  11656. border-width:0px;
  11657. position:absolute;
  11658. left:0px;
  11659. top:0px;
  11660. width:12px;
  11661. height:15px;
  11662. }
  11663. #u82302 {
  11664. border-width:0px;
  11665. position:absolute;
  11666. left:621px;
  11667. top:311px;
  11668. width:12px;
  11669. height:15px;
  11670. display:flex;
  11671. }
  11672. #u82302 .text {
  11673. position:absolute;
  11674. align-self:center;
  11675. padding:2px 2px 2px 2px;
  11676. box-sizing:border-box;
  11677. width:100%;
  11678. }
  11679. #u82302_text {
  11680. border-width:0px;
  11681. word-wrap:break-word;
  11682. text-transform:none;
  11683. visibility:hidden;
  11684. }
  11685. #u82303 {
  11686. border-width:0px;
  11687. position:absolute;
  11688. left:0px;
  11689. top:0px;
  11690. width:0px;
  11691. height:0px;
  11692. }
  11693. #u82304_div {
  11694. border-width:0px;
  11695. position:absolute;
  11696. left:0px;
  11697. top:0px;
  11698. width:140px;
  11699. height:30px;
  11700. background:inherit;
  11701. background-color:rgba(255, 255, 255, 1);
  11702. box-sizing:border-box;
  11703. border-width:1px;
  11704. border-style:solid;
  11705. border-color:rgba(201, 201, 201, 1);
  11706. border-radius:4px;
  11707. -moz-box-shadow:none;
  11708. -webkit-box-shadow:none;
  11709. box-shadow:none;
  11710. font-family:'Microsoft YaHei', sans-serif;
  11711. font-weight:400;
  11712. font-style:normal;
  11713. font-size:14px;
  11714. color:#CCCCCC;
  11715. text-align:left;
  11716. }
  11717. #u82304 {
  11718. border-width:0px;
  11719. position:absolute;
  11720. left:353px;
  11721. top:262px;
  11722. width:140px;
  11723. height:30px;
  11724. display:flex;
  11725. font-family:'Microsoft YaHei', sans-serif;
  11726. font-weight:400;
  11727. font-style:normal;
  11728. font-size:14px;
  11729. color:#CCCCCC;
  11730. text-align:left;
  11731. }
  11732. #u82304 .text {
  11733. position:absolute;
  11734. align-self:center;
  11735. padding:2px 8px 2px 8px;
  11736. box-sizing:border-box;
  11737. width:100%;
  11738. }
  11739. #u82304_text {
  11740. border-width:0px;
  11741. word-wrap:break-word;
  11742. text-transform:none;
  11743. visibility:hidden;
  11744. }
  11745. #u82305_input {
  11746. position:absolute;
  11747. left:0px;
  11748. top:0px;
  11749. width:126px;
  11750. height:25px;
  11751. padding:2px 2px 2px 2px;
  11752. font-family:'Microsoft YaHei', sans-serif;
  11753. font-weight:400;
  11754. font-style:normal;
  11755. font-size:10px;
  11756. letter-spacing:normal;
  11757. color:#000000;
  11758. vertical-align:none;
  11759. text-align:left;
  11760. text-transform:none;
  11761. background-color:transparent;
  11762. border-color:transparent;
  11763. }
  11764. #u82305_input.disabled {
  11765. position:absolute;
  11766. left:0px;
  11767. top:0px;
  11768. width:126px;
  11769. height:25px;
  11770. padding:2px 2px 2px 2px;
  11771. font-family:'Microsoft YaHei', sans-serif;
  11772. font-weight:400;
  11773. font-style:normal;
  11774. font-size:10px;
  11775. letter-spacing:normal;
  11776. color:#000000;
  11777. vertical-align:none;
  11778. text-align:left;
  11779. text-transform:none;
  11780. background-color:transparent;
  11781. border-color:transparent;
  11782. }
  11783. #u82305_div {
  11784. border-width:0px;
  11785. position:absolute;
  11786. left:0px;
  11787. top:0px;
  11788. width:126px;
  11789. height:25px;
  11790. background:inherit;
  11791. background-color:rgba(255, 255, 255, 1);
  11792. border:none;
  11793. border-radius:0px;
  11794. -moz-box-shadow:none;
  11795. -webkit-box-shadow:none;
  11796. box-shadow:none;
  11797. font-family:'Microsoft YaHei', sans-serif;
  11798. font-weight:400;
  11799. font-style:normal;
  11800. font-size:10px;
  11801. }
  11802. #u82305 {
  11803. border-width:0px;
  11804. position:absolute;
  11805. left:361px;
  11806. top:263px;
  11807. width:126px;
  11808. height:25px;
  11809. display:flex;
  11810. font-family:'Microsoft YaHei', sans-serif;
  11811. font-weight:400;
  11812. font-style:normal;
  11813. font-size:10px;
  11814. }
  11815. #u82305 .text {
  11816. position:absolute;
  11817. align-self:center;
  11818. padding:2px 2px 2px 2px;
  11819. box-sizing:border-box;
  11820. width:100%;
  11821. }
  11822. #u82305_div.disabled {
  11823. border-width:0px;
  11824. position:absolute;
  11825. left:0px;
  11826. top:0px;
  11827. width:126px;
  11828. height:25px;
  11829. background:inherit;
  11830. background-color:rgba(240, 240, 240, 1);
  11831. border:none;
  11832. border-radius:0px;
  11833. -moz-box-shadow:none;
  11834. -webkit-box-shadow:none;
  11835. box-shadow:none;
  11836. font-family:'Microsoft YaHei', sans-serif;
  11837. font-weight:400;
  11838. font-style:normal;
  11839. font-size:10px;
  11840. }
  11841. #u82305.disabled {
  11842. }
  11843. #u82306 {
  11844. border-width:0px;
  11845. position:absolute;
  11846. left:0px;
  11847. top:0px;
  11848. width:0px;
  11849. height:0px;
  11850. }
  11851. #u82307_div {
  11852. border-width:0px;
  11853. position:absolute;
  11854. left:0px;
  11855. top:0px;
  11856. width:140px;
  11857. height:30px;
  11858. background:inherit;
  11859. background-color:rgba(255, 255, 255, 1);
  11860. box-sizing:border-box;
  11861. border-width:1px;
  11862. border-style:solid;
  11863. border-color:rgba(215, 215, 215, 1);
  11864. border-radius:4px;
  11865. -moz-box-shadow:none;
  11866. -webkit-box-shadow:none;
  11867. box-shadow:none;
  11868. font-size:11px;
  11869. }
  11870. #u82307 {
  11871. border-width:0px;
  11872. position:absolute;
  11873. left:1253px;
  11874. top:262px;
  11875. width:140px;
  11876. height:30px;
  11877. display:flex;
  11878. font-size:11px;
  11879. }
  11880. #u82307 .text {
  11881. position:absolute;
  11882. align-self:center;
  11883. padding:2px 2px 2px 2px;
  11884. box-sizing:border-box;
  11885. width:100%;
  11886. }
  11887. #u82307_text {
  11888. border-width:0px;
  11889. word-wrap:break-word;
  11890. text-transform:none;
  11891. visibility:hidden;
  11892. }
  11893. #u82308_input {
  11894. position:absolute;
  11895. left:0px;
  11896. top:0px;
  11897. width:125px;
  11898. height:23px;
  11899. padding:2px 2px 2px 2px;
  11900. font-family:'ArialMT', 'Arial', sans-serif;
  11901. font-weight:400;
  11902. font-style:normal;
  11903. font-size:11px;
  11904. letter-spacing:normal;
  11905. color:#AAAAAA;
  11906. vertical-align:none;
  11907. text-align:left;
  11908. text-transform:none;
  11909. background-color:transparent;
  11910. border-color:transparent;
  11911. }
  11912. #u82308_input.disabled {
  11913. position:absolute;
  11914. left:0px;
  11915. top:0px;
  11916. width:125px;
  11917. height:23px;
  11918. padding:2px 2px 2px 2px;
  11919. font-family:'ArialMT', 'Arial', sans-serif;
  11920. font-weight:400;
  11921. font-style:normal;
  11922. font-size:11px;
  11923. letter-spacing:normal;
  11924. color:#AAAAAA;
  11925. vertical-align:none;
  11926. text-align:left;
  11927. text-transform:none;
  11928. background-color:transparent;
  11929. border-color:transparent;
  11930. }
  11931. #u82308_div {
  11932. border-width:0px;
  11933. position:absolute;
  11934. left:0px;
  11935. top:0px;
  11936. width:125px;
  11937. height:23px;
  11938. background:inherit;
  11939. background-color:rgba(255, 255, 255, 1);
  11940. border:none;
  11941. border-radius:0px;
  11942. -moz-box-shadow:none;
  11943. -webkit-box-shadow:none;
  11944. box-shadow:none;
  11945. font-size:11px;
  11946. color:#AAAAAA;
  11947. }
  11948. #u82308 {
  11949. border-width:0px;
  11950. position:absolute;
  11951. left:1259px;
  11952. top:264px;
  11953. width:125px;
  11954. height:23px;
  11955. display:flex;
  11956. font-size:11px;
  11957. color:#AAAAAA;
  11958. }
  11959. #u82308 .text {
  11960. position:absolute;
  11961. align-self:flex-start;
  11962. padding:2px 2px 2px 2px;
  11963. box-sizing:border-box;
  11964. width:100%;
  11965. }
  11966. #u82308_div.disabled {
  11967. border-width:0px;
  11968. position:absolute;
  11969. left:0px;
  11970. top:0px;
  11971. width:125px;
  11972. height:23px;
  11973. background:inherit;
  11974. background-color:rgba(240, 240, 240, 1);
  11975. border:none;
  11976. border-radius:0px;
  11977. -moz-box-shadow:none;
  11978. -webkit-box-shadow:none;
  11979. box-shadow:none;
  11980. font-size:11px;
  11981. color:#AAAAAA;
  11982. }
  11983. #u82308.disabled {
  11984. }
  11985. .u82308_input_option {
  11986. font-size:11px;
  11987. }
  11988. #u82309 {
  11989. border-width:0px;
  11990. position:absolute;
  11991. left:0px;
  11992. top:0px;
  11993. width:0px;
  11994. height:0px;
  11995. }
  11996. #u82310_div {
  11997. border-width:0px;
  11998. position:absolute;
  11999. left:0px;
  12000. top:0px;
  12001. width:140px;
  12002. height:30px;
  12003. background:inherit;
  12004. background-color:rgba(255, 255, 255, 1);
  12005. box-sizing:border-box;
  12006. border-width:1px;
  12007. border-style:solid;
  12008. border-color:rgba(215, 215, 215, 1);
  12009. border-radius:4px;
  12010. -moz-box-shadow:none;
  12011. -webkit-box-shadow:none;
  12012. box-shadow:none;
  12013. font-size:11px;
  12014. }
  12015. #u82310 {
  12016. border-width:0px;
  12017. position:absolute;
  12018. left:652px;
  12019. top:302px;
  12020. width:140px;
  12021. height:30px;
  12022. display:flex;
  12023. font-size:11px;
  12024. }
  12025. #u82310 .text {
  12026. position:absolute;
  12027. align-self:center;
  12028. padding:2px 2px 2px 2px;
  12029. box-sizing:border-box;
  12030. width:100%;
  12031. }
  12032. #u82310_text {
  12033. border-width:0px;
  12034. word-wrap:break-word;
  12035. text-transform:none;
  12036. visibility:hidden;
  12037. }
  12038. #u82311_input {
  12039. position:absolute;
  12040. left:0px;
  12041. top:0px;
  12042. width:125px;
  12043. height:23px;
  12044. padding:2px 2px 2px 2px;
  12045. font-family:'ArialMT', 'Arial', sans-serif;
  12046. font-weight:400;
  12047. font-style:normal;
  12048. font-size:11px;
  12049. letter-spacing:normal;
  12050. color:#AAAAAA;
  12051. vertical-align:none;
  12052. text-align:left;
  12053. text-transform:none;
  12054. background-color:transparent;
  12055. border-color:transparent;
  12056. }
  12057. #u82311_input.disabled {
  12058. position:absolute;
  12059. left:0px;
  12060. top:0px;
  12061. width:125px;
  12062. height:23px;
  12063. padding:2px 2px 2px 2px;
  12064. font-family:'ArialMT', 'Arial', sans-serif;
  12065. font-weight:400;
  12066. font-style:normal;
  12067. font-size:11px;
  12068. letter-spacing:normal;
  12069. color:#AAAAAA;
  12070. vertical-align:none;
  12071. text-align:left;
  12072. text-transform:none;
  12073. background-color:transparent;
  12074. border-color:transparent;
  12075. }
  12076. #u82311_div {
  12077. border-width:0px;
  12078. position:absolute;
  12079. left:0px;
  12080. top:0px;
  12081. width:125px;
  12082. height:23px;
  12083. background:inherit;
  12084. background-color:rgba(255, 255, 255, 1);
  12085. border:none;
  12086. border-radius:0px;
  12087. -moz-box-shadow:none;
  12088. -webkit-box-shadow:none;
  12089. box-shadow:none;
  12090. font-size:11px;
  12091. color:#AAAAAA;
  12092. }
  12093. #u82311 {
  12094. border-width:0px;
  12095. position:absolute;
  12096. left:659px;
  12097. top:304px;
  12098. width:125px;
  12099. height:23px;
  12100. display:flex;
  12101. font-size:11px;
  12102. color:#AAAAAA;
  12103. }
  12104. #u82311 .text {
  12105. position:absolute;
  12106. align-self:flex-start;
  12107. padding:2px 2px 2px 2px;
  12108. box-sizing:border-box;
  12109. width:100%;
  12110. }
  12111. #u82311_div.disabled {
  12112. border-width:0px;
  12113. position:absolute;
  12114. left:0px;
  12115. top:0px;
  12116. width:125px;
  12117. height:23px;
  12118. background:inherit;
  12119. background-color:rgba(240, 240, 240, 1);
  12120. border:none;
  12121. border-radius:0px;
  12122. -moz-box-shadow:none;
  12123. -webkit-box-shadow:none;
  12124. box-shadow:none;
  12125. font-size:11px;
  12126. color:#AAAAAA;
  12127. }
  12128. #u82311.disabled {
  12129. }
  12130. .u82311_input_option {
  12131. font-size:11px;
  12132. }
  12133. #u82312 {
  12134. border-width:0px;
  12135. position:absolute;
  12136. left:0px;
  12137. top:0px;
  12138. width:0px;
  12139. height:0px;
  12140. }
  12141. #u82313_div {
  12142. border-width:0px;
  12143. position:absolute;
  12144. left:0px;
  12145. top:0px;
  12146. width:120px;
  12147. height:140px;
  12148. background:inherit;
  12149. background-color:rgba(255, 255, 255, 1);
  12150. box-sizing:border-box;
  12151. border-width:1px;
  12152. border-style:solid;
  12153. border-color:rgba(242, 242, 242, 1);
  12154. border-left:0px;
  12155. border-right:0px;
  12156. border-radius:3px;
  12157. border-top-left-radius:0px;
  12158. border-top-right-radius:0px;
  12159. border-bottom-right-radius:0px;
  12160. border-bottom-left-radius:0px;
  12161. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  12162. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  12163. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  12164. }
  12165. #u82313 {
  12166. border-width:0px;
  12167. position:absolute;
  12168. left:1419px;
  12169. top:455px;
  12170. width:120px;
  12171. height:140px;
  12172. display:flex;
  12173. }
  12174. #u82313 .text {
  12175. position:absolute;
  12176. align-self:center;
  12177. padding:2px 2px 2px 2px;
  12178. box-sizing:border-box;
  12179. width:100%;
  12180. }
  12181. #u82313_text {
  12182. border-width:0px;
  12183. word-wrap:break-word;
  12184. text-transform:none;
  12185. visibility:hidden;
  12186. }
  12187. #u82314_div {
  12188. border-width:0px;
  12189. position:absolute;
  12190. left:0px;
  12191. top:0px;
  12192. width:100px;
  12193. height:40px;
  12194. background:inherit;
  12195. background-color:rgba(255, 255, 255, 1);
  12196. box-sizing:border-box;
  12197. border-width:1px;
  12198. border-style:solid;
  12199. border-color:rgba(242, 242, 242, 1);
  12200. border-left:0px;
  12201. border-top:0px;
  12202. border-right:0px;
  12203. border-radius:4px;
  12204. border-bottom-right-radius:0px;
  12205. border-bottom-left-radius:0px;
  12206. -moz-box-shadow:none;
  12207. -webkit-box-shadow:none;
  12208. box-shadow:none;
  12209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12210. font-weight:400;
  12211. font-style:normal;
  12212. font-size:14px;
  12213. }
  12214. #u82314 {
  12215. border-width:0px;
  12216. position:absolute;
  12217. left:1429px;
  12218. top:466px;
  12219. width:100px;
  12220. height:40px;
  12221. display:flex;
  12222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12223. font-weight:400;
  12224. font-style:normal;
  12225. font-size:14px;
  12226. }
  12227. #u82314 .text {
  12228. position:absolute;
  12229. align-self:center;
  12230. padding:5px 0px 5px 0px;
  12231. box-sizing:border-box;
  12232. width:100%;
  12233. }
  12234. #u82314_text {
  12235. border-width:0px;
  12236. word-wrap:break-word;
  12237. text-transform:none;
  12238. }
  12239. #u82315_div {
  12240. border-width:0px;
  12241. position:absolute;
  12242. left:0px;
  12243. top:0px;
  12244. width:100px;
  12245. height:40px;
  12246. background:inherit;
  12247. background-color:rgba(255, 255, 255, 1);
  12248. box-sizing:border-box;
  12249. border-width:1px;
  12250. border-style:solid;
  12251. border-color:rgba(242, 242, 242, 1);
  12252. border-left:0px;
  12253. border-top:0px;
  12254. border-right:0px;
  12255. border-radius:4px;
  12256. border-bottom-right-radius:0px;
  12257. border-bottom-left-radius:0px;
  12258. -moz-box-shadow:none;
  12259. -webkit-box-shadow:none;
  12260. box-shadow:none;
  12261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12262. font-weight:400;
  12263. font-style:normal;
  12264. font-size:14px;
  12265. }
  12266. #u82315 {
  12267. border-width:0px;
  12268. position:absolute;
  12269. left:1429px;
  12270. top:506px;
  12271. width:100px;
  12272. height:40px;
  12273. display:flex;
  12274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12275. font-weight:400;
  12276. font-style:normal;
  12277. font-size:14px;
  12278. }
  12279. #u82315 .text {
  12280. position:absolute;
  12281. align-self:center;
  12282. padding:5px 0px 5px 0px;
  12283. box-sizing:border-box;
  12284. width:100%;
  12285. }
  12286. #u82315_text {
  12287. border-width:0px;
  12288. word-wrap:break-word;
  12289. text-transform:none;
  12290. }
  12291. #u82316_div {
  12292. border-width:0px;
  12293. position:absolute;
  12294. left:0px;
  12295. top:0px;
  12296. width:100px;
  12297. height:40px;
  12298. background:inherit;
  12299. background-color:rgba(255, 255, 255, 1);
  12300. border:none;
  12301. border-left:0px;
  12302. border-top:0px;
  12303. border-right:0px;
  12304. border-radius:4px;
  12305. border-bottom-right-radius:0px;
  12306. border-bottom-left-radius:0px;
  12307. -moz-box-shadow:none;
  12308. -webkit-box-shadow:none;
  12309. box-shadow:none;
  12310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12311. font-weight:400;
  12312. font-style:normal;
  12313. font-size:14px;
  12314. }
  12315. #u82316 {
  12316. border-width:0px;
  12317. position:absolute;
  12318. left:1429px;
  12319. top:546px;
  12320. width:100px;
  12321. height:40px;
  12322. display:flex;
  12323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12324. font-weight:400;
  12325. font-style:normal;
  12326. font-size:14px;
  12327. }
  12328. #u82316 .text {
  12329. position:absolute;
  12330. align-self:center;
  12331. padding:5px 0px 5px 0px;
  12332. box-sizing:border-box;
  12333. width:100%;
  12334. }
  12335. #u82316_text {
  12336. border-width:0px;
  12337. word-wrap:break-word;
  12338. text-transform:none;
  12339. }