styles.css 162 KB

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