styles.css 191 KB

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