styles.css 218 KB

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