styles.css 214 KB

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