styles.css 150 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599
  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. #u82690_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. #u82690 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u82690 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u82690_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u82691_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. #u82691 {
  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. #u82691 .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. #u82691_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u82692_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. #u82692 {
  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. #u82692 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u82692_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u82693 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u82694_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u82694 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u82694 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u82694_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u82695_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. #u82695 {
  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. #u82695 .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. #u82695_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u82696_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. #u82696 {
  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. #u82696 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u82696_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u82697 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u82698_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. #u82698_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. #u82698_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. #u82698 {
  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. #u82698 .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. #u82698_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. #u82698.disabled {
  356. }
  357. .u82698_input_option {
  358. font-size:14px;
  359. }
  360. #u82699_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u82699 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u82699 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u82699_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u82700_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. #u82700 {
  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. #u82700 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u82700_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u82701_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. #u82701 {
  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. #u82701 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u82701_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u82702 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u82703_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. #u82703 {
  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. #u82703 .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. #u82703_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u82704_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u82704 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u82704 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u82704_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u82705 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u82706_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. #u82706 {
  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. #u82706 .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. #u82706_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u82707_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u82707 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u82707 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u82707_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u82708 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u82709_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. #u82709 {
  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. #u82709 .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. #u82709_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u82710_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u82710 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u82710 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u82710_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u82711 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u82712_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. #u82712 {
  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. #u82712 .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. #u82712_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u82713_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u82713 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u82713 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u82713_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u82714 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u82715_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. #u82715 {
  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. #u82715 .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. #u82715_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u82716_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u82716 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u82716 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u82716_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u82717 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u82718_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. #u82718 {
  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. #u82718 .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. #u82718_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u82719_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u82719 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u82719 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u82719_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u82720 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u82721_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. #u82721 {
  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. #u82721 .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. #u82721_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u82722_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u82722 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u82722 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u82722_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u82723 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u82724_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. #u82724 {
  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. #u82724 .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. #u82724_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u82725_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u82725 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u82725 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u82725_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u82726 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u82727_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. #u82727 {
  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. #u82727 .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. #u82727_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u82728_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u82728 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u82728 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u82728_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u82729 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u82730_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. #u82730 {
  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. #u82730 .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. #u82730_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u82731_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u82731 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u82731 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u82731_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u82732_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. #u82732 {
  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. #u82732 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u82732_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u82733_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u82733 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u82733 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u82733_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u82734_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. #u82734 {
  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. #u82734 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u82734_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u82735_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u82735 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u82735 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u82735_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u82736 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u82737_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. #u82737 {
  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. #u82737 .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. #u82737_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u82738_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u82738 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u82738 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u82738_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u82739 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u82740_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. #u82740 {
  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. #u82740 .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. #u82740_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u82741_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u82741 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u82741 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u82741_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u82742_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1259px;
  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. #u82742 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:330px;
  1663. top:50px;
  1664. width:1259px;
  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. #u82742 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:2px 2px 2px 50px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u82742_text {
  1682. border-width:0px;
  1683. word-wrap:break-word;
  1684. text-transform:none;
  1685. visibility:hidden;
  1686. }
  1687. #u82743 {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:349px;
  1691. top:160px;
  1692. width:1221px;
  1693. height:293px;
  1694. }
  1695. #u82744_img {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:75px;
  1701. height:39px;
  1702. }
  1703. #u82744 {
  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. #u82744 .text {
  1718. position:absolute;
  1719. align-self:center;
  1720. padding:2px 2px 2px 0px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u82744_text {
  1725. border-width:0px;
  1726. word-wrap:break-word;
  1727. text-transform:none;
  1728. }
  1729. #u82745_img {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:75px;
  1735. height:39px;
  1736. }
  1737. #u82745 {
  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. #u82745 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 0px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u82745_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. }
  1763. #u82746_img {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:75px;
  1769. height:39px;
  1770. }
  1771. #u82746 {
  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. #u82746 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 0px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u82746_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. }
  1797. #u82747_img {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:75px;
  1803. height:39px;
  1804. }
  1805. #u82747 {
  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. #u82747 .text {
  1820. position:absolute;
  1821. align-self:center;
  1822. padding:2px 2px 2px 0px;
  1823. box-sizing:border-box;
  1824. width:100%;
  1825. }
  1826. #u82747_text {
  1827. border-width:0px;
  1828. word-wrap:break-word;
  1829. text-transform:none;
  1830. }
  1831. #u82748_img {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:150px;
  1837. height:39px;
  1838. }
  1839. #u82748 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:300px;
  1843. top:0px;
  1844. width:150px;
  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:14px;
  1851. color:#FFFFFF;
  1852. text-align:left;
  1853. line-height:30px;
  1854. }
  1855. #u82748 .text {
  1856. position:absolute;
  1857. align-self:center;
  1858. padding:2px 10px 2px 10px;
  1859. box-sizing:border-box;
  1860. width:100%;
  1861. }
  1862. #u82748_text {
  1863. border-width:0px;
  1864. word-wrap:break-word;
  1865. text-transform:none;
  1866. }
  1867. #u82749_img {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:75px;
  1873. height:39px;
  1874. }
  1875. #u82749 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:450px;
  1879. top:0px;
  1880. width:75px;
  1881. height:39px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:12px;
  1887. color:#FFFFFF;
  1888. }
  1889. #u82749 .text {
  1890. position:absolute;
  1891. align-self:center;
  1892. padding:2px 2px 2px 0px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u82749_text {
  1897. border-width:0px;
  1898. word-wrap:break-word;
  1899. text-transform:none;
  1900. }
  1901. #u82750_img {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:75px;
  1907. height:39px;
  1908. }
  1909. #u82750 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:525px;
  1913. top:0px;
  1914. width:75px;
  1915. height:39px;
  1916. display:flex;
  1917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1918. font-weight:400;
  1919. font-style:normal;
  1920. font-size:12px;
  1921. color:#FFFFFF;
  1922. }
  1923. #u82750 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:2px 2px 2px 0px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u82750_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. }
  1935. #u82751_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:75px;
  1941. height:39px;
  1942. }
  1943. #u82751 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:600px;
  1947. top:0px;
  1948. width:75px;
  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. #u82751 .text {
  1958. position:absolute;
  1959. align-self:center;
  1960. padding:2px 2px 2px 0px;
  1961. box-sizing:border-box;
  1962. width:100%;
  1963. }
  1964. #u82751_text {
  1965. border-width:0px;
  1966. word-wrap:break-word;
  1967. text-transform:none;
  1968. }
  1969. #u82752_img {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:75px;
  1975. height:39px;
  1976. }
  1977. #u82752 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:675px;
  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. #u82752 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 0px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u82752_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. }
  2003. #u82753_img {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:75px;
  2009. height:39px;
  2010. }
  2011. #u82753 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:750px;
  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. #u82753 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 0px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u82753_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. }
  2037. #u82754_img {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:75px;
  2043. height:39px;
  2044. }
  2045. #u82754 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:825px;
  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. #u82754 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 2px 2px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u82754_text {
  2067. border-width:0px;
  2068. word-wrap:break-word;
  2069. text-transform:none;
  2070. }
  2071. #u82755_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:75px;
  2077. height:39px;
  2078. }
  2079. #u82755 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:900px;
  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. #u82755 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 0px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u82755_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. }
  2105. #u82756_img {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:75px;
  2111. height:39px;
  2112. }
  2113. #u82756 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:975px;
  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. #u82756 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u82756_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. }
  2139. #u82757_img {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:75px;
  2145. height:39px;
  2146. }
  2147. #u82757 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:1050px;
  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. #u82757 .text {
  2162. position:absolute;
  2163. align-self:center;
  2164. padding:2px 2px 2px 0px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u82757_text {
  2169. border-width:0px;
  2170. word-wrap:break-word;
  2171. text-transform:none;
  2172. }
  2173. #u82758_img {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:96px;
  2179. height:39px;
  2180. }
  2181. #u82758 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:1125px;
  2185. top:0px;
  2186. width:96px;
  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. #u82758 .text {
  2196. position:absolute;
  2197. align-self:center;
  2198. padding:2px 2px 2px 0px;
  2199. box-sizing:border-box;
  2200. width:100%;
  2201. }
  2202. #u82758_text {
  2203. border-width:0px;
  2204. word-wrap:break-word;
  2205. text-transform:none;
  2206. }
  2207. #u82759_img {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:75px;
  2213. height:38px;
  2214. }
  2215. #u82759 {
  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. #u82759 .text {
  2229. position:absolute;
  2230. align-self:center;
  2231. padding:2px 2px 2px 0px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u82759_text {
  2236. border-width:0px;
  2237. word-wrap:break-word;
  2238. text-transform:none;
  2239. }
  2240. #u82760_img {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:75px;
  2246. height:38px;
  2247. }
  2248. #u82760 {
  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. #u82760 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u82760_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. visibility:hidden;
  2273. }
  2274. #u82761_img {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:75px;
  2280. height:38px;
  2281. }
  2282. #u82761 {
  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. #u82761 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u82761_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u82762_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:75px;
  2314. height:38px;
  2315. }
  2316. #u82762 {
  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. #u82762 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u82762_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. visibility:hidden;
  2341. }
  2342. #u82763_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:150px;
  2348. height:38px;
  2349. }
  2350. #u82763 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:300px;
  2354. top:39px;
  2355. width:150px;
  2356. height:38px;
  2357. display:flex;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. text-align:left;
  2362. }
  2363. #u82763 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 10px 2px 10px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u82763_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. }
  2375. #u82764_img {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:75px;
  2381. height:38px;
  2382. }
  2383. #u82764 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:450px;
  2387. top:39px;
  2388. width:75px;
  2389. height:38px;
  2390. display:flex;
  2391. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:12px;
  2395. }
  2396. #u82764 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:2px 2px 2px 0px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u82764_text {
  2404. border-width:0px;
  2405. word-wrap:break-word;
  2406. text-transform:none;
  2407. visibility:hidden;
  2408. }
  2409. #u82765_img {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:75px;
  2415. height:38px;
  2416. }
  2417. #u82765 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:525px;
  2421. top:39px;
  2422. width:75px;
  2423. height:38px;
  2424. display:flex;
  2425. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:12px;
  2429. }
  2430. #u82765 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 2px 2px 0px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u82765_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. visibility:hidden;
  2442. }
  2443. #u82766_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:75px;
  2449. height:38px;
  2450. }
  2451. #u82766 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:600px;
  2455. top:39px;
  2456. width:75px;
  2457. height:38px;
  2458. display:flex;
  2459. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2460. font-weight:400;
  2461. font-style:normal;
  2462. font-size:12px;
  2463. }
  2464. #u82766 .text {
  2465. position:absolute;
  2466. align-self:center;
  2467. padding:2px 2px 2px 0px;
  2468. box-sizing:border-box;
  2469. width:100%;
  2470. }
  2471. #u82766_text {
  2472. border-width:0px;
  2473. word-wrap:break-word;
  2474. text-transform:none;
  2475. visibility:hidden;
  2476. }
  2477. #u82767_img {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:75px;
  2483. height:38px;
  2484. }
  2485. #u82767 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:675px;
  2489. top:39px;
  2490. width:75px;
  2491. height:38px;
  2492. display:flex;
  2493. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2494. font-weight:400;
  2495. font-style:normal;
  2496. font-size:12px;
  2497. }
  2498. #u82767 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 2px 2px 0px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u82767_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. visibility:hidden;
  2510. }
  2511. #u82768_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:75px;
  2517. height:38px;
  2518. }
  2519. #u82768 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:750px;
  2523. top:39px;
  2524. width:75px;
  2525. height:38px;
  2526. display:flex;
  2527. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:12px;
  2531. }
  2532. #u82768 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:2px 2px 2px 0px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u82768_text {
  2540. border-width:0px;
  2541. word-wrap:break-word;
  2542. text-transform:none;
  2543. visibility:hidden;
  2544. }
  2545. #u82769_img {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:75px;
  2551. height:38px;
  2552. }
  2553. #u82769 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:825px;
  2557. top:39px;
  2558. width:75px;
  2559. height:38px;
  2560. display:flex;
  2561. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:12px;
  2565. }
  2566. #u82769 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:2px 2px 2px 0px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u82769_text {
  2574. border-width:0px;
  2575. word-wrap:break-word;
  2576. text-transform:none;
  2577. visibility:hidden;
  2578. }
  2579. #u82770_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:75px;
  2585. height:38px;
  2586. }
  2587. #u82770 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:900px;
  2591. top:39px;
  2592. width:75px;
  2593. height:38px;
  2594. display:flex;
  2595. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:12px;
  2599. }
  2600. #u82770 .text {
  2601. position:absolute;
  2602. align-self:center;
  2603. padding:2px 2px 2px 0px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u82770_text {
  2608. border-width:0px;
  2609. word-wrap:break-word;
  2610. text-transform:none;
  2611. visibility:hidden;
  2612. }
  2613. #u82771_img {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:75px;
  2619. height:38px;
  2620. }
  2621. #u82771 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:975px;
  2625. top:39px;
  2626. width:75px;
  2627. height:38px;
  2628. display:flex;
  2629. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2630. font-weight:400;
  2631. font-style:normal;
  2632. font-size:12px;
  2633. }
  2634. #u82771 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 2px 2px 0px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u82771_text {
  2642. border-width:0px;
  2643. word-wrap:break-word;
  2644. text-transform:none;
  2645. visibility:hidden;
  2646. }
  2647. #u82772_img {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:75px;
  2653. height:38px;
  2654. }
  2655. #u82772 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:1050px;
  2659. top:39px;
  2660. width:75px;
  2661. height:38px;
  2662. display:flex;
  2663. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:12px;
  2667. }
  2668. #u82772 .text {
  2669. position:absolute;
  2670. align-self:center;
  2671. padding:2px 2px 2px 0px;
  2672. box-sizing:border-box;
  2673. width:100%;
  2674. }
  2675. #u82772_text {
  2676. border-width:0px;
  2677. word-wrap:break-word;
  2678. text-transform:none;
  2679. visibility:hidden;
  2680. }
  2681. #u82773_img {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:0px;
  2685. top:0px;
  2686. width:96px;
  2687. height:38px;
  2688. }
  2689. #u82773 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:1125px;
  2693. top:39px;
  2694. width:96px;
  2695. height:38px;
  2696. display:flex;
  2697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2698. font-weight:400;
  2699. font-style:normal;
  2700. font-size:12px;
  2701. color:#1890FF;
  2702. }
  2703. #u82773 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 0px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u82773_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. }
  2715. #u82774_img {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:75px;
  2721. height:38px;
  2722. }
  2723. #u82774 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:77px;
  2728. width:75px;
  2729. height:38px;
  2730. display:flex;
  2731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2732. font-weight:400;
  2733. font-style:normal;
  2734. font-size:12px;
  2735. }
  2736. #u82774 .text {
  2737. position:absolute;
  2738. align-self:center;
  2739. padding:2px 2px 2px 0px;
  2740. box-sizing:border-box;
  2741. width:100%;
  2742. }
  2743. #u82774_text {
  2744. border-width:0px;
  2745. word-wrap:break-word;
  2746. text-transform:none;
  2747. }
  2748. #u82775_img {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:75px;
  2754. height:38px;
  2755. }
  2756. #u82775 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:75px;
  2760. top:77px;
  2761. width:75px;
  2762. height:38px;
  2763. display:flex;
  2764. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2765. font-weight:400;
  2766. font-style:normal;
  2767. font-size:12px;
  2768. }
  2769. #u82775 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:2px 2px 2px 0px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u82775_text {
  2777. border-width:0px;
  2778. word-wrap:break-word;
  2779. text-transform:none;
  2780. visibility:hidden;
  2781. }
  2782. #u82776_img {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:75px;
  2788. height:38px;
  2789. }
  2790. #u82776 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:150px;
  2794. top:77px;
  2795. width:75px;
  2796. height:38px;
  2797. display:flex;
  2798. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2799. font-weight:400;
  2800. font-style:normal;
  2801. font-size:12px;
  2802. }
  2803. #u82776 .text {
  2804. position:absolute;
  2805. align-self:center;
  2806. padding:2px 2px 2px 0px;
  2807. box-sizing:border-box;
  2808. width:100%;
  2809. }
  2810. #u82776_text {
  2811. border-width:0px;
  2812. word-wrap:break-word;
  2813. text-transform:none;
  2814. visibility:hidden;
  2815. }
  2816. #u82777_img {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:0px;
  2820. top:0px;
  2821. width:75px;
  2822. height:38px;
  2823. }
  2824. #u82777 {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:225px;
  2828. top:77px;
  2829. width:75px;
  2830. height:38px;
  2831. display:flex;
  2832. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2833. font-weight:400;
  2834. font-style:normal;
  2835. font-size:12px;
  2836. }
  2837. #u82777 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:2px 2px 2px 0px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u82777_text {
  2845. border-width:0px;
  2846. word-wrap:break-word;
  2847. text-transform:none;
  2848. visibility:hidden;
  2849. }
  2850. #u82778_img {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:150px;
  2856. height:38px;
  2857. }
  2858. #u82778 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:300px;
  2862. top:77px;
  2863. width:150px;
  2864. height:38px;
  2865. display:flex;
  2866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. text-align:left;
  2870. }
  2871. #u82778 .text {
  2872. position:absolute;
  2873. align-self:center;
  2874. padding:2px 10px 2px 10px;
  2875. box-sizing:border-box;
  2876. width:100%;
  2877. }
  2878. #u82778_text {
  2879. border-width:0px;
  2880. word-wrap:break-word;
  2881. text-transform:none;
  2882. }
  2883. #u82779_img {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:75px;
  2889. height:38px;
  2890. }
  2891. #u82779 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:450px;
  2895. top:77px;
  2896. width:75px;
  2897. height:38px;
  2898. display:flex;
  2899. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2900. font-weight:400;
  2901. font-style:normal;
  2902. font-size:12px;
  2903. }
  2904. #u82779 .text {
  2905. position:absolute;
  2906. align-self:center;
  2907. padding:2px 2px 2px 0px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u82779_text {
  2912. border-width:0px;
  2913. word-wrap:break-word;
  2914. text-transform:none;
  2915. visibility:hidden;
  2916. }
  2917. #u82780_img {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:0px;
  2921. top:0px;
  2922. width:75px;
  2923. height:38px;
  2924. }
  2925. #u82780 {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:525px;
  2929. top:77px;
  2930. width:75px;
  2931. height:38px;
  2932. display:flex;
  2933. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2934. font-weight:400;
  2935. font-style:normal;
  2936. font-size:12px;
  2937. }
  2938. #u82780 .text {
  2939. position:absolute;
  2940. align-self:center;
  2941. padding:2px 2px 2px 0px;
  2942. box-sizing:border-box;
  2943. width:100%;
  2944. }
  2945. #u82780_text {
  2946. border-width:0px;
  2947. word-wrap:break-word;
  2948. text-transform:none;
  2949. visibility:hidden;
  2950. }
  2951. #u82781_img {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:75px;
  2957. height:38px;
  2958. }
  2959. #u82781 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:600px;
  2963. top:77px;
  2964. width:75px;
  2965. height:38px;
  2966. display:flex;
  2967. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2968. font-weight:400;
  2969. font-style:normal;
  2970. font-size:12px;
  2971. }
  2972. #u82781 .text {
  2973. position:absolute;
  2974. align-self:center;
  2975. padding:2px 2px 2px 0px;
  2976. box-sizing:border-box;
  2977. width:100%;
  2978. }
  2979. #u82781_text {
  2980. border-width:0px;
  2981. word-wrap:break-word;
  2982. text-transform:none;
  2983. visibility:hidden;
  2984. }
  2985. #u82782_img {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:0px;
  2990. width:75px;
  2991. height:38px;
  2992. }
  2993. #u82782 {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:675px;
  2997. top:77px;
  2998. width:75px;
  2999. height:38px;
  3000. display:flex;
  3001. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3002. font-weight:400;
  3003. font-style:normal;
  3004. font-size:12px;
  3005. }
  3006. #u82782 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:2px 2px 2px 0px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u82782_text {
  3014. border-width:0px;
  3015. word-wrap:break-word;
  3016. text-transform:none;
  3017. visibility:hidden;
  3018. }
  3019. #u82783_img {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:75px;
  3025. height:38px;
  3026. }
  3027. #u82783 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:750px;
  3031. top:77px;
  3032. width:75px;
  3033. height:38px;
  3034. display:flex;
  3035. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:12px;
  3039. }
  3040. #u82783 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 2px 2px 0px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u82783_text {
  3048. border-width:0px;
  3049. word-wrap:break-word;
  3050. text-transform:none;
  3051. visibility:hidden;
  3052. }
  3053. #u82784_img {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:75px;
  3059. height:38px;
  3060. }
  3061. #u82784 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:825px;
  3065. top:77px;
  3066. width:75px;
  3067. height:38px;
  3068. display:flex;
  3069. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3070. font-weight:400;
  3071. font-style:normal;
  3072. font-size:12px;
  3073. }
  3074. #u82784 .text {
  3075. position:absolute;
  3076. align-self:center;
  3077. padding:2px 2px 2px 0px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u82784_text {
  3082. border-width:0px;
  3083. word-wrap:break-word;
  3084. text-transform:none;
  3085. visibility:hidden;
  3086. }
  3087. #u82785_img {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:75px;
  3093. height:38px;
  3094. }
  3095. #u82785 {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:900px;
  3099. top:77px;
  3100. width:75px;
  3101. height:38px;
  3102. display:flex;
  3103. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3104. font-weight:400;
  3105. font-style:normal;
  3106. font-size:12px;
  3107. }
  3108. #u82785 .text {
  3109. position:absolute;
  3110. align-self:center;
  3111. padding:2px 2px 2px 0px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u82785_text {
  3116. border-width:0px;
  3117. word-wrap:break-word;
  3118. text-transform:none;
  3119. visibility:hidden;
  3120. }
  3121. #u82786_img {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:75px;
  3127. height:38px;
  3128. }
  3129. #u82786 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:975px;
  3133. top:77px;
  3134. width:75px;
  3135. height:38px;
  3136. display:flex;
  3137. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3138. font-weight:400;
  3139. font-style:normal;
  3140. font-size:12px;
  3141. }
  3142. #u82786 .text {
  3143. position:absolute;
  3144. align-self:center;
  3145. padding:2px 2px 2px 0px;
  3146. box-sizing:border-box;
  3147. width:100%;
  3148. }
  3149. #u82786_text {
  3150. border-width:0px;
  3151. word-wrap:break-word;
  3152. text-transform:none;
  3153. visibility:hidden;
  3154. }
  3155. #u82787_img {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:0px;
  3159. top:0px;
  3160. width:75px;
  3161. height:38px;
  3162. }
  3163. #u82787 {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:1050px;
  3167. top:77px;
  3168. width:75px;
  3169. height:38px;
  3170. display:flex;
  3171. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3172. font-weight:400;
  3173. font-style:normal;
  3174. font-size:12px;
  3175. }
  3176. #u82787 .text {
  3177. position:absolute;
  3178. align-self:center;
  3179. padding:2px 2px 2px 0px;
  3180. box-sizing:border-box;
  3181. width:100%;
  3182. }
  3183. #u82787_text {
  3184. border-width:0px;
  3185. word-wrap:break-word;
  3186. text-transform:none;
  3187. visibility:hidden;
  3188. }
  3189. #u82788_img {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:96px;
  3195. height:38px;
  3196. }
  3197. #u82788 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:1125px;
  3201. top:77px;
  3202. width:96px;
  3203. height:38px;
  3204. display:flex;
  3205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3206. font-weight:400;
  3207. font-style:normal;
  3208. font-size:12px;
  3209. }
  3210. #u82788 .text {
  3211. position:absolute;
  3212. align-self:center;
  3213. padding:2px 2px 2px 0px;
  3214. box-sizing:border-box;
  3215. width:100%;
  3216. }
  3217. #u82788_text {
  3218. border-width:0px;
  3219. word-wrap:break-word;
  3220. text-transform:none;
  3221. }
  3222. #u82789_img {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:75px;
  3228. height:38px;
  3229. }
  3230. #u82789 {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:115px;
  3235. width:75px;
  3236. height:38px;
  3237. display:flex;
  3238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3239. font-weight:400;
  3240. font-style:normal;
  3241. font-size:12px;
  3242. }
  3243. #u82789 .text {
  3244. position:absolute;
  3245. align-self:center;
  3246. padding:2px 2px 2px 0px;
  3247. box-sizing:border-box;
  3248. width:100%;
  3249. }
  3250. #u82789_text {
  3251. border-width:0px;
  3252. word-wrap:break-word;
  3253. text-transform:none;
  3254. }
  3255. #u82790_img {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:0px;
  3259. top:0px;
  3260. width:75px;
  3261. height:38px;
  3262. }
  3263. #u82790 {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:75px;
  3267. top:115px;
  3268. width:75px;
  3269. height:38px;
  3270. display:flex;
  3271. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3272. font-weight:400;
  3273. font-style:normal;
  3274. font-size:12px;
  3275. }
  3276. #u82790 .text {
  3277. position:absolute;
  3278. align-self:center;
  3279. padding:2px 2px 2px 0px;
  3280. box-sizing:border-box;
  3281. width:100%;
  3282. }
  3283. #u82790_text {
  3284. border-width:0px;
  3285. word-wrap:break-word;
  3286. text-transform:none;
  3287. visibility:hidden;
  3288. }
  3289. #u82791_img {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:0px;
  3293. top:0px;
  3294. width:75px;
  3295. height:38px;
  3296. }
  3297. #u82791 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:150px;
  3301. top:115px;
  3302. width:75px;
  3303. height:38px;
  3304. display:flex;
  3305. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3306. font-weight:400;
  3307. font-style:normal;
  3308. font-size:12px;
  3309. }
  3310. #u82791 .text {
  3311. position:absolute;
  3312. align-self:center;
  3313. padding:2px 2px 2px 0px;
  3314. box-sizing:border-box;
  3315. width:100%;
  3316. }
  3317. #u82791_text {
  3318. border-width:0px;
  3319. word-wrap:break-word;
  3320. text-transform:none;
  3321. visibility:hidden;
  3322. }
  3323. #u82792_img {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:75px;
  3329. height:38px;
  3330. }
  3331. #u82792 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:225px;
  3335. top:115px;
  3336. width:75px;
  3337. height:38px;
  3338. display:flex;
  3339. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3340. font-weight:400;
  3341. font-style:normal;
  3342. font-size:12px;
  3343. }
  3344. #u82792 .text {
  3345. position:absolute;
  3346. align-self:center;
  3347. padding:2px 2px 2px 0px;
  3348. box-sizing:border-box;
  3349. width:100%;
  3350. }
  3351. #u82792_text {
  3352. border-width:0px;
  3353. word-wrap:break-word;
  3354. text-transform:none;
  3355. visibility:hidden;
  3356. }
  3357. #u82793_img {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:150px;
  3363. height:38px;
  3364. }
  3365. #u82793 {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:300px;
  3369. top:115px;
  3370. width:150px;
  3371. height:38px;
  3372. display:flex;
  3373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3374. font-weight:400;
  3375. font-style:normal;
  3376. text-align:left;
  3377. }
  3378. #u82793 .text {
  3379. position:absolute;
  3380. align-self:center;
  3381. padding:2px 10px 2px 10px;
  3382. box-sizing:border-box;
  3383. width:100%;
  3384. }
  3385. #u82793_text {
  3386. border-width:0px;
  3387. word-wrap:break-word;
  3388. text-transform:none;
  3389. }
  3390. #u82794_img {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:75px;
  3396. height:38px;
  3397. }
  3398. #u82794 {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:450px;
  3402. top:115px;
  3403. width:75px;
  3404. height:38px;
  3405. display:flex;
  3406. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3407. font-weight:400;
  3408. font-style:normal;
  3409. font-size:12px;
  3410. }
  3411. #u82794 .text {
  3412. position:absolute;
  3413. align-self:center;
  3414. padding:2px 2px 2px 0px;
  3415. box-sizing:border-box;
  3416. width:100%;
  3417. }
  3418. #u82794_text {
  3419. border-width:0px;
  3420. word-wrap:break-word;
  3421. text-transform:none;
  3422. visibility:hidden;
  3423. }
  3424. #u82795_img {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:75px;
  3430. height:38px;
  3431. }
  3432. #u82795 {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:525px;
  3436. top:115px;
  3437. width:75px;
  3438. height:38px;
  3439. display:flex;
  3440. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3441. font-weight:400;
  3442. font-style:normal;
  3443. font-size:12px;
  3444. }
  3445. #u82795 .text {
  3446. position:absolute;
  3447. align-self:center;
  3448. padding:2px 2px 2px 0px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u82795_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. visibility:hidden;
  3457. }
  3458. #u82796_img {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:75px;
  3464. height:38px;
  3465. }
  3466. #u82796 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:600px;
  3470. top:115px;
  3471. width:75px;
  3472. height:38px;
  3473. display:flex;
  3474. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:12px;
  3478. }
  3479. #u82796 .text {
  3480. position:absolute;
  3481. align-self:center;
  3482. padding:2px 2px 2px 0px;
  3483. box-sizing:border-box;
  3484. width:100%;
  3485. }
  3486. #u82796_text {
  3487. border-width:0px;
  3488. word-wrap:break-word;
  3489. text-transform:none;
  3490. visibility:hidden;
  3491. }
  3492. #u82797_img {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:75px;
  3498. height:38px;
  3499. }
  3500. #u82797 {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:675px;
  3504. top:115px;
  3505. width:75px;
  3506. height:38px;
  3507. display:flex;
  3508. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3509. font-weight:400;
  3510. font-style:normal;
  3511. font-size:12px;
  3512. }
  3513. #u82797 .text {
  3514. position:absolute;
  3515. align-self:center;
  3516. padding:2px 2px 2px 0px;
  3517. box-sizing:border-box;
  3518. width:100%;
  3519. }
  3520. #u82797_text {
  3521. border-width:0px;
  3522. word-wrap:break-word;
  3523. text-transform:none;
  3524. visibility:hidden;
  3525. }
  3526. #u82798_img {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:75px;
  3532. height:38px;
  3533. }
  3534. #u82798 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:750px;
  3538. top:115px;
  3539. width:75px;
  3540. height:38px;
  3541. display:flex;
  3542. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3543. font-weight:400;
  3544. font-style:normal;
  3545. font-size:12px;
  3546. }
  3547. #u82798 .text {
  3548. position:absolute;
  3549. align-self:center;
  3550. padding:2px 2px 2px 0px;
  3551. box-sizing:border-box;
  3552. width:100%;
  3553. }
  3554. #u82798_text {
  3555. border-width:0px;
  3556. word-wrap:break-word;
  3557. text-transform:none;
  3558. visibility:hidden;
  3559. }
  3560. #u82799_img {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:75px;
  3566. height:38px;
  3567. }
  3568. #u82799 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:825px;
  3572. top:115px;
  3573. width:75px;
  3574. height:38px;
  3575. display:flex;
  3576. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:12px;
  3580. }
  3581. #u82799 .text {
  3582. position:absolute;
  3583. align-self:center;
  3584. padding:2px 2px 2px 0px;
  3585. box-sizing:border-box;
  3586. width:100%;
  3587. }
  3588. #u82799_text {
  3589. border-width:0px;
  3590. word-wrap:break-word;
  3591. text-transform:none;
  3592. visibility:hidden;
  3593. }
  3594. #u82800_img {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:75px;
  3600. height:38px;
  3601. }
  3602. #u82800 {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:900px;
  3606. top:115px;
  3607. width:75px;
  3608. height:38px;
  3609. display:flex;
  3610. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3611. font-weight:400;
  3612. font-style:normal;
  3613. font-size:12px;
  3614. }
  3615. #u82800 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:2px 2px 2px 0px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u82800_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. visibility:hidden;
  3627. }
  3628. #u82801_img {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:0px;
  3632. top:0px;
  3633. width:75px;
  3634. height:38px;
  3635. }
  3636. #u82801 {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:975px;
  3640. top:115px;
  3641. width:75px;
  3642. height:38px;
  3643. display:flex;
  3644. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:12px;
  3648. }
  3649. #u82801 .text {
  3650. position:absolute;
  3651. align-self:center;
  3652. padding:2px 2px 2px 0px;
  3653. box-sizing:border-box;
  3654. width:100%;
  3655. }
  3656. #u82801_text {
  3657. border-width:0px;
  3658. word-wrap:break-word;
  3659. text-transform:none;
  3660. visibility:hidden;
  3661. }
  3662. #u82802_img {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:75px;
  3668. height:38px;
  3669. }
  3670. #u82802 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:1050px;
  3674. top:115px;
  3675. width:75px;
  3676. height:38px;
  3677. display:flex;
  3678. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3679. font-weight:400;
  3680. font-style:normal;
  3681. font-size:12px;
  3682. }
  3683. #u82802 .text {
  3684. position:absolute;
  3685. align-self:center;
  3686. padding:2px 2px 2px 0px;
  3687. box-sizing:border-box;
  3688. width:100%;
  3689. }
  3690. #u82802_text {
  3691. border-width:0px;
  3692. word-wrap:break-word;
  3693. text-transform:none;
  3694. visibility:hidden;
  3695. }
  3696. #u82803_img {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:96px;
  3702. height:38px;
  3703. }
  3704. #u82803 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:1125px;
  3708. top:115px;
  3709. width:96px;
  3710. height:38px;
  3711. display:flex;
  3712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:12px;
  3716. }
  3717. #u82803 .text {
  3718. position:absolute;
  3719. align-self:center;
  3720. padding:2px 2px 2px 0px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u82803_text {
  3725. border-width:0px;
  3726. word-wrap:break-word;
  3727. text-transform:none;
  3728. }
  3729. #u82804_img {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:75px;
  3735. height:35px;
  3736. }
  3737. #u82804 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:153px;
  3742. width:75px;
  3743. height:35px;
  3744. display:flex;
  3745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. font-size:12px;
  3749. color:#606266;
  3750. }
  3751. #u82804 .text {
  3752. position:absolute;
  3753. align-self:center;
  3754. padding:2px 2px 2px 0px;
  3755. box-sizing:border-box;
  3756. width:100%;
  3757. }
  3758. #u82804_text {
  3759. border-width:0px;
  3760. word-wrap:break-word;
  3761. text-transform:none;
  3762. }
  3763. #u82805_img {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:75px;
  3769. height:35px;
  3770. }
  3771. #u82805 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:75px;
  3775. top:153px;
  3776. width:75px;
  3777. height:35px;
  3778. display:flex;
  3779. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3780. font-weight:400;
  3781. font-style:normal;
  3782. font-size:12px;
  3783. color:#606266;
  3784. }
  3785. #u82805 .text {
  3786. position:absolute;
  3787. align-self:center;
  3788. padding:2px 2px 2px 0px;
  3789. box-sizing:border-box;
  3790. width:100%;
  3791. }
  3792. #u82805_text {
  3793. border-width:0px;
  3794. word-wrap:break-word;
  3795. text-transform:none;
  3796. visibility:hidden;
  3797. }
  3798. #u82806_img {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:75px;
  3804. height:35px;
  3805. }
  3806. #u82806 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:150px;
  3810. top:153px;
  3811. width:75px;
  3812. height:35px;
  3813. display:flex;
  3814. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3815. font-weight:400;
  3816. font-style:normal;
  3817. font-size:12px;
  3818. color:#606266;
  3819. }
  3820. #u82806 .text {
  3821. position:absolute;
  3822. align-self:center;
  3823. padding:2px 2px 2px 0px;
  3824. box-sizing:border-box;
  3825. width:100%;
  3826. }
  3827. #u82806_text {
  3828. border-width:0px;
  3829. word-wrap:break-word;
  3830. text-transform:none;
  3831. visibility:hidden;
  3832. }
  3833. #u82807_img {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:75px;
  3839. height:35px;
  3840. }
  3841. #u82807 {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:225px;
  3845. top:153px;
  3846. width:75px;
  3847. height:35px;
  3848. display:flex;
  3849. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3850. font-weight:400;
  3851. font-style:normal;
  3852. font-size:12px;
  3853. color:#606266;
  3854. }
  3855. #u82807 .text {
  3856. position:absolute;
  3857. align-self:center;
  3858. padding:2px 2px 2px 0px;
  3859. box-sizing:border-box;
  3860. width:100%;
  3861. }
  3862. #u82807_text {
  3863. border-width:0px;
  3864. word-wrap:break-word;
  3865. text-transform:none;
  3866. visibility:hidden;
  3867. }
  3868. #u82808_img {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:0px;
  3872. top:0px;
  3873. width:150px;
  3874. height:35px;
  3875. }
  3876. #u82808 {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:300px;
  3880. top:153px;
  3881. width:150px;
  3882. height:35px;
  3883. display:flex;
  3884. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3885. font-weight:400;
  3886. font-style:normal;
  3887. font-size:12px;
  3888. color:#606266;
  3889. }
  3890. #u82808 .text {
  3891. position:absolute;
  3892. align-self:center;
  3893. padding:2px 2px 2px 0px;
  3894. box-sizing:border-box;
  3895. width:100%;
  3896. }
  3897. #u82808_text {
  3898. border-width:0px;
  3899. word-wrap:break-word;
  3900. text-transform:none;
  3901. visibility:hidden;
  3902. }
  3903. #u82809_img {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:75px;
  3909. height:35px;
  3910. }
  3911. #u82809 {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:450px;
  3915. top:153px;
  3916. width:75px;
  3917. height:35px;
  3918. display:flex;
  3919. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3920. font-weight:400;
  3921. font-style:normal;
  3922. font-size:12px;
  3923. color:#606266;
  3924. }
  3925. #u82809 .text {
  3926. position:absolute;
  3927. align-self:center;
  3928. padding:2px 2px 2px 0px;
  3929. box-sizing:border-box;
  3930. width:100%;
  3931. }
  3932. #u82809_text {
  3933. border-width:0px;
  3934. word-wrap:break-word;
  3935. text-transform:none;
  3936. visibility:hidden;
  3937. }
  3938. #u82810_img {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:75px;
  3944. height:35px;
  3945. }
  3946. #u82810 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:525px;
  3950. top:153px;
  3951. width:75px;
  3952. height:35px;
  3953. display:flex;
  3954. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:12px;
  3958. color:#606266;
  3959. }
  3960. #u82810 .text {
  3961. position:absolute;
  3962. align-self:center;
  3963. padding:2px 2px 2px 0px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u82810_text {
  3968. border-width:0px;
  3969. word-wrap:break-word;
  3970. text-transform:none;
  3971. visibility:hidden;
  3972. }
  3973. #u82811_img {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:75px;
  3979. height:35px;
  3980. }
  3981. #u82811 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:600px;
  3985. top:153px;
  3986. width:75px;
  3987. height:35px;
  3988. display:flex;
  3989. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3990. font-weight:400;
  3991. font-style:normal;
  3992. font-size:12px;
  3993. color:#606266;
  3994. }
  3995. #u82811 .text {
  3996. position:absolute;
  3997. align-self:center;
  3998. padding:2px 2px 2px 0px;
  3999. box-sizing:border-box;
  4000. width:100%;
  4001. }
  4002. #u82811_text {
  4003. border-width:0px;
  4004. word-wrap:break-word;
  4005. text-transform:none;
  4006. visibility:hidden;
  4007. }
  4008. #u82812_img {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:0px;
  4012. top:0px;
  4013. width:75px;
  4014. height:35px;
  4015. }
  4016. #u82812 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:675px;
  4020. top:153px;
  4021. width:75px;
  4022. height:35px;
  4023. display:flex;
  4024. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4025. font-weight:400;
  4026. font-style:normal;
  4027. font-size:12px;
  4028. color:#606266;
  4029. }
  4030. #u82812 .text {
  4031. position:absolute;
  4032. align-self:center;
  4033. padding:2px 2px 2px 0px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u82812_text {
  4038. border-width:0px;
  4039. word-wrap:break-word;
  4040. text-transform:none;
  4041. visibility:hidden;
  4042. }
  4043. #u82813_img {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:0px;
  4047. top:0px;
  4048. width:75px;
  4049. height:35px;
  4050. }
  4051. #u82813 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:750px;
  4055. top:153px;
  4056. width:75px;
  4057. height:35px;
  4058. display:flex;
  4059. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. font-size:12px;
  4063. color:#606266;
  4064. }
  4065. #u82813 .text {
  4066. position:absolute;
  4067. align-self:center;
  4068. padding:2px 2px 2px 0px;
  4069. box-sizing:border-box;
  4070. width:100%;
  4071. }
  4072. #u82813_text {
  4073. border-width:0px;
  4074. word-wrap:break-word;
  4075. text-transform:none;
  4076. visibility:hidden;
  4077. }
  4078. #u82814_img {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:0px;
  4082. top:0px;
  4083. width:75px;
  4084. height:35px;
  4085. }
  4086. #u82814 {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:825px;
  4090. top:153px;
  4091. width:75px;
  4092. height:35px;
  4093. display:flex;
  4094. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4095. font-weight:400;
  4096. font-style:normal;
  4097. font-size:12px;
  4098. color:#606266;
  4099. }
  4100. #u82814 .text {
  4101. position:absolute;
  4102. align-self:center;
  4103. padding:2px 2px 2px 0px;
  4104. box-sizing:border-box;
  4105. width:100%;
  4106. }
  4107. #u82814_text {
  4108. border-width:0px;
  4109. word-wrap:break-word;
  4110. text-transform:none;
  4111. visibility:hidden;
  4112. }
  4113. #u82815_img {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:75px;
  4119. height:35px;
  4120. }
  4121. #u82815 {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:900px;
  4125. top:153px;
  4126. width:75px;
  4127. height:35px;
  4128. display:flex;
  4129. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4130. font-weight:400;
  4131. font-style:normal;
  4132. font-size:12px;
  4133. color:#606266;
  4134. }
  4135. #u82815 .text {
  4136. position:absolute;
  4137. align-self:center;
  4138. padding:2px 2px 2px 0px;
  4139. box-sizing:border-box;
  4140. width:100%;
  4141. }
  4142. #u82815_text {
  4143. border-width:0px;
  4144. word-wrap:break-word;
  4145. text-transform:none;
  4146. visibility:hidden;
  4147. }
  4148. #u82816_img {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:75px;
  4154. height:35px;
  4155. }
  4156. #u82816 {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:975px;
  4160. top:153px;
  4161. width:75px;
  4162. height:35px;
  4163. display:flex;
  4164. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4165. font-weight:400;
  4166. font-style:normal;
  4167. font-size:12px;
  4168. color:#606266;
  4169. }
  4170. #u82816 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:2px 2px 2px 0px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u82816_text {
  4178. border-width:0px;
  4179. word-wrap:break-word;
  4180. text-transform:none;
  4181. visibility:hidden;
  4182. }
  4183. #u82817_img {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:0px;
  4188. width:75px;
  4189. height:35px;
  4190. }
  4191. #u82817 {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:1050px;
  4195. top:153px;
  4196. width:75px;
  4197. height:35px;
  4198. display:flex;
  4199. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4200. font-weight:400;
  4201. font-style:normal;
  4202. font-size:12px;
  4203. color:#606266;
  4204. }
  4205. #u82817 .text {
  4206. position:absolute;
  4207. align-self:center;
  4208. padding:2px 2px 2px 0px;
  4209. box-sizing:border-box;
  4210. width:100%;
  4211. }
  4212. #u82817_text {
  4213. border-width:0px;
  4214. word-wrap:break-word;
  4215. text-transform:none;
  4216. visibility:hidden;
  4217. }
  4218. #u82818_img {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:96px;
  4224. height:35px;
  4225. }
  4226. #u82818 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:1125px;
  4230. top:153px;
  4231. width:96px;
  4232. height:35px;
  4233. display:flex;
  4234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4235. font-weight:400;
  4236. font-style:normal;
  4237. font-size:12px;
  4238. color:#02A7F0;
  4239. }
  4240. #u82818 .text {
  4241. position:absolute;
  4242. align-self:center;
  4243. padding:2px 2px 2px 0px;
  4244. box-sizing:border-box;
  4245. width:100%;
  4246. }
  4247. #u82818_text {
  4248. border-width:0px;
  4249. word-wrap:break-word;
  4250. text-transform:none;
  4251. visibility:hidden;
  4252. }
  4253. #u82819_img {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:75px;
  4259. height:35px;
  4260. }
  4261. #u82819 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:0px;
  4265. top:188px;
  4266. width:75px;
  4267. height:35px;
  4268. display:flex;
  4269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:12px;
  4273. color:#606266;
  4274. }
  4275. #u82819 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 2px 2px 0px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u82819_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. }
  4287. #u82820_img {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:75px;
  4293. height:35px;
  4294. }
  4295. #u82820 {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:75px;
  4299. top:188px;
  4300. width:75px;
  4301. height:35px;
  4302. display:flex;
  4303. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4304. font-weight:400;
  4305. font-style:normal;
  4306. font-size:12px;
  4307. color:#606266;
  4308. }
  4309. #u82820 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:2px 2px 2px 0px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u82820_text {
  4317. border-width:0px;
  4318. word-wrap:break-word;
  4319. text-transform:none;
  4320. visibility:hidden;
  4321. }
  4322. #u82821_img {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:75px;
  4328. height:35px;
  4329. }
  4330. #u82821 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:150px;
  4334. top:188px;
  4335. width:75px;
  4336. height:35px;
  4337. display:flex;
  4338. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:12px;
  4342. color:#606266;
  4343. }
  4344. #u82821 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 0px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u82821_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. visibility:hidden;
  4356. }
  4357. #u82822_img {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:75px;
  4363. height:35px;
  4364. }
  4365. #u82822 {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:225px;
  4369. top:188px;
  4370. width:75px;
  4371. height:35px;
  4372. display:flex;
  4373. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:12px;
  4377. color:#606266;
  4378. }
  4379. #u82822 .text {
  4380. position:absolute;
  4381. align-self:center;
  4382. padding:2px 2px 2px 0px;
  4383. box-sizing:border-box;
  4384. width:100%;
  4385. }
  4386. #u82822_text {
  4387. border-width:0px;
  4388. word-wrap:break-word;
  4389. text-transform:none;
  4390. visibility:hidden;
  4391. }
  4392. #u82823_img {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:0px;
  4396. top:0px;
  4397. width:150px;
  4398. height:35px;
  4399. }
  4400. #u82823 {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:300px;
  4404. top:188px;
  4405. width:150px;
  4406. height:35px;
  4407. display:flex;
  4408. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4409. font-weight:400;
  4410. font-style:normal;
  4411. font-size:12px;
  4412. color:#606266;
  4413. }
  4414. #u82823 .text {
  4415. position:absolute;
  4416. align-self:center;
  4417. padding:2px 2px 2px 0px;
  4418. box-sizing:border-box;
  4419. width:100%;
  4420. }
  4421. #u82823_text {
  4422. border-width:0px;
  4423. word-wrap:break-word;
  4424. text-transform:none;
  4425. visibility:hidden;
  4426. }
  4427. #u82824_img {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:0px;
  4431. top:0px;
  4432. width:75px;
  4433. height:35px;
  4434. }
  4435. #u82824 {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:450px;
  4439. top:188px;
  4440. width:75px;
  4441. height:35px;
  4442. display:flex;
  4443. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4444. font-weight:400;
  4445. font-style:normal;
  4446. font-size:12px;
  4447. color:#606266;
  4448. }
  4449. #u82824 .text {
  4450. position:absolute;
  4451. align-self:center;
  4452. padding:2px 2px 2px 0px;
  4453. box-sizing:border-box;
  4454. width:100%;
  4455. }
  4456. #u82824_text {
  4457. border-width:0px;
  4458. word-wrap:break-word;
  4459. text-transform:none;
  4460. visibility:hidden;
  4461. }
  4462. #u82825_img {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:75px;
  4468. height:35px;
  4469. }
  4470. #u82825 {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:525px;
  4474. top:188px;
  4475. width:75px;
  4476. height:35px;
  4477. display:flex;
  4478. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4479. font-weight:400;
  4480. font-style:normal;
  4481. font-size:12px;
  4482. color:#606266;
  4483. }
  4484. #u82825 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:2px 2px 2px 0px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u82825_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. visibility:hidden;
  4496. }
  4497. #u82826_img {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:75px;
  4503. height:35px;
  4504. }
  4505. #u82826 {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:600px;
  4509. top:188px;
  4510. width:75px;
  4511. height:35px;
  4512. display:flex;
  4513. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4514. font-weight:400;
  4515. font-style:normal;
  4516. font-size:12px;
  4517. color:#606266;
  4518. }
  4519. #u82826 .text {
  4520. position:absolute;
  4521. align-self:center;
  4522. padding:2px 2px 2px 0px;
  4523. box-sizing:border-box;
  4524. width:100%;
  4525. }
  4526. #u82826_text {
  4527. border-width:0px;
  4528. word-wrap:break-word;
  4529. text-transform:none;
  4530. visibility:hidden;
  4531. }
  4532. #u82827_img {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:0px;
  4536. top:0px;
  4537. width:75px;
  4538. height:35px;
  4539. }
  4540. #u82827 {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:675px;
  4544. top:188px;
  4545. width:75px;
  4546. height:35px;
  4547. display:flex;
  4548. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4549. font-weight:400;
  4550. font-style:normal;
  4551. font-size:12px;
  4552. color:#606266;
  4553. }
  4554. #u82827 .text {
  4555. position:absolute;
  4556. align-self:center;
  4557. padding:2px 2px 2px 0px;
  4558. box-sizing:border-box;
  4559. width:100%;
  4560. }
  4561. #u82827_text {
  4562. border-width:0px;
  4563. word-wrap:break-word;
  4564. text-transform:none;
  4565. visibility:hidden;
  4566. }
  4567. #u82828_img {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:75px;
  4573. height:35px;
  4574. }
  4575. #u82828 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:750px;
  4579. top:188px;
  4580. width:75px;
  4581. height:35px;
  4582. display:flex;
  4583. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4584. font-weight:400;
  4585. font-style:normal;
  4586. font-size:12px;
  4587. color:#606266;
  4588. }
  4589. #u82828 .text {
  4590. position:absolute;
  4591. align-self:center;
  4592. padding:2px 2px 2px 0px;
  4593. box-sizing:border-box;
  4594. width:100%;
  4595. }
  4596. #u82828_text {
  4597. border-width:0px;
  4598. word-wrap:break-word;
  4599. text-transform:none;
  4600. visibility:hidden;
  4601. }
  4602. #u82829_img {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:0px;
  4606. top:0px;
  4607. width:75px;
  4608. height:35px;
  4609. }
  4610. #u82829 {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:825px;
  4614. top:188px;
  4615. width:75px;
  4616. height:35px;
  4617. display:flex;
  4618. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4619. font-weight:400;
  4620. font-style:normal;
  4621. font-size:12px;
  4622. color:#606266;
  4623. }
  4624. #u82829 .text {
  4625. position:absolute;
  4626. align-self:center;
  4627. padding:2px 2px 2px 0px;
  4628. box-sizing:border-box;
  4629. width:100%;
  4630. }
  4631. #u82829_text {
  4632. border-width:0px;
  4633. word-wrap:break-word;
  4634. text-transform:none;
  4635. visibility:hidden;
  4636. }
  4637. #u82830_img {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:0px;
  4641. top:0px;
  4642. width:75px;
  4643. height:35px;
  4644. }
  4645. #u82830 {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:900px;
  4649. top:188px;
  4650. width:75px;
  4651. height:35px;
  4652. display:flex;
  4653. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4654. font-weight:400;
  4655. font-style:normal;
  4656. font-size:12px;
  4657. color:#606266;
  4658. }
  4659. #u82830 .text {
  4660. position:absolute;
  4661. align-self:center;
  4662. padding:2px 2px 2px 0px;
  4663. box-sizing:border-box;
  4664. width:100%;
  4665. }
  4666. #u82830_text {
  4667. border-width:0px;
  4668. word-wrap:break-word;
  4669. text-transform:none;
  4670. visibility:hidden;
  4671. }
  4672. #u82831_img {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:75px;
  4678. height:35px;
  4679. }
  4680. #u82831 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:975px;
  4684. top:188px;
  4685. width:75px;
  4686. height:35px;
  4687. display:flex;
  4688. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:12px;
  4692. color:#606266;
  4693. }
  4694. #u82831 .text {
  4695. position:absolute;
  4696. align-self:center;
  4697. padding:2px 2px 2px 0px;
  4698. box-sizing:border-box;
  4699. width:100%;
  4700. }
  4701. #u82831_text {
  4702. border-width:0px;
  4703. word-wrap:break-word;
  4704. text-transform:none;
  4705. visibility:hidden;
  4706. }
  4707. #u82832_img {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:0px;
  4711. top:0px;
  4712. width:75px;
  4713. height:35px;
  4714. }
  4715. #u82832 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:1050px;
  4719. top:188px;
  4720. width:75px;
  4721. height:35px;
  4722. display:flex;
  4723. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4724. font-weight:400;
  4725. font-style:normal;
  4726. font-size:12px;
  4727. color:#606266;
  4728. }
  4729. #u82832 .text {
  4730. position:absolute;
  4731. align-self:center;
  4732. padding:2px 2px 2px 0px;
  4733. box-sizing:border-box;
  4734. width:100%;
  4735. }
  4736. #u82832_text {
  4737. border-width:0px;
  4738. word-wrap:break-word;
  4739. text-transform:none;
  4740. visibility:hidden;
  4741. }
  4742. #u82833_img {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:96px;
  4748. height:35px;
  4749. }
  4750. #u82833 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:1125px;
  4754. top:188px;
  4755. width:96px;
  4756. height:35px;
  4757. display:flex;
  4758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4759. font-weight:400;
  4760. font-style:normal;
  4761. font-size:12px;
  4762. color:#02A7F0;
  4763. }
  4764. #u82833 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:2px 2px 2px 0px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u82833_text {
  4772. border-width:0px;
  4773. word-wrap:break-word;
  4774. text-transform:none;
  4775. visibility:hidden;
  4776. }
  4777. #u82834_img {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:75px;
  4783. height:35px;
  4784. }
  4785. #u82834 {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:0px;
  4789. top:223px;
  4790. width:75px;
  4791. height:35px;
  4792. display:flex;
  4793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:12px;
  4797. color:#606266;
  4798. }
  4799. #u82834 .text {
  4800. position:absolute;
  4801. align-self:center;
  4802. padding:2px 2px 2px 0px;
  4803. box-sizing:border-box;
  4804. width:100%;
  4805. }
  4806. #u82834_text {
  4807. border-width:0px;
  4808. word-wrap:break-word;
  4809. text-transform:none;
  4810. visibility:hidden;
  4811. }
  4812. #u82835_img {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:75px;
  4818. height:35px;
  4819. }
  4820. #u82835 {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:75px;
  4824. top:223px;
  4825. width:75px;
  4826. height:35px;
  4827. display:flex;
  4828. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4829. font-weight:400;
  4830. font-style:normal;
  4831. font-size:12px;
  4832. color:#606266;
  4833. }
  4834. #u82835 .text {
  4835. position:absolute;
  4836. align-self:center;
  4837. padding:2px 2px 2px 0px;
  4838. box-sizing:border-box;
  4839. width:100%;
  4840. }
  4841. #u82835_text {
  4842. border-width:0px;
  4843. word-wrap:break-word;
  4844. text-transform:none;
  4845. visibility:hidden;
  4846. }
  4847. #u82836_img {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:0px;
  4851. top:0px;
  4852. width:75px;
  4853. height:35px;
  4854. }
  4855. #u82836 {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:150px;
  4859. top:223px;
  4860. width:75px;
  4861. height:35px;
  4862. display:flex;
  4863. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4864. font-weight:400;
  4865. font-style:normal;
  4866. font-size:12px;
  4867. color:#606266;
  4868. }
  4869. #u82836 .text {
  4870. position:absolute;
  4871. align-self:center;
  4872. padding:2px 2px 2px 0px;
  4873. box-sizing:border-box;
  4874. width:100%;
  4875. }
  4876. #u82836_text {
  4877. border-width:0px;
  4878. word-wrap:break-word;
  4879. text-transform:none;
  4880. visibility:hidden;
  4881. }
  4882. #u82837_img {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:0px;
  4886. top:0px;
  4887. width:75px;
  4888. height:35px;
  4889. }
  4890. #u82837 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:225px;
  4894. top:223px;
  4895. width:75px;
  4896. height:35px;
  4897. display:flex;
  4898. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4899. font-weight:400;
  4900. font-style:normal;
  4901. font-size:12px;
  4902. color:#606266;
  4903. }
  4904. #u82837 .text {
  4905. position:absolute;
  4906. align-self:center;
  4907. padding:2px 2px 2px 0px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u82837_text {
  4912. border-width:0px;
  4913. word-wrap:break-word;
  4914. text-transform:none;
  4915. visibility:hidden;
  4916. }
  4917. #u82838_img {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:0px;
  4921. top:0px;
  4922. width:150px;
  4923. height:35px;
  4924. }
  4925. #u82838 {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:300px;
  4929. top:223px;
  4930. width:150px;
  4931. height:35px;
  4932. display:flex;
  4933. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4934. font-weight:400;
  4935. font-style:normal;
  4936. font-size:12px;
  4937. color:#606266;
  4938. }
  4939. #u82838 .text {
  4940. position:absolute;
  4941. align-self:center;
  4942. padding:2px 2px 2px 0px;
  4943. box-sizing:border-box;
  4944. width:100%;
  4945. }
  4946. #u82838_text {
  4947. border-width:0px;
  4948. word-wrap:break-word;
  4949. text-transform:none;
  4950. visibility:hidden;
  4951. }
  4952. #u82839_img {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:0px;
  4956. top:0px;
  4957. width:75px;
  4958. height:35px;
  4959. }
  4960. #u82839 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:450px;
  4964. top:223px;
  4965. width:75px;
  4966. height:35px;
  4967. display:flex;
  4968. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. font-size:12px;
  4972. color:#606266;
  4973. }
  4974. #u82839 .text {
  4975. position:absolute;
  4976. align-self:center;
  4977. padding:2px 2px 2px 0px;
  4978. box-sizing:border-box;
  4979. width:100%;
  4980. }
  4981. #u82839_text {
  4982. border-width:0px;
  4983. word-wrap:break-word;
  4984. text-transform:none;
  4985. visibility:hidden;
  4986. }
  4987. #u82840_img {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:0px;
  4991. top:0px;
  4992. width:75px;
  4993. height:35px;
  4994. }
  4995. #u82840 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:525px;
  4999. top:223px;
  5000. width:75px;
  5001. height:35px;
  5002. display:flex;
  5003. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5004. font-weight:400;
  5005. font-style:normal;
  5006. font-size:12px;
  5007. color:#606266;
  5008. }
  5009. #u82840 .text {
  5010. position:absolute;
  5011. align-self:center;
  5012. padding:2px 2px 2px 0px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u82840_text {
  5017. border-width:0px;
  5018. word-wrap:break-word;
  5019. text-transform:none;
  5020. visibility:hidden;
  5021. }
  5022. #u82841_img {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:75px;
  5028. height:35px;
  5029. }
  5030. #u82841 {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:600px;
  5034. top:223px;
  5035. width:75px;
  5036. height:35px;
  5037. display:flex;
  5038. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5039. font-weight:400;
  5040. font-style:normal;
  5041. font-size:12px;
  5042. color:#606266;
  5043. }
  5044. #u82841 .text {
  5045. position:absolute;
  5046. align-self:center;
  5047. padding:2px 2px 2px 0px;
  5048. box-sizing:border-box;
  5049. width:100%;
  5050. }
  5051. #u82841_text {
  5052. border-width:0px;
  5053. word-wrap:break-word;
  5054. text-transform:none;
  5055. visibility:hidden;
  5056. }
  5057. #u82842_img {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:0px;
  5061. top:0px;
  5062. width:75px;
  5063. height:35px;
  5064. }
  5065. #u82842 {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:675px;
  5069. top:223px;
  5070. width:75px;
  5071. height:35px;
  5072. display:flex;
  5073. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5074. font-weight:400;
  5075. font-style:normal;
  5076. font-size:12px;
  5077. color:#606266;
  5078. }
  5079. #u82842 .text {
  5080. position:absolute;
  5081. align-self:center;
  5082. padding:2px 2px 2px 0px;
  5083. box-sizing:border-box;
  5084. width:100%;
  5085. }
  5086. #u82842_text {
  5087. border-width:0px;
  5088. word-wrap:break-word;
  5089. text-transform:none;
  5090. visibility:hidden;
  5091. }
  5092. #u82843_img {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:0px;
  5096. top:0px;
  5097. width:75px;
  5098. height:35px;
  5099. }
  5100. #u82843 {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:750px;
  5104. top:223px;
  5105. width:75px;
  5106. height:35px;
  5107. display:flex;
  5108. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5109. font-weight:400;
  5110. font-style:normal;
  5111. font-size:12px;
  5112. color:#606266;
  5113. }
  5114. #u82843 .text {
  5115. position:absolute;
  5116. align-self:center;
  5117. padding:2px 2px 2px 0px;
  5118. box-sizing:border-box;
  5119. width:100%;
  5120. }
  5121. #u82843_text {
  5122. border-width:0px;
  5123. word-wrap:break-word;
  5124. text-transform:none;
  5125. visibility:hidden;
  5126. }
  5127. #u82844_img {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:0px;
  5131. top:0px;
  5132. width:75px;
  5133. height:35px;
  5134. }
  5135. #u82844 {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:825px;
  5139. top:223px;
  5140. width:75px;
  5141. height:35px;
  5142. display:flex;
  5143. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5144. font-weight:400;
  5145. font-style:normal;
  5146. font-size:12px;
  5147. color:#606266;
  5148. }
  5149. #u82844 .text {
  5150. position:absolute;
  5151. align-self:center;
  5152. padding:2px 2px 2px 0px;
  5153. box-sizing:border-box;
  5154. width:100%;
  5155. }
  5156. #u82844_text {
  5157. border-width:0px;
  5158. word-wrap:break-word;
  5159. text-transform:none;
  5160. visibility:hidden;
  5161. }
  5162. #u82845_img {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:75px;
  5168. height:35px;
  5169. }
  5170. #u82845 {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:900px;
  5174. top:223px;
  5175. width:75px;
  5176. height:35px;
  5177. display:flex;
  5178. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5179. font-weight:400;
  5180. font-style:normal;
  5181. font-size:12px;
  5182. color:#606266;
  5183. }
  5184. #u82845 .text {
  5185. position:absolute;
  5186. align-self:center;
  5187. padding:2px 2px 2px 0px;
  5188. box-sizing:border-box;
  5189. width:100%;
  5190. }
  5191. #u82845_text {
  5192. border-width:0px;
  5193. word-wrap:break-word;
  5194. text-transform:none;
  5195. visibility:hidden;
  5196. }
  5197. #u82846_img {
  5198. border-width:0px;
  5199. position:absolute;
  5200. left:0px;
  5201. top:0px;
  5202. width:75px;
  5203. height:35px;
  5204. }
  5205. #u82846 {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:975px;
  5209. top:223px;
  5210. width:75px;
  5211. height:35px;
  5212. display:flex;
  5213. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5214. font-weight:400;
  5215. font-style:normal;
  5216. font-size:12px;
  5217. color:#606266;
  5218. }
  5219. #u82846 .text {
  5220. position:absolute;
  5221. align-self:center;
  5222. padding:2px 2px 2px 0px;
  5223. box-sizing:border-box;
  5224. width:100%;
  5225. }
  5226. #u82846_text {
  5227. border-width:0px;
  5228. word-wrap:break-word;
  5229. text-transform:none;
  5230. visibility:hidden;
  5231. }
  5232. #u82847_img {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:0px;
  5236. top:0px;
  5237. width:75px;
  5238. height:35px;
  5239. }
  5240. #u82847 {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:1050px;
  5244. top:223px;
  5245. width:75px;
  5246. height:35px;
  5247. display:flex;
  5248. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5249. font-weight:400;
  5250. font-style:normal;
  5251. font-size:12px;
  5252. color:#606266;
  5253. }
  5254. #u82847 .text {
  5255. position:absolute;
  5256. align-self:center;
  5257. padding:2px 2px 2px 0px;
  5258. box-sizing:border-box;
  5259. width:100%;
  5260. }
  5261. #u82847_text {
  5262. border-width:0px;
  5263. word-wrap:break-word;
  5264. text-transform:none;
  5265. visibility:hidden;
  5266. }
  5267. #u82848_img {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:96px;
  5273. height:35px;
  5274. }
  5275. #u82848 {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:1125px;
  5279. top:223px;
  5280. width:96px;
  5281. height:35px;
  5282. display:flex;
  5283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5284. font-weight:400;
  5285. font-style:normal;
  5286. font-size:12px;
  5287. color:#02A7F0;
  5288. }
  5289. #u82848 .text {
  5290. position:absolute;
  5291. align-self:center;
  5292. padding:2px 2px 2px 0px;
  5293. box-sizing:border-box;
  5294. width:100%;
  5295. }
  5296. #u82848_text {
  5297. border-width:0px;
  5298. word-wrap:break-word;
  5299. text-transform:none;
  5300. visibility:hidden;
  5301. }
  5302. #u82849_img {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:0px;
  5306. top:0px;
  5307. width:75px;
  5308. height:35px;
  5309. }
  5310. #u82849 {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:0px;
  5314. top:258px;
  5315. width:75px;
  5316. height:35px;
  5317. display:flex;
  5318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5319. font-weight:400;
  5320. font-style:normal;
  5321. font-size:12px;
  5322. color:#606266;
  5323. }
  5324. #u82849 .text {
  5325. position:absolute;
  5326. align-self:center;
  5327. padding:2px 2px 2px 0px;
  5328. box-sizing:border-box;
  5329. width:100%;
  5330. }
  5331. #u82849_text {
  5332. border-width:0px;
  5333. word-wrap:break-word;
  5334. text-transform:none;
  5335. visibility:hidden;
  5336. }
  5337. #u82850_img {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:75px;
  5343. height:35px;
  5344. }
  5345. #u82850 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:75px;
  5349. top:258px;
  5350. width:75px;
  5351. height:35px;
  5352. display:flex;
  5353. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5354. font-weight:400;
  5355. font-style:normal;
  5356. font-size:12px;
  5357. color:#606266;
  5358. }
  5359. #u82850 .text {
  5360. position:absolute;
  5361. align-self:center;
  5362. padding:2px 2px 2px 0px;
  5363. box-sizing:border-box;
  5364. width:100%;
  5365. }
  5366. #u82850_text {
  5367. border-width:0px;
  5368. word-wrap:break-word;
  5369. text-transform:none;
  5370. visibility:hidden;
  5371. }
  5372. #u82851_img {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:0px;
  5376. top:0px;
  5377. width:75px;
  5378. height:35px;
  5379. }
  5380. #u82851 {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:150px;
  5384. top:258px;
  5385. width:75px;
  5386. height:35px;
  5387. display:flex;
  5388. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5389. font-weight:400;
  5390. font-style:normal;
  5391. font-size:12px;
  5392. color:#606266;
  5393. }
  5394. #u82851 .text {
  5395. position:absolute;
  5396. align-self:center;
  5397. padding:2px 2px 2px 0px;
  5398. box-sizing:border-box;
  5399. width:100%;
  5400. }
  5401. #u82851_text {
  5402. border-width:0px;
  5403. word-wrap:break-word;
  5404. text-transform:none;
  5405. visibility:hidden;
  5406. }
  5407. #u82852_img {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:0px;
  5411. top:0px;
  5412. width:75px;
  5413. height:35px;
  5414. }
  5415. #u82852 {
  5416. border-width:0px;
  5417. position:absolute;
  5418. left:225px;
  5419. top:258px;
  5420. width:75px;
  5421. height:35px;
  5422. display:flex;
  5423. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5424. font-weight:400;
  5425. font-style:normal;
  5426. font-size:12px;
  5427. color:#606266;
  5428. }
  5429. #u82852 .text {
  5430. position:absolute;
  5431. align-self:center;
  5432. padding:2px 2px 2px 0px;
  5433. box-sizing:border-box;
  5434. width:100%;
  5435. }
  5436. #u82852_text {
  5437. border-width:0px;
  5438. word-wrap:break-word;
  5439. text-transform:none;
  5440. visibility:hidden;
  5441. }
  5442. #u82853_img {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:0px;
  5446. top:0px;
  5447. width:150px;
  5448. height:35px;
  5449. }
  5450. #u82853 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:300px;
  5454. top:258px;
  5455. width:150px;
  5456. height:35px;
  5457. display:flex;
  5458. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. font-size:12px;
  5462. color:#606266;
  5463. }
  5464. #u82853 .text {
  5465. position:absolute;
  5466. align-self:center;
  5467. padding:2px 2px 2px 0px;
  5468. box-sizing:border-box;
  5469. width:100%;
  5470. }
  5471. #u82853_text {
  5472. border-width:0px;
  5473. word-wrap:break-word;
  5474. text-transform:none;
  5475. visibility:hidden;
  5476. }
  5477. #u82854_img {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:0px;
  5481. top:0px;
  5482. width:75px;
  5483. height:35px;
  5484. }
  5485. #u82854 {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:450px;
  5489. top:258px;
  5490. width:75px;
  5491. height:35px;
  5492. display:flex;
  5493. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5494. font-weight:400;
  5495. font-style:normal;
  5496. font-size:12px;
  5497. color:#606266;
  5498. }
  5499. #u82854 .text {
  5500. position:absolute;
  5501. align-self:center;
  5502. padding:2px 2px 2px 0px;
  5503. box-sizing:border-box;
  5504. width:100%;
  5505. }
  5506. #u82854_text {
  5507. border-width:0px;
  5508. word-wrap:break-word;
  5509. text-transform:none;
  5510. visibility:hidden;
  5511. }
  5512. #u82855_img {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:75px;
  5518. height:35px;
  5519. }
  5520. #u82855 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:525px;
  5524. top:258px;
  5525. width:75px;
  5526. height:35px;
  5527. display:flex;
  5528. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:12px;
  5532. color:#606266;
  5533. }
  5534. #u82855 .text {
  5535. position:absolute;
  5536. align-self:center;
  5537. padding:2px 2px 2px 0px;
  5538. box-sizing:border-box;
  5539. width:100%;
  5540. }
  5541. #u82855_text {
  5542. border-width:0px;
  5543. word-wrap:break-word;
  5544. text-transform:none;
  5545. visibility:hidden;
  5546. }
  5547. #u82856_img {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:0px;
  5551. top:0px;
  5552. width:75px;
  5553. height:35px;
  5554. }
  5555. #u82856 {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:600px;
  5559. top:258px;
  5560. width:75px;
  5561. height:35px;
  5562. display:flex;
  5563. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5564. font-weight:400;
  5565. font-style:normal;
  5566. font-size:12px;
  5567. color:#606266;
  5568. }
  5569. #u82856 .text {
  5570. position:absolute;
  5571. align-self:center;
  5572. padding:2px 2px 2px 0px;
  5573. box-sizing:border-box;
  5574. width:100%;
  5575. }
  5576. #u82856_text {
  5577. border-width:0px;
  5578. word-wrap:break-word;
  5579. text-transform:none;
  5580. visibility:hidden;
  5581. }
  5582. #u82857_img {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:0px;
  5586. top:0px;
  5587. width:75px;
  5588. height:35px;
  5589. }
  5590. #u82857 {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:675px;
  5594. top:258px;
  5595. width:75px;
  5596. height:35px;
  5597. display:flex;
  5598. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5599. font-weight:400;
  5600. font-style:normal;
  5601. font-size:12px;
  5602. color:#606266;
  5603. }
  5604. #u82857 .text {
  5605. position:absolute;
  5606. align-self:center;
  5607. padding:2px 2px 2px 0px;
  5608. box-sizing:border-box;
  5609. width:100%;
  5610. }
  5611. #u82857_text {
  5612. border-width:0px;
  5613. word-wrap:break-word;
  5614. text-transform:none;
  5615. visibility:hidden;
  5616. }
  5617. #u82858_img {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:0px;
  5621. top:0px;
  5622. width:75px;
  5623. height:35px;
  5624. }
  5625. #u82858 {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:750px;
  5629. top:258px;
  5630. width:75px;
  5631. height:35px;
  5632. display:flex;
  5633. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5634. font-weight:400;
  5635. font-style:normal;
  5636. font-size:12px;
  5637. color:#606266;
  5638. }
  5639. #u82858 .text {
  5640. position:absolute;
  5641. align-self:center;
  5642. padding:2px 2px 2px 0px;
  5643. box-sizing:border-box;
  5644. width:100%;
  5645. }
  5646. #u82858_text {
  5647. border-width:0px;
  5648. word-wrap:break-word;
  5649. text-transform:none;
  5650. visibility:hidden;
  5651. }
  5652. #u82859_img {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:0px;
  5656. top:0px;
  5657. width:75px;
  5658. height:35px;
  5659. }
  5660. #u82859 {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:825px;
  5664. top:258px;
  5665. width:75px;
  5666. height:35px;
  5667. display:flex;
  5668. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5669. font-weight:400;
  5670. font-style:normal;
  5671. font-size:12px;
  5672. color:#606266;
  5673. }
  5674. #u82859 .text {
  5675. position:absolute;
  5676. align-self:center;
  5677. padding:2px 2px 2px 0px;
  5678. box-sizing:border-box;
  5679. width:100%;
  5680. }
  5681. #u82859_text {
  5682. border-width:0px;
  5683. word-wrap:break-word;
  5684. text-transform:none;
  5685. visibility:hidden;
  5686. }
  5687. #u82860_img {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:75px;
  5693. height:35px;
  5694. }
  5695. #u82860 {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:900px;
  5699. top:258px;
  5700. width:75px;
  5701. height:35px;
  5702. display:flex;
  5703. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5704. font-weight:400;
  5705. font-style:normal;
  5706. font-size:12px;
  5707. color:#606266;
  5708. }
  5709. #u82860 .text {
  5710. position:absolute;
  5711. align-self:center;
  5712. padding:2px 2px 2px 0px;
  5713. box-sizing:border-box;
  5714. width:100%;
  5715. }
  5716. #u82860_text {
  5717. border-width:0px;
  5718. word-wrap:break-word;
  5719. text-transform:none;
  5720. visibility:hidden;
  5721. }
  5722. #u82861_img {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:75px;
  5728. height:35px;
  5729. }
  5730. #u82861 {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:975px;
  5734. top:258px;
  5735. width:75px;
  5736. height:35px;
  5737. display:flex;
  5738. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5739. font-weight:400;
  5740. font-style:normal;
  5741. font-size:12px;
  5742. color:#606266;
  5743. }
  5744. #u82861 .text {
  5745. position:absolute;
  5746. align-self:center;
  5747. padding:2px 2px 2px 0px;
  5748. box-sizing:border-box;
  5749. width:100%;
  5750. }
  5751. #u82861_text {
  5752. border-width:0px;
  5753. word-wrap:break-word;
  5754. text-transform:none;
  5755. visibility:hidden;
  5756. }
  5757. #u82862_img {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:0px;
  5761. top:0px;
  5762. width:75px;
  5763. height:35px;
  5764. }
  5765. #u82862 {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:1050px;
  5769. top:258px;
  5770. width:75px;
  5771. height:35px;
  5772. display:flex;
  5773. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5774. font-weight:400;
  5775. font-style:normal;
  5776. font-size:12px;
  5777. color:#606266;
  5778. }
  5779. #u82862 .text {
  5780. position:absolute;
  5781. align-self:center;
  5782. padding:2px 2px 2px 0px;
  5783. box-sizing:border-box;
  5784. width:100%;
  5785. }
  5786. #u82862_text {
  5787. border-width:0px;
  5788. word-wrap:break-word;
  5789. text-transform:none;
  5790. visibility:hidden;
  5791. }
  5792. #u82863_img {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:0px;
  5796. top:0px;
  5797. width:96px;
  5798. height:35px;
  5799. }
  5800. #u82863 {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:1125px;
  5804. top:258px;
  5805. width:96px;
  5806. height:35px;
  5807. display:flex;
  5808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5809. font-weight:400;
  5810. font-style:normal;
  5811. font-size:12px;
  5812. color:#02A7F0;
  5813. }
  5814. #u82863 .text {
  5815. position:absolute;
  5816. align-self:center;
  5817. padding:2px 2px 2px 0px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u82863_text {
  5822. border-width:0px;
  5823. word-wrap:break-word;
  5824. text-transform:none;
  5825. visibility:hidden;
  5826. }
  5827. #u82864_div {
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:0px;
  5831. top:0px;
  5832. width:109px;
  5833. height:50px;
  5834. background:inherit;
  5835. background-color:rgba(255, 255, 255, 0);
  5836. border:none;
  5837. border-left:0px;
  5838. border-top:0px;
  5839. border-right:0px;
  5840. border-radius:0px;
  5841. border-bottom-right-radius:0px;
  5842. border-bottom-left-radius:0px;
  5843. -moz-box-shadow:none;
  5844. -webkit-box-shadow:none;
  5845. box-shadow:none;
  5846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5847. font-weight:400;
  5848. font-style:normal;
  5849. font-size:18px;
  5850. }
  5851. #u82864 {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:349px;
  5855. top:50px;
  5856. width:109px;
  5857. height:50px;
  5858. display:flex;
  5859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. font-size:18px;
  5863. }
  5864. #u82864 .text {
  5865. position:absolute;
  5866. align-self:center;
  5867. padding:0px 0px 0px 0px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u82864_text {
  5872. border-width:0px;
  5873. white-space:nowrap;
  5874. text-transform:none;
  5875. }
  5876. #u82865_img {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:13px;
  5882. height:13px;
  5883. }
  5884. #u82865 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:465px;
  5888. top:67px;
  5889. width:13px;
  5890. height:13px;
  5891. display:flex;
  5892. }
  5893. #u82865 .text {
  5894. position:absolute;
  5895. align-self:center;
  5896. padding:2px 2px 2px 2px;
  5897. box-sizing:border-box;
  5898. width:100%;
  5899. }
  5900. #u82865_text {
  5901. border-width:0px;
  5902. word-wrap:break-word;
  5903. text-transform:none;
  5904. visibility:hidden;
  5905. }
  5906. #u82866 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:0px;
  5912. height:0px;
  5913. }
  5914. #u82867 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:0px;
  5920. height:0px;
  5921. }
  5922. #u82868_div {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:0px;
  5926. top:0px;
  5927. width:59px;
  5928. height:30px;
  5929. background:inherit;
  5930. background-color:rgba(24, 144, 255, 1);
  5931. box-sizing:border-box;
  5932. border-width:1px;
  5933. border-style:solid;
  5934. border-color:rgba(0, 153, 255, 1);
  5935. border-radius:4px;
  5936. -moz-box-shadow:none;
  5937. -webkit-box-shadow:none;
  5938. box-shadow:none;
  5939. font-family:'Microsoft YaHei', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:14px;
  5943. color:#FFFFFF;
  5944. }
  5945. #u82868 {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:799px;
  5949. top:110px;
  5950. width:59px;
  5951. height:30px;
  5952. display:flex;
  5953. font-family:'Microsoft YaHei', sans-serif;
  5954. font-weight:400;
  5955. font-style:normal;
  5956. font-size:14px;
  5957. color:#FFFFFF;
  5958. }
  5959. #u82868 .text {
  5960. position:absolute;
  5961. align-self:center;
  5962. padding:5px 15px 5px 15px;
  5963. box-sizing:border-box;
  5964. width:100%;
  5965. }
  5966. #u82868_text {
  5967. border-width:0px;
  5968. white-space:nowrap;
  5969. text-transform:none;
  5970. }
  5971. #u82869_div {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:0px;
  5975. top:0px;
  5976. width:55px;
  5977. height:30px;
  5978. background:inherit;
  5979. background-color:rgba(255, 255, 255, 1);
  5980. box-sizing:border-box;
  5981. border-width:1px;
  5982. border-style:solid;
  5983. border-color:rgba(170, 170, 170, 1);
  5984. border-radius:4px;
  5985. -moz-box-shadow:none;
  5986. -webkit-box-shadow:none;
  5987. box-shadow:none;
  5988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5989. font-weight:400;
  5990. font-style:normal;
  5991. font-size:12px;
  5992. color:#555555;
  5993. }
  5994. #u82869 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:868px;
  5998. top:110px;
  5999. width:55px;
  6000. height:30px;
  6001. display:flex;
  6002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. font-size:12px;
  6006. color:#555555;
  6007. }
  6008. #u82869 .text {
  6009. position:absolute;
  6010. align-self:center;
  6011. padding:5px 15px 5px 15px;
  6012. box-sizing:border-box;
  6013. width:100%;
  6014. }
  6015. #u82869_text {
  6016. border-width:0px;
  6017. white-space:nowrap;
  6018. text-transform:none;
  6019. }
  6020. #u82870 {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:0px;
  6024. top:0px;
  6025. width:0px;
  6026. height:0px;
  6027. }
  6028. #u82871_div {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:0px;
  6032. top:0px;
  6033. width:140px;
  6034. height:30px;
  6035. background:inherit;
  6036. background-color:rgba(255, 255, 255, 1);
  6037. box-sizing:border-box;
  6038. border-width:1px;
  6039. border-style:solid;
  6040. border-color:rgba(215, 215, 215, 1);
  6041. border-radius:4px;
  6042. -moz-box-shadow:none;
  6043. -webkit-box-shadow:none;
  6044. box-shadow:none;
  6045. font-size:11px;
  6046. }
  6047. #u82871 {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:349px;
  6051. top:110px;
  6052. width:140px;
  6053. height:30px;
  6054. display:flex;
  6055. font-size:11px;
  6056. }
  6057. #u82871 .text {
  6058. position:absolute;
  6059. align-self:center;
  6060. padding:2px 2px 2px 2px;
  6061. box-sizing:border-box;
  6062. width:100%;
  6063. }
  6064. #u82871_text {
  6065. border-width:0px;
  6066. word-wrap:break-word;
  6067. text-transform:none;
  6068. visibility:hidden;
  6069. }
  6070. #u82872_input {
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:126px;
  6075. height:23px;
  6076. padding:2px 2px 2px 2px;
  6077. font-family:'ArialMT', 'Arial', sans-serif;
  6078. font-weight:400;
  6079. font-style:normal;
  6080. font-size:11px;
  6081. letter-spacing:normal;
  6082. color:#AAAAAA;
  6083. vertical-align:none;
  6084. text-align:left;
  6085. text-transform:none;
  6086. background-color:transparent;
  6087. border-color:transparent;
  6088. }
  6089. #u82872_input.disabled {
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:126px;
  6094. height:23px;
  6095. padding:2px 2px 2px 2px;
  6096. font-family:'ArialMT', 'Arial', sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. font-size:11px;
  6100. letter-spacing:normal;
  6101. color:#AAAAAA;
  6102. vertical-align:none;
  6103. text-align:left;
  6104. text-transform:none;
  6105. background-color:transparent;
  6106. border-color:transparent;
  6107. }
  6108. #u82872_div {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:0px;
  6112. top:0px;
  6113. width:126px;
  6114. height:23px;
  6115. background:inherit;
  6116. background-color:rgba(255, 255, 255, 1);
  6117. border:none;
  6118. border-radius:0px;
  6119. -moz-box-shadow:none;
  6120. -webkit-box-shadow:none;
  6121. box-shadow:none;
  6122. font-size:11px;
  6123. color:#AAAAAA;
  6124. }
  6125. #u82872 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:356px;
  6129. top:112px;
  6130. width:126px;
  6131. height:23px;
  6132. display:flex;
  6133. font-size:11px;
  6134. color:#AAAAAA;
  6135. }
  6136. #u82872 .text {
  6137. position:absolute;
  6138. align-self:flex-start;
  6139. padding:2px 2px 2px 2px;
  6140. box-sizing:border-box;
  6141. width:100%;
  6142. }
  6143. #u82872_div.disabled {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:126px;
  6149. height:23px;
  6150. background:inherit;
  6151. background-color:rgba(240, 240, 240, 1);
  6152. border:none;
  6153. border-radius:0px;
  6154. -moz-box-shadow:none;
  6155. -webkit-box-shadow:none;
  6156. box-shadow:none;
  6157. font-size:11px;
  6158. color:#AAAAAA;
  6159. }
  6160. #u82872.disabled {
  6161. }
  6162. .u82872_input_option {
  6163. font-size:11px;
  6164. }
  6165. #u82873 {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:0px;
  6171. height:0px;
  6172. }
  6173. #u82874_div {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:0px;
  6177. top:0px;
  6178. width:140px;
  6179. height:30px;
  6180. background:inherit;
  6181. background-color:rgba(255, 255, 255, 1);
  6182. box-sizing:border-box;
  6183. border-width:1px;
  6184. border-style:solid;
  6185. border-color:rgba(201, 201, 201, 1);
  6186. border-radius:4px;
  6187. -moz-box-shadow:none;
  6188. -webkit-box-shadow:none;
  6189. box-shadow:none;
  6190. font-family:'Microsoft YaHei', sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. font-size:14px;
  6194. color:#CCCCCC;
  6195. text-align:left;
  6196. }
  6197. #u82874 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:499px;
  6201. top:110px;
  6202. width:140px;
  6203. height:30px;
  6204. display:flex;
  6205. font-family:'Microsoft YaHei', sans-serif;
  6206. font-weight:400;
  6207. font-style:normal;
  6208. font-size:14px;
  6209. color:#CCCCCC;
  6210. text-align:left;
  6211. }
  6212. #u82874 .text {
  6213. position:absolute;
  6214. align-self:center;
  6215. padding:2px 8px 2px 8px;
  6216. box-sizing:border-box;
  6217. width:100%;
  6218. }
  6219. #u82874_text {
  6220. border-width:0px;
  6221. word-wrap:break-word;
  6222. text-transform:none;
  6223. visibility:hidden;
  6224. }
  6225. #u82875_input {
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:127px;
  6230. height:25px;
  6231. padding:2px 2px 2px 2px;
  6232. font-family:'Microsoft YaHei', sans-serif;
  6233. font-weight:400;
  6234. font-style:normal;
  6235. font-size:10px;
  6236. letter-spacing:normal;
  6237. color:#000000;
  6238. vertical-align:none;
  6239. text-align:left;
  6240. text-transform:none;
  6241. background-color:transparent;
  6242. border-color:transparent;
  6243. }
  6244. #u82875_input.disabled {
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:127px;
  6249. height:25px;
  6250. padding:2px 2px 2px 2px;
  6251. font-family:'Microsoft YaHei', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. font-size:10px;
  6255. letter-spacing:normal;
  6256. color:#000000;
  6257. vertical-align:none;
  6258. text-align:left;
  6259. text-transform:none;
  6260. background-color:transparent;
  6261. border-color:transparent;
  6262. }
  6263. #u82875_div {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:0px;
  6267. top:0px;
  6268. width:127px;
  6269. height:25px;
  6270. background:inherit;
  6271. background-color:rgba(255, 255, 255, 1);
  6272. border:none;
  6273. border-radius:0px;
  6274. -moz-box-shadow:none;
  6275. -webkit-box-shadow:none;
  6276. box-shadow:none;
  6277. font-family:'Microsoft YaHei', sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:10px;
  6281. }
  6282. #u82875 {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:507px;
  6286. top:111px;
  6287. width:127px;
  6288. height:25px;
  6289. display:flex;
  6290. font-family:'Microsoft YaHei', sans-serif;
  6291. font-weight:400;
  6292. font-style:normal;
  6293. font-size:10px;
  6294. }
  6295. #u82875 .text {
  6296. position:absolute;
  6297. align-self:center;
  6298. padding:2px 2px 2px 2px;
  6299. box-sizing:border-box;
  6300. width:100%;
  6301. }
  6302. #u82875_div.disabled {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:0px;
  6306. top:0px;
  6307. width:127px;
  6308. height:25px;
  6309. background:inherit;
  6310. background-color:rgba(240, 240, 240, 1);
  6311. border:none;
  6312. border-radius:0px;
  6313. -moz-box-shadow:none;
  6314. -webkit-box-shadow:none;
  6315. box-shadow:none;
  6316. font-family:'Microsoft YaHei', sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. font-size:10px;
  6320. }
  6321. #u82875.disabled {
  6322. }
  6323. #u82876 {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:0px;
  6327. top:0px;
  6328. width:0px;
  6329. height:0px;
  6330. }
  6331. #u82877_div {
  6332. border-width:0px;
  6333. position:absolute;
  6334. left:0px;
  6335. top:0px;
  6336. width:140px;
  6337. height:30px;
  6338. background:inherit;
  6339. background-color:rgba(255, 255, 255, 1);
  6340. box-sizing:border-box;
  6341. border-width:1px;
  6342. border-style:solid;
  6343. border-color:rgba(188, 188, 188, 1);
  6344. border-radius:4px;
  6345. -moz-box-shadow:none;
  6346. -webkit-box-shadow:none;
  6347. box-shadow:none;
  6348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6349. font-weight:400;
  6350. font-style:normal;
  6351. font-size:12px;
  6352. color:#FFFFFF;
  6353. }
  6354. #u82877 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:649px;
  6358. top:110px;
  6359. width:140px;
  6360. height:30px;
  6361. display:flex;
  6362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6363. font-weight:400;
  6364. font-style:normal;
  6365. font-size:12px;
  6366. color:#FFFFFF;
  6367. }
  6368. #u82877 .text {
  6369. position:absolute;
  6370. align-self:center;
  6371. padding:8px 15px 8px 15px;
  6372. box-sizing:border-box;
  6373. width:100%;
  6374. }
  6375. #u82877_text {
  6376. border-width:0px;
  6377. word-wrap:break-word;
  6378. text-transform:none;
  6379. visibility:hidden;
  6380. }
  6381. #u82878_img {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:0px;
  6385. top:0px;
  6386. width:18px;
  6387. height:18px;
  6388. }
  6389. #u82878 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:766px;
  6393. top:116px;
  6394. width:18px;
  6395. height:18px;
  6396. display:flex;
  6397. opacity:0.5;
  6398. }
  6399. #u82878 .text {
  6400. position:absolute;
  6401. align-self:center;
  6402. padding:2px 2px 2px 2px;
  6403. box-sizing:border-box;
  6404. width:100%;
  6405. }
  6406. #u82878_text {
  6407. border-width:0px;
  6408. word-wrap:break-word;
  6409. text-transform:none;
  6410. visibility:hidden;
  6411. }
  6412. #u82880 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:0px;
  6416. top:0px;
  6417. width:0px;
  6418. height:0px;
  6419. }
  6420. #u82881_img {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:200px;
  6426. height:1191px;
  6427. }
  6428. #u82881 {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:120px;
  6432. top:50px;
  6433. width:200px;
  6434. height:1191px;
  6435. display:flex;
  6436. }
  6437. #u82881 .text {
  6438. position:absolute;
  6439. align-self:center;
  6440. padding:2px 2px 2px 2px;
  6441. box-sizing:border-box;
  6442. width:100%;
  6443. }
  6444. #u82881_text {
  6445. border-width:0px;
  6446. word-wrap:break-word;
  6447. text-transform:none;
  6448. visibility:hidden;
  6449. }
  6450. #u82882_div {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:0px;
  6454. top:0px;
  6455. width:200px;
  6456. height:60px;
  6457. background:inherit;
  6458. background-color:rgba(224, 231, 247, 1);
  6459. border:none;
  6460. border-radius:0px;
  6461. -moz-box-shadow:none;
  6462. -webkit-box-shadow:none;
  6463. box-shadow:none;
  6464. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6465. font-weight:500;
  6466. font-style:normal;
  6467. font-size:18px;
  6468. }
  6469. #u82882 {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:120px;
  6473. top:50px;
  6474. width:200px;
  6475. height:60px;
  6476. display:flex;
  6477. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6478. font-weight:500;
  6479. font-style:normal;
  6480. font-size:18px;
  6481. }
  6482. #u82882 .text {
  6483. position:absolute;
  6484. align-self:center;
  6485. padding:0px 0px 0px 20px;
  6486. box-sizing:border-box;
  6487. width:100%;
  6488. }
  6489. #u82882_text {
  6490. border-width:0px;
  6491. word-wrap:break-word;
  6492. text-transform:none;
  6493. }
  6494. #u82883 {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:120px;
  6498. top:130px;
  6499. width:200px;
  6500. height:1078px;
  6501. }
  6502. #u82883_state0 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:0px;
  6506. top:0px;
  6507. width:200px;
  6508. height:1078px;
  6509. overflow:auto;
  6510. -webkit-overflow-scrolling:touch;
  6511. -ms-overflow-x:hidden;
  6512. overflow-x:hidden;
  6513. background-image:none;
  6514. border:none;
  6515. border-radius:0px;
  6516. -moz-box-shadow:none;
  6517. -webkit-box-shadow:none;
  6518. box-shadow:none;
  6519. }
  6520. #u82883_state0_content {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:0px;
  6524. top:0px;
  6525. width:1px;
  6526. height:1px;
  6527. }
  6528. #u82884_div {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:97px;
  6534. height:22px;
  6535. background:inherit;
  6536. background-color:rgba(255, 255, 255, 0);
  6537. border:none;
  6538. border-radius:0px;
  6539. -moz-box-shadow:none;
  6540. -webkit-box-shadow:none;
  6541. box-shadow:none;
  6542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. font-size:16px;
  6546. }
  6547. #u82884 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:30px;
  6551. top:0px;
  6552. width:97px;
  6553. height:22px;
  6554. display:flex;
  6555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:16px;
  6559. }
  6560. #u82884 .text {
  6561. position:absolute;
  6562. align-self:flex-start;
  6563. padding:0px 0px 0px 0px;
  6564. box-sizing:border-box;
  6565. width:100%;
  6566. }
  6567. #u82884_text {
  6568. border-width:0px;
  6569. word-wrap:break-word;
  6570. text-transform:none;
  6571. }
  6572. #u82885_div {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:65px;
  6578. height:22px;
  6579. background:inherit;
  6580. background-color:rgba(255, 255, 255, 0);
  6581. border:none;
  6582. border-radius:0px;
  6583. -moz-box-shadow:none;
  6584. -webkit-box-shadow:none;
  6585. box-shadow:none;
  6586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6587. font-weight:400;
  6588. font-style:normal;
  6589. font-size:16px;
  6590. }
  6591. #u82885 {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:30px;
  6595. top:42px;
  6596. width:65px;
  6597. height:22px;
  6598. display:flex;
  6599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:16px;
  6603. }
  6604. #u82885 .text {
  6605. position:absolute;
  6606. align-self:flex-start;
  6607. padding:0px 0px 0px 0px;
  6608. box-sizing:border-box;
  6609. width:100%;
  6610. }
  6611. #u82885_text {
  6612. border-width:0px;
  6613. white-space:nowrap;
  6614. text-transform:none;
  6615. }
  6616. #u82886_div {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:0px;
  6620. top:0px;
  6621. width:49px;
  6622. height:22px;
  6623. background:inherit;
  6624. background-color:rgba(255, 255, 255, 0);
  6625. border:none;
  6626. border-radius:0px;
  6627. -moz-box-shadow:none;
  6628. -webkit-box-shadow:none;
  6629. box-shadow:none;
  6630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6631. font-weight:400;
  6632. font-style:normal;
  6633. font-size:16px;
  6634. }
  6635. #u82886 {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:30px;
  6639. top:145px;
  6640. width:49px;
  6641. height:22px;
  6642. display:flex;
  6643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6644. font-weight:400;
  6645. font-style:normal;
  6646. font-size:16px;
  6647. }
  6648. #u82886 .text {
  6649. position:absolute;
  6650. align-self:flex-start;
  6651. padding:0px 0px 0px 0px;
  6652. box-sizing:border-box;
  6653. width:100%;
  6654. }
  6655. #u82886_text {
  6656. border-width:0px;
  6657. white-space:nowrap;
  6658. text-transform:none;
  6659. }
  6660. #u82887_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:97px;
  6666. height:22px;
  6667. background:inherit;
  6668. background-color:rgba(255, 255, 255, 0);
  6669. border:none;
  6670. border-radius:0px;
  6671. -moz-box-shadow:none;
  6672. -webkit-box-shadow:none;
  6673. box-shadow:none;
  6674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6675. font-weight:400;
  6676. font-style:normal;
  6677. font-size:16px;
  6678. }
  6679. #u82887 {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:30px;
  6683. top:187px;
  6684. width:97px;
  6685. height:22px;
  6686. display:flex;
  6687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6688. font-weight:400;
  6689. font-style:normal;
  6690. font-size:16px;
  6691. }
  6692. #u82887 .text {
  6693. position:absolute;
  6694. align-self:flex-start;
  6695. padding:0px 0px 0px 0px;
  6696. box-sizing:border-box;
  6697. width:100%;
  6698. }
  6699. #u82887_text {
  6700. border-width:0px;
  6701. word-wrap:break-word;
  6702. text-transform:none;
  6703. }
  6704. #u82888_img {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:0px;
  6708. top:0px;
  6709. width:201px;
  6710. height:2px;
  6711. }
  6712. #u82888 {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:0px;
  6716. top:84px;
  6717. width:200px;
  6718. height:1px;
  6719. display:flex;
  6720. }
  6721. #u82888 .text {
  6722. position:absolute;
  6723. align-self:center;
  6724. padding:2px 2px 2px 2px;
  6725. box-sizing:border-box;
  6726. width:100%;
  6727. }
  6728. #u82888_text {
  6729. border-width:0px;
  6730. word-wrap:break-word;
  6731. text-transform:none;
  6732. visibility:hidden;
  6733. }
  6734. #u82889_div {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:0px;
  6738. top:0px;
  6739. width:49px;
  6740. height:17px;
  6741. background:inherit;
  6742. background-color:rgba(255, 255, 255, 0);
  6743. border:none;
  6744. border-radius:0px;
  6745. -moz-box-shadow:none;
  6746. -webkit-box-shadow:none;
  6747. box-shadow:none;
  6748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6749. font-weight:400;
  6750. font-style:normal;
  6751. font-size:12px;
  6752. color:#AAAAAA;
  6753. }
  6754. #u82889 {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:30px;
  6758. top:105px;
  6759. width:49px;
  6760. height:17px;
  6761. display:flex;
  6762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6763. font-weight:400;
  6764. font-style:normal;
  6765. font-size:12px;
  6766. color:#AAAAAA;
  6767. }
  6768. #u82889 .text {
  6769. position:absolute;
  6770. align-self:flex-start;
  6771. padding:0px 0px 0px 0px;
  6772. box-sizing:border-box;
  6773. width:100%;
  6774. }
  6775. #u82889_text {
  6776. border-width:0px;
  6777. white-space:nowrap;
  6778. text-transform:none;
  6779. }
  6780. #u82890_div {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:0px;
  6784. top:0px;
  6785. width:97px;
  6786. height:22px;
  6787. background:inherit;
  6788. background-color:rgba(255, 255, 255, 0);
  6789. border:none;
  6790. border-radius:0px;
  6791. -moz-box-shadow:none;
  6792. -webkit-box-shadow:none;
  6793. box-shadow:none;
  6794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6795. font-weight:400;
  6796. font-style:normal;
  6797. font-size:16px;
  6798. }
  6799. #u82890 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:30px;
  6803. top:229px;
  6804. width:97px;
  6805. height:22px;
  6806. display:flex;
  6807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6808. font-weight:400;
  6809. font-style:normal;
  6810. font-size:16px;
  6811. }
  6812. #u82890 .text {
  6813. position:absolute;
  6814. align-self:flex-start;
  6815. padding:0px 0px 0px 0px;
  6816. box-sizing:border-box;
  6817. width:100%;
  6818. }
  6819. #u82890_text {
  6820. border-width:0px;
  6821. word-wrap:break-word;
  6822. text-transform:none;
  6823. }
  6824. #u82891_div {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:0px;
  6828. top:0px;
  6829. width:65px;
  6830. height:22px;
  6831. background:inherit;
  6832. background-color:rgba(255, 255, 255, 0);
  6833. border:none;
  6834. border-radius:0px;
  6835. -moz-box-shadow:none;
  6836. -webkit-box-shadow:none;
  6837. box-shadow:none;
  6838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6839. font-weight:400;
  6840. font-style:normal;
  6841. font-size:16px;
  6842. }
  6843. #u82891 {
  6844. border-width:0px;
  6845. position:absolute;
  6846. left:30px;
  6847. top:271px;
  6848. width:65px;
  6849. height:22px;
  6850. display:flex;
  6851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6852. font-weight:400;
  6853. font-style:normal;
  6854. font-size:16px;
  6855. }
  6856. #u82891 .text {
  6857. position:absolute;
  6858. align-self:flex-start;
  6859. padding:0px 0px 0px 0px;
  6860. box-sizing:border-box;
  6861. width:100%;
  6862. }
  6863. #u82891_text {
  6864. border-width:0px;
  6865. white-space:nowrap;
  6866. text-transform:none;
  6867. }
  6868. #u82892_img {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:0px;
  6872. top:0px;
  6873. width:201px;
  6874. height:2px;
  6875. }
  6876. #u82892 {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:313px;
  6881. width:200px;
  6882. height:1px;
  6883. display:flex;
  6884. }
  6885. #u82892 .text {
  6886. position:absolute;
  6887. align-self:center;
  6888. padding:2px 2px 2px 2px;
  6889. box-sizing:border-box;
  6890. width:100%;
  6891. }
  6892. #u82892_text {
  6893. border-width:0px;
  6894. word-wrap:break-word;
  6895. text-transform:none;
  6896. visibility:hidden;
  6897. }
  6898. #u82893_div {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:0px;
  6902. top:0px;
  6903. width:65px;
  6904. height:22px;
  6905. background:inherit;
  6906. background-color:rgba(255, 255, 255, 0);
  6907. border:none;
  6908. border-radius:0px;
  6909. -moz-box-shadow:none;
  6910. -webkit-box-shadow:none;
  6911. box-shadow:none;
  6912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6913. font-weight:400;
  6914. font-style:normal;
  6915. font-size:16px;
  6916. }
  6917. #u82893 {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:30px;
  6921. top:370px;
  6922. width:65px;
  6923. height:22px;
  6924. display:flex;
  6925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6926. font-weight:400;
  6927. font-style:normal;
  6928. font-size:16px;
  6929. }
  6930. #u82893 .text {
  6931. position:absolute;
  6932. align-self:flex-start;
  6933. padding:0px 0px 0px 0px;
  6934. box-sizing:border-box;
  6935. width:100%;
  6936. }
  6937. #u82893_text {
  6938. border-width:0px;
  6939. white-space:nowrap;
  6940. text-transform:none;
  6941. }
  6942. #u82894_div {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:0px;
  6946. top:0px;
  6947. width:49px;
  6948. height:17px;
  6949. background:inherit;
  6950. background-color:rgba(255, 255, 255, 0);
  6951. border:none;
  6952. border-radius:0px;
  6953. -moz-box-shadow:none;
  6954. -webkit-box-shadow:none;
  6955. box-shadow:none;
  6956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:12px;
  6960. color:#AAAAAA;
  6961. }
  6962. #u82894 {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:30px;
  6966. top:334px;
  6967. width:49px;
  6968. height:17px;
  6969. display:flex;
  6970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6971. font-weight:400;
  6972. font-style:normal;
  6973. font-size:12px;
  6974. color:#AAAAAA;
  6975. }
  6976. #u82894 .text {
  6977. position:absolute;
  6978. align-self:flex-start;
  6979. padding:0px 0px 0px 0px;
  6980. box-sizing:border-box;
  6981. width:100%;
  6982. }
  6983. #u82894_text {
  6984. border-width:0px;
  6985. white-space:nowrap;
  6986. text-transform:none;
  6987. }
  6988. #u82895_div {
  6989. border-width:0px;
  6990. position:absolute;
  6991. left:0px;
  6992. top:0px;
  6993. width:65px;
  6994. height:22px;
  6995. background:inherit;
  6996. background-color:rgba(255, 255, 255, 0);
  6997. border:none;
  6998. border-radius:0px;
  6999. -moz-box-shadow:none;
  7000. -webkit-box-shadow:none;
  7001. box-shadow:none;
  7002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7003. font-weight:400;
  7004. font-style:normal;
  7005. font-size:16px;
  7006. }
  7007. #u82895 {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:30px;
  7011. top:412px;
  7012. width:65px;
  7013. height:22px;
  7014. display:flex;
  7015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7016. font-weight:400;
  7017. font-style:normal;
  7018. font-size:16px;
  7019. }
  7020. #u82895 .text {
  7021. position:absolute;
  7022. align-self:flex-start;
  7023. padding:0px 0px 0px 0px;
  7024. box-sizing:border-box;
  7025. width:100%;
  7026. }
  7027. #u82895_text {
  7028. border-width:0px;
  7029. white-space:nowrap;
  7030. text-transform:none;
  7031. }
  7032. #u82896_div {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:0px;
  7036. top:0px;
  7037. width:65px;
  7038. height:22px;
  7039. background:inherit;
  7040. background-color:rgba(255, 255, 255, 0);
  7041. border:none;
  7042. border-radius:0px;
  7043. -moz-box-shadow:none;
  7044. -webkit-box-shadow:none;
  7045. box-shadow:none;
  7046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7047. font-weight:400;
  7048. font-style:normal;
  7049. font-size:16px;
  7050. }
  7051. #u82896 {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:30px;
  7055. top:454px;
  7056. width:65px;
  7057. height:22px;
  7058. display:flex;
  7059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7060. font-weight:400;
  7061. font-style:normal;
  7062. font-size:16px;
  7063. }
  7064. #u82896 .text {
  7065. position:absolute;
  7066. align-self:flex-start;
  7067. padding:0px 0px 0px 0px;
  7068. box-sizing:border-box;
  7069. width:100%;
  7070. }
  7071. #u82896_text {
  7072. border-width:0px;
  7073. white-space:nowrap;
  7074. text-transform:none;
  7075. }
  7076. #u82897_div {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:0px;
  7080. top:0px;
  7081. width:65px;
  7082. height:22px;
  7083. background:inherit;
  7084. background-color:rgba(255, 255, 255, 0);
  7085. border:none;
  7086. border-radius:0px;
  7087. -moz-box-shadow:none;
  7088. -webkit-box-shadow:none;
  7089. box-shadow:none;
  7090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7091. font-weight:400;
  7092. font-style:normal;
  7093. font-size:16px;
  7094. }
  7095. #u82897 {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:30px;
  7099. top:496px;
  7100. width:65px;
  7101. height:22px;
  7102. display:flex;
  7103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7104. font-weight:400;
  7105. font-style:normal;
  7106. font-size:16px;
  7107. }
  7108. #u82897 .text {
  7109. position:absolute;
  7110. align-self:flex-start;
  7111. padding:0px 0px 0px 0px;
  7112. box-sizing:border-box;
  7113. width:100%;
  7114. }
  7115. #u82897_text {
  7116. border-width:0px;
  7117. white-space:nowrap;
  7118. text-transform:none;
  7119. }
  7120. #u82898_div {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:65px;
  7126. height:22px;
  7127. background:inherit;
  7128. background-color:rgba(255, 255, 255, 0);
  7129. border:none;
  7130. border-radius:0px;
  7131. -moz-box-shadow:none;
  7132. -webkit-box-shadow:none;
  7133. box-shadow:none;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:16px;
  7138. }
  7139. #u82898 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:30px;
  7143. top:538px;
  7144. width:65px;
  7145. height:22px;
  7146. display:flex;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:16px;
  7151. }
  7152. #u82898 .text {
  7153. position:absolute;
  7154. align-self:flex-start;
  7155. padding:0px 0px 0px 0px;
  7156. box-sizing:border-box;
  7157. width:100%;
  7158. }
  7159. #u82898_text {
  7160. border-width:0px;
  7161. white-space:nowrap;
  7162. text-transform:none;
  7163. }
  7164. #u82899_div {
  7165. border-width:0px;
  7166. position:absolute;
  7167. left:0px;
  7168. top:0px;
  7169. width:65px;
  7170. height:22px;
  7171. background:inherit;
  7172. background-color:rgba(255, 255, 255, 0);
  7173. border:none;
  7174. border-radius:0px;
  7175. -moz-box-shadow:none;
  7176. -webkit-box-shadow:none;
  7177. box-shadow:none;
  7178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7179. font-weight:400;
  7180. font-style:normal;
  7181. font-size:16px;
  7182. }
  7183. #u82899 {
  7184. border-width:0px;
  7185. position:absolute;
  7186. left:30px;
  7187. top:580px;
  7188. width:65px;
  7189. height:22px;
  7190. display:flex;
  7191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7192. font-weight:400;
  7193. font-style:normal;
  7194. font-size:16px;
  7195. }
  7196. #u82899 .text {
  7197. position:absolute;
  7198. align-self:flex-start;
  7199. padding:0px 0px 0px 0px;
  7200. box-sizing:border-box;
  7201. width:100%;
  7202. }
  7203. #u82899_text {
  7204. border-width:0px;
  7205. white-space:nowrap;
  7206. text-transform:none;
  7207. }
  7208. #u82900_img {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:0px;
  7212. top:0px;
  7213. width:201px;
  7214. height:2px;
  7215. }
  7216. #u82900 {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:0px;
  7220. top:1289px;
  7221. width:200px;
  7222. height:1px;
  7223. display:flex;
  7224. }
  7225. #u82900 .text {
  7226. position:absolute;
  7227. align-self:center;
  7228. padding:2px 2px 2px 2px;
  7229. box-sizing:border-box;
  7230. width:100%;
  7231. }
  7232. #u82900_text {
  7233. border-width:0px;
  7234. word-wrap:break-word;
  7235. text-transform:none;
  7236. visibility:hidden;
  7237. }
  7238. #u82901_div {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:0px;
  7242. top:0px;
  7243. width:65px;
  7244. height:22px;
  7245. background:inherit;
  7246. background-color:rgba(255, 255, 255, 0);
  7247. border:none;
  7248. border-radius:0px;
  7249. -moz-box-shadow:none;
  7250. -webkit-box-shadow:none;
  7251. box-shadow:none;
  7252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7253. font-weight:400;
  7254. font-style:normal;
  7255. font-size:16px;
  7256. }
  7257. #u82901 {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:30px;
  7261. top:1346px;
  7262. width:65px;
  7263. height:22px;
  7264. display:flex;
  7265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7266. font-weight:400;
  7267. font-style:normal;
  7268. font-size:16px;
  7269. }
  7270. #u82901 .text {
  7271. position:absolute;
  7272. align-self:flex-start;
  7273. padding:0px 0px 0px 0px;
  7274. box-sizing:border-box;
  7275. width:100%;
  7276. }
  7277. #u82901_text {
  7278. border-width:0px;
  7279. white-space:nowrap;
  7280. text-transform:none;
  7281. }
  7282. #u82902_div {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:0px;
  7286. top:0px;
  7287. width:49px;
  7288. height:17px;
  7289. background:inherit;
  7290. background-color:rgba(255, 255, 255, 0);
  7291. border:none;
  7292. border-radius:0px;
  7293. -moz-box-shadow:none;
  7294. -webkit-box-shadow:none;
  7295. box-shadow:none;
  7296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7297. font-weight:400;
  7298. font-style:normal;
  7299. font-size:12px;
  7300. color:#AAAAAA;
  7301. }
  7302. #u82902 {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:30px;
  7306. top:1310px;
  7307. width:49px;
  7308. height:17px;
  7309. display:flex;
  7310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:12px;
  7314. color:#AAAAAA;
  7315. }
  7316. #u82902 .text {
  7317. position:absolute;
  7318. align-self:flex-start;
  7319. padding:0px 0px 0px 0px;
  7320. box-sizing:border-box;
  7321. width:100%;
  7322. }
  7323. #u82902_text {
  7324. border-width:0px;
  7325. white-space:nowrap;
  7326. text-transform:none;
  7327. }
  7328. #u82903_div {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:0px;
  7332. top:0px;
  7333. width:65px;
  7334. height:22px;
  7335. background:inherit;
  7336. background-color:rgba(255, 255, 255, 0);
  7337. border:none;
  7338. border-radius:0px;
  7339. -moz-box-shadow:none;
  7340. -webkit-box-shadow:none;
  7341. box-shadow:none;
  7342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7343. font-weight:400;
  7344. font-style:normal;
  7345. font-size:16px;
  7346. }
  7347. #u82903 {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:30px;
  7351. top:1388px;
  7352. width:65px;
  7353. height:22px;
  7354. display:flex;
  7355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7356. font-weight:400;
  7357. font-style:normal;
  7358. font-size:16px;
  7359. }
  7360. #u82903 .text {
  7361. position:absolute;
  7362. align-self:flex-start;
  7363. padding:0px 0px 0px 0px;
  7364. box-sizing:border-box;
  7365. width:100%;
  7366. }
  7367. #u82903_text {
  7368. border-width:0px;
  7369. white-space:nowrap;
  7370. text-transform:none;
  7371. }
  7372. #u82904_div {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:0px;
  7376. top:0px;
  7377. width:65px;
  7378. height:22px;
  7379. background:inherit;
  7380. background-color:rgba(255, 255, 255, 0);
  7381. border:none;
  7382. border-radius:0px;
  7383. -moz-box-shadow:none;
  7384. -webkit-box-shadow:none;
  7385. box-shadow:none;
  7386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7387. font-weight:400;
  7388. font-style:normal;
  7389. font-size:16px;
  7390. }
  7391. #u82904 {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:30px;
  7395. top:1472px;
  7396. width:65px;
  7397. height:22px;
  7398. display:flex;
  7399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7400. font-weight:400;
  7401. font-style:normal;
  7402. font-size:16px;
  7403. }
  7404. #u82904 .text {
  7405. position:absolute;
  7406. align-self:flex-start;
  7407. padding:0px 0px 0px 0px;
  7408. box-sizing:border-box;
  7409. width:100%;
  7410. }
  7411. #u82904_text {
  7412. border-width:0px;
  7413. white-space:nowrap;
  7414. text-transform:none;
  7415. }
  7416. #u82905_img {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:0px;
  7420. top:0px;
  7421. width:201px;
  7422. height:2px;
  7423. }
  7424. #u82905 {
  7425. border-width:0px;
  7426. position:absolute;
  7427. left:0px;
  7428. top:1514px;
  7429. width:200px;
  7430. height:1px;
  7431. display:flex;
  7432. }
  7433. #u82905 .text {
  7434. position:absolute;
  7435. align-self:center;
  7436. padding:2px 2px 2px 2px;
  7437. box-sizing:border-box;
  7438. width:100%;
  7439. }
  7440. #u82905_text {
  7441. border-width:0px;
  7442. word-wrap:break-word;
  7443. text-transform:none;
  7444. visibility:hidden;
  7445. }
  7446. #u82906_div {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:0px;
  7450. top:0px;
  7451. width:49px;
  7452. height:22px;
  7453. background:inherit;
  7454. background-color:rgba(255, 255, 255, 0);
  7455. border:none;
  7456. border-radius:0px;
  7457. -moz-box-shadow:none;
  7458. -webkit-box-shadow:none;
  7459. box-shadow:none;
  7460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7461. font-weight:400;
  7462. font-style:normal;
  7463. font-size:16px;
  7464. }
  7465. #u82906 {
  7466. border-width:0px;
  7467. position:absolute;
  7468. left:30px;
  7469. top:1571px;
  7470. width:49px;
  7471. height:22px;
  7472. display:flex;
  7473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7474. font-weight:400;
  7475. font-style:normal;
  7476. font-size:16px;
  7477. }
  7478. #u82906 .text {
  7479. position:absolute;
  7480. align-self:flex-start;
  7481. padding:0px 0px 0px 0px;
  7482. box-sizing:border-box;
  7483. width:100%;
  7484. }
  7485. #u82906_text {
  7486. border-width:0px;
  7487. white-space:nowrap;
  7488. text-transform:none;
  7489. }
  7490. #u82907_div {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:0px;
  7494. top:0px;
  7495. width:49px;
  7496. height:17px;
  7497. background:inherit;
  7498. background-color:rgba(255, 255, 255, 0);
  7499. border:none;
  7500. border-radius:0px;
  7501. -moz-box-shadow:none;
  7502. -webkit-box-shadow:none;
  7503. box-shadow:none;
  7504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7505. font-weight:400;
  7506. font-style:normal;
  7507. font-size:12px;
  7508. color:#AAAAAA;
  7509. }
  7510. #u82907 {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:30px;
  7514. top:1535px;
  7515. width:49px;
  7516. height:17px;
  7517. display:flex;
  7518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7519. font-weight:400;
  7520. font-style:normal;
  7521. font-size:12px;
  7522. color:#AAAAAA;
  7523. }
  7524. #u82907 .text {
  7525. position:absolute;
  7526. align-self:flex-start;
  7527. padding:0px 0px 0px 0px;
  7528. box-sizing:border-box;
  7529. width:100%;
  7530. }
  7531. #u82907_text {
  7532. border-width:0px;
  7533. white-space:nowrap;
  7534. text-transform:none;
  7535. }
  7536. #u82908_div {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:0px;
  7540. top:0px;
  7541. width:49px;
  7542. height:22px;
  7543. background:inherit;
  7544. background-color:rgba(255, 255, 255, 0);
  7545. border:none;
  7546. border-radius:0px;
  7547. -moz-box-shadow:none;
  7548. -webkit-box-shadow:none;
  7549. box-shadow:none;
  7550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7551. font-weight:400;
  7552. font-style:normal;
  7553. font-size:16px;
  7554. }
  7555. #u82908 {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:30px;
  7559. top:1613px;
  7560. width:49px;
  7561. height:22px;
  7562. display:flex;
  7563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7564. font-weight:400;
  7565. font-style:normal;
  7566. font-size:16px;
  7567. }
  7568. #u82908 .text {
  7569. position:absolute;
  7570. align-self:flex-start;
  7571. padding:0px 0px 0px 0px;
  7572. box-sizing:border-box;
  7573. width:100%;
  7574. }
  7575. #u82908_text {
  7576. border-width:0px;
  7577. white-space:nowrap;
  7578. text-transform:none;
  7579. }
  7580. #u82909_div {
  7581. border-width:0px;
  7582. position:absolute;
  7583. left:0px;
  7584. top:0px;
  7585. width:65px;
  7586. height:22px;
  7587. background:inherit;
  7588. background-color:rgba(255, 255, 255, 0);
  7589. border:none;
  7590. border-radius:0px;
  7591. -moz-box-shadow:none;
  7592. -webkit-box-shadow:none;
  7593. box-shadow:none;
  7594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7595. font-weight:400;
  7596. font-style:normal;
  7597. font-size:16px;
  7598. }
  7599. #u82909 {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:30px;
  7603. top:1655px;
  7604. width:65px;
  7605. height:22px;
  7606. display:flex;
  7607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7608. font-weight:400;
  7609. font-style:normal;
  7610. font-size:16px;
  7611. }
  7612. #u82909 .text {
  7613. position:absolute;
  7614. align-self:flex-start;
  7615. padding:0px 0px 0px 0px;
  7616. box-sizing:border-box;
  7617. width:100%;
  7618. }
  7619. #u82909_text {
  7620. border-width:0px;
  7621. white-space:nowrap;
  7622. text-transform:none;
  7623. }
  7624. #u82910_img {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:201px;
  7630. height:2px;
  7631. }
  7632. #u82910 {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:0px;
  7636. top:1697px;
  7637. width:200px;
  7638. height:1px;
  7639. display:flex;
  7640. }
  7641. #u82910 .text {
  7642. position:absolute;
  7643. align-self:center;
  7644. padding:2px 2px 2px 2px;
  7645. box-sizing:border-box;
  7646. width:100%;
  7647. }
  7648. #u82910_text {
  7649. border-width:0px;
  7650. word-wrap:break-word;
  7651. text-transform:none;
  7652. visibility:hidden;
  7653. }
  7654. #u82911_div {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:0px;
  7658. top:0px;
  7659. width:81px;
  7660. height:22px;
  7661. background:inherit;
  7662. background-color:rgba(255, 255, 255, 0);
  7663. border:none;
  7664. border-radius:0px;
  7665. -moz-box-shadow:none;
  7666. -webkit-box-shadow:none;
  7667. box-shadow:none;
  7668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7669. font-weight:400;
  7670. font-style:normal;
  7671. font-size:16px;
  7672. }
  7673. #u82911 {
  7674. border-width:0px;
  7675. position:absolute;
  7676. left:30px;
  7677. top:1754px;
  7678. width:81px;
  7679. height:22px;
  7680. display:flex;
  7681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7682. font-weight:400;
  7683. font-style:normal;
  7684. font-size:16px;
  7685. }
  7686. #u82911 .text {
  7687. position:absolute;
  7688. align-self:flex-start;
  7689. padding:0px 0px 0px 0px;
  7690. box-sizing:border-box;
  7691. width:100%;
  7692. }
  7693. #u82911_text {
  7694. border-width:0px;
  7695. white-space:nowrap;
  7696. text-transform:none;
  7697. }
  7698. #u82912_div {
  7699. border-width:0px;
  7700. position:absolute;
  7701. left:0px;
  7702. top:0px;
  7703. width:49px;
  7704. height:17px;
  7705. background:inherit;
  7706. background-color:rgba(255, 255, 255, 0);
  7707. border:none;
  7708. border-radius:0px;
  7709. -moz-box-shadow:none;
  7710. -webkit-box-shadow:none;
  7711. box-shadow:none;
  7712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7713. font-weight:400;
  7714. font-style:normal;
  7715. font-size:12px;
  7716. color:#AAAAAA;
  7717. }
  7718. #u82912 {
  7719. border-width:0px;
  7720. position:absolute;
  7721. left:30px;
  7722. top:1718px;
  7723. width:49px;
  7724. height:17px;
  7725. display:flex;
  7726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7727. font-weight:400;
  7728. font-style:normal;
  7729. font-size:12px;
  7730. color:#AAAAAA;
  7731. }
  7732. #u82912 .text {
  7733. position:absolute;
  7734. align-self:flex-start;
  7735. padding:0px 0px 0px 0px;
  7736. box-sizing:border-box;
  7737. width:100%;
  7738. }
  7739. #u82912_text {
  7740. border-width:0px;
  7741. white-space:nowrap;
  7742. text-transform:none;
  7743. }
  7744. #u82913_div {
  7745. border-width:0px;
  7746. position:absolute;
  7747. left:0px;
  7748. top:0px;
  7749. width:81px;
  7750. height:22px;
  7751. background:inherit;
  7752. background-color:rgba(255, 255, 255, 0);
  7753. border:none;
  7754. border-radius:0px;
  7755. -moz-box-shadow:none;
  7756. -webkit-box-shadow:none;
  7757. box-shadow:none;
  7758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7759. font-weight:400;
  7760. font-style:normal;
  7761. font-size:16px;
  7762. }
  7763. #u82913 {
  7764. border-width:0px;
  7765. position:absolute;
  7766. left:30px;
  7767. top:1796px;
  7768. width:81px;
  7769. height:22px;
  7770. display:flex;
  7771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7772. font-weight:400;
  7773. font-style:normal;
  7774. font-size:16px;
  7775. }
  7776. #u82913 .text {
  7777. position:absolute;
  7778. align-self:flex-start;
  7779. padding:0px 0px 0px 0px;
  7780. box-sizing:border-box;
  7781. width:100%;
  7782. }
  7783. #u82913_text {
  7784. border-width:0px;
  7785. white-space:nowrap;
  7786. text-transform:none;
  7787. }
  7788. #u82914_div {
  7789. border-width:0px;
  7790. position:absolute;
  7791. left:0px;
  7792. top:0px;
  7793. width:81px;
  7794. height:22px;
  7795. background:inherit;
  7796. background-color:rgba(255, 255, 255, 0);
  7797. border:none;
  7798. border-radius:0px;
  7799. -moz-box-shadow:none;
  7800. -webkit-box-shadow:none;
  7801. box-shadow:none;
  7802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7803. font-weight:400;
  7804. font-style:normal;
  7805. font-size:16px;
  7806. }
  7807. #u82914 {
  7808. border-width:0px;
  7809. position:absolute;
  7810. left:30px;
  7811. top:1838px;
  7812. width:81px;
  7813. height:22px;
  7814. display:flex;
  7815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7816. font-weight:400;
  7817. font-style:normal;
  7818. font-size:16px;
  7819. }
  7820. #u82914 .text {
  7821. position:absolute;
  7822. align-self:flex-start;
  7823. padding:0px 0px 0px 0px;
  7824. box-sizing:border-box;
  7825. width:100%;
  7826. }
  7827. #u82914_text {
  7828. border-width:0px;
  7829. white-space:nowrap;
  7830. text-transform:none;
  7831. }
  7832. #u82915_div {
  7833. border-width:0px;
  7834. position:absolute;
  7835. left:0px;
  7836. top:0px;
  7837. width:65px;
  7838. height:22px;
  7839. background:inherit;
  7840. background-color:rgba(255, 255, 255, 0);
  7841. border:none;
  7842. border-radius:0px;
  7843. -moz-box-shadow:none;
  7844. -webkit-box-shadow:none;
  7845. box-shadow:none;
  7846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7847. font-weight:400;
  7848. font-style:normal;
  7849. font-size:16px;
  7850. }
  7851. #u82915 {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:30px;
  7855. top:1430px;
  7856. width:65px;
  7857. height:22px;
  7858. display:flex;
  7859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7860. font-weight:400;
  7861. font-style:normal;
  7862. font-size:16px;
  7863. }
  7864. #u82915 .text {
  7865. position:absolute;
  7866. align-self:flex-start;
  7867. padding:0px 0px 0px 0px;
  7868. box-sizing:border-box;
  7869. width:100%;
  7870. }
  7871. #u82915_text {
  7872. border-width:0px;
  7873. white-space:nowrap;
  7874. text-transform:none;
  7875. }
  7876. #u82916_img {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:0px;
  7880. top:0px;
  7881. width:201px;
  7882. height:2px;
  7883. }
  7884. #u82916 {
  7885. border-width:0px;
  7886. position:absolute;
  7887. left:0px;
  7888. top:669px;
  7889. width:200px;
  7890. height:1px;
  7891. display:flex;
  7892. }
  7893. #u82916 .text {
  7894. position:absolute;
  7895. align-self:center;
  7896. padding:2px 2px 2px 2px;
  7897. box-sizing:border-box;
  7898. width:100%;
  7899. }
  7900. #u82916_text {
  7901. border-width:0px;
  7902. word-wrap:break-word;
  7903. text-transform:none;
  7904. visibility:hidden;
  7905. }
  7906. #u82917_div {
  7907. border-width:0px;
  7908. position:absolute;
  7909. left:0px;
  7910. top:0px;
  7911. width:65px;
  7912. height:22px;
  7913. background:inherit;
  7914. background-color:rgba(255, 255, 255, 0);
  7915. border:none;
  7916. border-radius:0px;
  7917. -moz-box-shadow:none;
  7918. -webkit-box-shadow:none;
  7919. box-shadow:none;
  7920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7921. font-weight:400;
  7922. font-style:normal;
  7923. font-size:16px;
  7924. }
  7925. #u82917 {
  7926. border-width:0px;
  7927. position:absolute;
  7928. left:30px;
  7929. top:726px;
  7930. width:65px;
  7931. height:22px;
  7932. display:flex;
  7933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7934. font-weight:400;
  7935. font-style:normal;
  7936. font-size:16px;
  7937. }
  7938. #u82917 .text {
  7939. position:absolute;
  7940. align-self:flex-start;
  7941. padding:0px 0px 0px 0px;
  7942. box-sizing:border-box;
  7943. width:100%;
  7944. }
  7945. #u82917_text {
  7946. border-width:0px;
  7947. white-space:nowrap;
  7948. text-transform:none;
  7949. }
  7950. #u82918_div {
  7951. border-width:0px;
  7952. position:absolute;
  7953. left:0px;
  7954. top:0px;
  7955. width:49px;
  7956. height:17px;
  7957. background:inherit;
  7958. background-color:rgba(255, 255, 255, 0);
  7959. border:none;
  7960. border-radius:0px;
  7961. -moz-box-shadow:none;
  7962. -webkit-box-shadow:none;
  7963. box-shadow:none;
  7964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7965. font-weight:400;
  7966. font-style:normal;
  7967. font-size:12px;
  7968. color:#AAAAAA;
  7969. }
  7970. #u82918 {
  7971. border-width:0px;
  7972. position:absolute;
  7973. left:30px;
  7974. top:690px;
  7975. width:49px;
  7976. height:17px;
  7977. display:flex;
  7978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7979. font-weight:400;
  7980. font-style:normal;
  7981. font-size:12px;
  7982. color:#AAAAAA;
  7983. }
  7984. #u82918 .text {
  7985. position:absolute;
  7986. align-self:flex-start;
  7987. padding:0px 0px 0px 0px;
  7988. box-sizing:border-box;
  7989. width:100%;
  7990. }
  7991. #u82918_text {
  7992. border-width:0px;
  7993. white-space:nowrap;
  7994. text-transform:none;
  7995. }
  7996. #u82919_div {
  7997. border-width:0px;
  7998. position:absolute;
  7999. left:0px;
  8000. top:0px;
  8001. width:65px;
  8002. height:22px;
  8003. background:inherit;
  8004. background-color:rgba(255, 255, 255, 0);
  8005. border:none;
  8006. border-radius:0px;
  8007. -moz-box-shadow:none;
  8008. -webkit-box-shadow:none;
  8009. box-shadow:none;
  8010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8011. font-weight:400;
  8012. font-style:normal;
  8013. font-size:16px;
  8014. }
  8015. #u82919 {
  8016. border-width:0px;
  8017. position:absolute;
  8018. left:30px;
  8019. top:768px;
  8020. width:65px;
  8021. height:22px;
  8022. display:flex;
  8023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8024. font-weight:400;
  8025. font-style:normal;
  8026. font-size:16px;
  8027. }
  8028. #u82919 .text {
  8029. position:absolute;
  8030. align-self:flex-start;
  8031. padding:0px 0px 0px 0px;
  8032. box-sizing:border-box;
  8033. width:100%;
  8034. }
  8035. #u82919_text {
  8036. border-width:0px;
  8037. white-space:nowrap;
  8038. text-transform:none;
  8039. }
  8040. #u82920_div {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:0px;
  8044. top:0px;
  8045. width:65px;
  8046. height:22px;
  8047. background:inherit;
  8048. background-color:rgba(255, 255, 255, 0);
  8049. border:none;
  8050. border-radius:0px;
  8051. -moz-box-shadow:none;
  8052. -webkit-box-shadow:none;
  8053. box-shadow:none;
  8054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8055. font-weight:400;
  8056. font-style:normal;
  8057. font-size:16px;
  8058. }
  8059. #u82920 {
  8060. border-width:0px;
  8061. position:absolute;
  8062. left:30px;
  8063. top:852px;
  8064. width:65px;
  8065. height:22px;
  8066. display:flex;
  8067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8068. font-weight:400;
  8069. font-style:normal;
  8070. font-size:16px;
  8071. }
  8072. #u82920 .text {
  8073. position:absolute;
  8074. align-self:flex-start;
  8075. padding:0px 0px 0px 0px;
  8076. box-sizing:border-box;
  8077. width:100%;
  8078. }
  8079. #u82920_text {
  8080. border-width:0px;
  8081. white-space:nowrap;
  8082. text-transform:none;
  8083. }
  8084. #u82921_div {
  8085. border-width:0px;
  8086. position:absolute;
  8087. left:0px;
  8088. top:0px;
  8089. width:65px;
  8090. height:22px;
  8091. background:inherit;
  8092. background-color:rgba(255, 255, 255, 0);
  8093. border:none;
  8094. border-radius:0px;
  8095. -moz-box-shadow:none;
  8096. -webkit-box-shadow:none;
  8097. box-shadow:none;
  8098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8099. font-weight:400;
  8100. font-style:normal;
  8101. font-size:16px;
  8102. }
  8103. #u82921 {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:30px;
  8107. top:810px;
  8108. width:65px;
  8109. height:22px;
  8110. display:flex;
  8111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8112. font-weight:400;
  8113. font-style:normal;
  8114. font-size:16px;
  8115. }
  8116. #u82921 .text {
  8117. position:absolute;
  8118. align-self:flex-start;
  8119. padding:0px 0px 0px 0px;
  8120. box-sizing:border-box;
  8121. width:100%;
  8122. }
  8123. #u82921_text {
  8124. border-width:0px;
  8125. white-space:nowrap;
  8126. text-transform:none;
  8127. }
  8128. #u82922_div {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:0px;
  8132. top:0px;
  8133. width:65px;
  8134. height:22px;
  8135. background:inherit;
  8136. background-color:rgba(255, 255, 255, 0);
  8137. border:none;
  8138. border-radius:0px;
  8139. -moz-box-shadow:none;
  8140. -webkit-box-shadow:none;
  8141. box-shadow:none;
  8142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8143. font-weight:400;
  8144. font-style:normal;
  8145. font-size:16px;
  8146. }
  8147. #u82922 {
  8148. border-width:0px;
  8149. position:absolute;
  8150. left:30px;
  8151. top:894px;
  8152. width:65px;
  8153. height:22px;
  8154. display:flex;
  8155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:16px;
  8159. }
  8160. #u82922 .text {
  8161. position:absolute;
  8162. align-self:flex-start;
  8163. padding:0px 0px 0px 0px;
  8164. box-sizing:border-box;
  8165. width:100%;
  8166. }
  8167. #u82922_text {
  8168. border-width:0px;
  8169. white-space:nowrap;
  8170. text-transform:none;
  8171. }
  8172. #u82923_div {
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:0px;
  8176. top:0px;
  8177. width:65px;
  8178. height:22px;
  8179. background:inherit;
  8180. background-color:rgba(255, 255, 255, 0);
  8181. border:none;
  8182. border-radius:0px;
  8183. -moz-box-shadow:none;
  8184. -webkit-box-shadow:none;
  8185. box-shadow:none;
  8186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8187. font-weight:400;
  8188. font-style:normal;
  8189. font-size:16px;
  8190. }
  8191. #u82923 {
  8192. border-width:0px;
  8193. position:absolute;
  8194. left:30px;
  8195. top:936px;
  8196. width:65px;
  8197. height:22px;
  8198. display:flex;
  8199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8200. font-weight:400;
  8201. font-style:normal;
  8202. font-size:16px;
  8203. }
  8204. #u82923 .text {
  8205. position:absolute;
  8206. align-self:flex-start;
  8207. padding:0px 0px 0px 0px;
  8208. box-sizing:border-box;
  8209. width:100%;
  8210. }
  8211. #u82923_text {
  8212. border-width:0px;
  8213. white-space:nowrap;
  8214. text-transform:none;
  8215. }
  8216. #u82924_img {
  8217. border-width:0px;
  8218. position:absolute;
  8219. left:0px;
  8220. top:0px;
  8221. width:201px;
  8222. height:2px;
  8223. }
  8224. #u82924 {
  8225. border-width:0px;
  8226. position:absolute;
  8227. left:0px;
  8228. top:1018px;
  8229. width:200px;
  8230. height:1px;
  8231. display:flex;
  8232. }
  8233. #u82924 .text {
  8234. position:absolute;
  8235. align-self:center;
  8236. padding:2px 2px 2px 2px;
  8237. box-sizing:border-box;
  8238. width:100%;
  8239. }
  8240. #u82924_text {
  8241. border-width:0px;
  8242. word-wrap:break-word;
  8243. text-transform:none;
  8244. visibility:hidden;
  8245. }
  8246. #u82925_div {
  8247. border-width:0px;
  8248. position:absolute;
  8249. left:0px;
  8250. top:0px;
  8251. width:65px;
  8252. height:22px;
  8253. background:inherit;
  8254. background-color:rgba(255, 255, 255, 0);
  8255. border:none;
  8256. border-radius:0px;
  8257. -moz-box-shadow:none;
  8258. -webkit-box-shadow:none;
  8259. box-shadow:none;
  8260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8261. font-weight:400;
  8262. font-style:normal;
  8263. font-size:16px;
  8264. }
  8265. #u82925 {
  8266. border-width:0px;
  8267. position:absolute;
  8268. left:30px;
  8269. top:1075px;
  8270. width:65px;
  8271. height:22px;
  8272. display:flex;
  8273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8274. font-weight:400;
  8275. font-style:normal;
  8276. font-size:16px;
  8277. }
  8278. #u82925 .text {
  8279. position:absolute;
  8280. align-self:flex-start;
  8281. padding:0px 0px 0px 0px;
  8282. box-sizing:border-box;
  8283. width:100%;
  8284. }
  8285. #u82925_text {
  8286. border-width:0px;
  8287. white-space:nowrap;
  8288. text-transform:none;
  8289. }
  8290. #u82926_div {
  8291. border-width:0px;
  8292. position:absolute;
  8293. left:0px;
  8294. top:0px;
  8295. width:49px;
  8296. height:17px;
  8297. background:inherit;
  8298. background-color:rgba(255, 255, 255, 0);
  8299. border:none;
  8300. border-radius:0px;
  8301. -moz-box-shadow:none;
  8302. -webkit-box-shadow:none;
  8303. box-shadow:none;
  8304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8305. font-weight:400;
  8306. font-style:normal;
  8307. font-size:12px;
  8308. color:#AAAAAA;
  8309. }
  8310. #u82926 {
  8311. border-width:0px;
  8312. position:absolute;
  8313. left:30px;
  8314. top:1039px;
  8315. width:49px;
  8316. height:17px;
  8317. display:flex;
  8318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8319. font-weight:400;
  8320. font-style:normal;
  8321. font-size:12px;
  8322. color:#AAAAAA;
  8323. }
  8324. #u82926 .text {
  8325. position:absolute;
  8326. align-self:flex-start;
  8327. padding:0px 0px 0px 0px;
  8328. box-sizing:border-box;
  8329. width:100%;
  8330. }
  8331. #u82926_text {
  8332. border-width:0px;
  8333. white-space:nowrap;
  8334. text-transform:none;
  8335. }
  8336. #u82927_div {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:0px;
  8340. top:0px;
  8341. width:65px;
  8342. height:22px;
  8343. background:inherit;
  8344. background-color:rgba(255, 255, 255, 0);
  8345. border:none;
  8346. border-radius:0px;
  8347. -moz-box-shadow:none;
  8348. -webkit-box-shadow:none;
  8349. box-shadow:none;
  8350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8351. font-weight:400;
  8352. font-style:normal;
  8353. font-size:16px;
  8354. }
  8355. #u82927 {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:30px;
  8359. top:1117px;
  8360. width:65px;
  8361. height:22px;
  8362. display:flex;
  8363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8364. font-weight:400;
  8365. font-style:normal;
  8366. font-size:16px;
  8367. }
  8368. #u82927 .text {
  8369. position:absolute;
  8370. align-self:flex-start;
  8371. padding:0px 0px 0px 0px;
  8372. box-sizing:border-box;
  8373. width:100%;
  8374. }
  8375. #u82927_text {
  8376. border-width:0px;
  8377. white-space:nowrap;
  8378. text-transform:none;
  8379. }
  8380. #u82928_div {
  8381. border-width:0px;
  8382. position:absolute;
  8383. left:0px;
  8384. top:0px;
  8385. width:65px;
  8386. height:22px;
  8387. background:inherit;
  8388. background-color:rgba(255, 255, 255, 0);
  8389. border:none;
  8390. border-radius:0px;
  8391. -moz-box-shadow:none;
  8392. -webkit-box-shadow:none;
  8393. box-shadow:none;
  8394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8395. font-weight:400;
  8396. font-style:normal;
  8397. font-size:16px;
  8398. }
  8399. #u82928 {
  8400. border-width:0px;
  8401. position:absolute;
  8402. left:30px;
  8403. top:1201px;
  8404. width:65px;
  8405. height:22px;
  8406. display:flex;
  8407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8408. font-weight:400;
  8409. font-style:normal;
  8410. font-size:16px;
  8411. }
  8412. #u82928 .text {
  8413. position:absolute;
  8414. align-self:flex-start;
  8415. padding:0px 0px 0px 0px;
  8416. box-sizing:border-box;
  8417. width:100%;
  8418. }
  8419. #u82928_text {
  8420. border-width:0px;
  8421. white-space:nowrap;
  8422. text-transform:none;
  8423. }
  8424. #u82929_div {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:65px;
  8430. height:22px;
  8431. background:inherit;
  8432. background-color:rgba(255, 255, 255, 0);
  8433. border:none;
  8434. border-radius:0px;
  8435. -moz-box-shadow:none;
  8436. -webkit-box-shadow:none;
  8437. box-shadow:none;
  8438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8439. font-weight:400;
  8440. font-style:normal;
  8441. font-size:16px;
  8442. }
  8443. #u82929 {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:30px;
  8447. top:1159px;
  8448. width:65px;
  8449. height:22px;
  8450. display:flex;
  8451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8452. font-weight:400;
  8453. font-style:normal;
  8454. font-size:16px;
  8455. }
  8456. #u82929 .text {
  8457. position:absolute;
  8458. align-self:flex-start;
  8459. padding:0px 0px 0px 0px;
  8460. box-sizing:border-box;
  8461. width:100%;
  8462. }
  8463. #u82929_text {
  8464. border-width:0px;
  8465. white-space:nowrap;
  8466. text-transform:none;
  8467. }
  8468. #u82930_div {
  8469. border-width:0px;
  8470. position:absolute;
  8471. left:0px;
  8472. top:0px;
  8473. width:65px;
  8474. height:22px;
  8475. background:inherit;
  8476. background-color:rgba(255, 255, 255, 0);
  8477. border:none;
  8478. border-radius:0px;
  8479. -moz-box-shadow:none;
  8480. -webkit-box-shadow:none;
  8481. box-shadow:none;
  8482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8483. font-weight:400;
  8484. font-style:normal;
  8485. font-size:16px;
  8486. }
  8487. #u82930 {
  8488. border-width:0px;
  8489. position:absolute;
  8490. left:30px;
  8491. top:1243px;
  8492. width:65px;
  8493. height:22px;
  8494. display:flex;
  8495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8496. font-weight:400;
  8497. font-style:normal;
  8498. font-size:16px;
  8499. }
  8500. #u82930 .text {
  8501. position:absolute;
  8502. align-self:flex-start;
  8503. padding:0px 0px 0px 0px;
  8504. box-sizing:border-box;
  8505. width:100%;
  8506. }
  8507. #u82930_text {
  8508. border-width:0px;
  8509. white-space:nowrap;
  8510. text-transform:none;
  8511. }
  8512. #u82931_div {
  8513. border-width:0px;
  8514. position:absolute;
  8515. left:0px;
  8516. top:0px;
  8517. width:65px;
  8518. height:22px;
  8519. background:inherit;
  8520. background-color:rgba(255, 255, 255, 0);
  8521. border:none;
  8522. border-radius:0px;
  8523. -moz-box-shadow:none;
  8524. -webkit-box-shadow:none;
  8525. box-shadow:none;
  8526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8527. font-weight:400;
  8528. font-style:normal;
  8529. font-size:16px;
  8530. }
  8531. #u82931 {
  8532. border-width:0px;
  8533. position:absolute;
  8534. left:30px;
  8535. top:978px;
  8536. width:65px;
  8537. height:22px;
  8538. display:flex;
  8539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8540. font-weight:400;
  8541. font-style:normal;
  8542. font-size:16px;
  8543. }
  8544. #u82931 .text {
  8545. position:absolute;
  8546. align-self:flex-start;
  8547. padding:0px 0px 0px 0px;
  8548. box-sizing:border-box;
  8549. width:100%;
  8550. }
  8551. #u82931_text {
  8552. border-width:0px;
  8553. white-space:nowrap;
  8554. text-transform:none;
  8555. }
  8556. #u82932_div {
  8557. border-width:0px;
  8558. position:absolute;
  8559. left:0px;
  8560. top:0px;
  8561. width:65px;
  8562. height:22px;
  8563. background:inherit;
  8564. background-color:rgba(255, 255, 255, 0);
  8565. border:none;
  8566. border-radius:0px;
  8567. -moz-box-shadow:none;
  8568. -webkit-box-shadow:none;
  8569. box-shadow:none;
  8570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8571. font-weight:400;
  8572. font-style:normal;
  8573. font-size:16px;
  8574. }
  8575. #u82932 {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:30px;
  8579. top:622px;
  8580. width:65px;
  8581. height:22px;
  8582. display:flex;
  8583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8584. font-weight:400;
  8585. font-style:normal;
  8586. font-size:16px;
  8587. }
  8588. #u82932 .text {
  8589. position:absolute;
  8590. align-self:flex-start;
  8591. padding:0px 0px 0px 0px;
  8592. box-sizing:border-box;
  8593. width:100%;
  8594. }
  8595. #u82932_text {
  8596. border-width:0px;
  8597. white-space:nowrap;
  8598. text-transform:none;
  8599. }