styles.css 151 KB

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