styles.css 144 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224
  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. #u80048_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. #u80048 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u80048 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u80048_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u80049_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. #u80049 {
  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. #u80049 .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. #u80049_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u80050_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. #u80050 {
  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. #u80050 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u80050_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u80051 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u80052_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u80052 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u80052 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u80052_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u80053_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. #u80053 {
  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. #u80053 .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. #u80053_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u80054_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. #u80054 {
  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. #u80054 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u80054_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u80055 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u80056_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u80056 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u80056 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u80056_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u80057_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u80057 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u80057 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u80057_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u80058 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u80059_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u80059 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u80059 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u80059_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u80060_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u80060 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u80060 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u80060_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u80061 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u80062_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u80062 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u80062 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u80062_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u80063_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u80063 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u80063 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u80063_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u80064 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u80065_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u80065 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u80065 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u80065_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u80066_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u80066 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u80066 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u80066_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u80067 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u80068_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u80068 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u80068 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u80068_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u80069_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u80069 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u80069 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u80069_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u80070 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u80071_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u80071 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u80071 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u80071_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u80072_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u80072 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u80072 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u80072_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u80073 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u80074_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u80074 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u80074 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u80074_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u80075_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u80075 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u80075 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u80075_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u80076 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u80077_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u80077 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u80077 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u80077_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u80078_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u80078 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u80078 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u80078_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u80079 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u80080_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u80080 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u80080 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u80080_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u80081_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u80081 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u80081 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u80081_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u80082_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u80082 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u80082 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u80082_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u80083_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u80083 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u80083 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u80083_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u80084_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u80084 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u80084 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u80084_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u80085_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u80085 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u80085 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u80085_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u80086 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u80087_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u80087 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u80087 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u80087_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u80088_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u80088 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u80088 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u80088_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u80089 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u80090_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u80090 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u80090 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u80090_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u80091_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u80091 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u80091 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u80091_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u80092 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u80093_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u80093_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u80093_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u80093 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u80093 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u80093_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u80093.disabled {
  1428. }
  1429. .u80093_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u80094_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u80094 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u80094 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u80094_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u80095_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u80095 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u80095 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u80095_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u80096_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u80096 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u80096 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u80096_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u80097_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1257px;
  1544. height:1192px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1553. font-weight:400;
  1554. font-style:normal;
  1555. font-size:12px;
  1556. color:#FFFFFF;
  1557. text-align:left;
  1558. }
  1559. #u80097 {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:330px;
  1563. top:49px;
  1564. width:1257px;
  1565. height:1192px;
  1566. display:flex;
  1567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1568. font-weight:400;
  1569. font-style:normal;
  1570. font-size:12px;
  1571. color:#FFFFFF;
  1572. text-align:left;
  1573. }
  1574. #u80097 .text {
  1575. position:absolute;
  1576. align-self:center;
  1577. padding:2px 2px 2px 50px;
  1578. box-sizing:border-box;
  1579. width:100%;
  1580. }
  1581. #u80097_text {
  1582. border-width:0px;
  1583. word-wrap:break-word;
  1584. text-transform:none;
  1585. visibility:hidden;
  1586. }
  1587. #u80098 {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:349px;
  1591. top:159px;
  1592. width:1219px;
  1593. height:293px;
  1594. }
  1595. #u80099_img {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:89px;
  1601. height:39px;
  1602. }
  1603. #u80099 {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:0px;
  1607. top:0px;
  1608. width:89px;
  1609. height:39px;
  1610. display:flex;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:12px;
  1615. color:#FFFFFF;
  1616. }
  1617. #u80099 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 0px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u80099_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. }
  1629. #u80100_img {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:89px;
  1635. height:39px;
  1636. }
  1637. #u80100 {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:89px;
  1641. top:0px;
  1642. width:89px;
  1643. height:39px;
  1644. display:flex;
  1645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1646. font-weight:400;
  1647. font-style:normal;
  1648. font-size:12px;
  1649. color:#FFFFFF;
  1650. }
  1651. #u80100 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:2px 2px 2px 0px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u80100_text {
  1659. border-width:0px;
  1660. word-wrap:break-word;
  1661. text-transform:none;
  1662. }
  1663. #u80101_img {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:84px;
  1669. height:39px;
  1670. }
  1671. #u80101 {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:178px;
  1675. top:0px;
  1676. width:84px;
  1677. height:39px;
  1678. display:flex;
  1679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1680. font-weight:400;
  1681. font-style:normal;
  1682. font-size:12px;
  1683. color:#FFFFFF;
  1684. }
  1685. #u80101 .text {
  1686. position:absolute;
  1687. align-self:center;
  1688. padding:2px 2px 2px 0px;
  1689. box-sizing:border-box;
  1690. width:100%;
  1691. }
  1692. #u80101_text {
  1693. border-width:0px;
  1694. word-wrap:break-word;
  1695. text-transform:none;
  1696. }
  1697. #u80102_img {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:89px;
  1703. height:39px;
  1704. }
  1705. #u80102 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:262px;
  1709. top:0px;
  1710. width:89px;
  1711. height:39px;
  1712. display:flex;
  1713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1714. font-weight:400;
  1715. font-style:normal;
  1716. font-size:12px;
  1717. color:#FFFFFF;
  1718. }
  1719. #u80102 .text {
  1720. position:absolute;
  1721. align-self:center;
  1722. padding:2px 2px 2px 0px;
  1723. box-sizing:border-box;
  1724. width:100%;
  1725. }
  1726. #u80102_text {
  1727. border-width:0px;
  1728. word-wrap:break-word;
  1729. text-transform:none;
  1730. }
  1731. #u80103_img {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:89px;
  1737. height:39px;
  1738. }
  1739. #u80103 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:351px;
  1743. top:0px;
  1744. width:89px;
  1745. height:39px;
  1746. display:flex;
  1747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1748. font-weight:400;
  1749. font-style:normal;
  1750. font-size:12px;
  1751. color:#FFFFFF;
  1752. }
  1753. #u80103 .text {
  1754. position:absolute;
  1755. align-self:center;
  1756. padding:2px 2px 2px 0px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u80103_text {
  1761. border-width:0px;
  1762. word-wrap:break-word;
  1763. text-transform:none;
  1764. }
  1765. #u80104_img {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:84px;
  1771. height:39px;
  1772. }
  1773. #u80104 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:440px;
  1777. top:0px;
  1778. width:84px;
  1779. height:39px;
  1780. display:flex;
  1781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1782. font-weight:400;
  1783. font-style:normal;
  1784. font-size:12px;
  1785. color:#FFFFFF;
  1786. }
  1787. #u80104 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 2px 2px 0px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u80104_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. }
  1799. #u80105_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:84px;
  1805. height:39px;
  1806. }
  1807. #u80105 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:524px;
  1811. top:0px;
  1812. width:84px;
  1813. height:39px;
  1814. display:flex;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:12px;
  1819. color:#FFFFFF;
  1820. }
  1821. #u80105 .text {
  1822. position:absolute;
  1823. align-self:center;
  1824. padding:2px 2px 2px 0px;
  1825. box-sizing:border-box;
  1826. width:100%;
  1827. }
  1828. #u80105_text {
  1829. border-width:0px;
  1830. word-wrap:break-word;
  1831. text-transform:none;
  1832. }
  1833. #u80106_img {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:84px;
  1839. height:39px;
  1840. }
  1841. #u80106 {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:608px;
  1845. top:0px;
  1846. width:84px;
  1847. height:39px;
  1848. display:flex;
  1849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1850. font-weight:400;
  1851. font-style:normal;
  1852. font-size:12px;
  1853. color:#FFFFFF;
  1854. }
  1855. #u80106 .text {
  1856. position:absolute;
  1857. align-self:center;
  1858. padding:2px 2px 2px 0px;
  1859. box-sizing:border-box;
  1860. width:100%;
  1861. }
  1862. #u80106_text {
  1863. border-width:0px;
  1864. word-wrap:break-word;
  1865. text-transform:none;
  1866. }
  1867. #u80107_img {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:84px;
  1873. height:39px;
  1874. }
  1875. #u80107 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:692px;
  1879. top:0px;
  1880. width:84px;
  1881. height:39px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:12px;
  1887. color:#FFFFFF;
  1888. }
  1889. #u80107 .text {
  1890. position:absolute;
  1891. align-self:center;
  1892. padding:2px 2px 2px 0px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u80107_text {
  1897. border-width:0px;
  1898. word-wrap:break-word;
  1899. text-transform:none;
  1900. }
  1901. #u80108_img {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:89px;
  1907. height:39px;
  1908. }
  1909. #u80108 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:776px;
  1913. top:0px;
  1914. width:89px;
  1915. height:39px;
  1916. display:flex;
  1917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1918. font-weight:400;
  1919. font-style:normal;
  1920. font-size:12px;
  1921. color:#FFFFFF;
  1922. }
  1923. #u80108 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:2px 2px 2px 0px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u80108_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. }
  1935. #u80109_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:83px;
  1941. height:39px;
  1942. }
  1943. #u80109 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:865px;
  1947. top:0px;
  1948. width:83px;
  1949. height:39px;
  1950. display:flex;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:12px;
  1955. color:#FFFFFF;
  1956. }
  1957. #u80109 .text {
  1958. position:absolute;
  1959. align-self:center;
  1960. padding:2px 2px 2px 0px;
  1961. box-sizing:border-box;
  1962. width:100%;
  1963. }
  1964. #u80109_text {
  1965. border-width:0px;
  1966. word-wrap:break-word;
  1967. text-transform:none;
  1968. }
  1969. #u80110_img {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:93px;
  1975. height:39px;
  1976. }
  1977. #u80110 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:948px;
  1981. top:0px;
  1982. width:93px;
  1983. height:39px;
  1984. display:flex;
  1985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1986. font-weight:400;
  1987. font-style:normal;
  1988. font-size:12px;
  1989. color:#FFFFFF;
  1990. }
  1991. #u80110 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 0px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u80110_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. }
  2003. #u80111_img {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:84px;
  2009. height:39px;
  2010. }
  2011. #u80111 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:1041px;
  2015. top:0px;
  2016. width:84px;
  2017. height:39px;
  2018. display:flex;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. font-size:12px;
  2023. color:#FFFFFF;
  2024. }
  2025. #u80111 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 0px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u80111_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. }
  2037. #u80112_img {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:94px;
  2043. height:39px;
  2044. }
  2045. #u80112 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:1125px;
  2049. top:0px;
  2050. width:94px;
  2051. height:39px;
  2052. display:flex;
  2053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2054. font-weight:400;
  2055. font-style:normal;
  2056. font-size:12px;
  2057. color:#FFFFFF;
  2058. }
  2059. #u80112 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 2px 2px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u80112_text {
  2067. border-width:0px;
  2068. word-wrap:break-word;
  2069. text-transform:none;
  2070. }
  2071. #u80113_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:89px;
  2077. height:38px;
  2078. }
  2079. #u80113 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:39px;
  2084. width:89px;
  2085. height:38px;
  2086. display:flex;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:12px;
  2091. }
  2092. #u80113 .text {
  2093. position:absolute;
  2094. align-self:center;
  2095. padding:2px 2px 2px 0px;
  2096. box-sizing:border-box;
  2097. width:100%;
  2098. }
  2099. #u80113_text {
  2100. border-width:0px;
  2101. word-wrap:break-word;
  2102. text-transform:none;
  2103. }
  2104. #u80114_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:89px;
  2110. height:38px;
  2111. }
  2112. #u80114 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:89px;
  2116. top:39px;
  2117. width:89px;
  2118. height:38px;
  2119. display:flex;
  2120. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:12px;
  2124. }
  2125. #u80114 .text {
  2126. position:absolute;
  2127. align-self:center;
  2128. padding:2px 2px 2px 0px;
  2129. box-sizing:border-box;
  2130. width:100%;
  2131. }
  2132. #u80114_text {
  2133. border-width:0px;
  2134. word-wrap:break-word;
  2135. text-transform:none;
  2136. visibility:hidden;
  2137. }
  2138. #u80115_img {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:84px;
  2144. height:38px;
  2145. }
  2146. #u80115 {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:178px;
  2150. top:39px;
  2151. width:84px;
  2152. height:38px;
  2153. display:flex;
  2154. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2155. font-weight:400;
  2156. font-style:normal;
  2157. font-size:12px;
  2158. }
  2159. #u80115 .text {
  2160. position:absolute;
  2161. align-self:center;
  2162. padding:2px 2px 2px 0px;
  2163. box-sizing:border-box;
  2164. width:100%;
  2165. }
  2166. #u80115_text {
  2167. border-width:0px;
  2168. word-wrap:break-word;
  2169. text-transform:none;
  2170. visibility:hidden;
  2171. }
  2172. #u80116_img {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:89px;
  2178. height:38px;
  2179. }
  2180. #u80116 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:262px;
  2184. top:39px;
  2185. width:89px;
  2186. height:38px;
  2187. display:flex;
  2188. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:12px;
  2192. }
  2193. #u80116 .text {
  2194. position:absolute;
  2195. align-self:center;
  2196. padding:2px 2px 2px 0px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u80116_text {
  2201. border-width:0px;
  2202. word-wrap:break-word;
  2203. text-transform:none;
  2204. visibility:hidden;
  2205. }
  2206. #u80117_img {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:89px;
  2212. height:38px;
  2213. }
  2214. #u80117 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:351px;
  2218. top:39px;
  2219. width:89px;
  2220. height:38px;
  2221. display:flex;
  2222. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2223. font-weight:400;
  2224. font-style:normal;
  2225. font-size:12px;
  2226. }
  2227. #u80117 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:2px 2px 2px 0px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u80117_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. visibility:hidden;
  2239. }
  2240. #u80118_img {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:84px;
  2246. height:38px;
  2247. }
  2248. #u80118 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:440px;
  2252. top:39px;
  2253. width:84px;
  2254. height:38px;
  2255. display:flex;
  2256. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:12px;
  2260. }
  2261. #u80118 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u80118_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. visibility:hidden;
  2273. }
  2274. #u80119_img {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:84px;
  2280. height:38px;
  2281. }
  2282. #u80119 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:524px;
  2286. top:39px;
  2287. width:84px;
  2288. height:38px;
  2289. display:flex;
  2290. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:12px;
  2294. }
  2295. #u80119 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u80119_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u80120_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:84px;
  2314. height:38px;
  2315. }
  2316. #u80120 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:608px;
  2320. top:39px;
  2321. width:84px;
  2322. height:38px;
  2323. display:flex;
  2324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:12px;
  2328. }
  2329. #u80120 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u80120_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. visibility:hidden;
  2341. }
  2342. #u80121_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:84px;
  2348. height:38px;
  2349. }
  2350. #u80121 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:692px;
  2354. top:39px;
  2355. width:84px;
  2356. height:38px;
  2357. display:flex;
  2358. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:12px;
  2362. }
  2363. #u80121 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 0px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u80121_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u80122_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:89px;
  2382. height:38px;
  2383. }
  2384. #u80122 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:776px;
  2388. top:39px;
  2389. width:89px;
  2390. height:38px;
  2391. display:flex;
  2392. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:12px;
  2396. }
  2397. #u80122 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 0px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u80122_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u80123_img {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:83px;
  2416. height:38px;
  2417. }
  2418. #u80123 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:865px;
  2422. top:39px;
  2423. width:83px;
  2424. height:38px;
  2425. display:flex;
  2426. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:12px;
  2430. }
  2431. #u80123 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:2px 2px 2px 0px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u80123_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. visibility:hidden;
  2443. }
  2444. #u80124_img {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:93px;
  2450. height:38px;
  2451. }
  2452. #u80124 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:948px;
  2456. top:39px;
  2457. width:93px;
  2458. height:38px;
  2459. display:flex;
  2460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:12px;
  2464. }
  2465. #u80124 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 0px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u80124_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. visibility:hidden;
  2477. }
  2478. #u80125_img {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:84px;
  2484. height:38px;
  2485. }
  2486. #u80125 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:1041px;
  2490. top:39px;
  2491. width:84px;
  2492. height:38px;
  2493. display:flex;
  2494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2495. font-weight:400;
  2496. font-style:normal;
  2497. font-size:12px;
  2498. }
  2499. #u80125 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 0px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u80125_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. visibility:hidden;
  2511. }
  2512. #u80126_img {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:94px;
  2518. height:38px;
  2519. }
  2520. #u80126 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:1125px;
  2524. top:39px;
  2525. width:94px;
  2526. height:38px;
  2527. display:flex;
  2528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2529. font-weight:400;
  2530. font-style:normal;
  2531. font-size:12px;
  2532. color:#1890FF;
  2533. }
  2534. #u80126 .text {
  2535. position:absolute;
  2536. align-self:center;
  2537. padding:2px 2px 2px 0px;
  2538. box-sizing:border-box;
  2539. width:100%;
  2540. }
  2541. #u80126_text {
  2542. border-width:0px;
  2543. word-wrap:break-word;
  2544. text-transform:none;
  2545. }
  2546. #u80127_img {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:89px;
  2552. height:38px;
  2553. }
  2554. #u80127 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:77px;
  2559. width:89px;
  2560. height:38px;
  2561. display:flex;
  2562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. font-size:12px;
  2566. }
  2567. #u80127 .text {
  2568. position:absolute;
  2569. align-self:center;
  2570. padding:2px 2px 2px 0px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u80127_text {
  2575. border-width:0px;
  2576. word-wrap:break-word;
  2577. text-transform:none;
  2578. }
  2579. #u80128_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:89px;
  2585. height:38px;
  2586. }
  2587. #u80128 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:89px;
  2591. top:77px;
  2592. width:89px;
  2593. height:38px;
  2594. display:flex;
  2595. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:12px;
  2599. }
  2600. #u80128 .text {
  2601. position:absolute;
  2602. align-self:center;
  2603. padding:2px 2px 2px 0px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u80128_text {
  2608. border-width:0px;
  2609. word-wrap:break-word;
  2610. text-transform:none;
  2611. visibility:hidden;
  2612. }
  2613. #u80129_img {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:84px;
  2619. height:38px;
  2620. }
  2621. #u80129 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:178px;
  2625. top:77px;
  2626. width:84px;
  2627. height:38px;
  2628. display:flex;
  2629. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2630. font-weight:400;
  2631. font-style:normal;
  2632. font-size:12px;
  2633. }
  2634. #u80129 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 2px 2px 0px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u80129_text {
  2642. border-width:0px;
  2643. word-wrap:break-word;
  2644. text-transform:none;
  2645. visibility:hidden;
  2646. }
  2647. #u80130_img {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:89px;
  2653. height:38px;
  2654. }
  2655. #u80130 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:262px;
  2659. top:77px;
  2660. width:89px;
  2661. height:38px;
  2662. display:flex;
  2663. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:12px;
  2667. }
  2668. #u80130 .text {
  2669. position:absolute;
  2670. align-self:center;
  2671. padding:2px 2px 2px 0px;
  2672. box-sizing:border-box;
  2673. width:100%;
  2674. }
  2675. #u80130_text {
  2676. border-width:0px;
  2677. word-wrap:break-word;
  2678. text-transform:none;
  2679. visibility:hidden;
  2680. }
  2681. #u80131_img {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:0px;
  2685. top:0px;
  2686. width:89px;
  2687. height:38px;
  2688. }
  2689. #u80131 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:351px;
  2693. top:77px;
  2694. width:89px;
  2695. height:38px;
  2696. display:flex;
  2697. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2698. font-weight:400;
  2699. font-style:normal;
  2700. font-size:12px;
  2701. }
  2702. #u80131 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 2px 2px 0px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u80131_text {
  2710. border-width:0px;
  2711. word-wrap:break-word;
  2712. text-transform:none;
  2713. visibility:hidden;
  2714. }
  2715. #u80132_img {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:84px;
  2721. height:38px;
  2722. }
  2723. #u80132 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:440px;
  2727. top:77px;
  2728. width:84px;
  2729. height:38px;
  2730. display:flex;
  2731. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2732. font-weight:400;
  2733. font-style:normal;
  2734. font-size:12px;
  2735. }
  2736. #u80132 .text {
  2737. position:absolute;
  2738. align-self:center;
  2739. padding:2px 2px 2px 0px;
  2740. box-sizing:border-box;
  2741. width:100%;
  2742. }
  2743. #u80132_text {
  2744. border-width:0px;
  2745. word-wrap:break-word;
  2746. text-transform:none;
  2747. visibility:hidden;
  2748. }
  2749. #u80133_img {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:0px;
  2754. width:84px;
  2755. height:38px;
  2756. }
  2757. #u80133 {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:524px;
  2761. top:77px;
  2762. width:84px;
  2763. height:38px;
  2764. display:flex;
  2765. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2766. font-weight:400;
  2767. font-style:normal;
  2768. font-size:12px;
  2769. }
  2770. #u80133 .text {
  2771. position:absolute;
  2772. align-self:center;
  2773. padding:2px 2px 2px 0px;
  2774. box-sizing:border-box;
  2775. width:100%;
  2776. }
  2777. #u80133_text {
  2778. border-width:0px;
  2779. word-wrap:break-word;
  2780. text-transform:none;
  2781. visibility:hidden;
  2782. }
  2783. #u80134_img {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:84px;
  2789. height:38px;
  2790. }
  2791. #u80134 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:608px;
  2795. top:77px;
  2796. width:84px;
  2797. height:38px;
  2798. display:flex;
  2799. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:12px;
  2803. }
  2804. #u80134 .text {
  2805. position:absolute;
  2806. align-self:center;
  2807. padding:2px 2px 2px 0px;
  2808. box-sizing:border-box;
  2809. width:100%;
  2810. }
  2811. #u80134_text {
  2812. border-width:0px;
  2813. word-wrap:break-word;
  2814. text-transform:none;
  2815. visibility:hidden;
  2816. }
  2817. #u80135_img {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:84px;
  2823. height:38px;
  2824. }
  2825. #u80135 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:692px;
  2829. top:77px;
  2830. width:84px;
  2831. height:38px;
  2832. display:flex;
  2833. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2834. font-weight:400;
  2835. font-style:normal;
  2836. font-size:12px;
  2837. }
  2838. #u80135 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 0px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u80135_text {
  2846. border-width:0px;
  2847. word-wrap:break-word;
  2848. text-transform:none;
  2849. visibility:hidden;
  2850. }
  2851. #u80136_img {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:89px;
  2857. height:38px;
  2858. }
  2859. #u80136 {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:776px;
  2863. top:77px;
  2864. width:89px;
  2865. height:38px;
  2866. display:flex;
  2867. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2868. font-weight:400;
  2869. font-style:normal;
  2870. font-size:12px;
  2871. }
  2872. #u80136 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:2px 2px 2px 0px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u80136_text {
  2880. border-width:0px;
  2881. word-wrap:break-word;
  2882. text-transform:none;
  2883. visibility:hidden;
  2884. }
  2885. #u80137_img {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:83px;
  2891. height:38px;
  2892. }
  2893. #u80137 {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:865px;
  2897. top:77px;
  2898. width:83px;
  2899. height:38px;
  2900. display:flex;
  2901. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:12px;
  2905. }
  2906. #u80137 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 2px 2px 0px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u80137_text {
  2914. border-width:0px;
  2915. word-wrap:break-word;
  2916. text-transform:none;
  2917. visibility:hidden;
  2918. }
  2919. #u80138_img {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:93px;
  2925. height:38px;
  2926. }
  2927. #u80138 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:948px;
  2931. top:77px;
  2932. width:93px;
  2933. height:38px;
  2934. display:flex;
  2935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2936. font-weight:400;
  2937. font-style:normal;
  2938. font-size:12px;
  2939. }
  2940. #u80138 .text {
  2941. position:absolute;
  2942. align-self:center;
  2943. padding:2px 2px 2px 0px;
  2944. box-sizing:border-box;
  2945. width:100%;
  2946. }
  2947. #u80138_text {
  2948. border-width:0px;
  2949. word-wrap:break-word;
  2950. text-transform:none;
  2951. visibility:hidden;
  2952. }
  2953. #u80139_img {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:0px;
  2957. top:0px;
  2958. width:84px;
  2959. height:38px;
  2960. }
  2961. #u80139 {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:1041px;
  2965. top:77px;
  2966. width:84px;
  2967. height:38px;
  2968. display:flex;
  2969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2970. font-weight:400;
  2971. font-style:normal;
  2972. font-size:12px;
  2973. }
  2974. #u80139 .text {
  2975. position:absolute;
  2976. align-self:center;
  2977. padding:2px 2px 2px 0px;
  2978. box-sizing:border-box;
  2979. width:100%;
  2980. }
  2981. #u80139_text {
  2982. border-width:0px;
  2983. word-wrap:break-word;
  2984. text-transform:none;
  2985. visibility:hidden;
  2986. }
  2987. #u80140_img {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:94px;
  2993. height:38px;
  2994. }
  2995. #u80140 {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:1125px;
  2999. top:77px;
  3000. width:94px;
  3001. height:38px;
  3002. display:flex;
  3003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3004. font-weight:400;
  3005. font-style:normal;
  3006. font-size:12px;
  3007. }
  3008. #u80140 .text {
  3009. position:absolute;
  3010. align-self:center;
  3011. padding:2px 2px 2px 0px;
  3012. box-sizing:border-box;
  3013. width:100%;
  3014. }
  3015. #u80140_text {
  3016. border-width:0px;
  3017. word-wrap:break-word;
  3018. text-transform:none;
  3019. }
  3020. #u80141_img {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:89px;
  3026. height:38px;
  3027. }
  3028. #u80141 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:0px;
  3032. top:115px;
  3033. width:89px;
  3034. height:38px;
  3035. display:flex;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:12px;
  3040. }
  3041. #u80141 .text {
  3042. position:absolute;
  3043. align-self:center;
  3044. padding:2px 2px 2px 0px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u80141_text {
  3049. border-width:0px;
  3050. word-wrap:break-word;
  3051. text-transform:none;
  3052. }
  3053. #u80142_img {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:89px;
  3059. height:38px;
  3060. }
  3061. #u80142 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:89px;
  3065. top:115px;
  3066. width:89px;
  3067. height:38px;
  3068. display:flex;
  3069. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3070. font-weight:400;
  3071. font-style:normal;
  3072. font-size:12px;
  3073. }
  3074. #u80142 .text {
  3075. position:absolute;
  3076. align-self:center;
  3077. padding:2px 2px 2px 0px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u80142_text {
  3082. border-width:0px;
  3083. word-wrap:break-word;
  3084. text-transform:none;
  3085. visibility:hidden;
  3086. }
  3087. #u80143_img {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:84px;
  3093. height:38px;
  3094. }
  3095. #u80143 {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:178px;
  3099. top:115px;
  3100. width:84px;
  3101. height:38px;
  3102. display:flex;
  3103. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3104. font-weight:400;
  3105. font-style:normal;
  3106. font-size:12px;
  3107. }
  3108. #u80143 .text {
  3109. position:absolute;
  3110. align-self:center;
  3111. padding:2px 2px 2px 0px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u80143_text {
  3116. border-width:0px;
  3117. word-wrap:break-word;
  3118. text-transform:none;
  3119. visibility:hidden;
  3120. }
  3121. #u80144_img {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:89px;
  3127. height:38px;
  3128. }
  3129. #u80144 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:262px;
  3133. top:115px;
  3134. width:89px;
  3135. height:38px;
  3136. display:flex;
  3137. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3138. font-weight:400;
  3139. font-style:normal;
  3140. font-size:12px;
  3141. }
  3142. #u80144 .text {
  3143. position:absolute;
  3144. align-self:center;
  3145. padding:2px 2px 2px 0px;
  3146. box-sizing:border-box;
  3147. width:100%;
  3148. }
  3149. #u80144_text {
  3150. border-width:0px;
  3151. word-wrap:break-word;
  3152. text-transform:none;
  3153. visibility:hidden;
  3154. }
  3155. #u80145_img {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:0px;
  3159. top:0px;
  3160. width:89px;
  3161. height:38px;
  3162. }
  3163. #u80145 {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:351px;
  3167. top:115px;
  3168. width:89px;
  3169. height:38px;
  3170. display:flex;
  3171. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3172. font-weight:400;
  3173. font-style:normal;
  3174. font-size:12px;
  3175. }
  3176. #u80145 .text {
  3177. position:absolute;
  3178. align-self:center;
  3179. padding:2px 2px 2px 0px;
  3180. box-sizing:border-box;
  3181. width:100%;
  3182. }
  3183. #u80145_text {
  3184. border-width:0px;
  3185. word-wrap:break-word;
  3186. text-transform:none;
  3187. visibility:hidden;
  3188. }
  3189. #u80146_img {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:84px;
  3195. height:38px;
  3196. }
  3197. #u80146 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:440px;
  3201. top:115px;
  3202. width:84px;
  3203. height:38px;
  3204. display:flex;
  3205. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3206. font-weight:400;
  3207. font-style:normal;
  3208. font-size:12px;
  3209. }
  3210. #u80146 .text {
  3211. position:absolute;
  3212. align-self:center;
  3213. padding:2px 2px 2px 0px;
  3214. box-sizing:border-box;
  3215. width:100%;
  3216. }
  3217. #u80146_text {
  3218. border-width:0px;
  3219. word-wrap:break-word;
  3220. text-transform:none;
  3221. visibility:hidden;
  3222. }
  3223. #u80147_img {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:84px;
  3229. height:38px;
  3230. }
  3231. #u80147 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:524px;
  3235. top:115px;
  3236. width:84px;
  3237. height:38px;
  3238. display:flex;
  3239. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3240. font-weight:400;
  3241. font-style:normal;
  3242. font-size:12px;
  3243. }
  3244. #u80147 .text {
  3245. position:absolute;
  3246. align-self:center;
  3247. padding:2px 2px 2px 0px;
  3248. box-sizing:border-box;
  3249. width:100%;
  3250. }
  3251. #u80147_text {
  3252. border-width:0px;
  3253. word-wrap:break-word;
  3254. text-transform:none;
  3255. visibility:hidden;
  3256. }
  3257. #u80148_img {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:84px;
  3263. height:38px;
  3264. }
  3265. #u80148 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:608px;
  3269. top:115px;
  3270. width:84px;
  3271. height:38px;
  3272. display:flex;
  3273. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:12px;
  3277. }
  3278. #u80148 .text {
  3279. position:absolute;
  3280. align-self:center;
  3281. padding:2px 2px 2px 0px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u80148_text {
  3286. border-width:0px;
  3287. word-wrap:break-word;
  3288. text-transform:none;
  3289. visibility:hidden;
  3290. }
  3291. #u80149_img {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:84px;
  3297. height:38px;
  3298. }
  3299. #u80149 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:692px;
  3303. top:115px;
  3304. width:84px;
  3305. height:38px;
  3306. display:flex;
  3307. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:12px;
  3311. }
  3312. #u80149 .text {
  3313. position:absolute;
  3314. align-self:center;
  3315. padding:2px 2px 2px 0px;
  3316. box-sizing:border-box;
  3317. width:100%;
  3318. }
  3319. #u80149_text {
  3320. border-width:0px;
  3321. word-wrap:break-word;
  3322. text-transform:none;
  3323. visibility:hidden;
  3324. }
  3325. #u80150_img {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:89px;
  3331. height:38px;
  3332. }
  3333. #u80150 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:776px;
  3337. top:115px;
  3338. width:89px;
  3339. height:38px;
  3340. display:flex;
  3341. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:12px;
  3345. }
  3346. #u80150 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 2px 2px 0px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u80150_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. visibility:hidden;
  3358. }
  3359. #u80151_img {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:83px;
  3365. height:38px;
  3366. }
  3367. #u80151 {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:865px;
  3371. top:115px;
  3372. width:83px;
  3373. height:38px;
  3374. display:flex;
  3375. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3376. font-weight:400;
  3377. font-style:normal;
  3378. font-size:12px;
  3379. }
  3380. #u80151 .text {
  3381. position:absolute;
  3382. align-self:center;
  3383. padding:2px 2px 2px 0px;
  3384. box-sizing:border-box;
  3385. width:100%;
  3386. }
  3387. #u80151_text {
  3388. border-width:0px;
  3389. word-wrap:break-word;
  3390. text-transform:none;
  3391. visibility:hidden;
  3392. }
  3393. #u80152_img {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:93px;
  3399. height:38px;
  3400. }
  3401. #u80152 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:948px;
  3405. top:115px;
  3406. width:93px;
  3407. height:38px;
  3408. display:flex;
  3409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:12px;
  3413. }
  3414. #u80152 .text {
  3415. position:absolute;
  3416. align-self:center;
  3417. padding:2px 2px 2px 0px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u80152_text {
  3422. border-width:0px;
  3423. word-wrap:break-word;
  3424. text-transform:none;
  3425. visibility:hidden;
  3426. }
  3427. #u80153_img {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:84px;
  3433. height:38px;
  3434. }
  3435. #u80153 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:1041px;
  3439. top:115px;
  3440. width:84px;
  3441. height:38px;
  3442. display:flex;
  3443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3444. font-weight:400;
  3445. font-style:normal;
  3446. font-size:12px;
  3447. }
  3448. #u80153 .text {
  3449. position:absolute;
  3450. align-self:center;
  3451. padding:2px 2px 2px 0px;
  3452. box-sizing:border-box;
  3453. width:100%;
  3454. }
  3455. #u80153_text {
  3456. border-width:0px;
  3457. word-wrap:break-word;
  3458. text-transform:none;
  3459. visibility:hidden;
  3460. }
  3461. #u80154_img {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:94px;
  3467. height:38px;
  3468. }
  3469. #u80154 {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:1125px;
  3473. top:115px;
  3474. width:94px;
  3475. height:38px;
  3476. display:flex;
  3477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3478. font-weight:400;
  3479. font-style:normal;
  3480. font-size:12px;
  3481. }
  3482. #u80154 .text {
  3483. position:absolute;
  3484. align-self:center;
  3485. padding:2px 2px 2px 0px;
  3486. box-sizing:border-box;
  3487. width:100%;
  3488. }
  3489. #u80154_text {
  3490. border-width:0px;
  3491. word-wrap:break-word;
  3492. text-transform:none;
  3493. }
  3494. #u80155_img {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:89px;
  3500. height:35px;
  3501. }
  3502. #u80155 {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:153px;
  3507. width:89px;
  3508. height:35px;
  3509. display:flex;
  3510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3511. font-weight:400;
  3512. font-style:normal;
  3513. font-size:12px;
  3514. color:#606266;
  3515. }
  3516. #u80155 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:2px 2px 2px 0px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u80155_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. }
  3528. #u80156_img {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:89px;
  3534. height:35px;
  3535. }
  3536. #u80156 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:89px;
  3540. top:153px;
  3541. width:89px;
  3542. height:35px;
  3543. display:flex;
  3544. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3545. font-weight:400;
  3546. font-style:normal;
  3547. font-size:12px;
  3548. color:#606266;
  3549. }
  3550. #u80156 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 0px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u80156_text {
  3558. border-width:0px;
  3559. word-wrap:break-word;
  3560. text-transform:none;
  3561. visibility:hidden;
  3562. }
  3563. #u80157_img {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:84px;
  3569. height:35px;
  3570. }
  3571. #u80157 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:178px;
  3575. top:153px;
  3576. width:84px;
  3577. height:35px;
  3578. display:flex;
  3579. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:12px;
  3583. color:#606266;
  3584. }
  3585. #u80157 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 0px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u80157_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u80158_img {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:89px;
  3604. height:35px;
  3605. }
  3606. #u80158 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:262px;
  3610. top:153px;
  3611. width:89px;
  3612. height:35px;
  3613. display:flex;
  3614. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:12px;
  3618. color:#606266;
  3619. }
  3620. #u80158 .text {
  3621. position:absolute;
  3622. align-self:center;
  3623. padding:2px 2px 2px 0px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u80158_text {
  3628. border-width:0px;
  3629. word-wrap:break-word;
  3630. text-transform:none;
  3631. visibility:hidden;
  3632. }
  3633. #u80159_img {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:89px;
  3639. height:35px;
  3640. }
  3641. #u80159 {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:351px;
  3645. top:153px;
  3646. width:89px;
  3647. height:35px;
  3648. display:flex;
  3649. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3650. font-weight:400;
  3651. font-style:normal;
  3652. font-size:12px;
  3653. color:#606266;
  3654. }
  3655. #u80159 .text {
  3656. position:absolute;
  3657. align-self:center;
  3658. padding:2px 2px 2px 0px;
  3659. box-sizing:border-box;
  3660. width:100%;
  3661. }
  3662. #u80159_text {
  3663. border-width:0px;
  3664. word-wrap:break-word;
  3665. text-transform:none;
  3666. visibility:hidden;
  3667. }
  3668. #u80160_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:84px;
  3674. height:35px;
  3675. }
  3676. #u80160 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:440px;
  3680. top:153px;
  3681. width:84px;
  3682. height:35px;
  3683. display:flex;
  3684. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3685. font-weight:400;
  3686. font-style:normal;
  3687. font-size:12px;
  3688. color:#606266;
  3689. }
  3690. #u80160 .text {
  3691. position:absolute;
  3692. align-self:center;
  3693. padding:2px 2px 2px 0px;
  3694. box-sizing:border-box;
  3695. width:100%;
  3696. }
  3697. #u80160_text {
  3698. border-width:0px;
  3699. word-wrap:break-word;
  3700. text-transform:none;
  3701. visibility:hidden;
  3702. }
  3703. #u80161_img {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:84px;
  3709. height:35px;
  3710. }
  3711. #u80161 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:524px;
  3715. top:153px;
  3716. width:84px;
  3717. height:35px;
  3718. display:flex;
  3719. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:12px;
  3723. color:#606266;
  3724. }
  3725. #u80161 .text {
  3726. position:absolute;
  3727. align-self:center;
  3728. padding:2px 2px 2px 0px;
  3729. box-sizing:border-box;
  3730. width:100%;
  3731. }
  3732. #u80161_text {
  3733. border-width:0px;
  3734. word-wrap:break-word;
  3735. text-transform:none;
  3736. visibility:hidden;
  3737. }
  3738. #u80162_img {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:84px;
  3744. height:35px;
  3745. }
  3746. #u80162 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:608px;
  3750. top:153px;
  3751. width:84px;
  3752. height:35px;
  3753. display:flex;
  3754. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. font-size:12px;
  3758. color:#606266;
  3759. }
  3760. #u80162 .text {
  3761. position:absolute;
  3762. align-self:center;
  3763. padding:2px 2px 2px 0px;
  3764. box-sizing:border-box;
  3765. width:100%;
  3766. }
  3767. #u80162_text {
  3768. border-width:0px;
  3769. word-wrap:break-word;
  3770. text-transform:none;
  3771. visibility:hidden;
  3772. }
  3773. #u80163_img {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:84px;
  3779. height:35px;
  3780. }
  3781. #u80163 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:692px;
  3785. top:153px;
  3786. width:84px;
  3787. height:35px;
  3788. display:flex;
  3789. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:12px;
  3793. color:#606266;
  3794. }
  3795. #u80163 .text {
  3796. position:absolute;
  3797. align-self:center;
  3798. padding:2px 2px 2px 0px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u80163_text {
  3803. border-width:0px;
  3804. word-wrap:break-word;
  3805. text-transform:none;
  3806. visibility:hidden;
  3807. }
  3808. #u80164_img {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:89px;
  3814. height:35px;
  3815. }
  3816. #u80164 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:776px;
  3820. top:153px;
  3821. width:89px;
  3822. height:35px;
  3823. display:flex;
  3824. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. font-size:12px;
  3828. color:#606266;
  3829. }
  3830. #u80164 .text {
  3831. position:absolute;
  3832. align-self:center;
  3833. padding:2px 2px 2px 0px;
  3834. box-sizing:border-box;
  3835. width:100%;
  3836. }
  3837. #u80164_text {
  3838. border-width:0px;
  3839. word-wrap:break-word;
  3840. text-transform:none;
  3841. visibility:hidden;
  3842. }
  3843. #u80165_img {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:0px;
  3847. top:0px;
  3848. width:83px;
  3849. height:35px;
  3850. }
  3851. #u80165 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:865px;
  3855. top:153px;
  3856. width:83px;
  3857. height:35px;
  3858. display:flex;
  3859. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. color:#606266;
  3864. }
  3865. #u80165 .text {
  3866. position:absolute;
  3867. align-self:center;
  3868. padding:2px 2px 2px 0px;
  3869. box-sizing:border-box;
  3870. width:100%;
  3871. }
  3872. #u80165_text {
  3873. border-width:0px;
  3874. word-wrap:break-word;
  3875. text-transform:none;
  3876. visibility:hidden;
  3877. }
  3878. #u80166_img {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:93px;
  3884. height:35px;
  3885. }
  3886. #u80166 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:948px;
  3890. top:153px;
  3891. width:93px;
  3892. height:35px;
  3893. display:flex;
  3894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3895. font-weight:400;
  3896. font-style:normal;
  3897. font-size:12px;
  3898. color:#606266;
  3899. }
  3900. #u80166 .text {
  3901. position:absolute;
  3902. align-self:center;
  3903. padding:2px 2px 2px 0px;
  3904. box-sizing:border-box;
  3905. width:100%;
  3906. }
  3907. #u80166_text {
  3908. border-width:0px;
  3909. word-wrap:break-word;
  3910. text-transform:none;
  3911. visibility:hidden;
  3912. }
  3913. #u80167_img {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:0px;
  3917. top:0px;
  3918. width:84px;
  3919. height:35px;
  3920. }
  3921. #u80167 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:1041px;
  3925. top:153px;
  3926. width:84px;
  3927. height:35px;
  3928. display:flex;
  3929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3930. font-weight:400;
  3931. font-style:normal;
  3932. font-size:12px;
  3933. color:#606266;
  3934. }
  3935. #u80167 .text {
  3936. position:absolute;
  3937. align-self:center;
  3938. padding:2px 2px 2px 0px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u80167_text {
  3943. border-width:0px;
  3944. word-wrap:break-word;
  3945. text-transform:none;
  3946. visibility:hidden;
  3947. }
  3948. #u80168_img {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:0px;
  3952. top:0px;
  3953. width:94px;
  3954. height:35px;
  3955. }
  3956. #u80168 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:1125px;
  3960. top:153px;
  3961. width:94px;
  3962. height:35px;
  3963. display:flex;
  3964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3965. font-weight:400;
  3966. font-style:normal;
  3967. font-size:12px;
  3968. color:#02A7F0;
  3969. }
  3970. #u80168 .text {
  3971. position:absolute;
  3972. align-self:center;
  3973. padding:2px 2px 2px 0px;
  3974. box-sizing:border-box;
  3975. width:100%;
  3976. }
  3977. #u80168_text {
  3978. border-width:0px;
  3979. word-wrap:break-word;
  3980. text-transform:none;
  3981. visibility:hidden;
  3982. }
  3983. #u80169_img {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:89px;
  3989. height:35px;
  3990. }
  3991. #u80169 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:188px;
  3996. width:89px;
  3997. height:35px;
  3998. display:flex;
  3999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4000. font-weight:400;
  4001. font-style:normal;
  4002. font-size:12px;
  4003. color:#606266;
  4004. }
  4005. #u80169 .text {
  4006. position:absolute;
  4007. align-self:center;
  4008. padding:2px 2px 2px 0px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u80169_text {
  4013. border-width:0px;
  4014. word-wrap:break-word;
  4015. text-transform:none;
  4016. }
  4017. #u80170_img {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:0px;
  4021. top:0px;
  4022. width:89px;
  4023. height:35px;
  4024. }
  4025. #u80170 {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:89px;
  4029. top:188px;
  4030. width:89px;
  4031. height:35px;
  4032. display:flex;
  4033. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4034. font-weight:400;
  4035. font-style:normal;
  4036. font-size:12px;
  4037. color:#606266;
  4038. }
  4039. #u80170 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:2px 2px 2px 0px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u80170_text {
  4047. border-width:0px;
  4048. word-wrap:break-word;
  4049. text-transform:none;
  4050. visibility:hidden;
  4051. }
  4052. #u80171_img {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:84px;
  4058. height:35px;
  4059. }
  4060. #u80171 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:178px;
  4064. top:188px;
  4065. width:84px;
  4066. height:35px;
  4067. display:flex;
  4068. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:12px;
  4072. color:#606266;
  4073. }
  4074. #u80171 .text {
  4075. position:absolute;
  4076. align-self:center;
  4077. padding:2px 2px 2px 0px;
  4078. box-sizing:border-box;
  4079. width:100%;
  4080. }
  4081. #u80171_text {
  4082. border-width:0px;
  4083. word-wrap:break-word;
  4084. text-transform:none;
  4085. visibility:hidden;
  4086. }
  4087. #u80172_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:89px;
  4093. height:35px;
  4094. }
  4095. #u80172 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:262px;
  4099. top:188px;
  4100. width:89px;
  4101. height:35px;
  4102. display:flex;
  4103. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4104. font-weight:400;
  4105. font-style:normal;
  4106. font-size:12px;
  4107. color:#606266;
  4108. }
  4109. #u80172 .text {
  4110. position:absolute;
  4111. align-self:center;
  4112. padding:2px 2px 2px 0px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u80172_text {
  4117. border-width:0px;
  4118. word-wrap:break-word;
  4119. text-transform:none;
  4120. visibility:hidden;
  4121. }
  4122. #u80173_img {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:89px;
  4128. height:35px;
  4129. }
  4130. #u80173 {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:351px;
  4134. top:188px;
  4135. width:89px;
  4136. height:35px;
  4137. display:flex;
  4138. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4139. font-weight:400;
  4140. font-style:normal;
  4141. font-size:12px;
  4142. color:#606266;
  4143. }
  4144. #u80173 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:2px 2px 2px 0px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u80173_text {
  4152. border-width:0px;
  4153. word-wrap:break-word;
  4154. text-transform:none;
  4155. visibility:hidden;
  4156. }
  4157. #u80174_img {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:84px;
  4163. height:35px;
  4164. }
  4165. #u80174 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:440px;
  4169. top:188px;
  4170. width:84px;
  4171. height:35px;
  4172. display:flex;
  4173. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4174. font-weight:400;
  4175. font-style:normal;
  4176. font-size:12px;
  4177. color:#606266;
  4178. }
  4179. #u80174 .text {
  4180. position:absolute;
  4181. align-self:center;
  4182. padding:2px 2px 2px 0px;
  4183. box-sizing:border-box;
  4184. width:100%;
  4185. }
  4186. #u80174_text {
  4187. border-width:0px;
  4188. word-wrap:break-word;
  4189. text-transform:none;
  4190. visibility:hidden;
  4191. }
  4192. #u80175_img {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:84px;
  4198. height:35px;
  4199. }
  4200. #u80175 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:524px;
  4204. top:188px;
  4205. width:84px;
  4206. height:35px;
  4207. display:flex;
  4208. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:12px;
  4212. color:#606266;
  4213. }
  4214. #u80175 .text {
  4215. position:absolute;
  4216. align-self:center;
  4217. padding:2px 2px 2px 0px;
  4218. box-sizing:border-box;
  4219. width:100%;
  4220. }
  4221. #u80175_text {
  4222. border-width:0px;
  4223. word-wrap:break-word;
  4224. text-transform:none;
  4225. visibility:hidden;
  4226. }
  4227. #u80176_img {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:84px;
  4233. height:35px;
  4234. }
  4235. #u80176 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:608px;
  4239. top:188px;
  4240. width:84px;
  4241. height:35px;
  4242. display:flex;
  4243. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4244. font-weight:400;
  4245. font-style:normal;
  4246. font-size:12px;
  4247. color:#606266;
  4248. }
  4249. #u80176 .text {
  4250. position:absolute;
  4251. align-self:center;
  4252. padding:2px 2px 2px 0px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u80176_text {
  4257. border-width:0px;
  4258. word-wrap:break-word;
  4259. text-transform:none;
  4260. visibility:hidden;
  4261. }
  4262. #u80177_img {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:84px;
  4268. height:35px;
  4269. }
  4270. #u80177 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:692px;
  4274. top:188px;
  4275. width:84px;
  4276. height:35px;
  4277. display:flex;
  4278. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4279. font-weight:400;
  4280. font-style:normal;
  4281. font-size:12px;
  4282. color:#606266;
  4283. }
  4284. #u80177 .text {
  4285. position:absolute;
  4286. align-self:center;
  4287. padding:2px 2px 2px 0px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u80177_text {
  4292. border-width:0px;
  4293. word-wrap:break-word;
  4294. text-transform:none;
  4295. visibility:hidden;
  4296. }
  4297. #u80178_img {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:89px;
  4303. height:35px;
  4304. }
  4305. #u80178 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:776px;
  4309. top:188px;
  4310. width:89px;
  4311. height:35px;
  4312. display:flex;
  4313. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. font-size:12px;
  4317. color:#606266;
  4318. }
  4319. #u80178 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:2px 2px 2px 0px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u80178_text {
  4327. border-width:0px;
  4328. word-wrap:break-word;
  4329. text-transform:none;
  4330. visibility:hidden;
  4331. }
  4332. #u80179_img {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:83px;
  4338. height:35px;
  4339. }
  4340. #u80179 {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:865px;
  4344. top:188px;
  4345. width:83px;
  4346. height:35px;
  4347. display:flex;
  4348. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4349. font-weight:400;
  4350. font-style:normal;
  4351. font-size:12px;
  4352. color:#606266;
  4353. }
  4354. #u80179 .text {
  4355. position:absolute;
  4356. align-self:center;
  4357. padding:2px 2px 2px 0px;
  4358. box-sizing:border-box;
  4359. width:100%;
  4360. }
  4361. #u80179_text {
  4362. border-width:0px;
  4363. word-wrap:break-word;
  4364. text-transform:none;
  4365. visibility:hidden;
  4366. }
  4367. #u80180_img {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:93px;
  4373. height:35px;
  4374. }
  4375. #u80180 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:948px;
  4379. top:188px;
  4380. width:93px;
  4381. height:35px;
  4382. display:flex;
  4383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4384. font-weight:400;
  4385. font-style:normal;
  4386. font-size:12px;
  4387. color:#606266;
  4388. }
  4389. #u80180 .text {
  4390. position:absolute;
  4391. align-self:center;
  4392. padding:2px 2px 2px 0px;
  4393. box-sizing:border-box;
  4394. width:100%;
  4395. }
  4396. #u80180_text {
  4397. border-width:0px;
  4398. word-wrap:break-word;
  4399. text-transform:none;
  4400. visibility:hidden;
  4401. }
  4402. #u80181_img {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:0px;
  4406. top:0px;
  4407. width:84px;
  4408. height:35px;
  4409. }
  4410. #u80181 {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:1041px;
  4414. top:188px;
  4415. width:84px;
  4416. height:35px;
  4417. display:flex;
  4418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4419. font-weight:400;
  4420. font-style:normal;
  4421. font-size:12px;
  4422. color:#606266;
  4423. }
  4424. #u80181 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:2px 2px 2px 0px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u80181_text {
  4432. border-width:0px;
  4433. word-wrap:break-word;
  4434. text-transform:none;
  4435. visibility:hidden;
  4436. }
  4437. #u80182_img {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:94px;
  4443. height:35px;
  4444. }
  4445. #u80182 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:1125px;
  4449. top:188px;
  4450. width:94px;
  4451. height:35px;
  4452. display:flex;
  4453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4454. font-weight:400;
  4455. font-style:normal;
  4456. font-size:12px;
  4457. color:#02A7F0;
  4458. }
  4459. #u80182 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:2px 2px 2px 0px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u80182_text {
  4467. border-width:0px;
  4468. word-wrap:break-word;
  4469. text-transform:none;
  4470. visibility:hidden;
  4471. }
  4472. #u80183_img {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:89px;
  4478. height:35px;
  4479. }
  4480. #u80183 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:223px;
  4485. width:89px;
  4486. height:35px;
  4487. display:flex;
  4488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4489. font-weight:400;
  4490. font-style:normal;
  4491. font-size:12px;
  4492. color:#606266;
  4493. }
  4494. #u80183 .text {
  4495. position:absolute;
  4496. align-self:center;
  4497. padding:2px 2px 2px 0px;
  4498. box-sizing:border-box;
  4499. width:100%;
  4500. }
  4501. #u80183_text {
  4502. border-width:0px;
  4503. word-wrap:break-word;
  4504. text-transform:none;
  4505. visibility:hidden;
  4506. }
  4507. #u80184_img {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:89px;
  4513. height:35px;
  4514. }
  4515. #u80184 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:89px;
  4519. top:223px;
  4520. width:89px;
  4521. height:35px;
  4522. display:flex;
  4523. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. font-size:12px;
  4527. color:#606266;
  4528. }
  4529. #u80184 .text {
  4530. position:absolute;
  4531. align-self:center;
  4532. padding:2px 2px 2px 0px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u80184_text {
  4537. border-width:0px;
  4538. word-wrap:break-word;
  4539. text-transform:none;
  4540. visibility:hidden;
  4541. }
  4542. #u80185_img {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:0px;
  4546. top:0px;
  4547. width:84px;
  4548. height:35px;
  4549. }
  4550. #u80185 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:178px;
  4554. top:223px;
  4555. width:84px;
  4556. height:35px;
  4557. display:flex;
  4558. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4559. font-weight:400;
  4560. font-style:normal;
  4561. font-size:12px;
  4562. color:#606266;
  4563. }
  4564. #u80185 .text {
  4565. position:absolute;
  4566. align-self:center;
  4567. padding:2px 2px 2px 0px;
  4568. box-sizing:border-box;
  4569. width:100%;
  4570. }
  4571. #u80185_text {
  4572. border-width:0px;
  4573. word-wrap:break-word;
  4574. text-transform:none;
  4575. visibility:hidden;
  4576. }
  4577. #u80186_img {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:89px;
  4583. height:35px;
  4584. }
  4585. #u80186 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:262px;
  4589. top:223px;
  4590. width:89px;
  4591. height:35px;
  4592. display:flex;
  4593. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4594. font-weight:400;
  4595. font-style:normal;
  4596. font-size:12px;
  4597. color:#606266;
  4598. }
  4599. #u80186 .text {
  4600. position:absolute;
  4601. align-self:center;
  4602. padding:2px 2px 2px 0px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u80186_text {
  4607. border-width:0px;
  4608. word-wrap:break-word;
  4609. text-transform:none;
  4610. visibility:hidden;
  4611. }
  4612. #u80187_img {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:0px;
  4616. top:0px;
  4617. width:89px;
  4618. height:35px;
  4619. }
  4620. #u80187 {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:351px;
  4624. top:223px;
  4625. width:89px;
  4626. height:35px;
  4627. display:flex;
  4628. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4629. font-weight:400;
  4630. font-style:normal;
  4631. font-size:12px;
  4632. color:#606266;
  4633. }
  4634. #u80187 .text {
  4635. position:absolute;
  4636. align-self:center;
  4637. padding:2px 2px 2px 0px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u80187_text {
  4642. border-width:0px;
  4643. word-wrap:break-word;
  4644. text-transform:none;
  4645. visibility:hidden;
  4646. }
  4647. #u80188_img {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:0px;
  4651. top:0px;
  4652. width:84px;
  4653. height:35px;
  4654. }
  4655. #u80188 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:440px;
  4659. top:223px;
  4660. width:84px;
  4661. height:35px;
  4662. display:flex;
  4663. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. font-size:12px;
  4667. color:#606266;
  4668. }
  4669. #u80188 .text {
  4670. position:absolute;
  4671. align-self:center;
  4672. padding:2px 2px 2px 0px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u80188_text {
  4677. border-width:0px;
  4678. word-wrap:break-word;
  4679. text-transform:none;
  4680. visibility:hidden;
  4681. }
  4682. #u80189_img {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:84px;
  4688. height:35px;
  4689. }
  4690. #u80189 {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:524px;
  4694. top:223px;
  4695. width:84px;
  4696. height:35px;
  4697. display:flex;
  4698. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4699. font-weight:400;
  4700. font-style:normal;
  4701. font-size:12px;
  4702. color:#606266;
  4703. }
  4704. #u80189 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:2px 2px 2px 0px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u80189_text {
  4712. border-width:0px;
  4713. word-wrap:break-word;
  4714. text-transform:none;
  4715. visibility:hidden;
  4716. }
  4717. #u80190_img {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:84px;
  4723. height:35px;
  4724. }
  4725. #u80190 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:608px;
  4729. top:223px;
  4730. width:84px;
  4731. height:35px;
  4732. display:flex;
  4733. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:12px;
  4737. color:#606266;
  4738. }
  4739. #u80190 .text {
  4740. position:absolute;
  4741. align-self:center;
  4742. padding:2px 2px 2px 0px;
  4743. box-sizing:border-box;
  4744. width:100%;
  4745. }
  4746. #u80190_text {
  4747. border-width:0px;
  4748. word-wrap:break-word;
  4749. text-transform:none;
  4750. visibility:hidden;
  4751. }
  4752. #u80191_img {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:84px;
  4758. height:35px;
  4759. }
  4760. #u80191 {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:692px;
  4764. top:223px;
  4765. width:84px;
  4766. height:35px;
  4767. display:flex;
  4768. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4769. font-weight:400;
  4770. font-style:normal;
  4771. font-size:12px;
  4772. color:#606266;
  4773. }
  4774. #u80191 .text {
  4775. position:absolute;
  4776. align-self:center;
  4777. padding:2px 2px 2px 0px;
  4778. box-sizing:border-box;
  4779. width:100%;
  4780. }
  4781. #u80191_text {
  4782. border-width:0px;
  4783. word-wrap:break-word;
  4784. text-transform:none;
  4785. visibility:hidden;
  4786. }
  4787. #u80192_img {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:89px;
  4793. height:35px;
  4794. }
  4795. #u80192 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:776px;
  4799. top:223px;
  4800. width:89px;
  4801. height:35px;
  4802. display:flex;
  4803. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:12px;
  4807. color:#606266;
  4808. }
  4809. #u80192 .text {
  4810. position:absolute;
  4811. align-self:center;
  4812. padding:2px 2px 2px 0px;
  4813. box-sizing:border-box;
  4814. width:100%;
  4815. }
  4816. #u80192_text {
  4817. border-width:0px;
  4818. word-wrap:break-word;
  4819. text-transform:none;
  4820. visibility:hidden;
  4821. }
  4822. #u80193_img {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:83px;
  4828. height:35px;
  4829. }
  4830. #u80193 {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:865px;
  4834. top:223px;
  4835. width:83px;
  4836. height:35px;
  4837. display:flex;
  4838. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:12px;
  4842. color:#606266;
  4843. }
  4844. #u80193 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 0px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u80193_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u80194_img {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:93px;
  4863. height:35px;
  4864. }
  4865. #u80194 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:948px;
  4869. top:223px;
  4870. width:93px;
  4871. height:35px;
  4872. display:flex;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:12px;
  4877. color:#606266;
  4878. }
  4879. #u80194 .text {
  4880. position:absolute;
  4881. align-self:center;
  4882. padding:2px 2px 2px 0px;
  4883. box-sizing:border-box;
  4884. width:100%;
  4885. }
  4886. #u80194_text {
  4887. border-width:0px;
  4888. word-wrap:break-word;
  4889. text-transform:none;
  4890. visibility:hidden;
  4891. }
  4892. #u80195_img {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:0px;
  4896. top:0px;
  4897. width:84px;
  4898. height:35px;
  4899. }
  4900. #u80195 {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:1041px;
  4904. top:223px;
  4905. width:84px;
  4906. height:35px;
  4907. display:flex;
  4908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4909. font-weight:400;
  4910. font-style:normal;
  4911. font-size:12px;
  4912. color:#606266;
  4913. }
  4914. #u80195 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:2px 2px 2px 0px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u80195_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. visibility:hidden;
  4926. }
  4927. #u80196_img {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:94px;
  4933. height:35px;
  4934. }
  4935. #u80196 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:1125px;
  4939. top:223px;
  4940. width:94px;
  4941. height:35px;
  4942. display:flex;
  4943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. font-size:12px;
  4947. color:#02A7F0;
  4948. }
  4949. #u80196 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 2px 2px 0px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u80196_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u80197_img {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:89px;
  4968. height:35px;
  4969. }
  4970. #u80197 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:258px;
  4975. width:89px;
  4976. height:35px;
  4977. display:flex;
  4978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4979. font-weight:400;
  4980. font-style:normal;
  4981. font-size:12px;
  4982. color:#606266;
  4983. }
  4984. #u80197 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:2px 2px 2px 0px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u80197_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. visibility:hidden;
  4996. }
  4997. #u80198_img {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:89px;
  5003. height:35px;
  5004. }
  5005. #u80198 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:89px;
  5009. top:258px;
  5010. width:89px;
  5011. height:35px;
  5012. display:flex;
  5013. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:12px;
  5017. color:#606266;
  5018. }
  5019. #u80198 .text {
  5020. position:absolute;
  5021. align-self:center;
  5022. padding:2px 2px 2px 0px;
  5023. box-sizing:border-box;
  5024. width:100%;
  5025. }
  5026. #u80198_text {
  5027. border-width:0px;
  5028. word-wrap:break-word;
  5029. text-transform:none;
  5030. visibility:hidden;
  5031. }
  5032. #u80199_img {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:84px;
  5038. height:35px;
  5039. }
  5040. #u80199 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:178px;
  5044. top:258px;
  5045. width:84px;
  5046. height:35px;
  5047. display:flex;
  5048. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5049. font-weight:400;
  5050. font-style:normal;
  5051. font-size:12px;
  5052. color:#606266;
  5053. }
  5054. #u80199 .text {
  5055. position:absolute;
  5056. align-self:center;
  5057. padding:2px 2px 2px 0px;
  5058. box-sizing:border-box;
  5059. width:100%;
  5060. }
  5061. #u80199_text {
  5062. border-width:0px;
  5063. word-wrap:break-word;
  5064. text-transform:none;
  5065. visibility:hidden;
  5066. }
  5067. #u80200_img {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:0px;
  5071. top:0px;
  5072. width:89px;
  5073. height:35px;
  5074. }
  5075. #u80200 {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:262px;
  5079. top:258px;
  5080. width:89px;
  5081. height:35px;
  5082. display:flex;
  5083. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5084. font-weight:400;
  5085. font-style:normal;
  5086. font-size:12px;
  5087. color:#606266;
  5088. }
  5089. #u80200 .text {
  5090. position:absolute;
  5091. align-self:center;
  5092. padding:2px 2px 2px 0px;
  5093. box-sizing:border-box;
  5094. width:100%;
  5095. }
  5096. #u80200_text {
  5097. border-width:0px;
  5098. word-wrap:break-word;
  5099. text-transform:none;
  5100. visibility:hidden;
  5101. }
  5102. #u80201_img {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:89px;
  5108. height:35px;
  5109. }
  5110. #u80201 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:351px;
  5114. top:258px;
  5115. width:89px;
  5116. height:35px;
  5117. display:flex;
  5118. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5119. font-weight:400;
  5120. font-style:normal;
  5121. font-size:12px;
  5122. color:#606266;
  5123. }
  5124. #u80201 .text {
  5125. position:absolute;
  5126. align-self:center;
  5127. padding:2px 2px 2px 0px;
  5128. box-sizing:border-box;
  5129. width:100%;
  5130. }
  5131. #u80201_text {
  5132. border-width:0px;
  5133. word-wrap:break-word;
  5134. text-transform:none;
  5135. visibility:hidden;
  5136. }
  5137. #u80202_img {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:84px;
  5143. height:35px;
  5144. }
  5145. #u80202 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:440px;
  5149. top:258px;
  5150. width:84px;
  5151. height:35px;
  5152. display:flex;
  5153. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5154. font-weight:400;
  5155. font-style:normal;
  5156. font-size:12px;
  5157. color:#606266;
  5158. }
  5159. #u80202 .text {
  5160. position:absolute;
  5161. align-self:center;
  5162. padding:2px 2px 2px 0px;
  5163. box-sizing:border-box;
  5164. width:100%;
  5165. }
  5166. #u80202_text {
  5167. border-width:0px;
  5168. word-wrap:break-word;
  5169. text-transform:none;
  5170. visibility:hidden;
  5171. }
  5172. #u80203_img {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:84px;
  5178. height:35px;
  5179. }
  5180. #u80203 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:524px;
  5184. top:258px;
  5185. width:84px;
  5186. height:35px;
  5187. display:flex;
  5188. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:12px;
  5192. color:#606266;
  5193. }
  5194. #u80203 .text {
  5195. position:absolute;
  5196. align-self:center;
  5197. padding:2px 2px 2px 0px;
  5198. box-sizing:border-box;
  5199. width:100%;
  5200. }
  5201. #u80203_text {
  5202. border-width:0px;
  5203. word-wrap:break-word;
  5204. text-transform:none;
  5205. visibility:hidden;
  5206. }
  5207. #u80204_img {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:84px;
  5213. height:35px;
  5214. }
  5215. #u80204 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:608px;
  5219. top:258px;
  5220. width:84px;
  5221. height:35px;
  5222. display:flex;
  5223. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5224. font-weight:400;
  5225. font-style:normal;
  5226. font-size:12px;
  5227. color:#606266;
  5228. }
  5229. #u80204 .text {
  5230. position:absolute;
  5231. align-self:center;
  5232. padding:2px 2px 2px 0px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u80204_text {
  5237. border-width:0px;
  5238. word-wrap:break-word;
  5239. text-transform:none;
  5240. visibility:hidden;
  5241. }
  5242. #u80205_img {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:84px;
  5248. height:35px;
  5249. }
  5250. #u80205 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:692px;
  5254. top:258px;
  5255. width:84px;
  5256. height:35px;
  5257. display:flex;
  5258. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5259. font-weight:400;
  5260. font-style:normal;
  5261. font-size:12px;
  5262. color:#606266;
  5263. }
  5264. #u80205 .text {
  5265. position:absolute;
  5266. align-self:center;
  5267. padding:2px 2px 2px 0px;
  5268. box-sizing:border-box;
  5269. width:100%;
  5270. }
  5271. #u80205_text {
  5272. border-width:0px;
  5273. word-wrap:break-word;
  5274. text-transform:none;
  5275. visibility:hidden;
  5276. }
  5277. #u80206_img {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:89px;
  5283. height:35px;
  5284. }
  5285. #u80206 {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:776px;
  5289. top:258px;
  5290. width:89px;
  5291. height:35px;
  5292. display:flex;
  5293. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5294. font-weight:400;
  5295. font-style:normal;
  5296. font-size:12px;
  5297. color:#606266;
  5298. }
  5299. #u80206 .text {
  5300. position:absolute;
  5301. align-self:center;
  5302. padding:2px 2px 2px 0px;
  5303. box-sizing:border-box;
  5304. width:100%;
  5305. }
  5306. #u80206_text {
  5307. border-width:0px;
  5308. word-wrap:break-word;
  5309. text-transform:none;
  5310. visibility:hidden;
  5311. }
  5312. #u80207_img {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:83px;
  5318. height:35px;
  5319. }
  5320. #u80207 {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:865px;
  5324. top:258px;
  5325. width:83px;
  5326. height:35px;
  5327. display:flex;
  5328. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5329. font-weight:400;
  5330. font-style:normal;
  5331. font-size:12px;
  5332. color:#606266;
  5333. }
  5334. #u80207 .text {
  5335. position:absolute;
  5336. align-self:center;
  5337. padding:2px 2px 2px 0px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u80207_text {
  5342. border-width:0px;
  5343. word-wrap:break-word;
  5344. text-transform:none;
  5345. visibility:hidden;
  5346. }
  5347. #u80208_img {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:93px;
  5353. height:35px;
  5354. }
  5355. #u80208 {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:948px;
  5359. top:258px;
  5360. width:93px;
  5361. height:35px;
  5362. display:flex;
  5363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:12px;
  5367. color:#606266;
  5368. }
  5369. #u80208 .text {
  5370. position:absolute;
  5371. align-self:center;
  5372. padding:2px 2px 2px 0px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u80208_text {
  5377. border-width:0px;
  5378. word-wrap:break-word;
  5379. text-transform:none;
  5380. visibility:hidden;
  5381. }
  5382. #u80209_img {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:84px;
  5388. height:35px;
  5389. }
  5390. #u80209 {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:1041px;
  5394. top:258px;
  5395. width:84px;
  5396. height:35px;
  5397. display:flex;
  5398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5399. font-weight:400;
  5400. font-style:normal;
  5401. font-size:12px;
  5402. color:#606266;
  5403. }
  5404. #u80209 .text {
  5405. position:absolute;
  5406. align-self:center;
  5407. padding:2px 2px 2px 0px;
  5408. box-sizing:border-box;
  5409. width:100%;
  5410. }
  5411. #u80209_text {
  5412. border-width:0px;
  5413. word-wrap:break-word;
  5414. text-transform:none;
  5415. visibility:hidden;
  5416. }
  5417. #u80210_img {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:94px;
  5423. height:35px;
  5424. }
  5425. #u80210 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:1125px;
  5429. top:258px;
  5430. width:94px;
  5431. height:35px;
  5432. display:flex;
  5433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:12px;
  5437. color:#02A7F0;
  5438. }
  5439. #u80210 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 2px 2px 0px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u80210_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. visibility:hidden;
  5451. }
  5452. #u80211_div {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:109px;
  5458. height:50px;
  5459. background:inherit;
  5460. background-color:rgba(255, 255, 255, 0);
  5461. border:none;
  5462. border-left:0px;
  5463. border-top:0px;
  5464. border-right:0px;
  5465. border-radius:0px;
  5466. border-bottom-right-radius:0px;
  5467. border-bottom-left-radius:0px;
  5468. -moz-box-shadow:none;
  5469. -webkit-box-shadow:none;
  5470. box-shadow:none;
  5471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5472. font-weight:400;
  5473. font-style:normal;
  5474. font-size:18px;
  5475. }
  5476. #u80211 {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:349px;
  5480. top:49px;
  5481. width:109px;
  5482. height:50px;
  5483. display:flex;
  5484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5485. font-weight:400;
  5486. font-style:normal;
  5487. font-size:18px;
  5488. }
  5489. #u80211 .text {
  5490. position:absolute;
  5491. align-self:center;
  5492. padding:0px 0px 0px 0px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u80211_text {
  5497. border-width:0px;
  5498. white-space:nowrap;
  5499. text-transform:none;
  5500. }
  5501. #u80212_img {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:13px;
  5507. height:13px;
  5508. }
  5509. #u80212 {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:465px;
  5513. top:68px;
  5514. width:13px;
  5515. height:13px;
  5516. display:flex;
  5517. }
  5518. #u80212 .text {
  5519. position:absolute;
  5520. align-self:center;
  5521. padding:2px 2px 2px 2px;
  5522. box-sizing:border-box;
  5523. width:100%;
  5524. }
  5525. #u80212_text {
  5526. border-width:0px;
  5527. word-wrap:break-word;
  5528. text-transform:none;
  5529. visibility:hidden;
  5530. }
  5531. #u80213 {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:0px;
  5537. height:0px;
  5538. }
  5539. #u80214 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:0px;
  5545. height:0px;
  5546. }
  5547. #u80215_div {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:0px;
  5551. top:0px;
  5552. width:59px;
  5553. height:30px;
  5554. background:inherit;
  5555. background-color:rgba(24, 144, 255, 1);
  5556. box-sizing:border-box;
  5557. border-width:1px;
  5558. border-style:solid;
  5559. border-color:rgba(0, 153, 255, 1);
  5560. border-radius:4px;
  5561. -moz-box-shadow:none;
  5562. -webkit-box-shadow:none;
  5563. box-shadow:none;
  5564. font-family:'Microsoft YaHei', sans-serif;
  5565. font-weight:400;
  5566. font-style:normal;
  5567. font-size:14px;
  5568. color:#FFFFFF;
  5569. }
  5570. #u80215 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:799px;
  5574. top:109px;
  5575. width:59px;
  5576. height:30px;
  5577. display:flex;
  5578. font-family:'Microsoft YaHei', sans-serif;
  5579. font-weight:400;
  5580. font-style:normal;
  5581. font-size:14px;
  5582. color:#FFFFFF;
  5583. }
  5584. #u80215 .text {
  5585. position:absolute;
  5586. align-self:center;
  5587. padding:5px 15px 5px 15px;
  5588. box-sizing:border-box;
  5589. width:100%;
  5590. }
  5591. #u80215_text {
  5592. border-width:0px;
  5593. white-space:nowrap;
  5594. text-transform:none;
  5595. }
  5596. #u80216_div {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:0px;
  5600. top:0px;
  5601. width:55px;
  5602. height:30px;
  5603. background:inherit;
  5604. background-color:rgba(255, 255, 255, 1);
  5605. box-sizing:border-box;
  5606. border-width:1px;
  5607. border-style:solid;
  5608. border-color:rgba(170, 170, 170, 1);
  5609. border-radius:4px;
  5610. -moz-box-shadow:none;
  5611. -webkit-box-shadow:none;
  5612. box-shadow:none;
  5613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5614. font-weight:400;
  5615. font-style:normal;
  5616. font-size:12px;
  5617. color:#555555;
  5618. }
  5619. #u80216 {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:868px;
  5623. top:109px;
  5624. width:55px;
  5625. height:30px;
  5626. display:flex;
  5627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5628. font-weight:400;
  5629. font-style:normal;
  5630. font-size:12px;
  5631. color:#555555;
  5632. }
  5633. #u80216 .text {
  5634. position:absolute;
  5635. align-self:center;
  5636. padding:5px 15px 5px 15px;
  5637. box-sizing:border-box;
  5638. width:100%;
  5639. }
  5640. #u80216_text {
  5641. border-width:0px;
  5642. white-space:nowrap;
  5643. text-transform:none;
  5644. }
  5645. #u80217 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:0px;
  5651. height:0px;
  5652. }
  5653. #u80218_div {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:140px;
  5659. height:30px;
  5660. background:inherit;
  5661. background-color:rgba(255, 255, 255, 1);
  5662. box-sizing:border-box;
  5663. border-width:1px;
  5664. border-style:solid;
  5665. border-color:rgba(215, 215, 215, 1);
  5666. border-radius:4px;
  5667. -moz-box-shadow:none;
  5668. -webkit-box-shadow:none;
  5669. box-shadow:none;
  5670. font-size:11px;
  5671. }
  5672. #u80218 {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:349px;
  5676. top:109px;
  5677. width:140px;
  5678. height:30px;
  5679. display:flex;
  5680. font-size:11px;
  5681. }
  5682. #u80218 .text {
  5683. position:absolute;
  5684. align-self:center;
  5685. padding:2px 2px 2px 2px;
  5686. box-sizing:border-box;
  5687. width:100%;
  5688. }
  5689. #u80218_text {
  5690. border-width:0px;
  5691. word-wrap:break-word;
  5692. text-transform:none;
  5693. visibility:hidden;
  5694. }
  5695. #u80219_input {
  5696. position:absolute;
  5697. left:0px;
  5698. top:0px;
  5699. width:126px;
  5700. height:23px;
  5701. padding:2px 2px 2px 2px;
  5702. font-family:'ArialMT', 'Arial', sans-serif;
  5703. font-weight:400;
  5704. font-style:normal;
  5705. font-size:11px;
  5706. letter-spacing:normal;
  5707. color:#AAAAAA;
  5708. vertical-align:none;
  5709. text-align:left;
  5710. text-transform:none;
  5711. background-color:transparent;
  5712. border-color:transparent;
  5713. }
  5714. #u80219_input.disabled {
  5715. position:absolute;
  5716. left:0px;
  5717. top:0px;
  5718. width:126px;
  5719. height:23px;
  5720. padding:2px 2px 2px 2px;
  5721. font-family:'ArialMT', 'Arial', sans-serif;
  5722. font-weight:400;
  5723. font-style:normal;
  5724. font-size:11px;
  5725. letter-spacing:normal;
  5726. color:#AAAAAA;
  5727. vertical-align:none;
  5728. text-align:left;
  5729. text-transform:none;
  5730. background-color:transparent;
  5731. border-color:transparent;
  5732. }
  5733. #u80219_div {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:0px;
  5737. top:0px;
  5738. width:126px;
  5739. height:23px;
  5740. background:inherit;
  5741. background-color:rgba(255, 255, 255, 1);
  5742. border:none;
  5743. border-radius:0px;
  5744. -moz-box-shadow:none;
  5745. -webkit-box-shadow:none;
  5746. box-shadow:none;
  5747. font-size:11px;
  5748. color:#AAAAAA;
  5749. }
  5750. #u80219 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:356px;
  5754. top:111px;
  5755. width:126px;
  5756. height:23px;
  5757. display:flex;
  5758. font-size:11px;
  5759. color:#AAAAAA;
  5760. }
  5761. #u80219 .text {
  5762. position:absolute;
  5763. align-self:flex-start;
  5764. padding:2px 2px 2px 2px;
  5765. box-sizing:border-box;
  5766. width:100%;
  5767. }
  5768. #u80219_div.disabled {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:0px;
  5772. top:0px;
  5773. width:126px;
  5774. height:23px;
  5775. background:inherit;
  5776. background-color:rgba(240, 240, 240, 1);
  5777. border:none;
  5778. border-radius:0px;
  5779. -moz-box-shadow:none;
  5780. -webkit-box-shadow:none;
  5781. box-shadow:none;
  5782. font-size:11px;
  5783. color:#AAAAAA;
  5784. }
  5785. #u80219.disabled {
  5786. }
  5787. .u80219_input_option {
  5788. font-size:11px;
  5789. }
  5790. #u80220 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:0px;
  5794. top:0px;
  5795. width:0px;
  5796. height:0px;
  5797. }
  5798. #u80221_div {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:140px;
  5804. height:30px;
  5805. background:inherit;
  5806. background-color:rgba(255, 255, 255, 1);
  5807. box-sizing:border-box;
  5808. border-width:1px;
  5809. border-style:solid;
  5810. border-color:rgba(201, 201, 201, 1);
  5811. border-radius:4px;
  5812. -moz-box-shadow:none;
  5813. -webkit-box-shadow:none;
  5814. box-shadow:none;
  5815. font-family:'Microsoft YaHei', sans-serif;
  5816. font-weight:400;
  5817. font-style:normal;
  5818. font-size:14px;
  5819. color:#CCCCCC;
  5820. text-align:left;
  5821. }
  5822. #u80221 {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:499px;
  5826. top:109px;
  5827. width:140px;
  5828. height:30px;
  5829. display:flex;
  5830. font-family:'Microsoft YaHei', sans-serif;
  5831. font-weight:400;
  5832. font-style:normal;
  5833. font-size:14px;
  5834. color:#CCCCCC;
  5835. text-align:left;
  5836. }
  5837. #u80221 .text {
  5838. position:absolute;
  5839. align-self:center;
  5840. padding:2px 8px 2px 8px;
  5841. box-sizing:border-box;
  5842. width:100%;
  5843. }
  5844. #u80221_text {
  5845. border-width:0px;
  5846. word-wrap:break-word;
  5847. text-transform:none;
  5848. visibility:hidden;
  5849. }
  5850. #u80222_input {
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:127px;
  5855. height:25px;
  5856. padding:2px 2px 2px 2px;
  5857. font-family:'Microsoft YaHei', sans-serif;
  5858. font-weight:400;
  5859. font-style:normal;
  5860. font-size:10px;
  5861. letter-spacing:normal;
  5862. color:#000000;
  5863. vertical-align:none;
  5864. text-align:left;
  5865. text-transform:none;
  5866. background-color:transparent;
  5867. border-color:transparent;
  5868. }
  5869. #u80222_input.disabled {
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:127px;
  5874. height:25px;
  5875. padding:2px 2px 2px 2px;
  5876. font-family:'Microsoft YaHei', sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:10px;
  5880. letter-spacing:normal;
  5881. color:#000000;
  5882. vertical-align:none;
  5883. text-align:left;
  5884. text-transform:none;
  5885. background-color:transparent;
  5886. border-color:transparent;
  5887. }
  5888. #u80222_div {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:127px;
  5894. height:25px;
  5895. background:inherit;
  5896. background-color:rgba(255, 255, 255, 1);
  5897. border:none;
  5898. border-radius:0px;
  5899. -moz-box-shadow:none;
  5900. -webkit-box-shadow:none;
  5901. box-shadow:none;
  5902. font-family:'Microsoft YaHei', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:10px;
  5906. }
  5907. #u80222 {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:507px;
  5911. top:110px;
  5912. width:127px;
  5913. height:25px;
  5914. display:flex;
  5915. font-family:'Microsoft YaHei', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:10px;
  5919. }
  5920. #u80222 .text {
  5921. position:absolute;
  5922. align-self:center;
  5923. padding:2px 2px 2px 2px;
  5924. box-sizing:border-box;
  5925. width:100%;
  5926. }
  5927. #u80222_div.disabled {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:127px;
  5933. height:25px;
  5934. background:inherit;
  5935. background-color:rgba(240, 240, 240, 1);
  5936. border:none;
  5937. border-radius:0px;
  5938. -moz-box-shadow:none;
  5939. -webkit-box-shadow:none;
  5940. box-shadow:none;
  5941. font-family:'Microsoft YaHei', sans-serif;
  5942. font-weight:400;
  5943. font-style:normal;
  5944. font-size:10px;
  5945. }
  5946. #u80222.disabled {
  5947. }
  5948. #u80223 {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:0px;
  5954. height:0px;
  5955. }
  5956. #u80224_div {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:0px;
  5960. top:0px;
  5961. width:140px;
  5962. height:30px;
  5963. background:inherit;
  5964. background-color:rgba(255, 255, 255, 1);
  5965. box-sizing:border-box;
  5966. border-width:1px;
  5967. border-style:solid;
  5968. border-color:rgba(188, 188, 188, 1);
  5969. border-radius:4px;
  5970. -moz-box-shadow:none;
  5971. -webkit-box-shadow:none;
  5972. box-shadow:none;
  5973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5974. font-weight:400;
  5975. font-style:normal;
  5976. font-size:12px;
  5977. color:#FFFFFF;
  5978. }
  5979. #u80224 {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:649px;
  5983. top:109px;
  5984. width:140px;
  5985. height:30px;
  5986. display:flex;
  5987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5988. font-weight:400;
  5989. font-style:normal;
  5990. font-size:12px;
  5991. color:#FFFFFF;
  5992. }
  5993. #u80224 .text {
  5994. position:absolute;
  5995. align-self:center;
  5996. padding:8px 15px 8px 15px;
  5997. box-sizing:border-box;
  5998. width:100%;
  5999. }
  6000. #u80224_text {
  6001. border-width:0px;
  6002. word-wrap:break-word;
  6003. text-transform:none;
  6004. visibility:hidden;
  6005. }
  6006. #u80225_img {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:18px;
  6012. height:18px;
  6013. }
  6014. #u80225 {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:766px;
  6018. top:115px;
  6019. width:18px;
  6020. height:18px;
  6021. display:flex;
  6022. opacity:0.5;
  6023. }
  6024. #u80225 .text {
  6025. position:absolute;
  6026. align-self:center;
  6027. padding:2px 2px 2px 2px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u80225_text {
  6032. border-width:0px;
  6033. word-wrap:break-word;
  6034. text-transform:none;
  6035. visibility:hidden;
  6036. }
  6037. #u80227 {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:0px;
  6041. top:0px;
  6042. width:0px;
  6043. height:0px;
  6044. }
  6045. #u80228_img {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:0px;
  6049. top:0px;
  6050. width:200px;
  6051. height:1191px;
  6052. }
  6053. #u80228 {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:120px;
  6057. top:50px;
  6058. width:200px;
  6059. height:1191px;
  6060. display:flex;
  6061. }
  6062. #u80228 .text {
  6063. position:absolute;
  6064. align-self:center;
  6065. padding:2px 2px 2px 2px;
  6066. box-sizing:border-box;
  6067. width:100%;
  6068. }
  6069. #u80228_text {
  6070. border-width:0px;
  6071. word-wrap:break-word;
  6072. text-transform:none;
  6073. visibility:hidden;
  6074. }
  6075. #u80229_div {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:200px;
  6081. height:60px;
  6082. background:inherit;
  6083. background-color:rgba(224, 231, 247, 1);
  6084. border:none;
  6085. border-radius:0px;
  6086. -moz-box-shadow:none;
  6087. -webkit-box-shadow:none;
  6088. box-shadow:none;
  6089. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6090. font-weight:500;
  6091. font-style:normal;
  6092. font-size:18px;
  6093. }
  6094. #u80229 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:120px;
  6098. top:50px;
  6099. width:200px;
  6100. height:60px;
  6101. display:flex;
  6102. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6103. font-weight:500;
  6104. font-style:normal;
  6105. font-size:18px;
  6106. }
  6107. #u80229 .text {
  6108. position:absolute;
  6109. align-self:center;
  6110. padding:0px 0px 0px 20px;
  6111. box-sizing:border-box;
  6112. width:100%;
  6113. }
  6114. #u80229_text {
  6115. border-width:0px;
  6116. word-wrap:break-word;
  6117. text-transform:none;
  6118. }
  6119. #u80230 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:120px;
  6123. top:130px;
  6124. width:200px;
  6125. height:1078px;
  6126. }
  6127. #u80230_state0 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:200px;
  6133. height:1078px;
  6134. overflow:auto;
  6135. -webkit-overflow-scrolling:touch;
  6136. -ms-overflow-x:hidden;
  6137. overflow-x:hidden;
  6138. background-image:none;
  6139. border:none;
  6140. border-radius:0px;
  6141. -moz-box-shadow:none;
  6142. -webkit-box-shadow:none;
  6143. box-shadow:none;
  6144. }
  6145. #u80230_state0_content {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:1px;
  6151. height:1px;
  6152. }
  6153. #u80231_div {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:97px;
  6159. height:22px;
  6160. background:inherit;
  6161. background-color:rgba(255, 255, 255, 0);
  6162. border:none;
  6163. border-radius:0px;
  6164. -moz-box-shadow:none;
  6165. -webkit-box-shadow:none;
  6166. box-shadow:none;
  6167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6168. font-weight:400;
  6169. font-style:normal;
  6170. font-size:16px;
  6171. }
  6172. #u80231 {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:30px;
  6176. top:0px;
  6177. width:97px;
  6178. height:22px;
  6179. display:flex;
  6180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6181. font-weight:400;
  6182. font-style:normal;
  6183. font-size:16px;
  6184. }
  6185. #u80231 .text {
  6186. position:absolute;
  6187. align-self:flex-start;
  6188. padding:0px 0px 0px 0px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u80231_text {
  6193. border-width:0px;
  6194. word-wrap:break-word;
  6195. text-transform:none;
  6196. }
  6197. #u80232_div {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:0px;
  6201. top:0px;
  6202. width:65px;
  6203. height:22px;
  6204. background:inherit;
  6205. background-color:rgba(255, 255, 255, 0);
  6206. border:none;
  6207. border-radius:0px;
  6208. -moz-box-shadow:none;
  6209. -webkit-box-shadow:none;
  6210. box-shadow:none;
  6211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6212. font-weight:400;
  6213. font-style:normal;
  6214. font-size:16px;
  6215. }
  6216. #u80232 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:30px;
  6220. top:42px;
  6221. width:65px;
  6222. height:22px;
  6223. display:flex;
  6224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6225. font-weight:400;
  6226. font-style:normal;
  6227. font-size:16px;
  6228. }
  6229. #u80232 .text {
  6230. position:absolute;
  6231. align-self:flex-start;
  6232. padding:0px 0px 0px 0px;
  6233. box-sizing:border-box;
  6234. width:100%;
  6235. }
  6236. #u80232_text {
  6237. border-width:0px;
  6238. white-space:nowrap;
  6239. text-transform:none;
  6240. }
  6241. #u80233_div {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:0px;
  6245. top:0px;
  6246. width:49px;
  6247. height:22px;
  6248. background:inherit;
  6249. background-color:rgba(255, 255, 255, 0);
  6250. border:none;
  6251. border-radius:0px;
  6252. -moz-box-shadow:none;
  6253. -webkit-box-shadow:none;
  6254. box-shadow:none;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:16px;
  6259. }
  6260. #u80233 {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:30px;
  6264. top:145px;
  6265. width:49px;
  6266. height:22px;
  6267. display:flex;
  6268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6269. font-weight:400;
  6270. font-style:normal;
  6271. font-size:16px;
  6272. }
  6273. #u80233 .text {
  6274. position:absolute;
  6275. align-self:flex-start;
  6276. padding:0px 0px 0px 0px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u80233_text {
  6281. border-width:0px;
  6282. white-space:nowrap;
  6283. text-transform:none;
  6284. }
  6285. #u80234_div {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:0px;
  6289. top:0px;
  6290. width:97px;
  6291. height:22px;
  6292. background:inherit;
  6293. background-color:rgba(255, 255, 255, 0);
  6294. border:none;
  6295. border-radius:0px;
  6296. -moz-box-shadow:none;
  6297. -webkit-box-shadow:none;
  6298. box-shadow:none;
  6299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. font-size:16px;
  6303. }
  6304. #u80234 {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:30px;
  6308. top:187px;
  6309. width:97px;
  6310. height:22px;
  6311. display:flex;
  6312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6313. font-weight:400;
  6314. font-style:normal;
  6315. font-size:16px;
  6316. }
  6317. #u80234 .text {
  6318. position:absolute;
  6319. align-self:flex-start;
  6320. padding:0px 0px 0px 0px;
  6321. box-sizing:border-box;
  6322. width:100%;
  6323. }
  6324. #u80234_text {
  6325. border-width:0px;
  6326. word-wrap:break-word;
  6327. text-transform:none;
  6328. }
  6329. #u80235_img {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:201px;
  6335. height:2px;
  6336. }
  6337. #u80235 {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:0px;
  6341. top:84px;
  6342. width:200px;
  6343. height:1px;
  6344. display:flex;
  6345. }
  6346. #u80235 .text {
  6347. position:absolute;
  6348. align-self:center;
  6349. padding:2px 2px 2px 2px;
  6350. box-sizing:border-box;
  6351. width:100%;
  6352. }
  6353. #u80235_text {
  6354. border-width:0px;
  6355. word-wrap:break-word;
  6356. text-transform:none;
  6357. visibility:hidden;
  6358. }
  6359. #u80236_div {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:0px;
  6363. top:0px;
  6364. width:49px;
  6365. height:17px;
  6366. background:inherit;
  6367. background-color:rgba(255, 255, 255, 0);
  6368. border:none;
  6369. border-radius:0px;
  6370. -moz-box-shadow:none;
  6371. -webkit-box-shadow:none;
  6372. box-shadow:none;
  6373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6374. font-weight:400;
  6375. font-style:normal;
  6376. font-size:12px;
  6377. color:#AAAAAA;
  6378. }
  6379. #u80236 {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:30px;
  6383. top:105px;
  6384. width:49px;
  6385. height:17px;
  6386. display:flex;
  6387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6388. font-weight:400;
  6389. font-style:normal;
  6390. font-size:12px;
  6391. color:#AAAAAA;
  6392. }
  6393. #u80236 .text {
  6394. position:absolute;
  6395. align-self:flex-start;
  6396. padding:0px 0px 0px 0px;
  6397. box-sizing:border-box;
  6398. width:100%;
  6399. }
  6400. #u80236_text {
  6401. border-width:0px;
  6402. white-space:nowrap;
  6403. text-transform:none;
  6404. }
  6405. #u80237_div {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:0px;
  6409. top:0px;
  6410. width:97px;
  6411. height:22px;
  6412. background:inherit;
  6413. background-color:rgba(255, 255, 255, 0);
  6414. border:none;
  6415. border-radius:0px;
  6416. -moz-box-shadow:none;
  6417. -webkit-box-shadow:none;
  6418. box-shadow:none;
  6419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:16px;
  6423. }
  6424. #u80237 {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:30px;
  6428. top:229px;
  6429. width:97px;
  6430. height:22px;
  6431. display:flex;
  6432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6433. font-weight:400;
  6434. font-style:normal;
  6435. font-size:16px;
  6436. }
  6437. #u80237 .text {
  6438. position:absolute;
  6439. align-self:flex-start;
  6440. padding:0px 0px 0px 0px;
  6441. box-sizing:border-box;
  6442. width:100%;
  6443. }
  6444. #u80237_text {
  6445. border-width:0px;
  6446. word-wrap:break-word;
  6447. text-transform:none;
  6448. }
  6449. #u80238_div {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:65px;
  6455. height:22px;
  6456. background:inherit;
  6457. background-color:rgba(255, 255, 255, 0);
  6458. border:none;
  6459. border-radius:0px;
  6460. -moz-box-shadow:none;
  6461. -webkit-box-shadow:none;
  6462. box-shadow:none;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:16px;
  6467. }
  6468. #u80238 {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:30px;
  6472. top:271px;
  6473. width:65px;
  6474. height:22px;
  6475. display:flex;
  6476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6477. font-weight:400;
  6478. font-style:normal;
  6479. font-size:16px;
  6480. }
  6481. #u80238 .text {
  6482. position:absolute;
  6483. align-self:flex-start;
  6484. padding:0px 0px 0px 0px;
  6485. box-sizing:border-box;
  6486. width:100%;
  6487. }
  6488. #u80238_text {
  6489. border-width:0px;
  6490. white-space:nowrap;
  6491. text-transform:none;
  6492. }
  6493. #u80239_img {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:201px;
  6499. height:2px;
  6500. }
  6501. #u80239 {
  6502. border-width:0px;
  6503. position:absolute;
  6504. left:0px;
  6505. top:313px;
  6506. width:200px;
  6507. height:1px;
  6508. display:flex;
  6509. }
  6510. #u80239 .text {
  6511. position:absolute;
  6512. align-self:center;
  6513. padding:2px 2px 2px 2px;
  6514. box-sizing:border-box;
  6515. width:100%;
  6516. }
  6517. #u80239_text {
  6518. border-width:0px;
  6519. word-wrap:break-word;
  6520. text-transform:none;
  6521. visibility:hidden;
  6522. }
  6523. #u80240_div {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:0px;
  6527. top:0px;
  6528. width:65px;
  6529. height:22px;
  6530. background:inherit;
  6531. background-color:rgba(255, 255, 255, 0);
  6532. border:none;
  6533. border-radius:0px;
  6534. -moz-box-shadow:none;
  6535. -webkit-box-shadow:none;
  6536. box-shadow:none;
  6537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6538. font-weight:400;
  6539. font-style:normal;
  6540. font-size:16px;
  6541. }
  6542. #u80240 {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:30px;
  6546. top:370px;
  6547. width:65px;
  6548. height:22px;
  6549. display:flex;
  6550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6551. font-weight:400;
  6552. font-style:normal;
  6553. font-size:16px;
  6554. }
  6555. #u80240 .text {
  6556. position:absolute;
  6557. align-self:flex-start;
  6558. padding:0px 0px 0px 0px;
  6559. box-sizing:border-box;
  6560. width:100%;
  6561. }
  6562. #u80240_text {
  6563. border-width:0px;
  6564. white-space:nowrap;
  6565. text-transform:none;
  6566. }
  6567. #u80241_div {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:0px;
  6571. top:0px;
  6572. width:49px;
  6573. height:17px;
  6574. background:inherit;
  6575. background-color:rgba(255, 255, 255, 0);
  6576. border:none;
  6577. border-radius:0px;
  6578. -moz-box-shadow:none;
  6579. -webkit-box-shadow:none;
  6580. box-shadow:none;
  6581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6582. font-weight:400;
  6583. font-style:normal;
  6584. font-size:12px;
  6585. color:#AAAAAA;
  6586. }
  6587. #u80241 {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:30px;
  6591. top:334px;
  6592. width:49px;
  6593. height:17px;
  6594. display:flex;
  6595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6596. font-weight:400;
  6597. font-style:normal;
  6598. font-size:12px;
  6599. color:#AAAAAA;
  6600. }
  6601. #u80241 .text {
  6602. position:absolute;
  6603. align-self:flex-start;
  6604. padding:0px 0px 0px 0px;
  6605. box-sizing:border-box;
  6606. width:100%;
  6607. }
  6608. #u80241_text {
  6609. border-width:0px;
  6610. white-space:nowrap;
  6611. text-transform:none;
  6612. }
  6613. #u80242_div {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:0px;
  6617. top:0px;
  6618. width:65px;
  6619. height:22px;
  6620. background:inherit;
  6621. background-color:rgba(255, 255, 255, 0);
  6622. border:none;
  6623. border-radius:0px;
  6624. -moz-box-shadow:none;
  6625. -webkit-box-shadow:none;
  6626. box-shadow:none;
  6627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:16px;
  6631. }
  6632. #u80242 {
  6633. border-width:0px;
  6634. position:absolute;
  6635. left:30px;
  6636. top:412px;
  6637. width:65px;
  6638. height:22px;
  6639. display:flex;
  6640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6641. font-weight:400;
  6642. font-style:normal;
  6643. font-size:16px;
  6644. }
  6645. #u80242 .text {
  6646. position:absolute;
  6647. align-self:flex-start;
  6648. padding:0px 0px 0px 0px;
  6649. box-sizing:border-box;
  6650. width:100%;
  6651. }
  6652. #u80242_text {
  6653. border-width:0px;
  6654. white-space:nowrap;
  6655. text-transform:none;
  6656. }
  6657. #u80243_div {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:0px;
  6661. top:0px;
  6662. width:65px;
  6663. height:22px;
  6664. background:inherit;
  6665. background-color:rgba(255, 255, 255, 0);
  6666. border:none;
  6667. border-radius:0px;
  6668. -moz-box-shadow:none;
  6669. -webkit-box-shadow:none;
  6670. box-shadow:none;
  6671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6672. font-weight:400;
  6673. font-style:normal;
  6674. font-size:16px;
  6675. }
  6676. #u80243 {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:30px;
  6680. top:454px;
  6681. width:65px;
  6682. height:22px;
  6683. display:flex;
  6684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6685. font-weight:400;
  6686. font-style:normal;
  6687. font-size:16px;
  6688. }
  6689. #u80243 .text {
  6690. position:absolute;
  6691. align-self:flex-start;
  6692. padding:0px 0px 0px 0px;
  6693. box-sizing:border-box;
  6694. width:100%;
  6695. }
  6696. #u80243_text {
  6697. border-width:0px;
  6698. white-space:nowrap;
  6699. text-transform:none;
  6700. }
  6701. #u80244_div {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:65px;
  6707. height:22px;
  6708. background:inherit;
  6709. background-color:rgba(255, 255, 255, 0);
  6710. border:none;
  6711. border-radius:0px;
  6712. -moz-box-shadow:none;
  6713. -webkit-box-shadow:none;
  6714. box-shadow:none;
  6715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6716. font-weight:400;
  6717. font-style:normal;
  6718. font-size:16px;
  6719. }
  6720. #u80244 {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:30px;
  6724. top:496px;
  6725. width:65px;
  6726. height:22px;
  6727. display:flex;
  6728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6729. font-weight:400;
  6730. font-style:normal;
  6731. font-size:16px;
  6732. }
  6733. #u80244 .text {
  6734. position:absolute;
  6735. align-self:flex-start;
  6736. padding:0px 0px 0px 0px;
  6737. box-sizing:border-box;
  6738. width:100%;
  6739. }
  6740. #u80244_text {
  6741. border-width:0px;
  6742. white-space:nowrap;
  6743. text-transform:none;
  6744. }
  6745. #u80245_div {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:0px;
  6749. top:0px;
  6750. width:65px;
  6751. height:22px;
  6752. background:inherit;
  6753. background-color:rgba(255, 255, 255, 0);
  6754. border:none;
  6755. border-radius:0px;
  6756. -moz-box-shadow:none;
  6757. -webkit-box-shadow:none;
  6758. box-shadow:none;
  6759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6760. font-weight:400;
  6761. font-style:normal;
  6762. font-size:16px;
  6763. }
  6764. #u80245 {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:30px;
  6768. top:538px;
  6769. width:65px;
  6770. height:22px;
  6771. display:flex;
  6772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6773. font-weight:400;
  6774. font-style:normal;
  6775. font-size:16px;
  6776. }
  6777. #u80245 .text {
  6778. position:absolute;
  6779. align-self:flex-start;
  6780. padding:0px 0px 0px 0px;
  6781. box-sizing:border-box;
  6782. width:100%;
  6783. }
  6784. #u80245_text {
  6785. border-width:0px;
  6786. white-space:nowrap;
  6787. text-transform:none;
  6788. }
  6789. #u80246_div {
  6790. border-width:0px;
  6791. position:absolute;
  6792. left:0px;
  6793. top:0px;
  6794. width:65px;
  6795. height:22px;
  6796. background:inherit;
  6797. background-color:rgba(255, 255, 255, 0);
  6798. border:none;
  6799. border-radius:0px;
  6800. -moz-box-shadow:none;
  6801. -webkit-box-shadow:none;
  6802. box-shadow:none;
  6803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6804. font-weight:400;
  6805. font-style:normal;
  6806. font-size:16px;
  6807. }
  6808. #u80246 {
  6809. border-width:0px;
  6810. position:absolute;
  6811. left:30px;
  6812. top:580px;
  6813. width:65px;
  6814. height:22px;
  6815. display:flex;
  6816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6817. font-weight:400;
  6818. font-style:normal;
  6819. font-size:16px;
  6820. }
  6821. #u80246 .text {
  6822. position:absolute;
  6823. align-self:flex-start;
  6824. padding:0px 0px 0px 0px;
  6825. box-sizing:border-box;
  6826. width:100%;
  6827. }
  6828. #u80246_text {
  6829. border-width:0px;
  6830. white-space:nowrap;
  6831. text-transform:none;
  6832. }
  6833. #u80247_img {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:201px;
  6839. height:2px;
  6840. }
  6841. #u80247 {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:0px;
  6845. top:1289px;
  6846. width:200px;
  6847. height:1px;
  6848. display:flex;
  6849. }
  6850. #u80247 .text {
  6851. position:absolute;
  6852. align-self:center;
  6853. padding:2px 2px 2px 2px;
  6854. box-sizing:border-box;
  6855. width:100%;
  6856. }
  6857. #u80247_text {
  6858. border-width:0px;
  6859. word-wrap:break-word;
  6860. text-transform:none;
  6861. visibility:hidden;
  6862. }
  6863. #u80248_div {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:0px;
  6867. top:0px;
  6868. width:65px;
  6869. height:22px;
  6870. background:inherit;
  6871. background-color:rgba(255, 255, 255, 0);
  6872. border:none;
  6873. border-radius:0px;
  6874. -moz-box-shadow:none;
  6875. -webkit-box-shadow:none;
  6876. box-shadow:none;
  6877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:16px;
  6881. }
  6882. #u80248 {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:30px;
  6886. top:1346px;
  6887. width:65px;
  6888. height:22px;
  6889. display:flex;
  6890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6891. font-weight:400;
  6892. font-style:normal;
  6893. font-size:16px;
  6894. }
  6895. #u80248 .text {
  6896. position:absolute;
  6897. align-self:flex-start;
  6898. padding:0px 0px 0px 0px;
  6899. box-sizing:border-box;
  6900. width:100%;
  6901. }
  6902. #u80248_text {
  6903. border-width:0px;
  6904. white-space:nowrap;
  6905. text-transform:none;
  6906. }
  6907. #u80249_div {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:49px;
  6913. height:17px;
  6914. background:inherit;
  6915. background-color:rgba(255, 255, 255, 0);
  6916. border:none;
  6917. border-radius:0px;
  6918. -moz-box-shadow:none;
  6919. -webkit-box-shadow:none;
  6920. box-shadow:none;
  6921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6922. font-weight:400;
  6923. font-style:normal;
  6924. font-size:12px;
  6925. color:#AAAAAA;
  6926. }
  6927. #u80249 {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:30px;
  6931. top:1310px;
  6932. width:49px;
  6933. height:17px;
  6934. display:flex;
  6935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6936. font-weight:400;
  6937. font-style:normal;
  6938. font-size:12px;
  6939. color:#AAAAAA;
  6940. }
  6941. #u80249 .text {
  6942. position:absolute;
  6943. align-self:flex-start;
  6944. padding:0px 0px 0px 0px;
  6945. box-sizing:border-box;
  6946. width:100%;
  6947. }
  6948. #u80249_text {
  6949. border-width:0px;
  6950. white-space:nowrap;
  6951. text-transform:none;
  6952. }
  6953. #u80250_div {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:0px;
  6957. top:0px;
  6958. width:65px;
  6959. height:22px;
  6960. background:inherit;
  6961. background-color:rgba(255, 255, 255, 0);
  6962. border:none;
  6963. border-radius:0px;
  6964. -moz-box-shadow:none;
  6965. -webkit-box-shadow:none;
  6966. box-shadow:none;
  6967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6968. font-weight:400;
  6969. font-style:normal;
  6970. font-size:16px;
  6971. }
  6972. #u80250 {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:30px;
  6976. top:1388px;
  6977. width:65px;
  6978. height:22px;
  6979. display:flex;
  6980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6981. font-weight:400;
  6982. font-style:normal;
  6983. font-size:16px;
  6984. }
  6985. #u80250 .text {
  6986. position:absolute;
  6987. align-self:flex-start;
  6988. padding:0px 0px 0px 0px;
  6989. box-sizing:border-box;
  6990. width:100%;
  6991. }
  6992. #u80250_text {
  6993. border-width:0px;
  6994. white-space:nowrap;
  6995. text-transform:none;
  6996. }
  6997. #u80251_div {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:65px;
  7003. height:22px;
  7004. background:inherit;
  7005. background-color:rgba(255, 255, 255, 0);
  7006. border:none;
  7007. border-radius:0px;
  7008. -moz-box-shadow:none;
  7009. -webkit-box-shadow:none;
  7010. box-shadow:none;
  7011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7012. font-weight:400;
  7013. font-style:normal;
  7014. font-size:16px;
  7015. }
  7016. #u80251 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:30px;
  7020. top:1472px;
  7021. width:65px;
  7022. height:22px;
  7023. display:flex;
  7024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7025. font-weight:400;
  7026. font-style:normal;
  7027. font-size:16px;
  7028. }
  7029. #u80251 .text {
  7030. position:absolute;
  7031. align-self:flex-start;
  7032. padding:0px 0px 0px 0px;
  7033. box-sizing:border-box;
  7034. width:100%;
  7035. }
  7036. #u80251_text {
  7037. border-width:0px;
  7038. white-space:nowrap;
  7039. text-transform:none;
  7040. }
  7041. #u80252_img {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:0px;
  7045. top:0px;
  7046. width:201px;
  7047. height:2px;
  7048. }
  7049. #u80252 {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:0px;
  7053. top:1514px;
  7054. width:200px;
  7055. height:1px;
  7056. display:flex;
  7057. }
  7058. #u80252 .text {
  7059. position:absolute;
  7060. align-self:center;
  7061. padding:2px 2px 2px 2px;
  7062. box-sizing:border-box;
  7063. width:100%;
  7064. }
  7065. #u80252_text {
  7066. border-width:0px;
  7067. word-wrap:break-word;
  7068. text-transform:none;
  7069. visibility:hidden;
  7070. }
  7071. #u80253_div {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:0px;
  7075. top:0px;
  7076. width:49px;
  7077. height:22px;
  7078. background:inherit;
  7079. background-color:rgba(255, 255, 255, 0);
  7080. border:none;
  7081. border-radius:0px;
  7082. -moz-box-shadow:none;
  7083. -webkit-box-shadow:none;
  7084. box-shadow:none;
  7085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7086. font-weight:400;
  7087. font-style:normal;
  7088. font-size:16px;
  7089. }
  7090. #u80253 {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:30px;
  7094. top:1571px;
  7095. width:49px;
  7096. height:22px;
  7097. display:flex;
  7098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7099. font-weight:400;
  7100. font-style:normal;
  7101. font-size:16px;
  7102. }
  7103. #u80253 .text {
  7104. position:absolute;
  7105. align-self:flex-start;
  7106. padding:0px 0px 0px 0px;
  7107. box-sizing:border-box;
  7108. width:100%;
  7109. }
  7110. #u80253_text {
  7111. border-width:0px;
  7112. white-space:nowrap;
  7113. text-transform:none;
  7114. }
  7115. #u80254_div {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:0px;
  7119. top:0px;
  7120. width:49px;
  7121. height:17px;
  7122. background:inherit;
  7123. background-color:rgba(255, 255, 255, 0);
  7124. border:none;
  7125. border-radius:0px;
  7126. -moz-box-shadow:none;
  7127. -webkit-box-shadow:none;
  7128. box-shadow:none;
  7129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7130. font-weight:400;
  7131. font-style:normal;
  7132. font-size:12px;
  7133. color:#AAAAAA;
  7134. }
  7135. #u80254 {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:30px;
  7139. top:1535px;
  7140. width:49px;
  7141. height:17px;
  7142. display:flex;
  7143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7144. font-weight:400;
  7145. font-style:normal;
  7146. font-size:12px;
  7147. color:#AAAAAA;
  7148. }
  7149. #u80254 .text {
  7150. position:absolute;
  7151. align-self:flex-start;
  7152. padding:0px 0px 0px 0px;
  7153. box-sizing:border-box;
  7154. width:100%;
  7155. }
  7156. #u80254_text {
  7157. border-width:0px;
  7158. white-space:nowrap;
  7159. text-transform:none;
  7160. }
  7161. #u80255_div {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:0px;
  7165. top:0px;
  7166. width:49px;
  7167. height:22px;
  7168. background:inherit;
  7169. background-color:rgba(255, 255, 255, 0);
  7170. border:none;
  7171. border-radius:0px;
  7172. -moz-box-shadow:none;
  7173. -webkit-box-shadow:none;
  7174. box-shadow:none;
  7175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7176. font-weight:400;
  7177. font-style:normal;
  7178. font-size:16px;
  7179. }
  7180. #u80255 {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:30px;
  7184. top:1613px;
  7185. width:49px;
  7186. height:22px;
  7187. display:flex;
  7188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7189. font-weight:400;
  7190. font-style:normal;
  7191. font-size:16px;
  7192. }
  7193. #u80255 .text {
  7194. position:absolute;
  7195. align-self:flex-start;
  7196. padding:0px 0px 0px 0px;
  7197. box-sizing:border-box;
  7198. width:100%;
  7199. }
  7200. #u80255_text {
  7201. border-width:0px;
  7202. white-space:nowrap;
  7203. text-transform:none;
  7204. }
  7205. #u80256_div {
  7206. border-width:0px;
  7207. position:absolute;
  7208. left:0px;
  7209. top:0px;
  7210. width:65px;
  7211. height:22px;
  7212. background:inherit;
  7213. background-color:rgba(255, 255, 255, 0);
  7214. border:none;
  7215. border-radius:0px;
  7216. -moz-box-shadow:none;
  7217. -webkit-box-shadow:none;
  7218. box-shadow:none;
  7219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7220. font-weight:400;
  7221. font-style:normal;
  7222. font-size:16px;
  7223. }
  7224. #u80256 {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:30px;
  7228. top:1655px;
  7229. width:65px;
  7230. height:22px;
  7231. display:flex;
  7232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7233. font-weight:400;
  7234. font-style:normal;
  7235. font-size:16px;
  7236. }
  7237. #u80256 .text {
  7238. position:absolute;
  7239. align-self:flex-start;
  7240. padding:0px 0px 0px 0px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u80256_text {
  7245. border-width:0px;
  7246. white-space:nowrap;
  7247. text-transform:none;
  7248. }
  7249. #u80257_img {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:0px;
  7253. top:0px;
  7254. width:201px;
  7255. height:2px;
  7256. }
  7257. #u80257 {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:1697px;
  7262. width:200px;
  7263. height:1px;
  7264. display:flex;
  7265. }
  7266. #u80257 .text {
  7267. position:absolute;
  7268. align-self:center;
  7269. padding:2px 2px 2px 2px;
  7270. box-sizing:border-box;
  7271. width:100%;
  7272. }
  7273. #u80257_text {
  7274. border-width:0px;
  7275. word-wrap:break-word;
  7276. text-transform:none;
  7277. visibility:hidden;
  7278. }
  7279. #u80258_div {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:0px;
  7283. top:0px;
  7284. width:81px;
  7285. height:22px;
  7286. background:inherit;
  7287. background-color:rgba(255, 255, 255, 0);
  7288. border:none;
  7289. border-radius:0px;
  7290. -moz-box-shadow:none;
  7291. -webkit-box-shadow:none;
  7292. box-shadow:none;
  7293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7294. font-weight:400;
  7295. font-style:normal;
  7296. font-size:16px;
  7297. }
  7298. #u80258 {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:30px;
  7302. top:1754px;
  7303. width:81px;
  7304. height:22px;
  7305. display:flex;
  7306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7307. font-weight:400;
  7308. font-style:normal;
  7309. font-size:16px;
  7310. }
  7311. #u80258 .text {
  7312. position:absolute;
  7313. align-self:flex-start;
  7314. padding:0px 0px 0px 0px;
  7315. box-sizing:border-box;
  7316. width:100%;
  7317. }
  7318. #u80258_text {
  7319. border-width:0px;
  7320. white-space:nowrap;
  7321. text-transform:none;
  7322. }
  7323. #u80259_div {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:0px;
  7327. top:0px;
  7328. width:49px;
  7329. height:17px;
  7330. background:inherit;
  7331. background-color:rgba(255, 255, 255, 0);
  7332. border:none;
  7333. border-radius:0px;
  7334. -moz-box-shadow:none;
  7335. -webkit-box-shadow:none;
  7336. box-shadow:none;
  7337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7338. font-weight:400;
  7339. font-style:normal;
  7340. font-size:12px;
  7341. color:#AAAAAA;
  7342. }
  7343. #u80259 {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:30px;
  7347. top:1718px;
  7348. width:49px;
  7349. height:17px;
  7350. display:flex;
  7351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7352. font-weight:400;
  7353. font-style:normal;
  7354. font-size:12px;
  7355. color:#AAAAAA;
  7356. }
  7357. #u80259 .text {
  7358. position:absolute;
  7359. align-self:flex-start;
  7360. padding:0px 0px 0px 0px;
  7361. box-sizing:border-box;
  7362. width:100%;
  7363. }
  7364. #u80259_text {
  7365. border-width:0px;
  7366. white-space:nowrap;
  7367. text-transform:none;
  7368. }
  7369. #u80260_div {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:0px;
  7373. top:0px;
  7374. width:81px;
  7375. height:22px;
  7376. background:inherit;
  7377. background-color:rgba(255, 255, 255, 0);
  7378. border:none;
  7379. border-radius:0px;
  7380. -moz-box-shadow:none;
  7381. -webkit-box-shadow:none;
  7382. box-shadow:none;
  7383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7384. font-weight:400;
  7385. font-style:normal;
  7386. font-size:16px;
  7387. }
  7388. #u80260 {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:30px;
  7392. top:1796px;
  7393. width:81px;
  7394. height:22px;
  7395. display:flex;
  7396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7397. font-weight:400;
  7398. font-style:normal;
  7399. font-size:16px;
  7400. }
  7401. #u80260 .text {
  7402. position:absolute;
  7403. align-self:flex-start;
  7404. padding:0px 0px 0px 0px;
  7405. box-sizing:border-box;
  7406. width:100%;
  7407. }
  7408. #u80260_text {
  7409. border-width:0px;
  7410. white-space:nowrap;
  7411. text-transform:none;
  7412. }
  7413. #u80261_div {
  7414. border-width:0px;
  7415. position:absolute;
  7416. left:0px;
  7417. top:0px;
  7418. width:81px;
  7419. height:22px;
  7420. background:inherit;
  7421. background-color:rgba(255, 255, 255, 0);
  7422. border:none;
  7423. border-radius:0px;
  7424. -moz-box-shadow:none;
  7425. -webkit-box-shadow:none;
  7426. box-shadow:none;
  7427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7428. font-weight:400;
  7429. font-style:normal;
  7430. font-size:16px;
  7431. }
  7432. #u80261 {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:30px;
  7436. top:1838px;
  7437. width:81px;
  7438. height:22px;
  7439. display:flex;
  7440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7441. font-weight:400;
  7442. font-style:normal;
  7443. font-size:16px;
  7444. }
  7445. #u80261 .text {
  7446. position:absolute;
  7447. align-self:flex-start;
  7448. padding:0px 0px 0px 0px;
  7449. box-sizing:border-box;
  7450. width:100%;
  7451. }
  7452. #u80261_text {
  7453. border-width:0px;
  7454. white-space:nowrap;
  7455. text-transform:none;
  7456. }
  7457. #u80262_div {
  7458. border-width:0px;
  7459. position:absolute;
  7460. left:0px;
  7461. top:0px;
  7462. width:65px;
  7463. height:22px;
  7464. background:inherit;
  7465. background-color:rgba(255, 255, 255, 0);
  7466. border:none;
  7467. border-radius:0px;
  7468. -moz-box-shadow:none;
  7469. -webkit-box-shadow:none;
  7470. box-shadow:none;
  7471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7472. font-weight:400;
  7473. font-style:normal;
  7474. font-size:16px;
  7475. }
  7476. #u80262 {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:30px;
  7480. top:1430px;
  7481. width:65px;
  7482. height:22px;
  7483. display:flex;
  7484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7485. font-weight:400;
  7486. font-style:normal;
  7487. font-size:16px;
  7488. }
  7489. #u80262 .text {
  7490. position:absolute;
  7491. align-self:flex-start;
  7492. padding:0px 0px 0px 0px;
  7493. box-sizing:border-box;
  7494. width:100%;
  7495. }
  7496. #u80262_text {
  7497. border-width:0px;
  7498. white-space:nowrap;
  7499. text-transform:none;
  7500. }
  7501. #u80263_img {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:0px;
  7505. top:0px;
  7506. width:201px;
  7507. height:2px;
  7508. }
  7509. #u80263 {
  7510. border-width:0px;
  7511. position:absolute;
  7512. left:0px;
  7513. top:669px;
  7514. width:200px;
  7515. height:1px;
  7516. display:flex;
  7517. }
  7518. #u80263 .text {
  7519. position:absolute;
  7520. align-self:center;
  7521. padding:2px 2px 2px 2px;
  7522. box-sizing:border-box;
  7523. width:100%;
  7524. }
  7525. #u80263_text {
  7526. border-width:0px;
  7527. word-wrap:break-word;
  7528. text-transform:none;
  7529. visibility:hidden;
  7530. }
  7531. #u80264_div {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:0px;
  7535. top:0px;
  7536. width:65px;
  7537. height:22px;
  7538. background:inherit;
  7539. background-color:rgba(255, 255, 255, 0);
  7540. border:none;
  7541. border-radius:0px;
  7542. -moz-box-shadow:none;
  7543. -webkit-box-shadow:none;
  7544. box-shadow:none;
  7545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7546. font-weight:400;
  7547. font-style:normal;
  7548. font-size:16px;
  7549. }
  7550. #u80264 {
  7551. border-width:0px;
  7552. position:absolute;
  7553. left:30px;
  7554. top:726px;
  7555. width:65px;
  7556. height:22px;
  7557. display:flex;
  7558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7559. font-weight:400;
  7560. font-style:normal;
  7561. font-size:16px;
  7562. }
  7563. #u80264 .text {
  7564. position:absolute;
  7565. align-self:flex-start;
  7566. padding:0px 0px 0px 0px;
  7567. box-sizing:border-box;
  7568. width:100%;
  7569. }
  7570. #u80264_text {
  7571. border-width:0px;
  7572. white-space:nowrap;
  7573. text-transform:none;
  7574. }
  7575. #u80265_div {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:0px;
  7579. top:0px;
  7580. width:49px;
  7581. height:17px;
  7582. background:inherit;
  7583. background-color:rgba(255, 255, 255, 0);
  7584. border:none;
  7585. border-radius:0px;
  7586. -moz-box-shadow:none;
  7587. -webkit-box-shadow:none;
  7588. box-shadow:none;
  7589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7590. font-weight:400;
  7591. font-style:normal;
  7592. font-size:12px;
  7593. color:#AAAAAA;
  7594. }
  7595. #u80265 {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:30px;
  7599. top:690px;
  7600. width:49px;
  7601. height:17px;
  7602. display:flex;
  7603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7604. font-weight:400;
  7605. font-style:normal;
  7606. font-size:12px;
  7607. color:#AAAAAA;
  7608. }
  7609. #u80265 .text {
  7610. position:absolute;
  7611. align-self:flex-start;
  7612. padding:0px 0px 0px 0px;
  7613. box-sizing:border-box;
  7614. width:100%;
  7615. }
  7616. #u80265_text {
  7617. border-width:0px;
  7618. white-space:nowrap;
  7619. text-transform:none;
  7620. }
  7621. #u80266_div {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:0px;
  7625. top:0px;
  7626. width:65px;
  7627. height:22px;
  7628. background:inherit;
  7629. background-color:rgba(255, 255, 255, 0);
  7630. border:none;
  7631. border-radius:0px;
  7632. -moz-box-shadow:none;
  7633. -webkit-box-shadow:none;
  7634. box-shadow:none;
  7635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7636. font-weight:400;
  7637. font-style:normal;
  7638. font-size:16px;
  7639. }
  7640. #u80266 {
  7641. border-width:0px;
  7642. position:absolute;
  7643. left:30px;
  7644. top:768px;
  7645. width:65px;
  7646. height:22px;
  7647. display:flex;
  7648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7649. font-weight:400;
  7650. font-style:normal;
  7651. font-size:16px;
  7652. }
  7653. #u80266 .text {
  7654. position:absolute;
  7655. align-self:flex-start;
  7656. padding:0px 0px 0px 0px;
  7657. box-sizing:border-box;
  7658. width:100%;
  7659. }
  7660. #u80266_text {
  7661. border-width:0px;
  7662. white-space:nowrap;
  7663. text-transform:none;
  7664. }
  7665. #u80267_div {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:65px;
  7671. height:22px;
  7672. background:inherit;
  7673. background-color:rgba(255, 255, 255, 0);
  7674. border:none;
  7675. border-radius:0px;
  7676. -moz-box-shadow:none;
  7677. -webkit-box-shadow:none;
  7678. box-shadow:none;
  7679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7680. font-weight:400;
  7681. font-style:normal;
  7682. font-size:16px;
  7683. }
  7684. #u80267 {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:30px;
  7688. top:852px;
  7689. width:65px;
  7690. height:22px;
  7691. display:flex;
  7692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7693. font-weight:400;
  7694. font-style:normal;
  7695. font-size:16px;
  7696. }
  7697. #u80267 .text {
  7698. position:absolute;
  7699. align-self:flex-start;
  7700. padding:0px 0px 0px 0px;
  7701. box-sizing:border-box;
  7702. width:100%;
  7703. }
  7704. #u80267_text {
  7705. border-width:0px;
  7706. white-space:nowrap;
  7707. text-transform:none;
  7708. }
  7709. #u80268_div {
  7710. border-width:0px;
  7711. position:absolute;
  7712. left:0px;
  7713. top:0px;
  7714. width:65px;
  7715. height:22px;
  7716. background:inherit;
  7717. background-color:rgba(255, 255, 255, 0);
  7718. border:none;
  7719. border-radius:0px;
  7720. -moz-box-shadow:none;
  7721. -webkit-box-shadow:none;
  7722. box-shadow:none;
  7723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7724. font-weight:400;
  7725. font-style:normal;
  7726. font-size:16px;
  7727. }
  7728. #u80268 {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:30px;
  7732. top:810px;
  7733. width:65px;
  7734. height:22px;
  7735. display:flex;
  7736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7737. font-weight:400;
  7738. font-style:normal;
  7739. font-size:16px;
  7740. }
  7741. #u80268 .text {
  7742. position:absolute;
  7743. align-self:flex-start;
  7744. padding:0px 0px 0px 0px;
  7745. box-sizing:border-box;
  7746. width:100%;
  7747. }
  7748. #u80268_text {
  7749. border-width:0px;
  7750. white-space:nowrap;
  7751. text-transform:none;
  7752. }
  7753. #u80269_div {
  7754. border-width:0px;
  7755. position:absolute;
  7756. left:0px;
  7757. top:0px;
  7758. width:65px;
  7759. height:22px;
  7760. background:inherit;
  7761. background-color:rgba(255, 255, 255, 0);
  7762. border:none;
  7763. border-radius:0px;
  7764. -moz-box-shadow:none;
  7765. -webkit-box-shadow:none;
  7766. box-shadow:none;
  7767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7768. font-weight:400;
  7769. font-style:normal;
  7770. font-size:16px;
  7771. }
  7772. #u80269 {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:30px;
  7776. top:894px;
  7777. width:65px;
  7778. height:22px;
  7779. display:flex;
  7780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7781. font-weight:400;
  7782. font-style:normal;
  7783. font-size:16px;
  7784. }
  7785. #u80269 .text {
  7786. position:absolute;
  7787. align-self:flex-start;
  7788. padding:0px 0px 0px 0px;
  7789. box-sizing:border-box;
  7790. width:100%;
  7791. }
  7792. #u80269_text {
  7793. border-width:0px;
  7794. white-space:nowrap;
  7795. text-transform:none;
  7796. }
  7797. #u80270_div {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:0px;
  7801. top:0px;
  7802. width:65px;
  7803. height:22px;
  7804. background:inherit;
  7805. background-color:rgba(255, 255, 255, 0);
  7806. border:none;
  7807. border-radius:0px;
  7808. -moz-box-shadow:none;
  7809. -webkit-box-shadow:none;
  7810. box-shadow:none;
  7811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7812. font-weight:400;
  7813. font-style:normal;
  7814. font-size:16px;
  7815. }
  7816. #u80270 {
  7817. border-width:0px;
  7818. position:absolute;
  7819. left:30px;
  7820. top:936px;
  7821. width:65px;
  7822. height:22px;
  7823. display:flex;
  7824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. font-size:16px;
  7828. }
  7829. #u80270 .text {
  7830. position:absolute;
  7831. align-self:flex-start;
  7832. padding:0px 0px 0px 0px;
  7833. box-sizing:border-box;
  7834. width:100%;
  7835. }
  7836. #u80270_text {
  7837. border-width:0px;
  7838. white-space:nowrap;
  7839. text-transform:none;
  7840. }
  7841. #u80271_img {
  7842. border-width:0px;
  7843. position:absolute;
  7844. left:0px;
  7845. top:0px;
  7846. width:201px;
  7847. height:2px;
  7848. }
  7849. #u80271 {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:0px;
  7853. top:1018px;
  7854. width:200px;
  7855. height:1px;
  7856. display:flex;
  7857. }
  7858. #u80271 .text {
  7859. position:absolute;
  7860. align-self:center;
  7861. padding:2px 2px 2px 2px;
  7862. box-sizing:border-box;
  7863. width:100%;
  7864. }
  7865. #u80271_text {
  7866. border-width:0px;
  7867. word-wrap:break-word;
  7868. text-transform:none;
  7869. visibility:hidden;
  7870. }
  7871. #u80272_div {
  7872. border-width:0px;
  7873. position:absolute;
  7874. left:0px;
  7875. top:0px;
  7876. width:65px;
  7877. height:22px;
  7878. background:inherit;
  7879. background-color:rgba(255, 255, 255, 0);
  7880. border:none;
  7881. border-radius:0px;
  7882. -moz-box-shadow:none;
  7883. -webkit-box-shadow:none;
  7884. box-shadow:none;
  7885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7886. font-weight:400;
  7887. font-style:normal;
  7888. font-size:16px;
  7889. }
  7890. #u80272 {
  7891. border-width:0px;
  7892. position:absolute;
  7893. left:30px;
  7894. top:1075px;
  7895. width:65px;
  7896. height:22px;
  7897. display:flex;
  7898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7899. font-weight:400;
  7900. font-style:normal;
  7901. font-size:16px;
  7902. }
  7903. #u80272 .text {
  7904. position:absolute;
  7905. align-self:flex-start;
  7906. padding:0px 0px 0px 0px;
  7907. box-sizing:border-box;
  7908. width:100%;
  7909. }
  7910. #u80272_text {
  7911. border-width:0px;
  7912. white-space:nowrap;
  7913. text-transform:none;
  7914. }
  7915. #u80273_div {
  7916. border-width:0px;
  7917. position:absolute;
  7918. left:0px;
  7919. top:0px;
  7920. width:49px;
  7921. height:17px;
  7922. background:inherit;
  7923. background-color:rgba(255, 255, 255, 0);
  7924. border:none;
  7925. border-radius:0px;
  7926. -moz-box-shadow:none;
  7927. -webkit-box-shadow:none;
  7928. box-shadow:none;
  7929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7930. font-weight:400;
  7931. font-style:normal;
  7932. font-size:12px;
  7933. color:#AAAAAA;
  7934. }
  7935. #u80273 {
  7936. border-width:0px;
  7937. position:absolute;
  7938. left:30px;
  7939. top:1039px;
  7940. width:49px;
  7941. height:17px;
  7942. display:flex;
  7943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7944. font-weight:400;
  7945. font-style:normal;
  7946. font-size:12px;
  7947. color:#AAAAAA;
  7948. }
  7949. #u80273 .text {
  7950. position:absolute;
  7951. align-self:flex-start;
  7952. padding:0px 0px 0px 0px;
  7953. box-sizing:border-box;
  7954. width:100%;
  7955. }
  7956. #u80273_text {
  7957. border-width:0px;
  7958. white-space:nowrap;
  7959. text-transform:none;
  7960. }
  7961. #u80274_div {
  7962. border-width:0px;
  7963. position:absolute;
  7964. left:0px;
  7965. top:0px;
  7966. width:65px;
  7967. height:22px;
  7968. background:inherit;
  7969. background-color:rgba(255, 255, 255, 0);
  7970. border:none;
  7971. border-radius:0px;
  7972. -moz-box-shadow:none;
  7973. -webkit-box-shadow:none;
  7974. box-shadow:none;
  7975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7976. font-weight:400;
  7977. font-style:normal;
  7978. font-size:16px;
  7979. }
  7980. #u80274 {
  7981. border-width:0px;
  7982. position:absolute;
  7983. left:30px;
  7984. top:1117px;
  7985. width:65px;
  7986. height:22px;
  7987. display:flex;
  7988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7989. font-weight:400;
  7990. font-style:normal;
  7991. font-size:16px;
  7992. }
  7993. #u80274 .text {
  7994. position:absolute;
  7995. align-self:flex-start;
  7996. padding:0px 0px 0px 0px;
  7997. box-sizing:border-box;
  7998. width:100%;
  7999. }
  8000. #u80274_text {
  8001. border-width:0px;
  8002. white-space:nowrap;
  8003. text-transform:none;
  8004. }
  8005. #u80275_div {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:0px;
  8009. top:0px;
  8010. width:65px;
  8011. height:22px;
  8012. background:inherit;
  8013. background-color:rgba(255, 255, 255, 0);
  8014. border:none;
  8015. border-radius:0px;
  8016. -moz-box-shadow:none;
  8017. -webkit-box-shadow:none;
  8018. box-shadow:none;
  8019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8020. font-weight:400;
  8021. font-style:normal;
  8022. font-size:16px;
  8023. }
  8024. #u80275 {
  8025. border-width:0px;
  8026. position:absolute;
  8027. left:30px;
  8028. top:1201px;
  8029. width:65px;
  8030. height:22px;
  8031. display:flex;
  8032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8033. font-weight:400;
  8034. font-style:normal;
  8035. font-size:16px;
  8036. }
  8037. #u80275 .text {
  8038. position:absolute;
  8039. align-self:flex-start;
  8040. padding:0px 0px 0px 0px;
  8041. box-sizing:border-box;
  8042. width:100%;
  8043. }
  8044. #u80275_text {
  8045. border-width:0px;
  8046. white-space:nowrap;
  8047. text-transform:none;
  8048. }
  8049. #u80276_div {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:0px;
  8053. top:0px;
  8054. width:65px;
  8055. height:22px;
  8056. background:inherit;
  8057. background-color:rgba(255, 255, 255, 0);
  8058. border:none;
  8059. border-radius:0px;
  8060. -moz-box-shadow:none;
  8061. -webkit-box-shadow:none;
  8062. box-shadow:none;
  8063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8064. font-weight:400;
  8065. font-style:normal;
  8066. font-size:16px;
  8067. }
  8068. #u80276 {
  8069. border-width:0px;
  8070. position:absolute;
  8071. left:30px;
  8072. top:1159px;
  8073. width:65px;
  8074. height:22px;
  8075. display:flex;
  8076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8077. font-weight:400;
  8078. font-style:normal;
  8079. font-size:16px;
  8080. }
  8081. #u80276 .text {
  8082. position:absolute;
  8083. align-self:flex-start;
  8084. padding:0px 0px 0px 0px;
  8085. box-sizing:border-box;
  8086. width:100%;
  8087. }
  8088. #u80276_text {
  8089. border-width:0px;
  8090. white-space:nowrap;
  8091. text-transform:none;
  8092. }
  8093. #u80277_div {
  8094. border-width:0px;
  8095. position:absolute;
  8096. left:0px;
  8097. top:0px;
  8098. width:65px;
  8099. height:22px;
  8100. background:inherit;
  8101. background-color:rgba(255, 255, 255, 0);
  8102. border:none;
  8103. border-radius:0px;
  8104. -moz-box-shadow:none;
  8105. -webkit-box-shadow:none;
  8106. box-shadow:none;
  8107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8108. font-weight:400;
  8109. font-style:normal;
  8110. font-size:16px;
  8111. }
  8112. #u80277 {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:30px;
  8116. top:1243px;
  8117. width:65px;
  8118. height:22px;
  8119. display:flex;
  8120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8121. font-weight:400;
  8122. font-style:normal;
  8123. font-size:16px;
  8124. }
  8125. #u80277 .text {
  8126. position:absolute;
  8127. align-self:flex-start;
  8128. padding:0px 0px 0px 0px;
  8129. box-sizing:border-box;
  8130. width:100%;
  8131. }
  8132. #u80277_text {
  8133. border-width:0px;
  8134. white-space:nowrap;
  8135. text-transform:none;
  8136. }
  8137. #u80278_div {
  8138. border-width:0px;
  8139. position:absolute;
  8140. left:0px;
  8141. top:0px;
  8142. width:65px;
  8143. height:22px;
  8144. background:inherit;
  8145. background-color:rgba(255, 255, 255, 0);
  8146. border:none;
  8147. border-radius:0px;
  8148. -moz-box-shadow:none;
  8149. -webkit-box-shadow:none;
  8150. box-shadow:none;
  8151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8152. font-weight:400;
  8153. font-style:normal;
  8154. font-size:16px;
  8155. }
  8156. #u80278 {
  8157. border-width:0px;
  8158. position:absolute;
  8159. left:30px;
  8160. top:978px;
  8161. width:65px;
  8162. height:22px;
  8163. display:flex;
  8164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8165. font-weight:400;
  8166. font-style:normal;
  8167. font-size:16px;
  8168. }
  8169. #u80278 .text {
  8170. position:absolute;
  8171. align-self:flex-start;
  8172. padding:0px 0px 0px 0px;
  8173. box-sizing:border-box;
  8174. width:100%;
  8175. }
  8176. #u80278_text {
  8177. border-width:0px;
  8178. white-space:nowrap;
  8179. text-transform:none;
  8180. }
  8181. #u80279_div {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:0px;
  8185. top:0px;
  8186. width:65px;
  8187. height:22px;
  8188. background:inherit;
  8189. background-color:rgba(255, 255, 255, 0);
  8190. border:none;
  8191. border-radius:0px;
  8192. -moz-box-shadow:none;
  8193. -webkit-box-shadow:none;
  8194. box-shadow:none;
  8195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8196. font-weight:400;
  8197. font-style:normal;
  8198. font-size:16px;
  8199. }
  8200. #u80279 {
  8201. border-width:0px;
  8202. position:absolute;
  8203. left:30px;
  8204. top:622px;
  8205. width:65px;
  8206. height:22px;
  8207. display:flex;
  8208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8209. font-weight:400;
  8210. font-style:normal;
  8211. font-size:16px;
  8212. }
  8213. #u80279 .text {
  8214. position:absolute;
  8215. align-self:flex-start;
  8216. padding:0px 0px 0px 0px;
  8217. box-sizing:border-box;
  8218. width:100%;
  8219. }
  8220. #u80279_text {
  8221. border-width:0px;
  8222. white-space:nowrap;
  8223. text-transform:none;
  8224. }