styles.css 165 KB

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