styles.css 181 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1979px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u3756_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1510px;
  25. height:858px;
  26. }
  27. #u3756 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1510px;
  33. height:858px;
  34. display:flex;
  35. }
  36. #u3756 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u3756_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u3757 {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:0px;
  55. height:0px;
  56. }
  57. #u3758 {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:0px;
  63. height:0px;
  64. }
  65. #u3759_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. #u3759 {
  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. #u3759 .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. #u3759_text {
  107. border-width:0px;
  108. white-space:nowrap;
  109. text-transform:none;
  110. }
  111. #u3760_img {
  112. border-width:0px;
  113. position:absolute;
  114. left:0px;
  115. top:0px;
  116. width:33px;
  117. height:39px;
  118. }
  119. #u3760 {
  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. #u3760 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u3760_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. }
  141. #u3761 {
  142. border-width:0px;
  143. position:absolute;
  144. left:0px;
  145. top:0px;
  146. width:0px;
  147. height:0px;
  148. }
  149. #u3762_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. #u3762 {
  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. #u3762 .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. #u3762_text {
  191. border-width:0px;
  192. white-space:nowrap;
  193. text-transform:none;
  194. }
  195. #u3763_img {
  196. border-width:0px;
  197. position:absolute;
  198. left:0px;
  199. top:0px;
  200. width:33px;
  201. height:39px;
  202. }
  203. #u3763 {
  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. #u3763 .text {
  214. position:absolute;
  215. align-self:center;
  216. padding:2px 2px 2px 2px;
  217. box-sizing:border-box;
  218. width:100%;
  219. }
  220. #u3763_text {
  221. border-width:0px;
  222. word-wrap:break-word;
  223. text-transform:none;
  224. }
  225. #u3764 {
  226. border-width:0px;
  227. position:absolute;
  228. left:0px;
  229. top:0px;
  230. width:0px;
  231. height:0px;
  232. }
  233. #u3765_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. #u3765 {
  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. #u3765 .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. #u3765_text {
  275. border-width:0px;
  276. white-space:nowrap;
  277. text-transform:none;
  278. }
  279. #u3766_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:33px;
  285. height:39px;
  286. }
  287. #u3766 {
  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. #u3766 .text {
  298. position:absolute;
  299. align-self:center;
  300. padding:2px 2px 2px 2px;
  301. box-sizing:border-box;
  302. width:100%;
  303. }
  304. #u3766_text {
  305. border-width:0px;
  306. word-wrap:break-word;
  307. text-transform:none;
  308. }
  309. #u3767_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. #u3767 {
  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. #u3767 .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. #u3767_text {
  351. border-width:0px;
  352. word-wrap:break-word;
  353. text-transform:none;
  354. }
  355. #u3768 {
  356. border-width:0px;
  357. position:absolute;
  358. left:0px;
  359. top:0px;
  360. width:0px;
  361. height:0px;
  362. }
  363. #u3769_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. #u3769 {
  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. #u3769 .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. #u3769_text {
  405. border-width:0px;
  406. white-space:nowrap;
  407. text-transform:none;
  408. }
  409. #u3770_img {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:33px;
  415. height:39px;
  416. }
  417. #u3770 {
  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. #u3770 .text {
  428. position:absolute;
  429. align-self:center;
  430. padding:2px 2px 2px 2px;
  431. box-sizing:border-box;
  432. width:100%;
  433. }
  434. #u3770_text {
  435. border-width:0px;
  436. word-wrap:break-word;
  437. text-transform:none;
  438. }
  439. #u3771 {
  440. border-width:0px;
  441. position:absolute;
  442. left:0px;
  443. top:0px;
  444. width:0px;
  445. height:0px;
  446. }
  447. #u3772_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. #u3772 {
  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. #u3772 .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. #u3772_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u3773_img {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:33px;
  499. height:39px;
  500. }
  501. #u3773 {
  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. #u3773 .text {
  512. position:absolute;
  513. align-self:center;
  514. padding:2px 2px 2px 2px;
  515. box-sizing:border-box;
  516. width:100%;
  517. }
  518. #u3773_text {
  519. border-width:0px;
  520. word-wrap:break-word;
  521. text-transform:none;
  522. }
  523. #u3774 {
  524. border-width:0px;
  525. position:absolute;
  526. left:0px;
  527. top:0px;
  528. width:0px;
  529. height:0px;
  530. }
  531. #u3775_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. #u3775 {
  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. #u3775 .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. #u3775_text {
  573. border-width:0px;
  574. white-space:nowrap;
  575. text-transform:none;
  576. }
  577. #u3776_img {
  578. border-width:0px;
  579. position:absolute;
  580. left:0px;
  581. top:0px;
  582. width:33px;
  583. height:39px;
  584. }
  585. #u3776 {
  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. #u3776 .text {
  596. position:absolute;
  597. align-self:center;
  598. padding:2px 2px 2px 2px;
  599. box-sizing:border-box;
  600. width:100%;
  601. }
  602. #u3776_text {
  603. border-width:0px;
  604. word-wrap:break-word;
  605. text-transform:none;
  606. }
  607. #u3777 {
  608. border-width:0px;
  609. position:absolute;
  610. left:0px;
  611. top:0px;
  612. width:0px;
  613. height:0px;
  614. }
  615. #u3778_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. #u3778 {
  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. #u3778 .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. #u3778_text {
  657. border-width:0px;
  658. word-wrap:break-word;
  659. text-transform:none;
  660. }
  661. #u3779_img {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:33px;
  667. height:39px;
  668. }
  669. #u3779 {
  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. #u3779 .text {
  680. position:absolute;
  681. align-self:center;
  682. padding:2px 2px 2px 2px;
  683. box-sizing:border-box;
  684. width:100%;
  685. }
  686. #u3779_text {
  687. border-width:0px;
  688. word-wrap:break-word;
  689. text-transform:none;
  690. }
  691. #u3780 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u3781_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. #u3781 {
  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. #u3781 .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. #u3781_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u3782_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:33px;
  751. height:39px;
  752. }
  753. #u3782 {
  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. #u3782 .text {
  764. position:absolute;
  765. align-self:center;
  766. padding:2px 2px 2px 2px;
  767. box-sizing:border-box;
  768. width:100%;
  769. }
  770. #u3782_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. }
  775. #u3783 {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:0px;
  781. height:0px;
  782. }
  783. #u3784_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. #u3784 {
  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. #u3784 .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. #u3784_text {
  827. border-width:0px;
  828. word-wrap:break-word;
  829. text-transform:none;
  830. }
  831. #u3785_img {
  832. border-width:0px;
  833. position:absolute;
  834. left:0px;
  835. top:0px;
  836. width:33px;
  837. height:39px;
  838. }
  839. #u3785 {
  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. #u3785 .text {
  850. position:absolute;
  851. align-self:center;
  852. padding:2px 2px 2px 2px;
  853. box-sizing:border-box;
  854. width:100%;
  855. }
  856. #u3785_text {
  857. border-width:0px;
  858. word-wrap:break-word;
  859. text-transform:none;
  860. }
  861. #u3786 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u3787_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. #u3787 {
  895. border-width:0px;
  896. position:absolute;
  897. left:606px;
  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. #u3787 .text {
  909. position:absolute;
  910. align-self:center;
  911. padding:2px 2px 2px 2px;
  912. box-sizing:border-box;
  913. width:100%;
  914. }
  915. #u3787_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. }
  920. #u3788_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. #u3788 {
  946. border-width:0px;
  947. position:absolute;
  948. left:686px;
  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. #u3788 .text {
  960. position:absolute;
  961. align-self:center;
  962. padding:2px 2px 2px 2px;
  963. box-sizing:border-box;
  964. width:100%;
  965. }
  966. #u3788_text {
  967. border-width:0px;
  968. word-wrap:break-word;
  969. text-transform:none;
  970. }
  971. #u3789_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. #u3789 {
  997. border-width:0px;
  998. position:absolute;
  999. left:766px;
  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. #u3789 .text {
  1011. position:absolute;
  1012. align-self:center;
  1013. padding:2px 2px 2px 2px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u3789_text {
  1018. border-width:0px;
  1019. word-wrap:break-word;
  1020. text-transform:none;
  1021. }
  1022. #u3790_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. #u3790 {
  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. #u3790 .text {
  1067. position:absolute;
  1068. align-self:center;
  1069. padding:2px 2px 2px 10px;
  1070. box-sizing:border-box;
  1071. width:100%;
  1072. }
  1073. #u3790_text {
  1074. border-width:0px;
  1075. word-wrap:break-word;
  1076. text-transform:none;
  1077. }
  1078. #u3791_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:240px;
  1084. height:40px;
  1085. background:inherit;
  1086. background-color:rgba(245, 154, 35, 0.2);
  1087. box-sizing:border-box;
  1088. border-width:2px;
  1089. border-style:solid;
  1090. border-color:rgba(245, 154, 35, 1);
  1091. border-left:0px;
  1092. border-top:0px;
  1093. border-right:0px;
  1094. border-radius:0px;
  1095. border-bottom-right-radius:0px;
  1096. border-bottom-left-radius:0px;
  1097. -moz-box-shadow:none;
  1098. -webkit-box-shadow:none;
  1099. box-shadow:none;
  1100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:18px;
  1104. color:#FFFFFF;
  1105. text-align:left;
  1106. }
  1107. #u3791 {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:1236px;
  1111. top:109px;
  1112. width:240px;
  1113. height:40px;
  1114. display:flex;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:18px;
  1119. color:#FFFFFF;
  1120. text-align:left;
  1121. }
  1122. #u3791 .text {
  1123. position:absolute;
  1124. align-self:center;
  1125. padding:2px 2px 2px 10px;
  1126. box-sizing:border-box;
  1127. width:100%;
  1128. }
  1129. #u3791_text {
  1130. border-width:0px;
  1131. word-wrap:break-word;
  1132. text-transform:none;
  1133. }
  1134. #u3792_img {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:80px;
  1140. height:80px;
  1141. }
  1142. #u3792 {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:1246px;
  1146. top:169px;
  1147. width:80px;
  1148. height:80px;
  1149. display:flex;
  1150. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1151. font-style:normal;
  1152. color:#FFFFFF;
  1153. }
  1154. #u3792 .text {
  1155. position:absolute;
  1156. align-self:center;
  1157. padding:2px 2px 2px 2px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u3792_text {
  1162. border-width:0px;
  1163. word-wrap:break-word;
  1164. text-transform:none;
  1165. }
  1166. #u3793_div {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:82px;
  1172. height:64px;
  1173. background:inherit;
  1174. background-color:rgba(255, 255, 255, 0);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1181. font-weight:400;
  1182. font-style:normal;
  1183. font-size:12px;
  1184. color:rgba(255, 255, 255, 0.698039215686274);
  1185. text-align:left;
  1186. line-height:30px;
  1187. }
  1188. #u3793 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1386px;
  1192. top:177px;
  1193. width:82px;
  1194. height:64px;
  1195. display:flex;
  1196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1197. font-weight:400;
  1198. font-style:normal;
  1199. font-size:12px;
  1200. color:rgba(255, 255, 255, 0.698039215686274);
  1201. text-align:left;
  1202. line-height:30px;
  1203. }
  1204. #u3793 .text {
  1205. position:absolute;
  1206. align-self:center;
  1207. padding:2px 2px 2px 2px;
  1208. box-sizing:border-box;
  1209. width:100%;
  1210. }
  1211. #u3793_text {
  1212. border-width:0px;
  1213. white-space:nowrap;
  1214. text-transform:none;
  1215. }
  1216. #u3794_div {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:0px;
  1220. top:0px;
  1221. width:90px;
  1222. height:21px;
  1223. background:inherit;
  1224. background-color:rgba(245, 154, 35, 1);
  1225. border:none;
  1226. border-radius:40px;
  1227. -moz-box-shadow:none;
  1228. -webkit-box-shadow:none;
  1229. box-shadow:none;
  1230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1231. font-weight:400;
  1232. font-style:normal;
  1233. font-size:12px;
  1234. color:rgba(255, 255, 255, 0.698039215686274);
  1235. }
  1236. #u3794 {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:1296px;
  1240. top:159px;
  1241. width:90px;
  1242. height:21px;
  1243. display:flex;
  1244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1245. font-weight:400;
  1246. font-style:normal;
  1247. font-size:12px;
  1248. color:rgba(255, 255, 255, 0.698039215686274);
  1249. }
  1250. #u3794 .text {
  1251. position:absolute;
  1252. align-self:center;
  1253. padding:2px 2px 2px 2px;
  1254. box-sizing:border-box;
  1255. width:100%;
  1256. }
  1257. #u3794_text {
  1258. border-width:0px;
  1259. word-wrap:break-word;
  1260. text-transform:none;
  1261. }
  1262. #u3795_div {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:0px;
  1266. top:0px;
  1267. width:4px;
  1268. height:100px;
  1269. background:inherit;
  1270. background-color:rgba(255, 255, 255, 0.803921568627451);
  1271. border:none;
  1272. border-radius:2px;
  1273. -moz-box-shadow:none;
  1274. -webkit-box-shadow:none;
  1275. box-shadow:none;
  1276. font-size:12px;
  1277. }
  1278. #u3795 {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:1493px;
  1282. top:423px;
  1283. width:4px;
  1284. height:100px;
  1285. display:flex;
  1286. font-size:12px;
  1287. }
  1288. #u3795 .text {
  1289. position:absolute;
  1290. align-self:center;
  1291. padding:2px 2px 2px 2px;
  1292. box-sizing:border-box;
  1293. width:100%;
  1294. }
  1295. #u3795_text {
  1296. border-width:0px;
  1297. word-wrap:break-word;
  1298. text-transform:none;
  1299. visibility:hidden;
  1300. }
  1301. #u3796_img {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:0px;
  1305. top:0px;
  1306. width:96px;
  1307. height:96px;
  1308. }
  1309. #u3796 {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:45px;
  1313. top:197px;
  1314. width:96px;
  1315. height:96px;
  1316. display:flex;
  1317. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1318. font-style:normal;
  1319. color:#FFFFFF;
  1320. }
  1321. #u3796 .text {
  1322. position:absolute;
  1323. align-self:center;
  1324. padding:2px 2px 2px 2px;
  1325. box-sizing:border-box;
  1326. width:100%;
  1327. }
  1328. #u3796_text {
  1329. border-width:0px;
  1330. word-wrap:break-word;
  1331. text-transform:none;
  1332. }
  1333. #u3797_div {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:70px;
  1339. height:94px;
  1340. background:inherit;
  1341. background-color:rgba(255, 255, 255, 0);
  1342. border:none;
  1343. border-radius:0px;
  1344. -moz-box-shadow:none;
  1345. -webkit-box-shadow:none;
  1346. box-shadow:none;
  1347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1348. font-weight:400;
  1349. font-style:normal;
  1350. font-size:12px;
  1351. color:rgba(255, 255, 255, 0.698039215686274);
  1352. text-align:left;
  1353. line-height:30px;
  1354. }
  1355. #u3797 {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:161px;
  1359. top:197px;
  1360. width:70px;
  1361. height:94px;
  1362. display:flex;
  1363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:12px;
  1367. color:rgba(255, 255, 255, 0.698039215686274);
  1368. text-align:left;
  1369. line-height:30px;
  1370. }
  1371. #u3797 .text {
  1372. position:absolute;
  1373. align-self:center;
  1374. padding:2px 2px 2px 2px;
  1375. box-sizing:border-box;
  1376. width:100%;
  1377. }
  1378. #u3797_text {
  1379. border-width:0px;
  1380. white-space:nowrap;
  1381. text-transform:none;
  1382. }
  1383. #u3798 {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:0px;
  1387. top:0px;
  1388. width:0px;
  1389. height:0px;
  1390. }
  1391. #u3799_div {
  1392. border-width:0px;
  1393. position:absolute;
  1394. left:0px;
  1395. top:0px;
  1396. width:253px;
  1397. height:22px;
  1398. background:inherit;
  1399. background-color:rgba(255, 255, 255, 0.152941176470588);
  1400. border:none;
  1401. border-radius:0px;
  1402. -moz-box-shadow:none;
  1403. -webkit-box-shadow:none;
  1404. box-shadow:none;
  1405. font-size:12px;
  1406. }
  1407. #u3799 {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:1234px;
  1411. top:396px;
  1412. width:253px;
  1413. height:22px;
  1414. display:flex;
  1415. font-size:12px;
  1416. }
  1417. #u3799 .text {
  1418. position:absolute;
  1419. align-self:center;
  1420. padding:2px 2px 2px 2px;
  1421. box-sizing:border-box;
  1422. width:100%;
  1423. }
  1424. #u3799_text {
  1425. border-width:0px;
  1426. word-wrap:break-word;
  1427. text-transform:none;
  1428. visibility:hidden;
  1429. }
  1430. #u3800_div {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:53px;
  1436. height:21px;
  1437. background:inherit;
  1438. background-color:rgba(255, 255, 255, 0);
  1439. border:none;
  1440. border-radius:0px;
  1441. -moz-box-shadow:none;
  1442. -webkit-box-shadow:none;
  1443. box-shadow:none;
  1444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1445. font-weight:400;
  1446. font-style:normal;
  1447. font-size:12px;
  1448. color:rgba(242, 242, 242, 0.698039215686274);
  1449. text-align:left;
  1450. }
  1451. #u3800 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:1244px;
  1455. top:396px;
  1456. width:53px;
  1457. height:21px;
  1458. display:flex;
  1459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1460. font-weight:400;
  1461. font-style:normal;
  1462. font-size:12px;
  1463. color:rgba(242, 242, 242, 0.698039215686274);
  1464. text-align:left;
  1465. }
  1466. #u3800 .text {
  1467. position:absolute;
  1468. align-self:center;
  1469. padding:2px 2px 2px 2px;
  1470. box-sizing:border-box;
  1471. width:100%;
  1472. }
  1473. #u3800_text {
  1474. border-width:0px;
  1475. white-space:nowrap;
  1476. text-transform:none;
  1477. }
  1478. #u3801_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:41px;
  1484. height:21px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:12px;
  1496. color:rgba(242, 242, 242, 0.698039215686274);
  1497. text-align:left;
  1498. }
  1499. #u3801 {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:1381px;
  1503. top:396px;
  1504. width:41px;
  1505. height:21px;
  1506. display:flex;
  1507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1508. font-weight:400;
  1509. font-style:normal;
  1510. font-size:12px;
  1511. color:rgba(242, 242, 242, 0.698039215686274);
  1512. text-align:left;
  1513. }
  1514. #u3801 .text {
  1515. position:absolute;
  1516. align-self:center;
  1517. padding:2px 2px 2px 2px;
  1518. box-sizing:border-box;
  1519. width:100%;
  1520. }
  1521. #u3801_text {
  1522. border-width:0px;
  1523. white-space:nowrap;
  1524. text-transform:none;
  1525. }
  1526. #u3802_div {
  1527. border-width:0px;
  1528. position:absolute;
  1529. left:0px;
  1530. top:0px;
  1531. width:29px;
  1532. height:21px;
  1533. background:inherit;
  1534. background-color:rgba(255, 255, 255, 0);
  1535. border:none;
  1536. border-radius:0px;
  1537. -moz-box-shadow:none;
  1538. -webkit-box-shadow:none;
  1539. box-shadow:none;
  1540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1541. font-weight:400;
  1542. font-style:normal;
  1543. font-size:12px;
  1544. color:rgba(242, 242, 242, 0.698039215686274);
  1545. text-align:left;
  1546. }
  1547. #u3802 {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:1326px;
  1551. top:396px;
  1552. width:29px;
  1553. height:21px;
  1554. display:flex;
  1555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1556. font-weight:400;
  1557. font-style:normal;
  1558. font-size:12px;
  1559. color:rgba(242, 242, 242, 0.698039215686274);
  1560. text-align:left;
  1561. }
  1562. #u3802 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u3802_text {
  1570. border-width:0px;
  1571. white-space:nowrap;
  1572. text-transform:none;
  1573. }
  1574. #u3803_div {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:41px;
  1580. height:21px;
  1581. background:inherit;
  1582. background-color:rgba(255, 255, 255, 0);
  1583. border:none;
  1584. border-radius:0px;
  1585. -moz-box-shadow:none;
  1586. -webkit-box-shadow:none;
  1587. box-shadow:none;
  1588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1589. font-weight:400;
  1590. font-style:normal;
  1591. font-size:12px;
  1592. color:rgba(242, 242, 242, 0.698039215686274);
  1593. text-align:left;
  1594. }
  1595. #u3803 {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:1436px;
  1599. top:396px;
  1600. width:41px;
  1601. height:21px;
  1602. display:flex;
  1603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1604. font-weight:400;
  1605. font-style:normal;
  1606. font-size:12px;
  1607. color:rgba(242, 242, 242, 0.698039215686274);
  1608. text-align:left;
  1609. }
  1610. #u3803 .text {
  1611. position:absolute;
  1612. align-self:center;
  1613. padding:2px 2px 2px 2px;
  1614. box-sizing:border-box;
  1615. width:100%;
  1616. }
  1617. #u3803_text {
  1618. border-width:0px;
  1619. white-space:nowrap;
  1620. text-transform:none;
  1621. }
  1622. #u3804 {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:0px;
  1626. top:0px;
  1627. width:0px;
  1628. height:0px;
  1629. }
  1630. #u3805_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:240px;
  1636. height:23px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 0);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:none;
  1642. -webkit-box-shadow:none;
  1643. box-shadow:none;
  1644. font-size:12px;
  1645. }
  1646. #u3805 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:1241px;
  1650. top:422px;
  1651. width:240px;
  1652. height:23px;
  1653. display:flex;
  1654. font-size:12px;
  1655. }
  1656. #u3805 .text {
  1657. position:absolute;
  1658. align-self:center;
  1659. padding:2px 2px 2px 2px;
  1660. box-sizing:border-box;
  1661. width:100%;
  1662. }
  1663. #u3805_text {
  1664. border-width:0px;
  1665. word-wrap:break-word;
  1666. text-transform:none;
  1667. visibility:hidden;
  1668. }
  1669. #u3806_div {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:53px;
  1675. height:21px;
  1676. background:inherit;
  1677. background-color:rgba(255, 255, 255, 0);
  1678. border:none;
  1679. border-radius:0px;
  1680. -moz-box-shadow:none;
  1681. -webkit-box-shadow:none;
  1682. box-shadow:none;
  1683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1684. font-weight:400;
  1685. font-style:normal;
  1686. font-size:12px;
  1687. color:rgba(255, 255, 255, 0.698039215686274);
  1688. text-align:left;
  1689. }
  1690. #u3806 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:1241px;
  1694. top:423px;
  1695. width:53px;
  1696. height:21px;
  1697. display:flex;
  1698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1699. font-weight:400;
  1700. font-style:normal;
  1701. font-size:12px;
  1702. color:rgba(255, 255, 255, 0.698039215686274);
  1703. text-align:left;
  1704. }
  1705. #u3806 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 2px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u3806_text {
  1713. border-width:0px;
  1714. white-space:nowrap;
  1715. text-transform:none;
  1716. }
  1717. #u3807_div {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:19px;
  1723. height:21px;
  1724. background:inherit;
  1725. background-color:rgba(255, 255, 255, 0);
  1726. border:none;
  1727. border-radius:0px;
  1728. -moz-box-shadow:none;
  1729. -webkit-box-shadow:none;
  1730. box-shadow:none;
  1731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1732. font-weight:400;
  1733. font-style:normal;
  1734. font-size:12px;
  1735. color:#FFFFFF;
  1736. text-align:left;
  1737. }
  1738. #u3807 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:1327px;
  1742. top:423px;
  1743. width:19px;
  1744. height:21px;
  1745. display:flex;
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:12px;
  1750. color:#FFFFFF;
  1751. text-align:left;
  1752. }
  1753. #u3807 .text {
  1754. position:absolute;
  1755. align-self:center;
  1756. padding:2px 2px 2px 2px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u3807_text {
  1761. border-width:0px;
  1762. white-space:nowrap;
  1763. text-transform:none;
  1764. }
  1765. #u3808_div {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:49px;
  1771. height:21px;
  1772. background:inherit;
  1773. background-color:rgba(255, 255, 255, 0);
  1774. border:none;
  1775. border-radius:0px;
  1776. -moz-box-shadow:none;
  1777. -webkit-box-shadow:none;
  1778. box-shadow:none;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:12px;
  1783. color:#FFFFFF;
  1784. text-align:left;
  1785. }
  1786. #u3808 {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:1436px;
  1790. top:423px;
  1791. width:49px;
  1792. height:21px;
  1793. display:flex;
  1794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:12px;
  1798. color:#FFFFFF;
  1799. text-align:left;
  1800. }
  1801. #u3808 .text {
  1802. position:absolute;
  1803. align-self:center;
  1804. padding:2px 2px 2px 2px;
  1805. box-sizing:border-box;
  1806. width:100%;
  1807. }
  1808. #u3808_text {
  1809. border-width:0px;
  1810. white-space:nowrap;
  1811. text-transform:none;
  1812. }
  1813. #u3809_div {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:0px;
  1817. top:0px;
  1818. width:19px;
  1819. height:21px;
  1820. background:inherit;
  1821. background-color:rgba(255, 255, 255, 0);
  1822. border:none;
  1823. border-radius:0px;
  1824. -moz-box-shadow:none;
  1825. -webkit-box-shadow:none;
  1826. box-shadow:none;
  1827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:12px;
  1831. color:#FFFFFF;
  1832. text-align:left;
  1833. }
  1834. #u3809 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:1392px;
  1838. top:423px;
  1839. width:19px;
  1840. height:21px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:12px;
  1846. color:#FFFFFF;
  1847. text-align:left;
  1848. }
  1849. #u3809 .text {
  1850. position:absolute;
  1851. align-self:center;
  1852. padding:2px 2px 2px 2px;
  1853. box-sizing:border-box;
  1854. width:100%;
  1855. }
  1856. #u3809_text {
  1857. border-width:0px;
  1858. white-space:nowrap;
  1859. text-transform:none;
  1860. }
  1861. #u3810_div {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:41px;
  1867. height:124px;
  1868. background:inherit;
  1869. background-color:rgba(255, 255, 255, 0);
  1870. border:none;
  1871. border-radius:0px;
  1872. -moz-box-shadow:none;
  1873. -webkit-box-shadow:none;
  1874. box-shadow:none;
  1875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1876. font-weight:400;
  1877. font-style:normal;
  1878. font-size:12px;
  1879. color:rgba(255, 255, 255, 0.698039215686274);
  1880. text-align:left;
  1881. line-height:40px;
  1882. }
  1883. #u3810 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:43px;
  1887. top:396px;
  1888. width:41px;
  1889. height:124px;
  1890. display:flex;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:12px;
  1895. color:rgba(255, 255, 255, 0.698039215686274);
  1896. text-align:left;
  1897. line-height:40px;
  1898. }
  1899. #u3810 .text {
  1900. position:absolute;
  1901. align-self:center;
  1902. padding:2px 2px 2px 2px;
  1903. box-sizing:border-box;
  1904. width:100%;
  1905. }
  1906. #u3810_text {
  1907. border-width:0px;
  1908. white-space:nowrap;
  1909. text-transform:none;
  1910. }
  1911. #u3811 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:0px;
  1915. top:0px;
  1916. width:0px;
  1917. height:0px;
  1918. }
  1919. #u3812_img {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:240px;
  1925. height:30px;
  1926. }
  1927. #u3812 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:33px;
  1931. top:316px;
  1932. width:240px;
  1933. height:30px;
  1934. display:flex;
  1935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1936. font-weight:400;
  1937. font-style:normal;
  1938. font-size:12px;
  1939. color:#FFFFFF;
  1940. text-align:left;
  1941. }
  1942. #u3812 .text {
  1943. position:absolute;
  1944. align-self:center;
  1945. padding:2px 2px 2px 10px;
  1946. box-sizing:border-box;
  1947. width:100%;
  1948. }
  1949. #u3812_text {
  1950. border-width:0px;
  1951. word-wrap:break-word;
  1952. text-transform:none;
  1953. visibility:hidden;
  1954. }
  1955. #u3813_div {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:85px;
  1961. height:17px;
  1962. background:inherit;
  1963. background-color:rgba(255, 255, 255, 0);
  1964. border:none;
  1965. border-radius:0px;
  1966. -moz-box-shadow:none;
  1967. -webkit-box-shadow:none;
  1968. box-shadow:none;
  1969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1970. font-weight:400;
  1971. font-style:normal;
  1972. font-size:12px;
  1973. color:#FFFFFF;
  1974. }
  1975. #u3813 {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:43px;
  1979. top:321px;
  1980. width:85px;
  1981. height:17px;
  1982. display:flex;
  1983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1984. font-weight:400;
  1985. font-style:normal;
  1986. font-size:12px;
  1987. color:#FFFFFF;
  1988. }
  1989. #u3813 .text {
  1990. position:absolute;
  1991. align-self:flex-start;
  1992. padding:0px 0px 0px 0px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u3813_text {
  1997. border-width:0px;
  1998. white-space:nowrap;
  1999. text-transform:none;
  2000. }
  2001. #u3814_div {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:47px;
  2007. height:124px;
  2008. background:inherit;
  2009. background-color:rgba(255, 255, 255, 0);
  2010. border:none;
  2011. border-radius:0px;
  2012. -moz-box-shadow:none;
  2013. -webkit-box-shadow:none;
  2014. box-shadow:none;
  2015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2016. font-weight:400;
  2017. font-style:normal;
  2018. font-size:12px;
  2019. color:rgba(255, 255, 255, 0.698039215686274);
  2020. text-align:right;
  2021. line-height:40px;
  2022. }
  2023. #u3814 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:207px;
  2027. top:396px;
  2028. width:47px;
  2029. height:124px;
  2030. display:flex;
  2031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:12px;
  2035. color:rgba(255, 255, 255, 0.698039215686274);
  2036. text-align:right;
  2037. line-height:40px;
  2038. }
  2039. #u3814 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:2px 2px 2px 2px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u3814_text {
  2047. border-width:0px;
  2048. white-space:nowrap;
  2049. text-transform:none;
  2050. }
  2051. #u3815_div {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:39px;
  2057. height:124px;
  2058. background:inherit;
  2059. background-color:rgba(255, 255, 255, 0);
  2060. border:none;
  2061. border-radius:0px;
  2062. -moz-box-shadow:none;
  2063. -webkit-box-shadow:none;
  2064. box-shadow:none;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:12px;
  2069. color:rgba(255, 255, 255, 0.698039215686274);
  2070. text-align:right;
  2071. line-height:40px;
  2072. }
  2073. #u3815 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:160px;
  2077. top:396px;
  2078. width:39px;
  2079. height:124px;
  2080. display:flex;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:12px;
  2085. color:rgba(255, 255, 255, 0.698039215686274);
  2086. text-align:right;
  2087. line-height:40px;
  2088. }
  2089. #u3815 .text {
  2090. position:absolute;
  2091. align-self:center;
  2092. padding:2px 2px 2px 2px;
  2093. box-sizing:border-box;
  2094. width:100%;
  2095. }
  2096. #u3815_text {
  2097. border-width:0px;
  2098. white-space:nowrap;
  2099. text-transform:none;
  2100. }
  2101. #u3816_div {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:53px;
  2107. height:30px;
  2108. background:inherit;
  2109. background-color:rgba(245, 154, 35, 0);
  2110. box-sizing:border-box;
  2111. border-width:2px;
  2112. border-style:solid;
  2113. border-color:rgba(245, 154, 35, 1);
  2114. border-left:0px;
  2115. border-top:0px;
  2116. border-right:0px;
  2117. border-radius:0px;
  2118. border-bottom-right-radius:0px;
  2119. border-bottom-left-radius:0px;
  2120. -moz-box-shadow:none;
  2121. -webkit-box-shadow:none;
  2122. box-shadow:none;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:12px;
  2127. color:#FFFFFF;
  2128. text-align:left;
  2129. }
  2130. #u3816 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:43px;
  2134. top:356px;
  2135. width:53px;
  2136. height:30px;
  2137. display:flex;
  2138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2139. font-weight:400;
  2140. font-style:normal;
  2141. font-size:12px;
  2142. color:#FFFFFF;
  2143. text-align:left;
  2144. }
  2145. #u3816 .text {
  2146. position:absolute;
  2147. align-self:center;
  2148. padding:2px 2px 2px 2px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u3816_text {
  2153. border-width:0px;
  2154. white-space:nowrap;
  2155. text-transform:none;
  2156. }
  2157. #u3817_div {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:53px;
  2163. height:30px;
  2164. background:inherit;
  2165. background-color:rgba(245, 154, 35, 0);
  2166. border:none;
  2167. border-left:0px;
  2168. border-top:0px;
  2169. border-right:0px;
  2170. border-radius:0px;
  2171. border-bottom-right-radius:0px;
  2172. border-bottom-left-radius:0px;
  2173. -moz-box-shadow:none;
  2174. -webkit-box-shadow:none;
  2175. box-shadow:none;
  2176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:12px;
  2180. color:#FFFFFF;
  2181. text-align:left;
  2182. }
  2183. #u3817 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:106px;
  2187. top:356px;
  2188. width:53px;
  2189. height:30px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:12px;
  2195. color:#FFFFFF;
  2196. text-align:left;
  2197. }
  2198. #u3817 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:2px 2px 2px 2px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u3817_text {
  2206. border-width:0px;
  2207. white-space:nowrap;
  2208. text-transform:none;
  2209. }
  2210. #u3818_div {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:53px;
  2216. height:30px;
  2217. background:inherit;
  2218. background-color:rgba(245, 154, 35, 0);
  2219. border:none;
  2220. border-left:0px;
  2221. border-top:0px;
  2222. border-right:0px;
  2223. border-radius:0px;
  2224. border-bottom-right-radius:0px;
  2225. border-bottom-left-radius:0px;
  2226. -moz-box-shadow:none;
  2227. -webkit-box-shadow:none;
  2228. box-shadow:none;
  2229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2230. font-weight:400;
  2231. font-style:normal;
  2232. font-size:12px;
  2233. color:#FFFFFF;
  2234. text-align:left;
  2235. }
  2236. #u3818 {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:169px;
  2240. top:356px;
  2241. width:53px;
  2242. height:30px;
  2243. display:flex;
  2244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2245. font-weight:400;
  2246. font-style:normal;
  2247. font-size:12px;
  2248. color:#FFFFFF;
  2249. text-align:left;
  2250. }
  2251. #u3818 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 2px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u3818_text {
  2259. border-width:0px;
  2260. white-space:nowrap;
  2261. text-transform:none;
  2262. }
  2263. #u3819 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:0px;
  2269. height:0px;
  2270. }
  2271. #u3820_div {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:0px;
  2275. top:0px;
  2276. width:440px;
  2277. height:300px;
  2278. background:inherit;
  2279. background-color:rgba(95, 72, 47, 1);
  2280. box-sizing:border-box;
  2281. border-width:2px;
  2282. border-style:solid;
  2283. border-color:rgba(245, 154, 35, 1);
  2284. border-radius:10px;
  2285. -moz-box-shadow:none;
  2286. -webkit-box-shadow:none;
  2287. box-shadow:none;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:12px;
  2292. color:#FFFFFF;
  2293. text-align:left;
  2294. }
  2295. #u3820 {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:1539px;
  2299. top:30px;
  2300. width:440px;
  2301. height:300px;
  2302. display:flex;
  2303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2304. font-weight:400;
  2305. font-style:normal;
  2306. font-size:12px;
  2307. color:#FFFFFF;
  2308. text-align:left;
  2309. }
  2310. #u3820 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:2px 2px 2px 10px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u3820_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. visibility:hidden;
  2322. }
  2323. #u3821 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:0px;
  2329. height:0px;
  2330. }
  2331. #u3822_div {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:440px;
  2337. height:40px;
  2338. background:inherit;
  2339. background-color:rgba(221, 142, 35, 1);
  2340. box-sizing:border-box;
  2341. border-width:2px;
  2342. border-style:solid;
  2343. border-color:rgba(245, 154, 35, 1);
  2344. border-radius:10px;
  2345. border-bottom-right-radius:0px;
  2346. border-bottom-left-radius:0px;
  2347. -moz-box-shadow:none;
  2348. -webkit-box-shadow:none;
  2349. box-shadow:none;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:12px;
  2354. color:#FFFFFF;
  2355. text-align:left;
  2356. }
  2357. #u3822 {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:1539px;
  2361. top:30px;
  2362. width:440px;
  2363. height:40px;
  2364. display:flex;
  2365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2366. font-weight:400;
  2367. font-style:normal;
  2368. font-size:12px;
  2369. color:#FFFFFF;
  2370. text-align:left;
  2371. }
  2372. #u3822 .text {
  2373. position:absolute;
  2374. align-self:center;
  2375. padding:2px 2px 2px 10px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u3822_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. visibility:hidden;
  2384. }
  2385. #u3823_div {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:77px;
  2391. height:29px;
  2392. background:inherit;
  2393. background-color:rgba(245, 154, 35, 0);
  2394. border:none;
  2395. border-left:0px;
  2396. border-top:0px;
  2397. border-right:0px;
  2398. border-radius:0px;
  2399. border-bottom-right-radius:0px;
  2400. border-bottom-left-radius:0px;
  2401. -moz-box-shadow:none;
  2402. -webkit-box-shadow:none;
  2403. box-shadow:none;
  2404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2405. font-weight:400;
  2406. font-style:normal;
  2407. font-size:18px;
  2408. color:#FFFFFF;
  2409. text-align:left;
  2410. }
  2411. #u3823 {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:1559px;
  2415. top:35px;
  2416. width:77px;
  2417. height:29px;
  2418. display:flex;
  2419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2420. font-weight:400;
  2421. font-style:normal;
  2422. font-size:18px;
  2423. color:#FFFFFF;
  2424. text-align:left;
  2425. }
  2426. #u3823 .text {
  2427. position:absolute;
  2428. align-self:center;
  2429. padding:2px 2px 2px 2px;
  2430. box-sizing:border-box;
  2431. width:100%;
  2432. }
  2433. #u3823_text {
  2434. border-width:0px;
  2435. white-space:nowrap;
  2436. text-transform:none;
  2437. }
  2438. #u3824_div {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:41px;
  2444. height:29px;
  2445. background:inherit;
  2446. background-color:rgba(245, 154, 35, 0);
  2447. border:none;
  2448. border-left:0px;
  2449. border-top:0px;
  2450. border-right:0px;
  2451. border-radius:0px;
  2452. border-bottom-right-radius:0px;
  2453. border-bottom-left-radius:0px;
  2454. -moz-box-shadow:none;
  2455. -webkit-box-shadow:none;
  2456. box-shadow:none;
  2457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2458. font-weight:400;
  2459. font-style:normal;
  2460. font-size:18px;
  2461. color:#FFFFFF;
  2462. text-align:left;
  2463. }
  2464. #u3824 {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:1916px;
  2468. top:35px;
  2469. width:41px;
  2470. height:29px;
  2471. display:flex;
  2472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2473. font-weight:400;
  2474. font-style:normal;
  2475. font-size:18px;
  2476. color:#FFFFFF;
  2477. text-align:left;
  2478. }
  2479. #u3824 .text {
  2480. position:absolute;
  2481. align-self:center;
  2482. padding:2px 2px 2px 2px;
  2483. box-sizing:border-box;
  2484. width:100%;
  2485. }
  2486. #u3824_text {
  2487. border-width:0px;
  2488. white-space:nowrap;
  2489. text-transform:none;
  2490. }
  2491. #u3825_img {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:180px;
  2497. height:180px;
  2498. }
  2499. #u3825 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:1559px;
  2503. top:90px;
  2504. width:180px;
  2505. height:180px;
  2506. display:flex;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. }
  2511. #u3825 .text {
  2512. position:absolute;
  2513. align-self:center;
  2514. padding:2px 2px 2px 2px;
  2515. box-sizing:border-box;
  2516. width:100%;
  2517. }
  2518. #u3825_text {
  2519. border-width:0px;
  2520. word-wrap:break-word;
  2521. text-transform:none;
  2522. }
  2523. #u3826_div {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:149px;
  2529. height:34px;
  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-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2543. font-weight:500;
  2544. font-style:normal;
  2545. font-size:18px;
  2546. color:#FFFFFF;
  2547. text-align:left;
  2548. line-height:30px;
  2549. }
  2550. #u3826 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:1759px;
  2554. top:90px;
  2555. width:149px;
  2556. height:34px;
  2557. display:flex;
  2558. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2559. font-weight:500;
  2560. font-style:normal;
  2561. font-size:18px;
  2562. color:#FFFFFF;
  2563. text-align:left;
  2564. line-height:30px;
  2565. }
  2566. #u3826 .text {
  2567. position:absolute;
  2568. align-self:flex-start;
  2569. padding:2px 2px 2px 2px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u3826_text {
  2574. border-width:0px;
  2575. white-space:nowrap;
  2576. text-transform:none;
  2577. }
  2578. #u3827_div {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:60px;
  2584. height:30px;
  2585. background:inherit;
  2586. background-color:rgba(245, 154, 35, 1);
  2587. box-sizing:border-box;
  2588. border-width:1px;
  2589. border-style:solid;
  2590. border-color:rgba(245, 154, 35, 1);
  2591. border-radius:4px;
  2592. -moz-box-shadow:none;
  2593. -webkit-box-shadow:none;
  2594. box-shadow:none;
  2595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:14px;
  2599. color:#FFFFFF;
  2600. }
  2601. #u3827 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:1896px;
  2605. top:277px;
  2606. width:60px;
  2607. height:30px;
  2608. display:flex;
  2609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. font-size:14px;
  2613. color:#FFFFFF;
  2614. }
  2615. #u3827 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:2px 2px 2px 2px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u3827_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. }
  2627. #u3828_div {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:174px;
  2633. height:20px;
  2634. background:inherit;
  2635. background-color:rgba(245, 154, 35, 0);
  2636. border:none;
  2637. border-left:0px;
  2638. border-top:0px;
  2639. border-right:0px;
  2640. border-radius:0px;
  2641. border-bottom-right-radius:0px;
  2642. border-bottom-left-radius:0px;
  2643. -moz-box-shadow:none;
  2644. -webkit-box-shadow:none;
  2645. box-shadow:none;
  2646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2647. font-weight:400;
  2648. font-style:normal;
  2649. font-size:11px;
  2650. color:#FFFFFF;
  2651. text-align:left;
  2652. }
  2653. #u3828 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:1759px;
  2657. top:233px;
  2658. width:174px;
  2659. height:20px;
  2660. display:flex;
  2661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2662. font-weight:400;
  2663. font-style:normal;
  2664. font-size:11px;
  2665. color:#FFFFFF;
  2666. text-align:left;
  2667. }
  2668. #u3828 .text {
  2669. position:absolute;
  2670. align-self:flex-start;
  2671. padding:2px 2px 2px 2px;
  2672. box-sizing:border-box;
  2673. width:100%;
  2674. }
  2675. #u3828_text {
  2676. border-width:0px;
  2677. white-space:nowrap;
  2678. text-transform:none;
  2679. }
  2680. #u3829 {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:0px;
  2686. height:0px;
  2687. }
  2688. #u3830_div {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:202px;
  2694. height:30px;
  2695. background:inherit;
  2696. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2697. border:none;
  2698. border-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:rgba(255, 255, 255, 0.698039215686274);
  2707. }
  2708. #u3830 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:1759px;
  2712. top:134px;
  2713. width:202px;
  2714. height:30px;
  2715. display:flex;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:12px;
  2720. color:rgba(255, 255, 255, 0.698039215686274);
  2721. }
  2722. #u3830 .text {
  2723. position:absolute;
  2724. align-self:center;
  2725. padding:2px 2px 2px 2px;
  2726. box-sizing:border-box;
  2727. width:100%;
  2728. }
  2729. #u3830_text {
  2730. border-width:0px;
  2731. word-wrap:break-word;
  2732. text-transform:none;
  2733. visibility:hidden;
  2734. }
  2735. #u3831_div {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:61px;
  2741. height:24px;
  2742. background:inherit;
  2743. background-color:rgba(245, 154, 35, 0);
  2744. border:none;
  2745. border-left:0px;
  2746. border-top:0px;
  2747. border-right:0px;
  2748. border-radius:0px;
  2749. border-bottom-right-radius:0px;
  2750. border-bottom-left-radius:0px;
  2751. -moz-box-shadow:none;
  2752. -webkit-box-shadow:none;
  2753. box-shadow:none;
  2754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2755. font-weight:400;
  2756. font-style:normal;
  2757. font-size:14px;
  2758. color:#FFFFFF;
  2759. text-align:left;
  2760. }
  2761. #u3831 {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:1769px;
  2765. top:137px;
  2766. width:61px;
  2767. height:24px;
  2768. display:flex;
  2769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. font-size:14px;
  2773. color:#FFFFFF;
  2774. text-align:left;
  2775. }
  2776. #u3831 .text {
  2777. position:absolute;
  2778. align-self:flex-start;
  2779. padding:2px 2px 2px 2px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u3831_text {
  2784. border-width:0px;
  2785. white-space:nowrap;
  2786. text-transform:none;
  2787. }
  2788. #u3832_div {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:61px;
  2794. height:24px;
  2795. background:inherit;
  2796. background-color:rgba(245, 154, 35, 0);
  2797. border:none;
  2798. border-left:0px;
  2799. border-top:0px;
  2800. border-right:0px;
  2801. border-radius:0px;
  2802. border-bottom-right-radius:0px;
  2803. border-bottom-left-radius:0px;
  2804. -moz-box-shadow:none;
  2805. -webkit-box-shadow:none;
  2806. box-shadow:none;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:14px;
  2811. color:#FFFFFF;
  2812. text-align:left;
  2813. }
  2814. #u3832 {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:1839px;
  2818. top:137px;
  2819. width:61px;
  2820. height:24px;
  2821. display:flex;
  2822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2823. font-weight:400;
  2824. font-style:normal;
  2825. font-size:14px;
  2826. color:#FFFFFF;
  2827. text-align:left;
  2828. }
  2829. #u3832 .text {
  2830. position:absolute;
  2831. align-self:flex-start;
  2832. padding:2px 2px 2px 2px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u3832_text {
  2837. border-width:0px;
  2838. white-space:nowrap;
  2839. text-transform:none;
  2840. }
  2841. #u3833 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:0px;
  2847. height:0px;
  2848. }
  2849. #u3834_div {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:202px;
  2855. height:30px;
  2856. background:inherit;
  2857. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2858. border:none;
  2859. border-radius:0px;
  2860. -moz-box-shadow:none;
  2861. -webkit-box-shadow:none;
  2862. box-shadow:none;
  2863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:12px;
  2867. color:rgba(255, 255, 255, 0.698039215686274);
  2868. }
  2869. #u3834 {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:1759px;
  2873. top:165px;
  2874. width:202px;
  2875. height:30px;
  2876. display:flex;
  2877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2878. font-weight:400;
  2879. font-style:normal;
  2880. font-size:12px;
  2881. color:rgba(255, 255, 255, 0.698039215686274);
  2882. }
  2883. #u3834 .text {
  2884. position:absolute;
  2885. align-self:center;
  2886. padding:2px 2px 2px 2px;
  2887. box-sizing:border-box;
  2888. width:100%;
  2889. }
  2890. #u3834_text {
  2891. border-width:0px;
  2892. word-wrap:break-word;
  2893. text-transform:none;
  2894. visibility:hidden;
  2895. }
  2896. #u3835_div {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:0px;
  2901. width:61px;
  2902. height:24px;
  2903. background:inherit;
  2904. background-color:rgba(245, 154, 35, 0);
  2905. border:none;
  2906. border-left:0px;
  2907. border-top:0px;
  2908. border-right:0px;
  2909. border-radius:0px;
  2910. border-bottom-right-radius:0px;
  2911. border-bottom-left-radius:0px;
  2912. -moz-box-shadow:none;
  2913. -webkit-box-shadow:none;
  2914. box-shadow:none;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:14px;
  2919. color:#FFFFFF;
  2920. text-align:left;
  2921. }
  2922. #u3835 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:1769px;
  2926. top:168px;
  2927. width:61px;
  2928. height:24px;
  2929. display:flex;
  2930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:14px;
  2934. color:#FFFFFF;
  2935. text-align:left;
  2936. }
  2937. #u3835 .text {
  2938. position:absolute;
  2939. align-self:flex-start;
  2940. padding:2px 2px 2px 2px;
  2941. box-sizing:border-box;
  2942. width:100%;
  2943. }
  2944. #u3835_text {
  2945. border-width:0px;
  2946. white-space:nowrap;
  2947. text-transform:none;
  2948. }
  2949. #u3836_div {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:0px;
  2953. top:0px;
  2954. width:103px;
  2955. height:24px;
  2956. background:inherit;
  2957. background-color:rgba(245, 154, 35, 0);
  2958. border:none;
  2959. border-left:0px;
  2960. border-top:0px;
  2961. border-right:0px;
  2962. border-radius:0px;
  2963. border-bottom-right-radius:0px;
  2964. border-bottom-left-radius:0px;
  2965. -moz-box-shadow:none;
  2966. -webkit-box-shadow:none;
  2967. box-shadow:none;
  2968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2969. font-weight:400;
  2970. font-style:normal;
  2971. font-size:14px;
  2972. color:#FFFFFF;
  2973. text-align:left;
  2974. }
  2975. #u3836 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:1842px;
  2979. top:168px;
  2980. width:103px;
  2981. height:24px;
  2982. display:flex;
  2983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2984. font-weight:400;
  2985. font-style:normal;
  2986. font-size:14px;
  2987. color:#FFFFFF;
  2988. text-align:left;
  2989. }
  2990. #u3836 .text {
  2991. position:absolute;
  2992. align-self:flex-start;
  2993. padding:2px 2px 2px 2px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u3836_text {
  2998. border-width:0px;
  2999. white-space:nowrap;
  3000. text-transform:none;
  3001. }
  3002. #u3837 {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:0px;
  3008. height:0px;
  3009. }
  3010. #u3838_div {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:202px;
  3016. height:30px;
  3017. background:inherit;
  3018. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3019. border:none;
  3020. border-radius:0px;
  3021. -moz-box-shadow:none;
  3022. -webkit-box-shadow:none;
  3023. box-shadow:none;
  3024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3025. font-weight:400;
  3026. font-style:normal;
  3027. font-size:12px;
  3028. color:rgba(255, 255, 255, 0.698039215686274);
  3029. }
  3030. #u3838 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:1759px;
  3034. top:196px;
  3035. width:202px;
  3036. height:30px;
  3037. display:flex;
  3038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3039. font-weight:400;
  3040. font-style:normal;
  3041. font-size:12px;
  3042. color:rgba(255, 255, 255, 0.698039215686274);
  3043. }
  3044. #u3838 .text {
  3045. position:absolute;
  3046. align-self:center;
  3047. padding:2px 2px 2px 2px;
  3048. box-sizing:border-box;
  3049. width:100%;
  3050. }
  3051. #u3838_text {
  3052. border-width:0px;
  3053. word-wrap:break-word;
  3054. text-transform:none;
  3055. visibility:hidden;
  3056. }
  3057. #u3839_div {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:61px;
  3063. height:24px;
  3064. background:inherit;
  3065. background-color:rgba(245, 154, 35, 0);
  3066. border:none;
  3067. border-left:0px;
  3068. border-top:0px;
  3069. border-right:0px;
  3070. border-radius:0px;
  3071. border-bottom-right-radius:0px;
  3072. border-bottom-left-radius:0px;
  3073. -moz-box-shadow:none;
  3074. -webkit-box-shadow:none;
  3075. box-shadow:none;
  3076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3077. font-weight:400;
  3078. font-style:normal;
  3079. font-size:14px;
  3080. color:#FFFFFF;
  3081. text-align:left;
  3082. }
  3083. #u3839 {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:1769px;
  3087. top:199px;
  3088. width:61px;
  3089. height:24px;
  3090. display:flex;
  3091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3092. font-weight:400;
  3093. font-style:normal;
  3094. font-size:14px;
  3095. color:#FFFFFF;
  3096. text-align:left;
  3097. }
  3098. #u3839 .text {
  3099. position:absolute;
  3100. align-self:flex-start;
  3101. padding:2px 2px 2px 2px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u3839_text {
  3106. border-width:0px;
  3107. white-space:nowrap;
  3108. text-transform:none;
  3109. }
  3110. #u3840_div {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:95px;
  3116. height:24px;
  3117. background:inherit;
  3118. background-color:rgba(245, 154, 35, 0);
  3119. border:none;
  3120. border-left:0px;
  3121. border-top:0px;
  3122. border-right:0px;
  3123. border-radius:0px;
  3124. border-bottom-right-radius:0px;
  3125. border-bottom-left-radius:0px;
  3126. -moz-box-shadow:none;
  3127. -webkit-box-shadow:none;
  3128. box-shadow:none;
  3129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3130. font-weight:400;
  3131. font-style:normal;
  3132. font-size:14px;
  3133. color:#FFFFFF;
  3134. text-align:left;
  3135. }
  3136. #u3840 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:1840px;
  3140. top:199px;
  3141. width:95px;
  3142. height:24px;
  3143. display:flex;
  3144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3145. font-weight:400;
  3146. font-style:normal;
  3147. font-size:14px;
  3148. color:#FFFFFF;
  3149. text-align:left;
  3150. }
  3151. #u3840 .text {
  3152. position:absolute;
  3153. align-self:flex-start;
  3154. padding:2px 2px 2px 2px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u3840_text {
  3159. border-width:0px;
  3160. white-space:nowrap;
  3161. text-transform:none;
  3162. }
  3163. #u3841 {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:0px;
  3169. height:0px;
  3170. }
  3171. #u3842_div {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:440px;
  3177. height:300px;
  3178. background:inherit;
  3179. background-color:rgba(95, 72, 47, 1);
  3180. box-sizing:border-box;
  3181. border-width:2px;
  3182. border-style:solid;
  3183. border-color:rgba(245, 154, 35, 1);
  3184. border-radius:10px;
  3185. -moz-box-shadow:none;
  3186. -webkit-box-shadow:none;
  3187. box-shadow:none;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:12px;
  3192. color:#FFFFFF;
  3193. text-align:left;
  3194. }
  3195. #u3842 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:1539px;
  3199. top:345px;
  3200. width:440px;
  3201. height:300px;
  3202. display:flex;
  3203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3204. font-weight:400;
  3205. font-style:normal;
  3206. font-size:12px;
  3207. color:#FFFFFF;
  3208. text-align:left;
  3209. }
  3210. #u3842 .text {
  3211. position:absolute;
  3212. align-self:center;
  3213. padding:2px 2px 2px 10px;
  3214. box-sizing:border-box;
  3215. width:100%;
  3216. }
  3217. #u3842_text {
  3218. border-width:0px;
  3219. word-wrap:break-word;
  3220. text-transform:none;
  3221. visibility:hidden;
  3222. }
  3223. #u3843 {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:0px;
  3229. height:0px;
  3230. }
  3231. #u3844_div {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:440px;
  3237. height:40px;
  3238. background:inherit;
  3239. background-color:rgba(221, 142, 35, 1);
  3240. box-sizing:border-box;
  3241. border-width:2px;
  3242. border-style:solid;
  3243. border-color:rgba(245, 154, 35, 1);
  3244. border-radius:10px;
  3245. border-bottom-right-radius:0px;
  3246. border-bottom-left-radius:0px;
  3247. -moz-box-shadow:none;
  3248. -webkit-box-shadow:none;
  3249. box-shadow:none;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:12px;
  3254. color:#FFFFFF;
  3255. text-align:left;
  3256. }
  3257. #u3844 {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:1539px;
  3261. top:345px;
  3262. width:440px;
  3263. height:40px;
  3264. display:flex;
  3265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3266. font-weight:400;
  3267. font-style:normal;
  3268. font-size:12px;
  3269. color:#FFFFFF;
  3270. text-align:left;
  3271. }
  3272. #u3844 .text {
  3273. position:absolute;
  3274. align-self:center;
  3275. padding:2px 2px 2px 10px;
  3276. box-sizing:border-box;
  3277. width:100%;
  3278. }
  3279. #u3844_text {
  3280. border-width:0px;
  3281. word-wrap:break-word;
  3282. text-transform:none;
  3283. visibility:hidden;
  3284. }
  3285. #u3845_div {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:77px;
  3291. height:29px;
  3292. background:inherit;
  3293. background-color:rgba(245, 154, 35, 0);
  3294. border:none;
  3295. border-left:0px;
  3296. border-top:0px;
  3297. border-right:0px;
  3298. border-radius:0px;
  3299. border-bottom-right-radius:0px;
  3300. border-bottom-left-radius:0px;
  3301. -moz-box-shadow:none;
  3302. -webkit-box-shadow:none;
  3303. box-shadow:none;
  3304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3305. font-weight:400;
  3306. font-style:normal;
  3307. font-size:18px;
  3308. color:#FFFFFF;
  3309. text-align:left;
  3310. }
  3311. #u3845 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:1559px;
  3315. top:350px;
  3316. width:77px;
  3317. height:29px;
  3318. display:flex;
  3319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3320. font-weight:400;
  3321. font-style:normal;
  3322. font-size:18px;
  3323. color:#FFFFFF;
  3324. text-align:left;
  3325. }
  3326. #u3845 .text {
  3327. position:absolute;
  3328. align-self:center;
  3329. padding:2px 2px 2px 2px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u3845_text {
  3334. border-width:0px;
  3335. white-space:nowrap;
  3336. text-transform:none;
  3337. }
  3338. #u3846_div {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:41px;
  3344. height:29px;
  3345. background:inherit;
  3346. background-color:rgba(245, 154, 35, 0);
  3347. border:none;
  3348. border-left:0px;
  3349. border-top:0px;
  3350. border-right:0px;
  3351. border-radius:0px;
  3352. border-bottom-right-radius:0px;
  3353. border-bottom-left-radius:0px;
  3354. -moz-box-shadow:none;
  3355. -webkit-box-shadow:none;
  3356. box-shadow:none;
  3357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:18px;
  3361. color:#FFFFFF;
  3362. text-align:left;
  3363. }
  3364. #u3846 {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:1916px;
  3368. top:350px;
  3369. width:41px;
  3370. height:29px;
  3371. display:flex;
  3372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3373. font-weight:400;
  3374. font-style:normal;
  3375. font-size:18px;
  3376. color:#FFFFFF;
  3377. text-align:left;
  3378. }
  3379. #u3846 .text {
  3380. position:absolute;
  3381. align-self:center;
  3382. padding:2px 2px 2px 2px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u3846_text {
  3387. border-width:0px;
  3388. white-space:nowrap;
  3389. text-transform:none;
  3390. }
  3391. #u3847_img {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:180px;
  3397. height:180px;
  3398. }
  3399. #u3847 {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:1559px;
  3403. top:405px;
  3404. width:180px;
  3405. height:180px;
  3406. display:flex;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. }
  3411. #u3847 .text {
  3412. position:absolute;
  3413. align-self:center;
  3414. padding:2px 2px 2px 2px;
  3415. box-sizing:border-box;
  3416. width:100%;
  3417. }
  3418. #u3847_text {
  3419. border-width:0px;
  3420. word-wrap:break-word;
  3421. text-transform:none;
  3422. visibility:hidden;
  3423. }
  3424. #u3848_div {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:149px;
  3430. height:34px;
  3431. background:inherit;
  3432. background-color:rgba(245, 154, 35, 0);
  3433. border:none;
  3434. border-left:0px;
  3435. border-top:0px;
  3436. border-right:0px;
  3437. border-radius:0px;
  3438. border-bottom-right-radius:0px;
  3439. border-bottom-left-radius:0px;
  3440. -moz-box-shadow:none;
  3441. -webkit-box-shadow:none;
  3442. box-shadow:none;
  3443. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3444. font-weight:500;
  3445. font-style:normal;
  3446. font-size:18px;
  3447. color:#FFFFFF;
  3448. text-align:left;
  3449. line-height:30px;
  3450. }
  3451. #u3848 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:1759px;
  3455. top:405px;
  3456. width:149px;
  3457. height:34px;
  3458. display:flex;
  3459. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3460. font-weight:500;
  3461. font-style:normal;
  3462. font-size:18px;
  3463. color:#FFFFFF;
  3464. text-align:left;
  3465. line-height:30px;
  3466. }
  3467. #u3848 .text {
  3468. position:absolute;
  3469. align-self:flex-start;
  3470. padding:2px 2px 2px 2px;
  3471. box-sizing:border-box;
  3472. width:100%;
  3473. }
  3474. #u3848_text {
  3475. border-width:0px;
  3476. white-space:nowrap;
  3477. text-transform:none;
  3478. }
  3479. #u3849_img {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:27px;
  3485. height:27px;
  3486. }
  3487. #u3849 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:1636px;
  3491. top:482px;
  3492. width:27px;
  3493. height:27px;
  3494. display:flex;
  3495. }
  3496. #u3849 .text {
  3497. position:absolute;
  3498. align-self:center;
  3499. padding:2px 2px 2px 2px;
  3500. box-sizing:border-box;
  3501. width:100%;
  3502. }
  3503. #u3849_text {
  3504. border-width:0px;
  3505. word-wrap:break-word;
  3506. text-transform:none;
  3507. visibility:hidden;
  3508. }
  3509. #u3850_div {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:174px;
  3515. height:20px;
  3516. background:inherit;
  3517. background-color:rgba(245, 154, 35, 0);
  3518. border:none;
  3519. border-left:0px;
  3520. border-top:0px;
  3521. border-right:0px;
  3522. border-radius:0px;
  3523. border-bottom-right-radius:0px;
  3524. border-bottom-left-radius:0px;
  3525. -moz-box-shadow:none;
  3526. -webkit-box-shadow:none;
  3527. box-shadow:none;
  3528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3529. font-weight:400;
  3530. font-style:normal;
  3531. font-size:11px;
  3532. color:#FFFFFF;
  3533. text-align:left;
  3534. }
  3535. #u3850 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:1759px;
  3539. top:548px;
  3540. width:174px;
  3541. height:20px;
  3542. display:flex;
  3543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3544. font-weight:400;
  3545. font-style:normal;
  3546. font-size:11px;
  3547. color:#FFFFFF;
  3548. text-align:left;
  3549. }
  3550. #u3850 .text {
  3551. position:absolute;
  3552. align-self:flex-start;
  3553. padding:2px 2px 2px 2px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u3850_text {
  3558. border-width:0px;
  3559. white-space:nowrap;
  3560. text-transform:none;
  3561. }
  3562. #u3851 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:0px;
  3568. height:0px;
  3569. }
  3570. #u3852_div {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:202px;
  3576. height:30px;
  3577. background:inherit;
  3578. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3579. border:none;
  3580. border-radius:0px;
  3581. -moz-box-shadow:none;
  3582. -webkit-box-shadow:none;
  3583. box-shadow:none;
  3584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3585. font-weight:400;
  3586. font-style:normal;
  3587. font-size:12px;
  3588. color:rgba(255, 255, 255, 0.698039215686274);
  3589. }
  3590. #u3852 {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:1759px;
  3594. top:449px;
  3595. width:202px;
  3596. height:30px;
  3597. display:flex;
  3598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3599. font-weight:400;
  3600. font-style:normal;
  3601. font-size:12px;
  3602. color:rgba(255, 255, 255, 0.698039215686274);
  3603. }
  3604. #u3852 .text {
  3605. position:absolute;
  3606. align-self:center;
  3607. padding:2px 2px 2px 2px;
  3608. box-sizing:border-box;
  3609. width:100%;
  3610. }
  3611. #u3852_text {
  3612. border-width:0px;
  3613. word-wrap:break-word;
  3614. text-transform:none;
  3615. visibility:hidden;
  3616. }
  3617. #u3853_div {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:61px;
  3623. height:24px;
  3624. background:inherit;
  3625. background-color:rgba(245, 154, 35, 0);
  3626. border:none;
  3627. border-left:0px;
  3628. border-top:0px;
  3629. border-right:0px;
  3630. border-radius:0px;
  3631. border-bottom-right-radius:0px;
  3632. border-bottom-left-radius:0px;
  3633. -moz-box-shadow:none;
  3634. -webkit-box-shadow:none;
  3635. box-shadow:none;
  3636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3637. font-weight:400;
  3638. font-style:normal;
  3639. font-size:14px;
  3640. color:#FFFFFF;
  3641. text-align:left;
  3642. }
  3643. #u3853 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:1769px;
  3647. top:452px;
  3648. width:61px;
  3649. height:24px;
  3650. display:flex;
  3651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3652. font-weight:400;
  3653. font-style:normal;
  3654. font-size:14px;
  3655. color:#FFFFFF;
  3656. text-align:left;
  3657. }
  3658. #u3853 .text {
  3659. position:absolute;
  3660. align-self:flex-start;
  3661. padding:2px 2px 2px 2px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u3853_text {
  3666. border-width:0px;
  3667. white-space:nowrap;
  3668. text-transform:none;
  3669. }
  3670. #u3854_div {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:61px;
  3676. height:24px;
  3677. background:inherit;
  3678. background-color:rgba(245, 154, 35, 0);
  3679. border:none;
  3680. border-left:0px;
  3681. border-top:0px;
  3682. border-right:0px;
  3683. border-radius:0px;
  3684. border-bottom-right-radius:0px;
  3685. border-bottom-left-radius:0px;
  3686. -moz-box-shadow:none;
  3687. -webkit-box-shadow:none;
  3688. box-shadow:none;
  3689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3690. font-weight:400;
  3691. font-style:normal;
  3692. font-size:14px;
  3693. color:#FFFFFF;
  3694. text-align:left;
  3695. }
  3696. #u3854 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:1839px;
  3700. top:452px;
  3701. width:61px;
  3702. height:24px;
  3703. display:flex;
  3704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:14px;
  3708. color:#FFFFFF;
  3709. text-align:left;
  3710. }
  3711. #u3854 .text {
  3712. position:absolute;
  3713. align-self:flex-start;
  3714. padding:2px 2px 2px 2px;
  3715. box-sizing:border-box;
  3716. width:100%;
  3717. }
  3718. #u3854_text {
  3719. border-width:0px;
  3720. white-space:nowrap;
  3721. text-transform:none;
  3722. }
  3723. #u3855 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:0px;
  3727. top:0px;
  3728. width:0px;
  3729. height:0px;
  3730. }
  3731. #u3856_div {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:202px;
  3737. height:30px;
  3738. background:inherit;
  3739. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3740. border:none;
  3741. border-radius:0px;
  3742. -moz-box-shadow:none;
  3743. -webkit-box-shadow:none;
  3744. box-shadow:none;
  3745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. font-size:12px;
  3749. color:rgba(255, 255, 255, 0.698039215686274);
  3750. }
  3751. #u3856 {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:1759px;
  3755. top:480px;
  3756. width:202px;
  3757. height:30px;
  3758. display:flex;
  3759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3760. font-weight:400;
  3761. font-style:normal;
  3762. font-size:12px;
  3763. color:rgba(255, 255, 255, 0.698039215686274);
  3764. }
  3765. #u3856 .text {
  3766. position:absolute;
  3767. align-self:center;
  3768. padding:2px 2px 2px 2px;
  3769. box-sizing:border-box;
  3770. width:100%;
  3771. }
  3772. #u3856_text {
  3773. border-width:0px;
  3774. word-wrap:break-word;
  3775. text-transform:none;
  3776. visibility:hidden;
  3777. }
  3778. #u3857_div {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:0px;
  3782. top:0px;
  3783. width:61px;
  3784. height:24px;
  3785. background:inherit;
  3786. background-color:rgba(245, 154, 35, 0);
  3787. border:none;
  3788. border-left:0px;
  3789. border-top:0px;
  3790. border-right:0px;
  3791. border-radius:0px;
  3792. border-bottom-right-radius:0px;
  3793. border-bottom-left-radius:0px;
  3794. -moz-box-shadow:none;
  3795. -webkit-box-shadow:none;
  3796. box-shadow:none;
  3797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3798. font-weight:400;
  3799. font-style:normal;
  3800. font-size:14px;
  3801. color:#FFFFFF;
  3802. text-align:left;
  3803. }
  3804. #u3857 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:1769px;
  3808. top:483px;
  3809. width:61px;
  3810. height:24px;
  3811. display:flex;
  3812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3813. font-weight:400;
  3814. font-style:normal;
  3815. font-size:14px;
  3816. color:#FFFFFF;
  3817. text-align:left;
  3818. }
  3819. #u3857 .text {
  3820. position:absolute;
  3821. align-self:flex-start;
  3822. padding:2px 2px 2px 2px;
  3823. box-sizing:border-box;
  3824. width:100%;
  3825. }
  3826. #u3857_text {
  3827. border-width:0px;
  3828. white-space:nowrap;
  3829. text-transform:none;
  3830. }
  3831. #u3858_div {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:46px;
  3837. height:24px;
  3838. background:inherit;
  3839. background-color:rgba(245, 154, 35, 0);
  3840. border:none;
  3841. border-left:0px;
  3842. border-top:0px;
  3843. border-right:0px;
  3844. border-radius:0px;
  3845. border-bottom-right-radius:0px;
  3846. border-bottom-left-radius:0px;
  3847. -moz-box-shadow:none;
  3848. -webkit-box-shadow:none;
  3849. box-shadow:none;
  3850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3851. font-weight:400;
  3852. font-style:normal;
  3853. font-size:14px;
  3854. color:#FFFFFF;
  3855. text-align:left;
  3856. }
  3857. #u3858 {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:1842px;
  3861. top:483px;
  3862. width:46px;
  3863. height:24px;
  3864. display:flex;
  3865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3866. font-weight:400;
  3867. font-style:normal;
  3868. font-size:14px;
  3869. color:#FFFFFF;
  3870. text-align:left;
  3871. }
  3872. #u3858 .text {
  3873. position:absolute;
  3874. align-self:flex-start;
  3875. padding:2px 2px 2px 2px;
  3876. box-sizing:border-box;
  3877. width:100%;
  3878. }
  3879. #u3858_text {
  3880. border-width:0px;
  3881. white-space:nowrap;
  3882. text-transform:none;
  3883. }
  3884. #u3859 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:0px;
  3888. top:0px;
  3889. width:0px;
  3890. height:0px;
  3891. }
  3892. #u3860_div {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:0px;
  3896. top:0px;
  3897. width:202px;
  3898. height:30px;
  3899. background:inherit;
  3900. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3901. border:none;
  3902. border-radius:0px;
  3903. -moz-box-shadow:none;
  3904. -webkit-box-shadow:none;
  3905. box-shadow:none;
  3906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3907. font-weight:400;
  3908. font-style:normal;
  3909. font-size:12px;
  3910. color:rgba(255, 255, 255, 0.698039215686274);
  3911. }
  3912. #u3860 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:1759px;
  3916. top:511px;
  3917. width:202px;
  3918. height:30px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:12px;
  3924. color:rgba(255, 255, 255, 0.698039215686274);
  3925. }
  3926. #u3860 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 2px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u3860_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. visibility:hidden;
  3938. }
  3939. #u3861_div {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:61px;
  3945. height:24px;
  3946. background:inherit;
  3947. background-color:rgba(245, 154, 35, 0);
  3948. border:none;
  3949. border-left:0px;
  3950. border-top:0px;
  3951. border-right:0px;
  3952. border-radius:0px;
  3953. border-bottom-right-radius:0px;
  3954. border-bottom-left-radius:0px;
  3955. -moz-box-shadow:none;
  3956. -webkit-box-shadow:none;
  3957. box-shadow:none;
  3958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3959. font-weight:400;
  3960. font-style:normal;
  3961. font-size:14px;
  3962. color:#FFFFFF;
  3963. text-align:left;
  3964. }
  3965. #u3861 {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:1769px;
  3969. top:514px;
  3970. width:61px;
  3971. height:24px;
  3972. display:flex;
  3973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3974. font-weight:400;
  3975. font-style:normal;
  3976. font-size:14px;
  3977. color:#FFFFFF;
  3978. text-align:left;
  3979. }
  3980. #u3861 .text {
  3981. position:absolute;
  3982. align-self:flex-start;
  3983. padding:2px 2px 2px 2px;
  3984. box-sizing:border-box;
  3985. width:100%;
  3986. }
  3987. #u3861_text {
  3988. border-width:0px;
  3989. white-space:nowrap;
  3990. text-transform:none;
  3991. }
  3992. #u3862_div {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:95px;
  3998. height:24px;
  3999. background:inherit;
  4000. background-color:rgba(245, 154, 35, 0);
  4001. border:none;
  4002. border-left:0px;
  4003. border-top:0px;
  4004. border-right:0px;
  4005. border-radius:0px;
  4006. border-bottom-right-radius:0px;
  4007. border-bottom-left-radius:0px;
  4008. -moz-box-shadow:none;
  4009. -webkit-box-shadow:none;
  4010. box-shadow:none;
  4011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4012. font-weight:400;
  4013. font-style:normal;
  4014. font-size:14px;
  4015. color:#FFFFFF;
  4016. text-align:left;
  4017. }
  4018. #u3862 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:1840px;
  4022. top:514px;
  4023. width:95px;
  4024. height:24px;
  4025. display:flex;
  4026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4027. font-weight:400;
  4028. font-style:normal;
  4029. font-size:14px;
  4030. color:#FFFFFF;
  4031. text-align:left;
  4032. }
  4033. #u3862 .text {
  4034. position:absolute;
  4035. align-self:flex-start;
  4036. padding:2px 2px 2px 2px;
  4037. box-sizing:border-box;
  4038. width:100%;
  4039. }
  4040. #u3862_text {
  4041. border-width:0px;
  4042. white-space:nowrap;
  4043. text-transform:none;
  4044. }
  4045. #u3863_div {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:0px;
  4049. top:0px;
  4050. width:60px;
  4051. height:30px;
  4052. background:inherit;
  4053. background-color:rgba(245, 154, 35, 1);
  4054. box-sizing:border-box;
  4055. border-width:1px;
  4056. border-style:solid;
  4057. border-color:rgba(245, 154, 35, 1);
  4058. border-radius:4px;
  4059. -moz-box-shadow:none;
  4060. -webkit-box-shadow:none;
  4061. box-shadow:none;
  4062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4063. font-weight:400;
  4064. font-style:normal;
  4065. font-size:14px;
  4066. color:#FFFFFF;
  4067. }
  4068. #u3863 {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:1898px;
  4072. top:595px;
  4073. width:60px;
  4074. height:30px;
  4075. display:flex;
  4076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4077. font-weight:400;
  4078. font-style:normal;
  4079. font-size:14px;
  4080. color:#FFFFFF;
  4081. }
  4082. #u3863 .text {
  4083. position:absolute;
  4084. align-self:center;
  4085. padding:2px 2px 2px 2px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u3863_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. }
  4094. #u3864 {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:0px;
  4098. top:0px;
  4099. width:0px;
  4100. height:0px;
  4101. }
  4102. #u3865_div {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:100px;
  4108. height:100px;
  4109. background:inherit;
  4110. background-color:rgba(255, 255, 255, 1);
  4111. box-sizing:border-box;
  4112. border-width:1px;
  4113. border-style:solid;
  4114. border-color:rgba(242, 242, 242, 1);
  4115. border-radius:3px;
  4116. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4117. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4118. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4119. }
  4120. #u3865 {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:1628px;
  4124. top:455px;
  4125. width:100px;
  4126. height:100px;
  4127. display:flex;
  4128. }
  4129. #u3865 .text {
  4130. position:absolute;
  4131. align-self:center;
  4132. padding:2px 2px 2px 2px;
  4133. box-sizing:border-box;
  4134. width:100%;
  4135. }
  4136. #u3865_text {
  4137. border-width:0px;
  4138. word-wrap:break-word;
  4139. text-transform:none;
  4140. visibility:hidden;
  4141. }
  4142. #u3866_div {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:0px;
  4146. top:0px;
  4147. width:83px;
  4148. height:40px;
  4149. background:inherit;
  4150. background-color:rgba(255, 255, 255, 1);
  4151. box-sizing:border-box;
  4152. border-width:1px;
  4153. border-style:solid;
  4154. border-color:rgba(242, 242, 242, 1);
  4155. border-left:0px;
  4156. border-top:0px;
  4157. border-right:0px;
  4158. border-radius:4px;
  4159. border-bottom-right-radius:0px;
  4160. border-bottom-left-radius:0px;
  4161. -moz-box-shadow:none;
  4162. -webkit-box-shadow:none;
  4163. box-shadow:none;
  4164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4165. font-weight:400;
  4166. font-style:normal;
  4167. font-size:14px;
  4168. }
  4169. #u3866 {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:1636px;
  4173. top:466px;
  4174. width:83px;
  4175. height:40px;
  4176. display:flex;
  4177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4178. font-weight:400;
  4179. font-style:normal;
  4180. font-size:14px;
  4181. }
  4182. #u3866 .text {
  4183. position:absolute;
  4184. align-self:center;
  4185. padding:5px 0px 5px 0px;
  4186. box-sizing:border-box;
  4187. width:100%;
  4188. }
  4189. #u3866_text {
  4190. border-width:0px;
  4191. word-wrap:break-word;
  4192. text-transform:none;
  4193. }
  4194. #u3867_div {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:83px;
  4200. height:40px;
  4201. background:inherit;
  4202. background-color:rgba(255, 255, 255, 1);
  4203. border:none;
  4204. border-left:0px;
  4205. border-top:0px;
  4206. border-right:0px;
  4207. border-radius:4px;
  4208. border-bottom-right-radius:0px;
  4209. border-bottom-left-radius:0px;
  4210. -moz-box-shadow:none;
  4211. -webkit-box-shadow:none;
  4212. box-shadow:none;
  4213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:14px;
  4217. }
  4218. #u3867 {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:1636px;
  4222. top:506px;
  4223. width:83px;
  4224. height:40px;
  4225. display:flex;
  4226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4227. font-weight:400;
  4228. font-style:normal;
  4229. font-size:14px;
  4230. }
  4231. #u3867 .text {
  4232. position:absolute;
  4233. align-self:center;
  4234. padding:5px 0px 5px 0px;
  4235. box-sizing:border-box;
  4236. width:100%;
  4237. }
  4238. #u3867_text {
  4239. border-width:0px;
  4240. word-wrap:break-word;
  4241. text-transform:none;
  4242. }
  4243. #u3868_input {
  4244. position:absolute;
  4245. left:0px;
  4246. top:0px;
  4247. width:73px;
  4248. height:22px;
  4249. padding:2px 2px 2px 2px;
  4250. font-family:'ArialMT', 'Arial', sans-serif;
  4251. font-weight:400;
  4252. font-style:normal;
  4253. font-size:12px;
  4254. letter-spacing:normal;
  4255. color:#333333;
  4256. vertical-align:none;
  4257. text-align:left;
  4258. text-transform:none;
  4259. background-color:transparent;
  4260. border-color:transparent;
  4261. }
  4262. #u3868_input.disabled {
  4263. position:absolute;
  4264. left:0px;
  4265. top:0px;
  4266. width:73px;
  4267. height:22px;
  4268. padding:2px 2px 2px 2px;
  4269. font-family:'ArialMT', 'Arial', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:12px;
  4273. letter-spacing:normal;
  4274. color:#333333;
  4275. vertical-align:none;
  4276. text-align:left;
  4277. text-transform:none;
  4278. background-color:transparent;
  4279. border-color:transparent;
  4280. }
  4281. #u3868_div {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:73px;
  4287. height:22px;
  4288. background:inherit;
  4289. background-color:rgba(255, 255, 255, 0);
  4290. border:none;
  4291. border-radius:0px;
  4292. -moz-box-shadow:none;
  4293. -webkit-box-shadow:none;
  4294. box-shadow:none;
  4295. font-size:12px;
  4296. color:#333333;
  4297. }
  4298. #u3868 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:1666px;
  4302. top:563px;
  4303. width:73px;
  4304. height:22px;
  4305. display:flex;
  4306. font-size:12px;
  4307. color:#333333;
  4308. }
  4309. #u3868 .text {
  4310. position:absolute;
  4311. align-self:flex-start;
  4312. padding:2px 2px 2px 2px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u3868_div.disabled {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:73px;
  4322. height:22px;
  4323. background:inherit;
  4324. background-color:rgba(240, 240, 240, 1);
  4325. border:none;
  4326. border-radius:0px;
  4327. -moz-box-shadow:none;
  4328. -webkit-box-shadow:none;
  4329. box-shadow:none;
  4330. font-size:12px;
  4331. color:#333333;
  4332. }
  4333. #u3868.disabled {
  4334. }
  4335. .u3868_input_option {
  4336. font-size:12px;
  4337. }
  4338. #u3869_input {
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:73px;
  4343. height:22px;
  4344. padding:2px 2px 2px 2px;
  4345. font-family:'ArialMT', 'Arial', sans-serif;
  4346. font-weight:400;
  4347. font-style:normal;
  4348. font-size:12px;
  4349. letter-spacing:normal;
  4350. color:#333333;
  4351. vertical-align:none;
  4352. text-align:left;
  4353. text-transform:none;
  4354. background-color:transparent;
  4355. border-color:transparent;
  4356. }
  4357. #u3869_input.disabled {
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:73px;
  4362. height:22px;
  4363. padding:2px 2px 2px 2px;
  4364. font-family:'ArialMT', 'Arial', sans-serif;
  4365. font-weight:400;
  4366. font-style:normal;
  4367. font-size:12px;
  4368. letter-spacing:normal;
  4369. color:#333333;
  4370. vertical-align:none;
  4371. text-align:left;
  4372. text-transform:none;
  4373. background-color:transparent;
  4374. border-color:transparent;
  4375. }
  4376. #u3869_div {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:73px;
  4382. height:22px;
  4383. background:inherit;
  4384. background-color:rgba(255, 255, 255, 0);
  4385. border:none;
  4386. border-radius:0px;
  4387. -moz-box-shadow:none;
  4388. -webkit-box-shadow:none;
  4389. box-shadow:none;
  4390. font-size:12px;
  4391. color:#333333;
  4392. }
  4393. #u3869 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:1589px;
  4397. top:563px;
  4398. width:73px;
  4399. height:22px;
  4400. display:flex;
  4401. font-size:12px;
  4402. color:#333333;
  4403. }
  4404. #u3869 .text {
  4405. position:absolute;
  4406. align-self:flex-start;
  4407. padding:2px 2px 2px 2px;
  4408. box-sizing:border-box;
  4409. width:100%;
  4410. }
  4411. #u3869_div.disabled {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:73px;
  4417. height:22px;
  4418. background:inherit;
  4419. background-color:rgba(240, 240, 240, 1);
  4420. border:none;
  4421. border-radius:0px;
  4422. -moz-box-shadow:none;
  4423. -webkit-box-shadow:none;
  4424. box-shadow:none;
  4425. font-size:12px;
  4426. color:#333333;
  4427. }
  4428. #u3869.disabled {
  4429. }
  4430. .u3869_input_option {
  4431. font-size:12px;
  4432. }
  4433. #u3870 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:0px;
  4439. height:0px;
  4440. }
  4441. #u3871_div {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:440px;
  4447. height:300px;
  4448. background:inherit;
  4449. background-color:rgba(95, 72, 47, 1);
  4450. box-sizing:border-box;
  4451. border-width:2px;
  4452. border-style:solid;
  4453. border-color:rgba(245, 154, 35, 1);
  4454. border-radius:10px;
  4455. -moz-box-shadow:none;
  4456. -webkit-box-shadow:none;
  4457. box-shadow:none;
  4458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4459. font-weight:400;
  4460. font-style:normal;
  4461. font-size:12px;
  4462. color:#FFFFFF;
  4463. text-align:left;
  4464. }
  4465. #u3871 {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:1539px;
  4469. top:660px;
  4470. width:440px;
  4471. height:300px;
  4472. display:flex;
  4473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4474. font-weight:400;
  4475. font-style:normal;
  4476. font-size:12px;
  4477. color:#FFFFFF;
  4478. text-align:left;
  4479. }
  4480. #u3871 .text {
  4481. position:absolute;
  4482. align-self:center;
  4483. padding:2px 2px 2px 10px;
  4484. box-sizing:border-box;
  4485. width:100%;
  4486. }
  4487. #u3871_text {
  4488. border-width:0px;
  4489. word-wrap:break-word;
  4490. text-transform:none;
  4491. visibility:hidden;
  4492. }
  4493. #u3872 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:0px;
  4497. top:0px;
  4498. width:0px;
  4499. height:0px;
  4500. }
  4501. #u3873_div {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:440px;
  4507. height:40px;
  4508. background:inherit;
  4509. background-color:rgba(221, 142, 35, 1);
  4510. box-sizing:border-box;
  4511. border-width:2px;
  4512. border-style:solid;
  4513. border-color:rgba(245, 154, 35, 1);
  4514. border-radius:10px;
  4515. border-bottom-right-radius:0px;
  4516. border-bottom-left-radius:0px;
  4517. -moz-box-shadow:none;
  4518. -webkit-box-shadow:none;
  4519. box-shadow:none;
  4520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4521. font-weight:400;
  4522. font-style:normal;
  4523. font-size:12px;
  4524. color:#FFFFFF;
  4525. text-align:left;
  4526. }
  4527. #u3873 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:1539px;
  4531. top:660px;
  4532. width:440px;
  4533. height:40px;
  4534. display:flex;
  4535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4536. font-weight:400;
  4537. font-style:normal;
  4538. font-size:12px;
  4539. color:#FFFFFF;
  4540. text-align:left;
  4541. }
  4542. #u3873 .text {
  4543. position:absolute;
  4544. align-self:center;
  4545. padding:2px 2px 2px 10px;
  4546. box-sizing:border-box;
  4547. width:100%;
  4548. }
  4549. #u3873_text {
  4550. border-width:0px;
  4551. word-wrap:break-word;
  4552. text-transform:none;
  4553. visibility:hidden;
  4554. }
  4555. #u3874_div {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:77px;
  4561. height:29px;
  4562. background:inherit;
  4563. background-color:rgba(245, 154, 35, 0);
  4564. border:none;
  4565. border-left:0px;
  4566. border-top:0px;
  4567. border-right:0px;
  4568. border-radius:0px;
  4569. border-bottom-right-radius:0px;
  4570. border-bottom-left-radius:0px;
  4571. -moz-box-shadow:none;
  4572. -webkit-box-shadow:none;
  4573. box-shadow:none;
  4574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4575. font-weight:400;
  4576. font-style:normal;
  4577. font-size:18px;
  4578. color:#FFFFFF;
  4579. text-align:left;
  4580. }
  4581. #u3874 {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:1559px;
  4585. top:665px;
  4586. width:77px;
  4587. height:29px;
  4588. display:flex;
  4589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4590. font-weight:400;
  4591. font-style:normal;
  4592. font-size:18px;
  4593. color:#FFFFFF;
  4594. text-align:left;
  4595. }
  4596. #u3874 .text {
  4597. position:absolute;
  4598. align-self:center;
  4599. padding:2px 2px 2px 2px;
  4600. box-sizing:border-box;
  4601. width:100%;
  4602. }
  4603. #u3874_text {
  4604. border-width:0px;
  4605. white-space:nowrap;
  4606. text-transform:none;
  4607. }
  4608. #u3875_div {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:0px;
  4612. top:0px;
  4613. width:41px;
  4614. height:29px;
  4615. background:inherit;
  4616. background-color:rgba(245, 154, 35, 0);
  4617. border:none;
  4618. border-left:0px;
  4619. border-top:0px;
  4620. border-right:0px;
  4621. border-radius:0px;
  4622. border-bottom-right-radius:0px;
  4623. border-bottom-left-radius:0px;
  4624. -moz-box-shadow:none;
  4625. -webkit-box-shadow:none;
  4626. box-shadow:none;
  4627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4628. font-weight:400;
  4629. font-style:normal;
  4630. font-size:18px;
  4631. color:#FFFFFF;
  4632. text-align:left;
  4633. }
  4634. #u3875 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:1916px;
  4638. top:665px;
  4639. width:41px;
  4640. height:29px;
  4641. display:flex;
  4642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4643. font-weight:400;
  4644. font-style:normal;
  4645. font-size:18px;
  4646. color:#FFFFFF;
  4647. text-align:left;
  4648. }
  4649. #u3875 .text {
  4650. position:absolute;
  4651. align-self:center;
  4652. padding:2px 2px 2px 2px;
  4653. box-sizing:border-box;
  4654. width:100%;
  4655. }
  4656. #u3875_text {
  4657. border-width:0px;
  4658. white-space:nowrap;
  4659. text-transform:none;
  4660. }
  4661. #u3876_img {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:180px;
  4667. height:180px;
  4668. }
  4669. #u3876 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:1559px;
  4673. top:720px;
  4674. width:180px;
  4675. height:180px;
  4676. display:flex;
  4677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4678. font-weight:400;
  4679. font-style:normal;
  4680. }
  4681. #u3876 .text {
  4682. position:absolute;
  4683. align-self:center;
  4684. padding:2px 2px 2px 2px;
  4685. box-sizing:border-box;
  4686. width:100%;
  4687. }
  4688. #u3876_text {
  4689. border-width:0px;
  4690. word-wrap:break-word;
  4691. text-transform:none;
  4692. }
  4693. #u3877_div {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:149px;
  4699. height:34px;
  4700. background:inherit;
  4701. background-color:rgba(245, 154, 35, 0);
  4702. border:none;
  4703. border-left:0px;
  4704. border-top:0px;
  4705. border-right:0px;
  4706. border-radius:0px;
  4707. border-bottom-right-radius:0px;
  4708. border-bottom-left-radius:0px;
  4709. -moz-box-shadow:none;
  4710. -webkit-box-shadow:none;
  4711. box-shadow:none;
  4712. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4713. font-weight:500;
  4714. font-style:normal;
  4715. font-size:18px;
  4716. color:#FFFFFF;
  4717. text-align:left;
  4718. line-height:30px;
  4719. }
  4720. #u3877 {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:1759px;
  4724. top:720px;
  4725. width:149px;
  4726. height:34px;
  4727. display:flex;
  4728. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4729. font-weight:500;
  4730. font-style:normal;
  4731. font-size:18px;
  4732. color:#FFFFFF;
  4733. text-align:left;
  4734. line-height:30px;
  4735. }
  4736. #u3877 .text {
  4737. position:absolute;
  4738. align-self:flex-start;
  4739. padding:2px 2px 2px 2px;
  4740. box-sizing:border-box;
  4741. width:100%;
  4742. }
  4743. #u3877_text {
  4744. border-width:0px;
  4745. white-space:nowrap;
  4746. text-transform:none;
  4747. }
  4748. #u3878_div {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:27px;
  4754. height:20px;
  4755. background:inherit;
  4756. background-color:rgba(245, 154, 35, 0);
  4757. border:none;
  4758. border-left:0px;
  4759. border-top:0px;
  4760. border-right:0px;
  4761. border-radius:0px;
  4762. border-bottom-right-radius:0px;
  4763. border-bottom-left-radius:0px;
  4764. -moz-box-shadow:none;
  4765. -webkit-box-shadow:none;
  4766. box-shadow:none;
  4767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4768. font-weight:400;
  4769. font-style:normal;
  4770. font-size:11px;
  4771. color:#FFFFFF;
  4772. text-align:left;
  4773. }
  4774. #u3878 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:1760px;
  4778. top:753px;
  4779. width:27px;
  4780. height:20px;
  4781. display:flex;
  4782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4783. font-weight:400;
  4784. font-style:normal;
  4785. font-size:11px;
  4786. color:#FFFFFF;
  4787. text-align:left;
  4788. }
  4789. #u3878 .text {
  4790. position:absolute;
  4791. align-self:flex-start;
  4792. padding:2px 2px 2px 2px;
  4793. box-sizing:border-box;
  4794. width:100%;
  4795. }
  4796. #u3878_text {
  4797. border-width:0px;
  4798. white-space:nowrap;
  4799. text-transform:none;
  4800. }
  4801. #u3879_div {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:0px;
  4805. top:0px;
  4806. width:71px;
  4807. height:20px;
  4808. background:inherit;
  4809. background-color:rgba(245, 154, 35, 0);
  4810. border:none;
  4811. border-left:0px;
  4812. border-top:0px;
  4813. border-right:0px;
  4814. border-radius:0px;
  4815. border-bottom-right-radius:0px;
  4816. border-bottom-left-radius:0px;
  4817. -moz-box-shadow:none;
  4818. -webkit-box-shadow:none;
  4819. box-shadow:none;
  4820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:11px;
  4824. color:#FFFFFF;
  4825. text-align:left;
  4826. }
  4827. #u3879 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:1799px;
  4831. top:753px;
  4832. width:71px;
  4833. height:20px;
  4834. display:flex;
  4835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4836. font-weight:400;
  4837. font-style:normal;
  4838. font-size:11px;
  4839. color:#FFFFFF;
  4840. text-align:left;
  4841. }
  4842. #u3879 .text {
  4843. position:absolute;
  4844. align-self:flex-start;
  4845. padding:2px 2px 2px 2px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u3879_text {
  4850. border-width:0px;
  4851. white-space:nowrap;
  4852. text-transform:none;
  4853. }
  4854. #u3880_div {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:174px;
  4860. height:20px;
  4861. background:inherit;
  4862. background-color:rgba(245, 154, 35, 0);
  4863. border:none;
  4864. border-left:0px;
  4865. border-top:0px;
  4866. border-right:0px;
  4867. border-radius:0px;
  4868. border-bottom-right-radius:0px;
  4869. border-bottom-left-radius:0px;
  4870. -moz-box-shadow:none;
  4871. -webkit-box-shadow:none;
  4872. box-shadow:none;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:11px;
  4877. color:#FFFFFF;
  4878. text-align:left;
  4879. }
  4880. #u3880 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:1760px;
  4884. top:879px;
  4885. width:174px;
  4886. height:20px;
  4887. display:flex;
  4888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4889. font-weight:400;
  4890. font-style:normal;
  4891. font-size:11px;
  4892. color:#FFFFFF;
  4893. text-align:left;
  4894. }
  4895. #u3880 .text {
  4896. position:absolute;
  4897. align-self:flex-start;
  4898. padding:2px 2px 2px 2px;
  4899. box-sizing:border-box;
  4900. width:100%;
  4901. }
  4902. #u3880_text {
  4903. border-width:0px;
  4904. white-space:nowrap;
  4905. text-transform:none;
  4906. }
  4907. #u3881 {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:0px;
  4913. height:0px;
  4914. }
  4915. #u3882_div {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:0px;
  4919. top:0px;
  4920. width:202px;
  4921. height:30px;
  4922. background:inherit;
  4923. background-color:rgba(255, 255, 255, 0.0980392156862745);
  4924. border:none;
  4925. border-radius:0px;
  4926. -moz-box-shadow:none;
  4927. -webkit-box-shadow:none;
  4928. box-shadow:none;
  4929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4930. font-weight:400;
  4931. font-style:normal;
  4932. font-size:12px;
  4933. color:rgba(255, 255, 255, 0.698039215686274);
  4934. }
  4935. #u3882 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:1760px;
  4939. top:780px;
  4940. width:202px;
  4941. height:30px;
  4942. display:flex;
  4943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. font-size:12px;
  4947. color:rgba(255, 255, 255, 0.698039215686274);
  4948. }
  4949. #u3882 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 2px 2px 2px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u3882_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u3883_div {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:67px;
  4968. height:24px;
  4969. background:inherit;
  4970. background-color:rgba(245, 154, 35, 0);
  4971. border:none;
  4972. border-left:0px;
  4973. border-top:0px;
  4974. border-right:0px;
  4975. border-radius:0px;
  4976. border-bottom-right-radius:0px;
  4977. border-bottom-left-radius:0px;
  4978. -moz-box-shadow:none;
  4979. -webkit-box-shadow:none;
  4980. box-shadow:none;
  4981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4982. font-weight:400;
  4983. font-style:normal;
  4984. font-size:14px;
  4985. color:#FFFFFF;
  4986. text-align:left;
  4987. }
  4988. #u3883 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:1770px;
  4992. top:783px;
  4993. width:67px;
  4994. height:24px;
  4995. display:flex;
  4996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:14px;
  5000. color:#FFFFFF;
  5001. text-align:left;
  5002. }
  5003. #u3883 .text {
  5004. position:absolute;
  5005. align-self:flex-start;
  5006. padding:2px 2px 2px 2px;
  5007. box-sizing:border-box;
  5008. width:100%;
  5009. }
  5010. #u3883_text {
  5011. border-width:0px;
  5012. white-space:nowrap;
  5013. text-transform:none;
  5014. }
  5015. #u3884_div {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:0px;
  5019. top:0px;
  5020. width:50px;
  5021. height:24px;
  5022. background:inherit;
  5023. background-color:rgba(245, 154, 35, 0);
  5024. border:none;
  5025. border-left:0px;
  5026. border-top:0px;
  5027. border-right:0px;
  5028. border-radius:0px;
  5029. border-bottom-right-radius:0px;
  5030. border-bottom-left-radius:0px;
  5031. -moz-box-shadow:none;
  5032. -webkit-box-shadow:none;
  5033. box-shadow:none;
  5034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5035. font-weight:400;
  5036. font-style:normal;
  5037. font-size:14px;
  5038. color:#FFFFFF;
  5039. text-align:right;
  5040. }
  5041. #u3884 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:1903px;
  5045. top:783px;
  5046. width:50px;
  5047. height:24px;
  5048. display:flex;
  5049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. font-size:14px;
  5053. color:#FFFFFF;
  5054. text-align:right;
  5055. }
  5056. #u3884 .text {
  5057. position:absolute;
  5058. align-self:flex-start;
  5059. padding:2px 2px 2px 2px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u3884_text {
  5064. border-width:0px;
  5065. white-space:nowrap;
  5066. text-transform:none;
  5067. }
  5068. #u3885 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:0px;
  5074. height:0px;
  5075. }
  5076. #u3886_div {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:0px;
  5080. top:0px;
  5081. width:202px;
  5082. height:30px;
  5083. background:inherit;
  5084. background-color:rgba(255, 255, 255, 0.0980392156862745);
  5085. border:none;
  5086. border-radius:0px;
  5087. -moz-box-shadow:none;
  5088. -webkit-box-shadow:none;
  5089. box-shadow:none;
  5090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5091. font-weight:400;
  5092. font-style:normal;
  5093. font-size:12px;
  5094. color:rgba(255, 255, 255, 0.698039215686274);
  5095. }
  5096. #u3886 {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:1760px;
  5100. top:811px;
  5101. width:202px;
  5102. height:30px;
  5103. display:flex;
  5104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5105. font-weight:400;
  5106. font-style:normal;
  5107. font-size:12px;
  5108. color:rgba(255, 255, 255, 0.698039215686274);
  5109. }
  5110. #u3886 .text {
  5111. position:absolute;
  5112. align-self:center;
  5113. padding:2px 2px 2px 2px;
  5114. box-sizing:border-box;
  5115. width:100%;
  5116. }
  5117. #u3886_text {
  5118. border-width:0px;
  5119. word-wrap:break-word;
  5120. text-transform:none;
  5121. visibility:hidden;
  5122. }
  5123. #u3887_div {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:69px;
  5129. height:24px;
  5130. background:inherit;
  5131. background-color:rgba(245, 154, 35, 0);
  5132. border:none;
  5133. border-left:0px;
  5134. border-top:0px;
  5135. border-right:0px;
  5136. border-radius:0px;
  5137. border-bottom-right-radius:0px;
  5138. border-bottom-left-radius:0px;
  5139. -moz-box-shadow:none;
  5140. -webkit-box-shadow:none;
  5141. box-shadow:none;
  5142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. font-size:14px;
  5146. color:#FFFFFF;
  5147. text-align:left;
  5148. }
  5149. #u3887 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:1770px;
  5153. top:814px;
  5154. width:69px;
  5155. height:24px;
  5156. display:flex;
  5157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5158. font-weight:400;
  5159. font-style:normal;
  5160. font-size:14px;
  5161. color:#FFFFFF;
  5162. text-align:left;
  5163. }
  5164. #u3887 .text {
  5165. position:absolute;
  5166. align-self:flex-start;
  5167. padding:2px 2px 2px 2px;
  5168. box-sizing:border-box;
  5169. width:100%;
  5170. }
  5171. #u3887_text {
  5172. border-width:0px;
  5173. white-space:nowrap;
  5174. text-transform:none;
  5175. }
  5176. #u3888_div {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:45px;
  5182. height:24px;
  5183. background:inherit;
  5184. background-color:rgba(245, 154, 35, 0);
  5185. border:none;
  5186. border-left:0px;
  5187. border-top:0px;
  5188. border-right:0px;
  5189. border-radius:0px;
  5190. border-bottom-right-radius:0px;
  5191. border-bottom-left-radius:0px;
  5192. -moz-box-shadow:none;
  5193. -webkit-box-shadow:none;
  5194. box-shadow:none;
  5195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:14px;
  5199. color:#FFFFFF;
  5200. text-align:right;
  5201. }
  5202. #u3888 {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:1908px;
  5206. top:814px;
  5207. width:45px;
  5208. height:24px;
  5209. display:flex;
  5210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5211. font-weight:400;
  5212. font-style:normal;
  5213. font-size:14px;
  5214. color:#FFFFFF;
  5215. text-align:right;
  5216. }
  5217. #u3888 .text {
  5218. position:absolute;
  5219. align-self:flex-start;
  5220. padding:2px 2px 2px 2px;
  5221. box-sizing:border-box;
  5222. width:100%;
  5223. }
  5224. #u3888_text {
  5225. border-width:0px;
  5226. white-space:nowrap;
  5227. text-transform:none;
  5228. }
  5229. #u3889 {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:0px;
  5235. height:0px;
  5236. }
  5237. #u3890_div {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:202px;
  5243. height:30px;
  5244. background:inherit;
  5245. background-color:rgba(255, 255, 255, 0.0980392156862745);
  5246. border:none;
  5247. border-radius:0px;
  5248. -moz-box-shadow:none;
  5249. -webkit-box-shadow:none;
  5250. box-shadow:none;
  5251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. font-size:12px;
  5255. color:rgba(255, 255, 255, 0.698039215686274);
  5256. }
  5257. #u3890 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:1760px;
  5261. top:842px;
  5262. width:202px;
  5263. height:30px;
  5264. display:flex;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:12px;
  5269. color:rgba(255, 255, 255, 0.698039215686274);
  5270. }
  5271. #u3890 .text {
  5272. position:absolute;
  5273. align-self:center;
  5274. padding:2px 2px 2px 2px;
  5275. box-sizing:border-box;
  5276. width:100%;
  5277. }
  5278. #u3890_text {
  5279. border-width:0px;
  5280. word-wrap:break-word;
  5281. text-transform:none;
  5282. visibility:hidden;
  5283. }
  5284. #u3891_div {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:69px;
  5290. height:24px;
  5291. background:inherit;
  5292. background-color:rgba(245, 154, 35, 0);
  5293. border:none;
  5294. border-left:0px;
  5295. border-top:0px;
  5296. border-right:0px;
  5297. border-radius:0px;
  5298. border-bottom-right-radius:0px;
  5299. border-bottom-left-radius:0px;
  5300. -moz-box-shadow:none;
  5301. -webkit-box-shadow:none;
  5302. box-shadow:none;
  5303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:14px;
  5307. color:#FFFFFF;
  5308. text-align:left;
  5309. }
  5310. #u3891 {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:1770px;
  5314. top:845px;
  5315. width:69px;
  5316. height:24px;
  5317. display:flex;
  5318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5319. font-weight:400;
  5320. font-style:normal;
  5321. font-size:14px;
  5322. color:#FFFFFF;
  5323. text-align:left;
  5324. }
  5325. #u3891 .text {
  5326. position:absolute;
  5327. align-self:flex-start;
  5328. padding:2px 2px 2px 2px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u3891_text {
  5333. border-width:0px;
  5334. white-space:nowrap;
  5335. text-transform:none;
  5336. }
  5337. #u3892_div {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:44px;
  5343. height:24px;
  5344. background:inherit;
  5345. background-color:rgba(245, 154, 35, 0);
  5346. border:none;
  5347. border-left:0px;
  5348. border-top:0px;
  5349. border-right:0px;
  5350. border-radius:0px;
  5351. border-bottom-right-radius:0px;
  5352. border-bottom-left-radius:0px;
  5353. -moz-box-shadow:none;
  5354. -webkit-box-shadow:none;
  5355. box-shadow:none;
  5356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5357. font-weight:400;
  5358. font-style:normal;
  5359. font-size:14px;
  5360. color:#FFFFFF;
  5361. text-align:right;
  5362. }
  5363. #u3892 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:1909px;
  5367. top:845px;
  5368. width:44px;
  5369. height:24px;
  5370. display:flex;
  5371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5372. font-weight:400;
  5373. font-style:normal;
  5374. font-size:14px;
  5375. color:#FFFFFF;
  5376. text-align:right;
  5377. }
  5378. #u3892 .text {
  5379. position:absolute;
  5380. align-self:flex-start;
  5381. padding:2px 2px 2px 2px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u3892_text {
  5386. border-width:0px;
  5387. white-space:nowrap;
  5388. text-transform:none;
  5389. }
  5390. #u3893_div {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:60px;
  5396. height:30px;
  5397. background:inherit;
  5398. background-color:rgba(245, 154, 35, 1);
  5399. box-sizing:border-box;
  5400. border-width:1px;
  5401. border-style:solid;
  5402. border-color:rgba(245, 154, 35, 1);
  5403. border-radius:4px;
  5404. -moz-box-shadow:none;
  5405. -webkit-box-shadow:none;
  5406. box-shadow:none;
  5407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. font-size:14px;
  5411. color:#FFFFFF;
  5412. }
  5413. #u3893 {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:1897px;
  5417. top:910px;
  5418. width:60px;
  5419. height:30px;
  5420. display:flex;
  5421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5422. font-weight:400;
  5423. font-style:normal;
  5424. font-size:14px;
  5425. color:#FFFFFF;
  5426. }
  5427. #u3893 .text {
  5428. position:absolute;
  5429. align-self:center;
  5430. padding:2px 2px 2px 2px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u3893_text {
  5435. border-width:0px;
  5436. word-wrap:break-word;
  5437. text-transform:none;
  5438. }
  5439. #u3894 {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:0px;
  5443. top:0px;
  5444. width:0px;
  5445. height:0px;
  5446. }
  5447. #u3895_img {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:0px;
  5451. top:0px;
  5452. width:231px;
  5453. height:167px;
  5454. }
  5455. #u3895 {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:33px;
  5459. top:521px;
  5460. width:231px;
  5461. height:167px;
  5462. display:flex;
  5463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:12px;
  5467. color:#FFFFFF;
  5468. text-align:left;
  5469. }
  5470. #u3895 .text {
  5471. position:absolute;
  5472. align-self:center;
  5473. padding:2px 2px 2px 10px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u3895_text {
  5478. border-width:0px;
  5479. word-wrap:break-word;
  5480. text-transform:none;
  5481. visibility:hidden;
  5482. }
  5483. #u3896 {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:0px;
  5489. height:0px;
  5490. }
  5491. #u3897_div {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:0px;
  5495. top:0px;
  5496. width:61px;
  5497. height:17px;
  5498. background:inherit;
  5499. background-color:rgba(255, 255, 255, 0);
  5500. border:none;
  5501. border-radius:0px;
  5502. -moz-box-shadow:none;
  5503. -webkit-box-shadow:none;
  5504. box-shadow:none;
  5505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5506. font-weight:400;
  5507. font-style:normal;
  5508. font-size:12px;
  5509. color:#FFFFFF;
  5510. }
  5511. #u3897 {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:86px;
  5515. top:530px;
  5516. width:61px;
  5517. height:17px;
  5518. display:flex;
  5519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5520. font-weight:400;
  5521. font-style:normal;
  5522. font-size:12px;
  5523. color:#FFFFFF;
  5524. }
  5525. #u3897 .text {
  5526. position:absolute;
  5527. align-self:flex-start;
  5528. padding:0px 0px 0px 0px;
  5529. box-sizing:border-box;
  5530. width:100%;
  5531. }
  5532. #u3897_text {
  5533. border-width:0px;
  5534. white-space:nowrap;
  5535. text-transform:none;
  5536. }
  5537. #u3898_img {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:38px;
  5543. height:37px;
  5544. }
  5545. #u3898 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:42px;
  5549. top:533px;
  5550. width:38px;
  5551. height:37px;
  5552. display:flex;
  5553. }
  5554. #u3898 .text {
  5555. position:absolute;
  5556. align-self:center;
  5557. padding:2px 2px 2px 2px;
  5558. box-sizing:border-box;
  5559. width:100%;
  5560. }
  5561. #u3898_text {
  5562. border-width:0px;
  5563. word-wrap:break-word;
  5564. text-transform:none;
  5565. visibility:hidden;
  5566. }
  5567. #u3899_div {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:0px;
  5571. top:0px;
  5572. width:27px;
  5573. height:17px;
  5574. background:inherit;
  5575. background-color:rgba(255, 255, 255, 0);
  5576. border:none;
  5577. border-radius:0px;
  5578. -moz-box-shadow:none;
  5579. -webkit-box-shadow:none;
  5580. box-shadow:none;
  5581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:12px;
  5585. color:#FFFFFF;
  5586. }
  5587. #u3899 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:86px;
  5591. top:555px;
  5592. width:27px;
  5593. height:17px;
  5594. display:flex;
  5595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5596. font-weight:400;
  5597. font-style:normal;
  5598. font-size:12px;
  5599. color:#FFFFFF;
  5600. }
  5601. #u3899 .text {
  5602. position:absolute;
  5603. align-self:flex-start;
  5604. padding:0px 0px 0px 0px;
  5605. box-sizing:border-box;
  5606. width:100%;
  5607. }
  5608. #u3899_text {
  5609. border-width:0px;
  5610. white-space:nowrap;
  5611. text-transform:none;
  5612. }
  5613. #u3900 {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:0px;
  5617. top:0px;
  5618. width:0px;
  5619. height:0px;
  5620. }
  5621. #u3901_div {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:0px;
  5625. top:0px;
  5626. width:49px;
  5627. height:17px;
  5628. background:inherit;
  5629. background-color:rgba(255, 255, 255, 0);
  5630. border:none;
  5631. border-radius:0px;
  5632. -moz-box-shadow:none;
  5633. -webkit-box-shadow:none;
  5634. box-shadow:none;
  5635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5636. font-weight:400;
  5637. font-style:normal;
  5638. font-size:12px;
  5639. color:#FFFFFF;
  5640. }
  5641. #u3901 {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:206px;
  5645. top:530px;
  5646. width:49px;
  5647. height:17px;
  5648. display:flex;
  5649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:12px;
  5653. color:#FFFFFF;
  5654. }
  5655. #u3901 .text {
  5656. position:absolute;
  5657. align-self:flex-start;
  5658. padding:0px 0px 0px 0px;
  5659. box-sizing:border-box;
  5660. width:100%;
  5661. }
  5662. #u3901_text {
  5663. border-width:0px;
  5664. white-space:nowrap;
  5665. text-transform:none;
  5666. }
  5667. #u3902_img {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:38px;
  5673. height:37px;
  5674. }
  5675. #u3902 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:162px;
  5679. top:533px;
  5680. width:38px;
  5681. height:37px;
  5682. display:flex;
  5683. }
  5684. #u3902 .text {
  5685. position:absolute;
  5686. align-self:center;
  5687. padding:2px 2px 2px 2px;
  5688. box-sizing:border-box;
  5689. width:100%;
  5690. }
  5691. #u3902_text {
  5692. border-width:0px;
  5693. word-wrap:break-word;
  5694. text-transform:none;
  5695. visibility:hidden;
  5696. }
  5697. #u3903_div {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:0px;
  5701. top:0px;
  5702. width:27px;
  5703. height:17px;
  5704. background:inherit;
  5705. background-color:rgba(255, 255, 255, 0);
  5706. border:none;
  5707. border-radius:0px;
  5708. -moz-box-shadow:none;
  5709. -webkit-box-shadow:none;
  5710. box-shadow:none;
  5711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5712. font-weight:400;
  5713. font-style:normal;
  5714. font-size:12px;
  5715. color:#FFFFFF;
  5716. }
  5717. #u3903 {
  5718. border-width:0px;
  5719. position:absolute;
  5720. left:206px;
  5721. top:555px;
  5722. width:27px;
  5723. height:17px;
  5724. display:flex;
  5725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5726. font-weight:400;
  5727. font-style:normal;
  5728. font-size:12px;
  5729. color:#FFFFFF;
  5730. }
  5731. #u3903 .text {
  5732. position:absolute;
  5733. align-self:flex-start;
  5734. padding:0px 0px 0px 0px;
  5735. box-sizing:border-box;
  5736. width:100%;
  5737. }
  5738. #u3903_text {
  5739. border-width:0px;
  5740. white-space:nowrap;
  5741. text-transform:none;
  5742. }
  5743. #u3904 {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:0px;
  5749. height:0px;
  5750. }
  5751. #u3905_div {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:49px;
  5757. height:17px;
  5758. background:inherit;
  5759. background-color:rgba(255, 255, 255, 0);
  5760. border:none;
  5761. border-radius:0px;
  5762. -moz-box-shadow:none;
  5763. -webkit-box-shadow:none;
  5764. box-shadow:none;
  5765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5766. font-weight:400;
  5767. font-style:normal;
  5768. font-size:12px;
  5769. color:#FFFFFF;
  5770. }
  5771. #u3905 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:86px;
  5775. top:582px;
  5776. width:49px;
  5777. height:17px;
  5778. display:flex;
  5779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5780. font-weight:400;
  5781. font-style:normal;
  5782. font-size:12px;
  5783. color:#FFFFFF;
  5784. }
  5785. #u3905 .text {
  5786. position:absolute;
  5787. align-self:flex-start;
  5788. padding:0px 0px 0px 0px;
  5789. box-sizing:border-box;
  5790. width:100%;
  5791. }
  5792. #u3905_text {
  5793. border-width:0px;
  5794. white-space:nowrap;
  5795. text-transform:none;
  5796. }
  5797. #u3906_img {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:38px;
  5803. height:37px;
  5804. }
  5805. #u3906 {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:42px;
  5809. top:585px;
  5810. width:38px;
  5811. height:37px;
  5812. display:flex;
  5813. }
  5814. #u3906 .text {
  5815. position:absolute;
  5816. align-self:center;
  5817. padding:2px 2px 2px 2px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u3906_text {
  5822. border-width:0px;
  5823. word-wrap:break-word;
  5824. text-transform:none;
  5825. visibility:hidden;
  5826. }
  5827. #u3907_div {
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:0px;
  5831. top:0px;
  5832. width:27px;
  5833. height:17px;
  5834. background:inherit;
  5835. background-color:rgba(255, 255, 255, 0);
  5836. border:none;
  5837. border-radius:0px;
  5838. -moz-box-shadow:none;
  5839. -webkit-box-shadow:none;
  5840. box-shadow:none;
  5841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5842. font-weight:400;
  5843. font-style:normal;
  5844. font-size:12px;
  5845. color:#FFFFFF;
  5846. }
  5847. #u3907 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:86px;
  5851. top:607px;
  5852. width:27px;
  5853. height:17px;
  5854. display:flex;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:12px;
  5859. color:#FFFFFF;
  5860. }
  5861. #u3907 .text {
  5862. position:absolute;
  5863. align-self:flex-start;
  5864. padding:0px 0px 0px 0px;
  5865. box-sizing:border-box;
  5866. width:100%;
  5867. }
  5868. #u3907_text {
  5869. border-width:0px;
  5870. white-space:nowrap;
  5871. text-transform:none;
  5872. }
  5873. #u3908 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:0px;
  5877. top:0px;
  5878. width:0px;
  5879. height:0px;
  5880. }
  5881. #u3909_div {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:49px;
  5887. height:17px;
  5888. background:inherit;
  5889. background-color:rgba(255, 255, 255, 0);
  5890. border:none;
  5891. border-radius:0px;
  5892. -moz-box-shadow:none;
  5893. -webkit-box-shadow:none;
  5894. box-shadow:none;
  5895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5896. font-weight:400;
  5897. font-style:normal;
  5898. font-size:12px;
  5899. color:#FFFFFF;
  5900. }
  5901. #u3909 {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:206px;
  5905. top:582px;
  5906. width:49px;
  5907. height:17px;
  5908. display:flex;
  5909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:12px;
  5913. color:#FFFFFF;
  5914. }
  5915. #u3909 .text {
  5916. position:absolute;
  5917. align-self:flex-start;
  5918. padding:0px 0px 0px 0px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u3909_text {
  5923. border-width:0px;
  5924. white-space:nowrap;
  5925. text-transform:none;
  5926. }
  5927. #u3910_img {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:38px;
  5933. height:37px;
  5934. }
  5935. #u3910 {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:162px;
  5939. top:585px;
  5940. width:38px;
  5941. height:37px;
  5942. display:flex;
  5943. }
  5944. #u3910 .text {
  5945. position:absolute;
  5946. align-self:center;
  5947. padding:2px 2px 2px 2px;
  5948. box-sizing:border-box;
  5949. width:100%;
  5950. }
  5951. #u3910_text {
  5952. border-width:0px;
  5953. word-wrap:break-word;
  5954. text-transform:none;
  5955. visibility:hidden;
  5956. }
  5957. #u3911_div {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:0px;
  5961. top:0px;
  5962. width:27px;
  5963. height:17px;
  5964. background:inherit;
  5965. background-color:rgba(255, 255, 255, 0);
  5966. border:none;
  5967. border-radius:0px;
  5968. -moz-box-shadow:none;
  5969. -webkit-box-shadow:none;
  5970. box-shadow:none;
  5971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. font-size:12px;
  5975. color:#FFFFFF;
  5976. }
  5977. #u3911 {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:206px;
  5981. top:607px;
  5982. width:27px;
  5983. height:17px;
  5984. display:flex;
  5985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5986. font-weight:400;
  5987. font-style:normal;
  5988. font-size:12px;
  5989. color:#FFFFFF;
  5990. }
  5991. #u3911 .text {
  5992. position:absolute;
  5993. align-self:flex-start;
  5994. padding:0px 0px 0px 0px;
  5995. box-sizing:border-box;
  5996. width:100%;
  5997. }
  5998. #u3911_text {
  5999. border-width:0px;
  6000. white-space:nowrap;
  6001. text-transform:none;
  6002. }
  6003. #u3912 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:0px;
  6009. height:0px;
  6010. }
  6011. #u3913_div {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:49px;
  6017. height:17px;
  6018. background:inherit;
  6019. background-color:rgba(255, 255, 255, 0);
  6020. border:none;
  6021. border-radius:0px;
  6022. -moz-box-shadow:none;
  6023. -webkit-box-shadow:none;
  6024. box-shadow:none;
  6025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6026. font-weight:400;
  6027. font-style:normal;
  6028. font-size:12px;
  6029. color:#FFFFFF;
  6030. }
  6031. #u3913 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:86px;
  6035. top:634px;
  6036. width:49px;
  6037. height:17px;
  6038. display:flex;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:12px;
  6043. color:#FFFFFF;
  6044. }
  6045. #u3913 .text {
  6046. position:absolute;
  6047. align-self:flex-start;
  6048. padding:0px 0px 0px 0px;
  6049. box-sizing:border-box;
  6050. width:100%;
  6051. }
  6052. #u3913_text {
  6053. border-width:0px;
  6054. white-space:nowrap;
  6055. text-transform:none;
  6056. }
  6057. #u3914_img {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:0px;
  6061. top:0px;
  6062. width:38px;
  6063. height:37px;
  6064. }
  6065. #u3914 {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:42px;
  6069. top:637px;
  6070. width:38px;
  6071. height:37px;
  6072. display:flex;
  6073. }
  6074. #u3914 .text {
  6075. position:absolute;
  6076. align-self:center;
  6077. padding:2px 2px 2px 2px;
  6078. box-sizing:border-box;
  6079. width:100%;
  6080. }
  6081. #u3914_text {
  6082. border-width:0px;
  6083. word-wrap:break-word;
  6084. text-transform:none;
  6085. visibility:hidden;
  6086. }
  6087. #u3915_div {
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:27px;
  6093. height:17px;
  6094. background:inherit;
  6095. background-color:rgba(255, 255, 255, 0);
  6096. border:none;
  6097. border-radius:0px;
  6098. -moz-box-shadow:none;
  6099. -webkit-box-shadow:none;
  6100. box-shadow:none;
  6101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. font-size:12px;
  6105. color:#FFFFFF;
  6106. }
  6107. #u3915 {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:86px;
  6111. top:659px;
  6112. width:27px;
  6113. height:17px;
  6114. display:flex;
  6115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6116. font-weight:400;
  6117. font-style:normal;
  6118. font-size:12px;
  6119. color:#FFFFFF;
  6120. }
  6121. #u3915 .text {
  6122. position:absolute;
  6123. align-self:flex-start;
  6124. padding:0px 0px 0px 0px;
  6125. box-sizing:border-box;
  6126. width:100%;
  6127. }
  6128. #u3915_text {
  6129. border-width:0px;
  6130. white-space:nowrap;
  6131. text-transform:none;
  6132. }
  6133. #u3916 {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:0px;
  6139. height:0px;
  6140. }
  6141. #u3917_div {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:0px;
  6145. top:0px;
  6146. width:48px;
  6147. height:17px;
  6148. background:inherit;
  6149. background-color:rgba(255, 255, 255, 0);
  6150. border:none;
  6151. border-radius:0px;
  6152. -moz-box-shadow:none;
  6153. -webkit-box-shadow:none;
  6154. box-shadow:none;
  6155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6156. font-weight:400;
  6157. font-style:normal;
  6158. font-size:12px;
  6159. color:#FFFFFF;
  6160. }
  6161. #u3917 {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:206px;
  6165. top:634px;
  6166. width:48px;
  6167. height:17px;
  6168. display:flex;
  6169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:12px;
  6173. color:#FFFFFF;
  6174. }
  6175. #u3917 .text {
  6176. position:absolute;
  6177. align-self:flex-start;
  6178. padding:0px 0px 0px 0px;
  6179. box-sizing:border-box;
  6180. width:100%;
  6181. }
  6182. #u3917_text {
  6183. border-width:0px;
  6184. white-space:nowrap;
  6185. text-transform:none;
  6186. }
  6187. #u3918_img {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:38px;
  6193. height:37px;
  6194. }
  6195. #u3918 {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:162px;
  6199. top:637px;
  6200. width:38px;
  6201. height:37px;
  6202. display:flex;
  6203. }
  6204. #u3918 .text {
  6205. position:absolute;
  6206. align-self:center;
  6207. padding:2px 2px 2px 2px;
  6208. box-sizing:border-box;
  6209. width:100%;
  6210. }
  6211. #u3918_text {
  6212. border-width:0px;
  6213. word-wrap:break-word;
  6214. text-transform:none;
  6215. visibility:hidden;
  6216. }
  6217. #u3919_div {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:0px;
  6221. top:0px;
  6222. width:27px;
  6223. height:17px;
  6224. background:inherit;
  6225. background-color:rgba(255, 255, 255, 0);
  6226. border:none;
  6227. border-radius:0px;
  6228. -moz-box-shadow:none;
  6229. -webkit-box-shadow:none;
  6230. box-shadow:none;
  6231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6232. font-weight:400;
  6233. font-style:normal;
  6234. font-size:12px;
  6235. color:#FFFFFF;
  6236. }
  6237. #u3919 {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:206px;
  6241. top:659px;
  6242. width:27px;
  6243. height:17px;
  6244. display:flex;
  6245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6246. font-weight:400;
  6247. font-style:normal;
  6248. font-size:12px;
  6249. color:#FFFFFF;
  6250. }
  6251. #u3919 .text {
  6252. position:absolute;
  6253. align-self:flex-start;
  6254. padding:0px 0px 0px 0px;
  6255. box-sizing:border-box;
  6256. width:100%;
  6257. }
  6258. #u3919_text {
  6259. border-width:0px;
  6260. white-space:nowrap;
  6261. text-transform:none;
  6262. }
  6263. #u3920 {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:0px;
  6267. top:0px;
  6268. width:0px;
  6269. height:0px;
  6270. }
  6271. #u3921_div {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:0px;
  6275. top:0px;
  6276. width:240px;
  6277. height:23px;
  6278. background:inherit;
  6279. background-color:rgba(255, 255, 255, 0);
  6280. border:none;
  6281. border-radius:0px;
  6282. -moz-box-shadow:none;
  6283. -webkit-box-shadow:none;
  6284. box-shadow:none;
  6285. font-size:12px;
  6286. }
  6287. #u3921 {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:1241px;
  6291. top:446px;
  6292. width:240px;
  6293. height:23px;
  6294. display:flex;
  6295. font-size:12px;
  6296. }
  6297. #u3921 .text {
  6298. position:absolute;
  6299. align-self:center;
  6300. padding:2px 2px 2px 2px;
  6301. box-sizing:border-box;
  6302. width:100%;
  6303. }
  6304. #u3921_text {
  6305. border-width:0px;
  6306. word-wrap:break-word;
  6307. text-transform:none;
  6308. visibility:hidden;
  6309. }
  6310. #u3922_div {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:0px;
  6314. top:0px;
  6315. width:65px;
  6316. height:21px;
  6317. background:inherit;
  6318. background-color:rgba(255, 255, 255, 0);
  6319. border:none;
  6320. border-radius:0px;
  6321. -moz-box-shadow:none;
  6322. -webkit-box-shadow:none;
  6323. box-shadow:none;
  6324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6325. font-weight:400;
  6326. font-style:normal;
  6327. font-size:12px;
  6328. color:rgba(255, 255, 255, 0.698039215686274);
  6329. text-align:left;
  6330. }
  6331. #u3922 {
  6332. border-width:0px;
  6333. position:absolute;
  6334. left:1241px;
  6335. top:447px;
  6336. width:65px;
  6337. height:21px;
  6338. display:flex;
  6339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6340. font-weight:400;
  6341. font-style:normal;
  6342. font-size:12px;
  6343. color:rgba(255, 255, 255, 0.698039215686274);
  6344. text-align:left;
  6345. }
  6346. #u3922 .text {
  6347. position:absolute;
  6348. align-self:center;
  6349. padding:2px 2px 2px 2px;
  6350. box-sizing:border-box;
  6351. width:100%;
  6352. }
  6353. #u3922_text {
  6354. border-width:0px;
  6355. white-space:nowrap;
  6356. text-transform:none;
  6357. }
  6358. #u3923_div {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:0px;
  6362. top:0px;
  6363. width:19px;
  6364. height:21px;
  6365. background:inherit;
  6366. background-color:rgba(255, 255, 255, 0);
  6367. border:none;
  6368. border-radius:0px;
  6369. -moz-box-shadow:none;
  6370. -webkit-box-shadow:none;
  6371. box-shadow:none;
  6372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6373. font-weight:400;
  6374. font-style:normal;
  6375. font-size:12px;
  6376. color:#FFFFFF;
  6377. text-align:left;
  6378. }
  6379. #u3923 {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:1327px;
  6383. top:447px;
  6384. width:19px;
  6385. height:21px;
  6386. display:flex;
  6387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6388. font-weight:400;
  6389. font-style:normal;
  6390. font-size:12px;
  6391. color:#FFFFFF;
  6392. text-align:left;
  6393. }
  6394. #u3923 .text {
  6395. position:absolute;
  6396. align-self:center;
  6397. padding:2px 2px 2px 2px;
  6398. box-sizing:border-box;
  6399. width:100%;
  6400. }
  6401. #u3923_text {
  6402. border-width:0px;
  6403. white-space:nowrap;
  6404. text-transform:none;
  6405. }
  6406. #u3924_div {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:0px;
  6410. top:0px;
  6411. width:49px;
  6412. height:21px;
  6413. background:inherit;
  6414. background-color:rgba(255, 255, 255, 0);
  6415. border:none;
  6416. border-radius:0px;
  6417. -moz-box-shadow:none;
  6418. -webkit-box-shadow:none;
  6419. box-shadow:none;
  6420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:12px;
  6424. color:#FFFFFF;
  6425. text-align:left;
  6426. }
  6427. #u3924 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:1436px;
  6431. top:447px;
  6432. width:49px;
  6433. height:21px;
  6434. display:flex;
  6435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6436. font-weight:400;
  6437. font-style:normal;
  6438. font-size:12px;
  6439. color:#FFFFFF;
  6440. text-align:left;
  6441. }
  6442. #u3924 .text {
  6443. position:absolute;
  6444. align-self:center;
  6445. padding:2px 2px 2px 2px;
  6446. box-sizing:border-box;
  6447. width:100%;
  6448. }
  6449. #u3924_text {
  6450. border-width:0px;
  6451. white-space:nowrap;
  6452. text-transform:none;
  6453. }
  6454. #u3925_div {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:0px;
  6458. top:0px;
  6459. width:19px;
  6460. height:21px;
  6461. background:inherit;
  6462. background-color:rgba(255, 255, 255, 0);
  6463. border:none;
  6464. border-radius:0px;
  6465. -moz-box-shadow:none;
  6466. -webkit-box-shadow:none;
  6467. box-shadow:none;
  6468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6469. font-weight:400;
  6470. font-style:normal;
  6471. font-size:12px;
  6472. color:#FFFFFF;
  6473. text-align:left;
  6474. }
  6475. #u3925 {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:1392px;
  6479. top:447px;
  6480. width:19px;
  6481. height:21px;
  6482. display:flex;
  6483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6484. font-weight:400;
  6485. font-style:normal;
  6486. font-size:12px;
  6487. color:#FFFFFF;
  6488. text-align:left;
  6489. }
  6490. #u3925 .text {
  6491. position:absolute;
  6492. align-self:center;
  6493. padding:2px 2px 2px 2px;
  6494. box-sizing:border-box;
  6495. width:100%;
  6496. }
  6497. #u3925_text {
  6498. border-width:0px;
  6499. white-space:nowrap;
  6500. text-transform:none;
  6501. }
  6502. #u3926 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:0px;
  6506. top:0px;
  6507. width:0px;
  6508. height:0px;
  6509. }
  6510. #u3927_div {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:0px;
  6514. top:0px;
  6515. width:240px;
  6516. height:23px;
  6517. background:inherit;
  6518. background-color:rgba(255, 255, 255, 0);
  6519. border:none;
  6520. border-radius:0px;
  6521. -moz-box-shadow:none;
  6522. -webkit-box-shadow:none;
  6523. box-shadow:none;
  6524. font-size:12px;
  6525. }
  6526. #u3927 {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:1241px;
  6530. top:470px;
  6531. width:240px;
  6532. height:23px;
  6533. display:flex;
  6534. font-size:12px;
  6535. }
  6536. #u3927 .text {
  6537. position:absolute;
  6538. align-self:center;
  6539. padding:2px 2px 2px 2px;
  6540. box-sizing:border-box;
  6541. width:100%;
  6542. }
  6543. #u3927_text {
  6544. border-width:0px;
  6545. word-wrap:break-word;
  6546. text-transform:none;
  6547. visibility:hidden;
  6548. }
  6549. #u3928_div {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:0px;
  6553. top:0px;
  6554. width:53px;
  6555. height:21px;
  6556. background:inherit;
  6557. background-color:rgba(255, 255, 255, 0);
  6558. border:none;
  6559. border-radius:0px;
  6560. -moz-box-shadow:none;
  6561. -webkit-box-shadow:none;
  6562. box-shadow:none;
  6563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6564. font-weight:400;
  6565. font-style:normal;
  6566. font-size:12px;
  6567. color:rgba(255, 255, 255, 0.698039215686274);
  6568. text-align:left;
  6569. }
  6570. #u3928 {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:1241px;
  6574. top:471px;
  6575. width:53px;
  6576. height:21px;
  6577. display:flex;
  6578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6579. font-weight:400;
  6580. font-style:normal;
  6581. font-size:12px;
  6582. color:rgba(255, 255, 255, 0.698039215686274);
  6583. text-align:left;
  6584. }
  6585. #u3928 .text {
  6586. position:absolute;
  6587. align-self:center;
  6588. padding:2px 2px 2px 2px;
  6589. box-sizing:border-box;
  6590. width:100%;
  6591. }
  6592. #u3928_text {
  6593. border-width:0px;
  6594. white-space:nowrap;
  6595. text-transform:none;
  6596. }
  6597. #u3929_div {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:0px;
  6601. top:0px;
  6602. width:19px;
  6603. height:21px;
  6604. background:inherit;
  6605. background-color:rgba(255, 255, 255, 0);
  6606. border:none;
  6607. border-radius:0px;
  6608. -moz-box-shadow:none;
  6609. -webkit-box-shadow:none;
  6610. box-shadow:none;
  6611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6612. font-weight:400;
  6613. font-style:normal;
  6614. font-size:12px;
  6615. color:#FFFFFF;
  6616. text-align:left;
  6617. }
  6618. #u3929 {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:1327px;
  6622. top:471px;
  6623. width:19px;
  6624. height:21px;
  6625. display:flex;
  6626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6627. font-weight:400;
  6628. font-style:normal;
  6629. font-size:12px;
  6630. color:#FFFFFF;
  6631. text-align:left;
  6632. }
  6633. #u3929 .text {
  6634. position:absolute;
  6635. align-self:center;
  6636. padding:2px 2px 2px 2px;
  6637. box-sizing:border-box;
  6638. width:100%;
  6639. }
  6640. #u3929_text {
  6641. border-width:0px;
  6642. white-space:nowrap;
  6643. text-transform:none;
  6644. }
  6645. #u3930_div {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:49px;
  6651. height:21px;
  6652. background:inherit;
  6653. background-color:rgba(255, 255, 255, 0);
  6654. border:none;
  6655. border-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. #u3930 {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:1436px;
  6670. top:471px;
  6671. width:49px;
  6672. height:21px;
  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. #u3930 .text {
  6682. position:absolute;
  6683. align-self:center;
  6684. padding:2px 2px 2px 2px;
  6685. box-sizing:border-box;
  6686. width:100%;
  6687. }
  6688. #u3930_text {
  6689. border-width:0px;
  6690. white-space:nowrap;
  6691. text-transform:none;
  6692. }
  6693. #u3931_div {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:0px;
  6697. top:0px;
  6698. width:19px;
  6699. height:21px;
  6700. background:inherit;
  6701. background-color:rgba(255, 255, 255, 0);
  6702. border:none;
  6703. border-radius:0px;
  6704. -moz-box-shadow:none;
  6705. -webkit-box-shadow:none;
  6706. box-shadow:none;
  6707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. font-size:12px;
  6711. color:#FFFFFF;
  6712. text-align:left;
  6713. }
  6714. #u3931 {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:1392px;
  6718. top:471px;
  6719. width:19px;
  6720. height:21px;
  6721. display:flex;
  6722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6723. font-weight:400;
  6724. font-style:normal;
  6725. font-size:12px;
  6726. color:#FFFFFF;
  6727. text-align:left;
  6728. }
  6729. #u3931 .text {
  6730. position:absolute;
  6731. align-self:center;
  6732. padding:2px 2px 2px 2px;
  6733. box-sizing:border-box;
  6734. width:100%;
  6735. }
  6736. #u3931_text {
  6737. border-width:0px;
  6738. white-space:nowrap;
  6739. text-transform:none;
  6740. }
  6741. #u3932 {
  6742. border-width:0px;
  6743. position:absolute;
  6744. left:0px;
  6745. top:0px;
  6746. width:0px;
  6747. height:0px;
  6748. }
  6749. #u3933_div {
  6750. border-width:0px;
  6751. position:absolute;
  6752. left:0px;
  6753. top:0px;
  6754. width:240px;
  6755. height:23px;
  6756. background:inherit;
  6757. background-color:rgba(255, 255, 255, 0);
  6758. border:none;
  6759. border-radius:0px;
  6760. -moz-box-shadow:none;
  6761. -webkit-box-shadow:none;
  6762. box-shadow:none;
  6763. font-size:12px;
  6764. }
  6765. #u3933 {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:1241px;
  6769. top:494px;
  6770. width:240px;
  6771. height:23px;
  6772. display:flex;
  6773. font-size:12px;
  6774. }
  6775. #u3933 .text {
  6776. position:absolute;
  6777. align-self:center;
  6778. padding:2px 2px 2px 2px;
  6779. box-sizing:border-box;
  6780. width:100%;
  6781. }
  6782. #u3933_text {
  6783. border-width:0px;
  6784. word-wrap:break-word;
  6785. text-transform:none;
  6786. visibility:hidden;
  6787. }
  6788. #u3934_div {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:0px;
  6792. top:0px;
  6793. width:53px;
  6794. height:21px;
  6795. background:inherit;
  6796. background-color:rgba(255, 255, 255, 0);
  6797. border:none;
  6798. border-radius:0px;
  6799. -moz-box-shadow:none;
  6800. -webkit-box-shadow:none;
  6801. box-shadow:none;
  6802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6803. font-weight:400;
  6804. font-style:normal;
  6805. font-size:12px;
  6806. color:rgba(255, 255, 255, 0.698039215686274);
  6807. text-align:left;
  6808. }
  6809. #u3934 {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:1241px;
  6813. top:495px;
  6814. width:53px;
  6815. height:21px;
  6816. display:flex;
  6817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6818. font-weight:400;
  6819. font-style:normal;
  6820. font-size:12px;
  6821. color:rgba(255, 255, 255, 0.698039215686274);
  6822. text-align:left;
  6823. }
  6824. #u3934 .text {
  6825. position:absolute;
  6826. align-self:center;
  6827. padding:2px 2px 2px 2px;
  6828. box-sizing:border-box;
  6829. width:100%;
  6830. }
  6831. #u3934_text {
  6832. border-width:0px;
  6833. white-space:nowrap;
  6834. text-transform:none;
  6835. }
  6836. #u3935_div {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:19px;
  6842. height:21px;
  6843. background:inherit;
  6844. background-color:rgba(255, 255, 255, 0);
  6845. border:none;
  6846. border-radius:0px;
  6847. -moz-box-shadow:none;
  6848. -webkit-box-shadow:none;
  6849. box-shadow:none;
  6850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:12px;
  6854. color:#FFFFFF;
  6855. text-align:left;
  6856. }
  6857. #u3935 {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:1327px;
  6861. top:495px;
  6862. width:19px;
  6863. height:21px;
  6864. display:flex;
  6865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6866. font-weight:400;
  6867. font-style:normal;
  6868. font-size:12px;
  6869. color:#FFFFFF;
  6870. text-align:left;
  6871. }
  6872. #u3935 .text {
  6873. position:absolute;
  6874. align-self:center;
  6875. padding:2px 2px 2px 2px;
  6876. box-sizing:border-box;
  6877. width:100%;
  6878. }
  6879. #u3935_text {
  6880. border-width:0px;
  6881. white-space:nowrap;
  6882. text-transform:none;
  6883. }
  6884. #u3936_div {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:0px;
  6888. top:0px;
  6889. width:49px;
  6890. height:21px;
  6891. background:inherit;
  6892. background-color:rgba(255, 255, 255, 0);
  6893. border:none;
  6894. border-radius:0px;
  6895. -moz-box-shadow:none;
  6896. -webkit-box-shadow:none;
  6897. box-shadow:none;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:12px;
  6902. color:#FFFFFF;
  6903. text-align:left;
  6904. }
  6905. #u3936 {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:1436px;
  6909. top:495px;
  6910. width:49px;
  6911. height:21px;
  6912. display:flex;
  6913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6914. font-weight:400;
  6915. font-style:normal;
  6916. font-size:12px;
  6917. color:#FFFFFF;
  6918. text-align:left;
  6919. }
  6920. #u3936 .text {
  6921. position:absolute;
  6922. align-self:center;
  6923. padding:2px 2px 2px 2px;
  6924. box-sizing:border-box;
  6925. width:100%;
  6926. }
  6927. #u3936_text {
  6928. border-width:0px;
  6929. white-space:nowrap;
  6930. text-transform:none;
  6931. }
  6932. #u3937_div {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:0px;
  6936. top:0px;
  6937. width:19px;
  6938. height:21px;
  6939. background:inherit;
  6940. background-color:rgba(255, 255, 255, 0);
  6941. border:none;
  6942. border-radius:0px;
  6943. -moz-box-shadow:none;
  6944. -webkit-box-shadow:none;
  6945. box-shadow:none;
  6946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6947. font-weight:400;
  6948. font-style:normal;
  6949. font-size:12px;
  6950. color:#FFFFFF;
  6951. text-align:left;
  6952. }
  6953. #u3937 {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:1392px;
  6957. top:495px;
  6958. width:19px;
  6959. height:21px;
  6960. display:flex;
  6961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:12px;
  6965. color:#FFFFFF;
  6966. text-align:left;
  6967. }
  6968. #u3937 .text {
  6969. position:absolute;
  6970. align-self:center;
  6971. padding:2px 2px 2px 2px;
  6972. box-sizing:border-box;
  6973. width:100%;
  6974. }
  6975. #u3937_text {
  6976. border-width:0px;
  6977. white-space:nowrap;
  6978. text-transform:none;
  6979. }
  6980. #u3938 {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:0px;
  6984. top:0px;
  6985. width:0px;
  6986. height:0px;
  6987. }
  6988. #u3939_div {
  6989. border-width:0px;
  6990. position:absolute;
  6991. left:0px;
  6992. top:0px;
  6993. width:240px;
  6994. height:23px;
  6995. background:inherit;
  6996. background-color:rgba(255, 255, 255, 0);
  6997. border:none;
  6998. border-radius:0px;
  6999. -moz-box-shadow:none;
  7000. -webkit-box-shadow:none;
  7001. box-shadow:none;
  7002. font-size:12px;
  7003. }
  7004. #u3939 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:1241px;
  7008. top:518px;
  7009. width:240px;
  7010. height:23px;
  7011. display:flex;
  7012. font-size:12px;
  7013. }
  7014. #u3939 .text {
  7015. position:absolute;
  7016. align-self:center;
  7017. padding:2px 2px 2px 2px;
  7018. box-sizing:border-box;
  7019. width:100%;
  7020. }
  7021. #u3939_text {
  7022. border-width:0px;
  7023. word-wrap:break-word;
  7024. text-transform:none;
  7025. visibility:hidden;
  7026. }
  7027. #u3940_div {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:0px;
  7031. top:0px;
  7032. width:53px;
  7033. height:21px;
  7034. background:inherit;
  7035. background-color:rgba(255, 255, 255, 0);
  7036. border:none;
  7037. border-radius:0px;
  7038. -moz-box-shadow:none;
  7039. -webkit-box-shadow:none;
  7040. box-shadow:none;
  7041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7042. font-weight:400;
  7043. font-style:normal;
  7044. font-size:12px;
  7045. color:rgba(255, 255, 255, 0.698039215686274);
  7046. text-align:left;
  7047. }
  7048. #u3940 {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:1241px;
  7052. top:519px;
  7053. width:53px;
  7054. height:21px;
  7055. display:flex;
  7056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7057. font-weight:400;
  7058. font-style:normal;
  7059. font-size:12px;
  7060. color:rgba(255, 255, 255, 0.698039215686274);
  7061. text-align:left;
  7062. }
  7063. #u3940 .text {
  7064. position:absolute;
  7065. align-self:center;
  7066. padding:2px 2px 2px 2px;
  7067. box-sizing:border-box;
  7068. width:100%;
  7069. }
  7070. #u3940_text {
  7071. border-width:0px;
  7072. white-space:nowrap;
  7073. text-transform:none;
  7074. }
  7075. #u3941_div {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:0px;
  7079. top:0px;
  7080. width:19px;
  7081. height:21px;
  7082. background:inherit;
  7083. background-color:rgba(255, 255, 255, 0);
  7084. border:none;
  7085. border-radius:0px;
  7086. -moz-box-shadow:none;
  7087. -webkit-box-shadow:none;
  7088. box-shadow:none;
  7089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:12px;
  7093. color:#FFFFFF;
  7094. text-align:left;
  7095. }
  7096. #u3941 {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:1327px;
  7100. top:519px;
  7101. width:19px;
  7102. height:21px;
  7103. display:flex;
  7104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:12px;
  7108. color:#FFFFFF;
  7109. text-align:left;
  7110. }
  7111. #u3941 .text {
  7112. position:absolute;
  7113. align-self:center;
  7114. padding:2px 2px 2px 2px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u3941_text {
  7119. border-width:0px;
  7120. white-space:nowrap;
  7121. text-transform:none;
  7122. }
  7123. #u3942_div {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:0px;
  7127. top:0px;
  7128. width:49px;
  7129. height:21px;
  7130. background:inherit;
  7131. background-color:rgba(255, 255, 255, 0);
  7132. border:none;
  7133. border-radius:0px;
  7134. -moz-box-shadow:none;
  7135. -webkit-box-shadow:none;
  7136. box-shadow:none;
  7137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7138. font-weight:400;
  7139. font-style:normal;
  7140. font-size:12px;
  7141. color:#FFFFFF;
  7142. text-align:left;
  7143. }
  7144. #u3942 {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:1436px;
  7148. top:519px;
  7149. width:49px;
  7150. height:21px;
  7151. display:flex;
  7152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:12px;
  7156. color:#FFFFFF;
  7157. text-align:left;
  7158. }
  7159. #u3942 .text {
  7160. position:absolute;
  7161. align-self:center;
  7162. padding:2px 2px 2px 2px;
  7163. box-sizing:border-box;
  7164. width:100%;
  7165. }
  7166. #u3942_text {
  7167. border-width:0px;
  7168. white-space:nowrap;
  7169. text-transform:none;
  7170. }
  7171. #u3943_div {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:0px;
  7175. top:0px;
  7176. width:19px;
  7177. height:21px;
  7178. background:inherit;
  7179. background-color:rgba(255, 255, 255, 0);
  7180. border:none;
  7181. border-radius:0px;
  7182. -moz-box-shadow:none;
  7183. -webkit-box-shadow:none;
  7184. box-shadow:none;
  7185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7186. font-weight:400;
  7187. font-style:normal;
  7188. font-size:12px;
  7189. color:#FFFFFF;
  7190. text-align:left;
  7191. }
  7192. #u3943 {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:1392px;
  7196. top:519px;
  7197. width:19px;
  7198. height:21px;
  7199. display:flex;
  7200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7201. font-weight:400;
  7202. font-style:normal;
  7203. font-size:12px;
  7204. color:#FFFFFF;
  7205. text-align:left;
  7206. }
  7207. #u3943 .text {
  7208. position:absolute;
  7209. align-self:center;
  7210. padding:2px 2px 2px 2px;
  7211. box-sizing:border-box;
  7212. width:100%;
  7213. }
  7214. #u3943_text {
  7215. border-width:0px;
  7216. white-space:nowrap;
  7217. text-transform:none;
  7218. }
  7219. #u3944 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:0px;
  7225. height:0px;
  7226. }
  7227. #u3945_div {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:0px;
  7231. top:0px;
  7232. width:240px;
  7233. height:23px;
  7234. background:inherit;
  7235. background-color:rgba(255, 255, 255, 0);
  7236. border:none;
  7237. border-radius:0px;
  7238. -moz-box-shadow:none;
  7239. -webkit-box-shadow:none;
  7240. box-shadow:none;
  7241. font-size:12px;
  7242. }
  7243. #u3945 {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:1241px;
  7247. top:542px;
  7248. width:240px;
  7249. height:23px;
  7250. display:flex;
  7251. font-size:12px;
  7252. }
  7253. #u3945 .text {
  7254. position:absolute;
  7255. align-self:center;
  7256. padding:2px 2px 2px 2px;
  7257. box-sizing:border-box;
  7258. width:100%;
  7259. }
  7260. #u3945_text {
  7261. border-width:0px;
  7262. word-wrap:break-word;
  7263. text-transform:none;
  7264. visibility:hidden;
  7265. }
  7266. #u3946_div {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:0px;
  7270. top:0px;
  7271. width:53px;
  7272. height:21px;
  7273. background:inherit;
  7274. background-color:rgba(255, 255, 255, 0);
  7275. border:none;
  7276. border-radius:0px;
  7277. -moz-box-shadow:none;
  7278. -webkit-box-shadow:none;
  7279. box-shadow:none;
  7280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7281. font-weight:400;
  7282. font-style:normal;
  7283. font-size:12px;
  7284. color:rgba(255, 255, 255, 0.698039215686274);
  7285. text-align:left;
  7286. }
  7287. #u3946 {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:1241px;
  7291. top:543px;
  7292. width:53px;
  7293. height:21px;
  7294. display:flex;
  7295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7296. font-weight:400;
  7297. font-style:normal;
  7298. font-size:12px;
  7299. color:rgba(255, 255, 255, 0.698039215686274);
  7300. text-align:left;
  7301. }
  7302. #u3946 .text {
  7303. position:absolute;
  7304. align-self:center;
  7305. padding:2px 2px 2px 2px;
  7306. box-sizing:border-box;
  7307. width:100%;
  7308. }
  7309. #u3946_text {
  7310. border-width:0px;
  7311. white-space:nowrap;
  7312. text-transform:none;
  7313. }
  7314. #u3947_div {
  7315. border-width:0px;
  7316. position:absolute;
  7317. left:0px;
  7318. top:0px;
  7319. width:19px;
  7320. height:21px;
  7321. background:inherit;
  7322. background-color:rgba(255, 255, 255, 0);
  7323. border:none;
  7324. border-radius:0px;
  7325. -moz-box-shadow:none;
  7326. -webkit-box-shadow:none;
  7327. box-shadow:none;
  7328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7329. font-weight:400;
  7330. font-style:normal;
  7331. font-size:12px;
  7332. color:#FFFFFF;
  7333. text-align:left;
  7334. }
  7335. #u3947 {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:1327px;
  7339. top:543px;
  7340. width:19px;
  7341. height:21px;
  7342. display:flex;
  7343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7344. font-weight:400;
  7345. font-style:normal;
  7346. font-size:12px;
  7347. color:#FFFFFF;
  7348. text-align:left;
  7349. }
  7350. #u3947 .text {
  7351. position:absolute;
  7352. align-self:center;
  7353. padding:2px 2px 2px 2px;
  7354. box-sizing:border-box;
  7355. width:100%;
  7356. }
  7357. #u3947_text {
  7358. border-width:0px;
  7359. white-space:nowrap;
  7360. text-transform:none;
  7361. }
  7362. #u3948_div {
  7363. border-width:0px;
  7364. position:absolute;
  7365. left:0px;
  7366. top:0px;
  7367. width:49px;
  7368. height:21px;
  7369. background:inherit;
  7370. background-color:rgba(255, 255, 255, 0);
  7371. border:none;
  7372. border-radius:0px;
  7373. -moz-box-shadow:none;
  7374. -webkit-box-shadow:none;
  7375. box-shadow:none;
  7376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7377. font-weight:400;
  7378. font-style:normal;
  7379. font-size:12px;
  7380. color:#FFFFFF;
  7381. text-align:left;
  7382. }
  7383. #u3948 {
  7384. border-width:0px;
  7385. position:absolute;
  7386. left:1436px;
  7387. top:543px;
  7388. width:49px;
  7389. height:21px;
  7390. display:flex;
  7391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7392. font-weight:400;
  7393. font-style:normal;
  7394. font-size:12px;
  7395. color:#FFFFFF;
  7396. text-align:left;
  7397. }
  7398. #u3948 .text {
  7399. position:absolute;
  7400. align-self:center;
  7401. padding:2px 2px 2px 2px;
  7402. box-sizing:border-box;
  7403. width:100%;
  7404. }
  7405. #u3948_text {
  7406. border-width:0px;
  7407. white-space:nowrap;
  7408. text-transform:none;
  7409. }
  7410. #u3949_div {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:0px;
  7414. top:0px;
  7415. width:19px;
  7416. height:21px;
  7417. background:inherit;
  7418. background-color:rgba(255, 255, 255, 0);
  7419. border:none;
  7420. border-radius:0px;
  7421. -moz-box-shadow:none;
  7422. -webkit-box-shadow:none;
  7423. box-shadow:none;
  7424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7425. font-weight:400;
  7426. font-style:normal;
  7427. font-size:12px;
  7428. color:#FFFFFF;
  7429. text-align:left;
  7430. }
  7431. #u3949 {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:1392px;
  7435. top:543px;
  7436. width:19px;
  7437. height:21px;
  7438. display:flex;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:12px;
  7443. color:#FFFFFF;
  7444. text-align:left;
  7445. }
  7446. #u3949 .text {
  7447. position:absolute;
  7448. align-self:center;
  7449. padding:2px 2px 2px 2px;
  7450. box-sizing:border-box;
  7451. width:100%;
  7452. }
  7453. #u3949_text {
  7454. border-width:0px;
  7455. white-space:nowrap;
  7456. text-transform:none;
  7457. }
  7458. #u3950 {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:0px;
  7464. height:0px;
  7465. }
  7466. #u3951_img {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:0px;
  7470. top:0px;
  7471. width:56px;
  7472. height:50px;
  7473. }
  7474. #u3951 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:1236px;
  7478. top:271px;
  7479. width:56px;
  7480. height:50px;
  7481. display:flex;
  7482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7483. font-weight:400;
  7484. font-style:normal;
  7485. font-size:12px;
  7486. color:#FFFFFF;
  7487. text-align:left;
  7488. }
  7489. #u3951 .text {
  7490. position:absolute;
  7491. align-self:center;
  7492. padding:2px 2px 2px 10px;
  7493. box-sizing:border-box;
  7494. width:100%;
  7495. }
  7496. #u3951_text {
  7497. border-width:0px;
  7498. word-wrap:break-word;
  7499. text-transform:none;
  7500. visibility:hidden;
  7501. }
  7502. #u3952_div {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:0px;
  7506. top:0px;
  7507. width:30px;
  7508. height:17px;
  7509. background:inherit;
  7510. background-color:rgba(255, 255, 255, 0);
  7511. border:none;
  7512. border-radius:0px;
  7513. -moz-box-shadow:none;
  7514. -webkit-box-shadow:none;
  7515. box-shadow:none;
  7516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7517. font-weight:400;
  7518. font-style:normal;
  7519. font-size:12px;
  7520. color:#FFFFFF;
  7521. text-align:center;
  7522. }
  7523. #u3952 {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:1249px;
  7527. top:279px;
  7528. width:30px;
  7529. height:17px;
  7530. display:flex;
  7531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7532. font-weight:400;
  7533. font-style:normal;
  7534. font-size:12px;
  7535. color:#FFFFFF;
  7536. text-align:center;
  7537. }
  7538. #u3952 .text {
  7539. position:absolute;
  7540. align-self:flex-start;
  7541. padding:0px 0px 0px 0px;
  7542. box-sizing:border-box;
  7543. width:100%;
  7544. }
  7545. #u3952_text {
  7546. border-width:0px;
  7547. word-wrap:break-word;
  7548. text-transform:none;
  7549. }
  7550. #u3953_div {
  7551. border-width:0px;
  7552. position:absolute;
  7553. left:0px;
  7554. top:0px;
  7555. width:46px;
  7556. height:14px;
  7557. background:inherit;
  7558. background-color:rgba(255, 255, 255, 0);
  7559. border:none;
  7560. border-radius:0px;
  7561. -moz-box-shadow:none;
  7562. -webkit-box-shadow:none;
  7563. box-shadow:none;
  7564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7565. font-weight:400;
  7566. font-style:normal;
  7567. font-size:10px;
  7568. color:#FFFFFF;
  7569. text-align:center;
  7570. }
  7571. #u3953 {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:1242px;
  7575. top:299px;
  7576. width:46px;
  7577. height:14px;
  7578. display:flex;
  7579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:10px;
  7583. color:#FFFFFF;
  7584. text-align:center;
  7585. }
  7586. #u3953 .text {
  7587. position:absolute;
  7588. align-self:flex-start;
  7589. padding:0px 0px 0px 0px;
  7590. box-sizing:border-box;
  7591. width:100%;
  7592. }
  7593. #u3953_text {
  7594. border-width:0px;
  7595. word-wrap:break-word;
  7596. text-transform:none;
  7597. }
  7598. #u3954 {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:0px;
  7602. top:0px;
  7603. width:0px;
  7604. height:0px;
  7605. }
  7606. #u3955_img {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:0px;
  7610. top:0px;
  7611. width:56px;
  7612. height:50px;
  7613. }
  7614. #u3955 {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:1298px;
  7618. top:271px;
  7619. width:56px;
  7620. height:50px;
  7621. display:flex;
  7622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7623. font-weight:400;
  7624. font-style:normal;
  7625. font-size:12px;
  7626. color:#FFFFFF;
  7627. text-align:left;
  7628. }
  7629. #u3955 .text {
  7630. position:absolute;
  7631. align-self:center;
  7632. padding:2px 2px 2px 10px;
  7633. box-sizing:border-box;
  7634. width:100%;
  7635. }
  7636. #u3955_text {
  7637. border-width:0px;
  7638. word-wrap:break-word;
  7639. text-transform:none;
  7640. visibility:hidden;
  7641. }
  7642. #u3956_div {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:0px;
  7646. top:0px;
  7647. width:30px;
  7648. height:17px;
  7649. background:inherit;
  7650. background-color:rgba(255, 255, 255, 0);
  7651. border:none;
  7652. border-radius:0px;
  7653. -moz-box-shadow:none;
  7654. -webkit-box-shadow:none;
  7655. box-shadow:none;
  7656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7657. font-weight:400;
  7658. font-style:normal;
  7659. font-size:12px;
  7660. color:#FFFFFF;
  7661. text-align:center;
  7662. }
  7663. #u3956 {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:1312px;
  7667. top:279px;
  7668. width:30px;
  7669. height:17px;
  7670. display:flex;
  7671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7672. font-weight:400;
  7673. font-style:normal;
  7674. font-size:12px;
  7675. color:#FFFFFF;
  7676. text-align:center;
  7677. }
  7678. #u3956 .text {
  7679. position:absolute;
  7680. align-self:flex-start;
  7681. padding:0px 0px 0px 0px;
  7682. box-sizing:border-box;
  7683. width:100%;
  7684. }
  7685. #u3956_text {
  7686. border-width:0px;
  7687. word-wrap:break-word;
  7688. text-transform:none;
  7689. }
  7690. #u3957_div {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:0px;
  7694. top:0px;
  7695. width:46px;
  7696. height:14px;
  7697. background:inherit;
  7698. background-color:rgba(255, 255, 255, 0);
  7699. border:none;
  7700. border-radius:0px;
  7701. -moz-box-shadow:none;
  7702. -webkit-box-shadow:none;
  7703. box-shadow:none;
  7704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7705. font-weight:400;
  7706. font-style:normal;
  7707. font-size:10px;
  7708. color:#FFFFFF;
  7709. text-align:center;
  7710. }
  7711. #u3957 {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:1304px;
  7715. top:299px;
  7716. width:46px;
  7717. height:14px;
  7718. display:flex;
  7719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7720. font-weight:400;
  7721. font-style:normal;
  7722. font-size:10px;
  7723. color:#FFFFFF;
  7724. text-align:center;
  7725. }
  7726. #u3957 .text {
  7727. position:absolute;
  7728. align-self:flex-start;
  7729. padding:0px 0px 0px 0px;
  7730. box-sizing:border-box;
  7731. width:100%;
  7732. }
  7733. #u3957_text {
  7734. border-width:0px;
  7735. word-wrap:break-word;
  7736. text-transform:none;
  7737. }
  7738. #u3958 {
  7739. border-width:0px;
  7740. position:absolute;
  7741. left:0px;
  7742. top:0px;
  7743. width:0px;
  7744. height:0px;
  7745. }
  7746. #u3959_img {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:56px;
  7752. height:50px;
  7753. }
  7754. #u3959 {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:1358px;
  7758. top:271px;
  7759. width:56px;
  7760. height:50px;
  7761. display:flex;
  7762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7763. font-weight:400;
  7764. font-style:normal;
  7765. font-size:12px;
  7766. color:#FFFFFF;
  7767. text-align:left;
  7768. }
  7769. #u3959 .text {
  7770. position:absolute;
  7771. align-self:center;
  7772. padding:2px 2px 2px 10px;
  7773. box-sizing:border-box;
  7774. width:100%;
  7775. }
  7776. #u3959_text {
  7777. border-width:0px;
  7778. word-wrap:break-word;
  7779. text-transform:none;
  7780. visibility:hidden;
  7781. }
  7782. #u3960_div {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:0px;
  7786. top:0px;
  7787. width:30px;
  7788. height:17px;
  7789. background:inherit;
  7790. background-color:rgba(255, 255, 255, 0);
  7791. border:none;
  7792. border-radius:0px;
  7793. -moz-box-shadow:none;
  7794. -webkit-box-shadow:none;
  7795. box-shadow:none;
  7796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7797. font-weight:400;
  7798. font-style:normal;
  7799. font-size:12px;
  7800. color:#FFFFFF;
  7801. text-align:center;
  7802. }
  7803. #u3960 {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:1372px;
  7807. top:279px;
  7808. width:30px;
  7809. height:17px;
  7810. display:flex;
  7811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7812. font-weight:400;
  7813. font-style:normal;
  7814. font-size:12px;
  7815. color:#FFFFFF;
  7816. text-align:center;
  7817. }
  7818. #u3960 .text {
  7819. position:absolute;
  7820. align-self:flex-start;
  7821. padding:0px 0px 0px 0px;
  7822. box-sizing:border-box;
  7823. width:100%;
  7824. }
  7825. #u3960_text {
  7826. border-width:0px;
  7827. word-wrap:break-word;
  7828. text-transform:none;
  7829. }
  7830. #u3961_div {
  7831. border-width:0px;
  7832. position:absolute;
  7833. left:0px;
  7834. top:0px;
  7835. width:46px;
  7836. height:14px;
  7837. background:inherit;
  7838. background-color:rgba(255, 255, 255, 0);
  7839. border:none;
  7840. border-radius:0px;
  7841. -moz-box-shadow:none;
  7842. -webkit-box-shadow:none;
  7843. box-shadow:none;
  7844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7845. font-weight:400;
  7846. font-style:normal;
  7847. font-size:10px;
  7848. color:#FFFFFF;
  7849. text-align:center;
  7850. }
  7851. #u3961 {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:1364px;
  7855. top:299px;
  7856. width:46px;
  7857. height:14px;
  7858. display:flex;
  7859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7860. font-weight:400;
  7861. font-style:normal;
  7862. font-size:10px;
  7863. color:#FFFFFF;
  7864. text-align:center;
  7865. }
  7866. #u3961 .text {
  7867. position:absolute;
  7868. align-self:flex-start;
  7869. padding:0px 0px 0px 0px;
  7870. box-sizing:border-box;
  7871. width:100%;
  7872. }
  7873. #u3961_text {
  7874. border-width:0px;
  7875. word-wrap:break-word;
  7876. text-transform:none;
  7877. }
  7878. #u3962 {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:0px;
  7882. top:0px;
  7883. width:0px;
  7884. height:0px;
  7885. }
  7886. #u3963_img {
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:0px;
  7890. top:0px;
  7891. width:56px;
  7892. height:50px;
  7893. }
  7894. #u3963 {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:1420px;
  7898. top:271px;
  7899. width:56px;
  7900. height:50px;
  7901. display:flex;
  7902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7903. font-weight:400;
  7904. font-style:normal;
  7905. font-size:12px;
  7906. color:#FFFFFF;
  7907. text-align:left;
  7908. }
  7909. #u3963 .text {
  7910. position:absolute;
  7911. align-self:center;
  7912. padding:2px 2px 2px 10px;
  7913. box-sizing:border-box;
  7914. width:100%;
  7915. }
  7916. #u3963_text {
  7917. border-width:0px;
  7918. word-wrap:break-word;
  7919. text-transform:none;
  7920. visibility:hidden;
  7921. }
  7922. #u3964_div {
  7923. border-width:0px;
  7924. position:absolute;
  7925. left:0px;
  7926. top:0px;
  7927. width:30px;
  7928. height:17px;
  7929. background:inherit;
  7930. background-color:rgba(255, 255, 255, 0);
  7931. border:none;
  7932. border-radius:0px;
  7933. -moz-box-shadow:none;
  7934. -webkit-box-shadow:none;
  7935. box-shadow:none;
  7936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7937. font-weight:400;
  7938. font-style:normal;
  7939. font-size:12px;
  7940. color:#FFFFFF;
  7941. text-align:center;
  7942. }
  7943. #u3964 {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:1434px;
  7947. top:279px;
  7948. width:30px;
  7949. height:17px;
  7950. display:flex;
  7951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7952. font-weight:400;
  7953. font-style:normal;
  7954. font-size:12px;
  7955. color:#FFFFFF;
  7956. text-align:center;
  7957. }
  7958. #u3964 .text {
  7959. position:absolute;
  7960. align-self:flex-start;
  7961. padding:0px 0px 0px 0px;
  7962. box-sizing:border-box;
  7963. width:100%;
  7964. }
  7965. #u3964_text {
  7966. border-width:0px;
  7967. word-wrap:break-word;
  7968. text-transform:none;
  7969. }
  7970. #u3965_div {
  7971. border-width:0px;
  7972. position:absolute;
  7973. left:0px;
  7974. top:0px;
  7975. width:46px;
  7976. height:14px;
  7977. background:inherit;
  7978. background-color:rgba(255, 255, 255, 0);
  7979. border:none;
  7980. border-radius:0px;
  7981. -moz-box-shadow:none;
  7982. -webkit-box-shadow:none;
  7983. box-shadow:none;
  7984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7985. font-weight:400;
  7986. font-style:normal;
  7987. font-size:10px;
  7988. color:#FFFFFF;
  7989. text-align:center;
  7990. }
  7991. #u3965 {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:1426px;
  7995. top:299px;
  7996. width:46px;
  7997. height:14px;
  7998. display:flex;
  7999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8000. font-weight:400;
  8001. font-style:normal;
  8002. font-size:10px;
  8003. color:#FFFFFF;
  8004. text-align:center;
  8005. }
  8006. #u3965 .text {
  8007. position:absolute;
  8008. align-self:flex-start;
  8009. padding:0px 0px 0px 0px;
  8010. box-sizing:border-box;
  8011. width:100%;
  8012. }
  8013. #u3965_text {
  8014. border-width:0px;
  8015. word-wrap:break-word;
  8016. text-transform:none;
  8017. }
  8018. #u3966 {
  8019. border-width:0px;
  8020. position:absolute;
  8021. left:0px;
  8022. top:0px;
  8023. width:0px;
  8024. height:0px;
  8025. }
  8026. #u3967_img {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:0px;
  8030. top:0px;
  8031. width:56px;
  8032. height:50px;
  8033. }
  8034. #u3967 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:1236px;
  8038. top:326px;
  8039. width:56px;
  8040. height:50px;
  8041. display:flex;
  8042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8043. font-weight:400;
  8044. font-style:normal;
  8045. font-size:12px;
  8046. color:#FFFFFF;
  8047. text-align:left;
  8048. }
  8049. #u3967 .text {
  8050. position:absolute;
  8051. align-self:center;
  8052. padding:2px 2px 2px 10px;
  8053. box-sizing:border-box;
  8054. width:100%;
  8055. }
  8056. #u3967_text {
  8057. border-width:0px;
  8058. word-wrap:break-word;
  8059. text-transform:none;
  8060. visibility:hidden;
  8061. }
  8062. #u3968_div {
  8063. border-width:0px;
  8064. position:absolute;
  8065. left:0px;
  8066. top:0px;
  8067. width:30px;
  8068. height:17px;
  8069. background:inherit;
  8070. background-color:rgba(255, 255, 255, 0);
  8071. border:none;
  8072. border-radius:0px;
  8073. -moz-box-shadow:none;
  8074. -webkit-box-shadow:none;
  8075. box-shadow:none;
  8076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8077. font-weight:400;
  8078. font-style:normal;
  8079. font-size:12px;
  8080. color:#FFFFFF;
  8081. text-align:center;
  8082. }
  8083. #u3968 {
  8084. border-width:0px;
  8085. position:absolute;
  8086. left:1249px;
  8087. top:334px;
  8088. width:30px;
  8089. height:17px;
  8090. display:flex;
  8091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8092. font-weight:400;
  8093. font-style:normal;
  8094. font-size:12px;
  8095. color:#FFFFFF;
  8096. text-align:center;
  8097. }
  8098. #u3968 .text {
  8099. position:absolute;
  8100. align-self:flex-start;
  8101. padding:0px 0px 0px 0px;
  8102. box-sizing:border-box;
  8103. width:100%;
  8104. }
  8105. #u3968_text {
  8106. border-width:0px;
  8107. word-wrap:break-word;
  8108. text-transform:none;
  8109. }
  8110. #u3969_div {
  8111. border-width:0px;
  8112. position:absolute;
  8113. left:0px;
  8114. top:0px;
  8115. width:46px;
  8116. height:14px;
  8117. background:inherit;
  8118. background-color:rgba(255, 255, 255, 0);
  8119. border:none;
  8120. border-radius:0px;
  8121. -moz-box-shadow:none;
  8122. -webkit-box-shadow:none;
  8123. box-shadow:none;
  8124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8125. font-weight:400;
  8126. font-style:normal;
  8127. font-size:10px;
  8128. color:#FFFFFF;
  8129. text-align:center;
  8130. }
  8131. #u3969 {
  8132. border-width:0px;
  8133. position:absolute;
  8134. left:1242px;
  8135. top:354px;
  8136. width:46px;
  8137. height:14px;
  8138. display:flex;
  8139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8140. font-weight:400;
  8141. font-style:normal;
  8142. font-size:10px;
  8143. color:#FFFFFF;
  8144. text-align:center;
  8145. }
  8146. #u3969 .text {
  8147. position:absolute;
  8148. align-self:flex-start;
  8149. padding:0px 0px 0px 0px;
  8150. box-sizing:border-box;
  8151. width:100%;
  8152. }
  8153. #u3969_text {
  8154. border-width:0px;
  8155. word-wrap:break-word;
  8156. text-transform:none;
  8157. }
  8158. #u3970 {
  8159. border-width:0px;
  8160. position:absolute;
  8161. left:0px;
  8162. top:0px;
  8163. width:0px;
  8164. height:0px;
  8165. }
  8166. #u3971_img {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:56px;
  8172. height:50px;
  8173. }
  8174. #u3971 {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:1298px;
  8178. top:326px;
  8179. width:56px;
  8180. height:50px;
  8181. display:flex;
  8182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8183. font-weight:400;
  8184. font-style:normal;
  8185. font-size:12px;
  8186. color:#FFFFFF;
  8187. text-align:left;
  8188. }
  8189. #u3971 .text {
  8190. position:absolute;
  8191. align-self:center;
  8192. padding:2px 2px 2px 10px;
  8193. box-sizing:border-box;
  8194. width:100%;
  8195. }
  8196. #u3971_text {
  8197. border-width:0px;
  8198. word-wrap:break-word;
  8199. text-transform:none;
  8200. visibility:hidden;
  8201. }
  8202. #u3972_div {
  8203. border-width:0px;
  8204. position:absolute;
  8205. left:0px;
  8206. top:0px;
  8207. width:30px;
  8208. height:17px;
  8209. background:inherit;
  8210. background-color:rgba(255, 255, 255, 0);
  8211. border:none;
  8212. border-radius:0px;
  8213. -moz-box-shadow:none;
  8214. -webkit-box-shadow:none;
  8215. box-shadow:none;
  8216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8217. font-weight:400;
  8218. font-style:normal;
  8219. font-size:12px;
  8220. color:#FFFFFF;
  8221. text-align:center;
  8222. }
  8223. #u3972 {
  8224. border-width:0px;
  8225. position:absolute;
  8226. left:1312px;
  8227. top:334px;
  8228. width:30px;
  8229. height:17px;
  8230. display:flex;
  8231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8232. font-weight:400;
  8233. font-style:normal;
  8234. font-size:12px;
  8235. color:#FFFFFF;
  8236. text-align:center;
  8237. }
  8238. #u3972 .text {
  8239. position:absolute;
  8240. align-self:flex-start;
  8241. padding:0px 0px 0px 0px;
  8242. box-sizing:border-box;
  8243. width:100%;
  8244. }
  8245. #u3972_text {
  8246. border-width:0px;
  8247. word-wrap:break-word;
  8248. text-transform:none;
  8249. }
  8250. #u3973_div {
  8251. border-width:0px;
  8252. position:absolute;
  8253. left:0px;
  8254. top:0px;
  8255. width:46px;
  8256. height:14px;
  8257. background:inherit;
  8258. background-color:rgba(255, 255, 255, 0);
  8259. border:none;
  8260. border-radius:0px;
  8261. -moz-box-shadow:none;
  8262. -webkit-box-shadow:none;
  8263. box-shadow:none;
  8264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8265. font-weight:400;
  8266. font-style:normal;
  8267. font-size:10px;
  8268. color:#FFFFFF;
  8269. text-align:center;
  8270. }
  8271. #u3973 {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:1304px;
  8275. top:354px;
  8276. width:46px;
  8277. height:14px;
  8278. display:flex;
  8279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8280. font-weight:400;
  8281. font-style:normal;
  8282. font-size:10px;
  8283. color:#FFFFFF;
  8284. text-align:center;
  8285. }
  8286. #u3973 .text {
  8287. position:absolute;
  8288. align-self:flex-start;
  8289. padding:0px 0px 0px 0px;
  8290. box-sizing:border-box;
  8291. width:100%;
  8292. }
  8293. #u3973_text {
  8294. border-width:0px;
  8295. word-wrap:break-word;
  8296. text-transform:none;
  8297. }
  8298. #u3974 {
  8299. border-width:0px;
  8300. position:absolute;
  8301. left:0px;
  8302. top:0px;
  8303. width:0px;
  8304. height:0px;
  8305. }
  8306. #u3975_img {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:0px;
  8310. top:0px;
  8311. width:56px;
  8312. height:50px;
  8313. }
  8314. #u3975 {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:1358px;
  8318. top:326px;
  8319. width:56px;
  8320. height:50px;
  8321. display:flex;
  8322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8323. font-weight:400;
  8324. font-style:normal;
  8325. font-size:12px;
  8326. color:#FFFFFF;
  8327. text-align:left;
  8328. }
  8329. #u3975 .text {
  8330. position:absolute;
  8331. align-self:center;
  8332. padding:2px 2px 2px 10px;
  8333. box-sizing:border-box;
  8334. width:100%;
  8335. }
  8336. #u3975_text {
  8337. border-width:0px;
  8338. word-wrap:break-word;
  8339. text-transform:none;
  8340. visibility:hidden;
  8341. }
  8342. #u3976_div {
  8343. border-width:0px;
  8344. position:absolute;
  8345. left:0px;
  8346. top:0px;
  8347. width:30px;
  8348. height:17px;
  8349. background:inherit;
  8350. background-color:rgba(255, 255, 255, 0);
  8351. border:none;
  8352. border-radius:0px;
  8353. -moz-box-shadow:none;
  8354. -webkit-box-shadow:none;
  8355. box-shadow:none;
  8356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8357. font-weight:400;
  8358. font-style:normal;
  8359. font-size:12px;
  8360. color:#FFFFFF;
  8361. text-align:center;
  8362. }
  8363. #u3976 {
  8364. border-width:0px;
  8365. position:absolute;
  8366. left:1372px;
  8367. top:334px;
  8368. width:30px;
  8369. height:17px;
  8370. display:flex;
  8371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8372. font-weight:400;
  8373. font-style:normal;
  8374. font-size:12px;
  8375. color:#FFFFFF;
  8376. text-align:center;
  8377. }
  8378. #u3976 .text {
  8379. position:absolute;
  8380. align-self:flex-start;
  8381. padding:0px 0px 0px 0px;
  8382. box-sizing:border-box;
  8383. width:100%;
  8384. }
  8385. #u3976_text {
  8386. border-width:0px;
  8387. word-wrap:break-word;
  8388. text-transform:none;
  8389. }
  8390. #u3977_div {
  8391. border-width:0px;
  8392. position:absolute;
  8393. left:0px;
  8394. top:0px;
  8395. width:46px;
  8396. height:14px;
  8397. background:inherit;
  8398. background-color:rgba(255, 255, 255, 0);
  8399. border:none;
  8400. border-radius:0px;
  8401. -moz-box-shadow:none;
  8402. -webkit-box-shadow:none;
  8403. box-shadow:none;
  8404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8405. font-weight:400;
  8406. font-style:normal;
  8407. font-size:10px;
  8408. color:#FFFFFF;
  8409. text-align:center;
  8410. }
  8411. #u3977 {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:1364px;
  8415. top:354px;
  8416. width:46px;
  8417. height:14px;
  8418. display:flex;
  8419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8420. font-weight:400;
  8421. font-style:normal;
  8422. font-size:10px;
  8423. color:#FFFFFF;
  8424. text-align:center;
  8425. }
  8426. #u3977 .text {
  8427. position:absolute;
  8428. align-self:flex-start;
  8429. padding:0px 0px 0px 0px;
  8430. box-sizing:border-box;
  8431. width:100%;
  8432. }
  8433. #u3977_text {
  8434. border-width:0px;
  8435. word-wrap:break-word;
  8436. text-transform:none;
  8437. }
  8438. #u3978 {
  8439. border-width:0px;
  8440. position:absolute;
  8441. left:0px;
  8442. top:0px;
  8443. width:0px;
  8444. height:0px;
  8445. }
  8446. #u3979_div {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:0px;
  8450. top:0px;
  8451. width:240px;
  8452. height:23px;
  8453. background:inherit;
  8454. background-color:rgba(255, 255, 255, 0);
  8455. border:none;
  8456. border-radius:0px;
  8457. -moz-box-shadow:none;
  8458. -webkit-box-shadow:none;
  8459. box-shadow:none;
  8460. font-size:12px;
  8461. }
  8462. #u3979 {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:1241px;
  8466. top:566px;
  8467. width:240px;
  8468. height:23px;
  8469. display:flex;
  8470. font-size:12px;
  8471. }
  8472. #u3979 .text {
  8473. position:absolute;
  8474. align-self:center;
  8475. padding:2px 2px 2px 2px;
  8476. box-sizing:border-box;
  8477. width:100%;
  8478. }
  8479. #u3979_text {
  8480. border-width:0px;
  8481. word-wrap:break-word;
  8482. text-transform:none;
  8483. visibility:hidden;
  8484. }
  8485. #u3980_div {
  8486. border-width:0px;
  8487. position:absolute;
  8488. left:0px;
  8489. top:0px;
  8490. width:53px;
  8491. height:21px;
  8492. background:inherit;
  8493. background-color:rgba(255, 255, 255, 0);
  8494. border:none;
  8495. border-radius:0px;
  8496. -moz-box-shadow:none;
  8497. -webkit-box-shadow:none;
  8498. box-shadow:none;
  8499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8500. font-weight:400;
  8501. font-style:normal;
  8502. font-size:12px;
  8503. color:rgba(255, 255, 255, 0.698039215686274);
  8504. text-align:left;
  8505. }
  8506. #u3980 {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:1241px;
  8510. top:567px;
  8511. width:53px;
  8512. height:21px;
  8513. display:flex;
  8514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8515. font-weight:400;
  8516. font-style:normal;
  8517. font-size:12px;
  8518. color:rgba(255, 255, 255, 0.698039215686274);
  8519. text-align:left;
  8520. }
  8521. #u3980 .text {
  8522. position:absolute;
  8523. align-self:center;
  8524. padding:2px 2px 2px 2px;
  8525. box-sizing:border-box;
  8526. width:100%;
  8527. }
  8528. #u3980_text {
  8529. border-width:0px;
  8530. white-space:nowrap;
  8531. text-transform:none;
  8532. }
  8533. #u3981_div {
  8534. border-width:0px;
  8535. position:absolute;
  8536. left:0px;
  8537. top:0px;
  8538. width:19px;
  8539. height:21px;
  8540. background:inherit;
  8541. background-color:rgba(255, 255, 255, 0);
  8542. border:none;
  8543. border-radius:0px;
  8544. -moz-box-shadow:none;
  8545. -webkit-box-shadow:none;
  8546. box-shadow:none;
  8547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8548. font-weight:400;
  8549. font-style:normal;
  8550. font-size:12px;
  8551. color:#FFFFFF;
  8552. text-align:left;
  8553. }
  8554. #u3981 {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:1327px;
  8558. top:567px;
  8559. width:19px;
  8560. height:21px;
  8561. display:flex;
  8562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8563. font-weight:400;
  8564. font-style:normal;
  8565. font-size:12px;
  8566. color:#FFFFFF;
  8567. text-align:left;
  8568. }
  8569. #u3981 .text {
  8570. position:absolute;
  8571. align-self:center;
  8572. padding:2px 2px 2px 2px;
  8573. box-sizing:border-box;
  8574. width:100%;
  8575. }
  8576. #u3981_text {
  8577. border-width:0px;
  8578. white-space:nowrap;
  8579. text-transform:none;
  8580. }
  8581. #u3982_div {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:0px;
  8585. top:0px;
  8586. width:49px;
  8587. height:21px;
  8588. background:inherit;
  8589. background-color:rgba(255, 255, 255, 0);
  8590. border:none;
  8591. border-radius:0px;
  8592. -moz-box-shadow:none;
  8593. -webkit-box-shadow:none;
  8594. box-shadow:none;
  8595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8596. font-weight:400;
  8597. font-style:normal;
  8598. font-size:12px;
  8599. color:#FFFFFF;
  8600. text-align:left;
  8601. }
  8602. #u3982 {
  8603. border-width:0px;
  8604. position:absolute;
  8605. left:1436px;
  8606. top:567px;
  8607. width:49px;
  8608. height:21px;
  8609. display:flex;
  8610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8611. font-weight:400;
  8612. font-style:normal;
  8613. font-size:12px;
  8614. color:#FFFFFF;
  8615. text-align:left;
  8616. }
  8617. #u3982 .text {
  8618. position:absolute;
  8619. align-self:center;
  8620. padding:2px 2px 2px 2px;
  8621. box-sizing:border-box;
  8622. width:100%;
  8623. }
  8624. #u3982_text {
  8625. border-width:0px;
  8626. white-space:nowrap;
  8627. text-transform:none;
  8628. }
  8629. #u3983_div {
  8630. border-width:0px;
  8631. position:absolute;
  8632. left:0px;
  8633. top:0px;
  8634. width:19px;
  8635. height:21px;
  8636. background:inherit;
  8637. background-color:rgba(255, 255, 255, 0);
  8638. border:none;
  8639. border-radius:0px;
  8640. -moz-box-shadow:none;
  8641. -webkit-box-shadow:none;
  8642. box-shadow:none;
  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. #u3983 {
  8651. border-width:0px;
  8652. position:absolute;
  8653. left:1392px;
  8654. top:567px;
  8655. width:19px;
  8656. height:21px;
  8657. display:flex;
  8658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8659. font-weight:400;
  8660. font-style:normal;
  8661. font-size:12px;
  8662. color:#FFFFFF;
  8663. text-align:left;
  8664. }
  8665. #u3983 .text {
  8666. position:absolute;
  8667. align-self:center;
  8668. padding:2px 2px 2px 2px;
  8669. box-sizing:border-box;
  8670. width:100%;
  8671. }
  8672. #u3983_text {
  8673. border-width:0px;
  8674. white-space:nowrap;
  8675. text-transform:none;
  8676. }
  8677. #u3984 {
  8678. border-width:0px;
  8679. position:absolute;
  8680. left:0px;
  8681. top:0px;
  8682. width:0px;
  8683. height:0px;
  8684. }
  8685. #u3985_div {
  8686. border-width:0px;
  8687. position:absolute;
  8688. left:0px;
  8689. top:0px;
  8690. width:240px;
  8691. height:23px;
  8692. background:inherit;
  8693. background-color:rgba(255, 255, 255, 0);
  8694. border:none;
  8695. border-radius:0px;
  8696. -moz-box-shadow:none;
  8697. -webkit-box-shadow:none;
  8698. box-shadow:none;
  8699. font-size:12px;
  8700. }
  8701. #u3985 {
  8702. border-width:0px;
  8703. position:absolute;
  8704. left:1241px;
  8705. top:590px;
  8706. width:240px;
  8707. height:23px;
  8708. display:flex;
  8709. font-size:12px;
  8710. }
  8711. #u3985 .text {
  8712. position:absolute;
  8713. align-self:center;
  8714. padding:2px 2px 2px 2px;
  8715. box-sizing:border-box;
  8716. width:100%;
  8717. }
  8718. #u3985_text {
  8719. border-width:0px;
  8720. word-wrap:break-word;
  8721. text-transform:none;
  8722. visibility:hidden;
  8723. }
  8724. #u3986_div {
  8725. border-width:0px;
  8726. position:absolute;
  8727. left:0px;
  8728. top:0px;
  8729. width:53px;
  8730. height:21px;
  8731. background:inherit;
  8732. background-color:rgba(255, 255, 255, 0);
  8733. border:none;
  8734. border-radius:0px;
  8735. -moz-box-shadow:none;
  8736. -webkit-box-shadow:none;
  8737. box-shadow:none;
  8738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8739. font-weight:400;
  8740. font-style:normal;
  8741. font-size:12px;
  8742. color:rgba(255, 255, 255, 0.698039215686274);
  8743. text-align:left;
  8744. }
  8745. #u3986 {
  8746. border-width:0px;
  8747. position:absolute;
  8748. left:1241px;
  8749. top:591px;
  8750. width:53px;
  8751. height:21px;
  8752. display:flex;
  8753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8754. font-weight:400;
  8755. font-style:normal;
  8756. font-size:12px;
  8757. color:rgba(255, 255, 255, 0.698039215686274);
  8758. text-align:left;
  8759. }
  8760. #u3986 .text {
  8761. position:absolute;
  8762. align-self:center;
  8763. padding:2px 2px 2px 2px;
  8764. box-sizing:border-box;
  8765. width:100%;
  8766. }
  8767. #u3986_text {
  8768. border-width:0px;
  8769. white-space:nowrap;
  8770. text-transform:none;
  8771. }
  8772. #u3987_div {
  8773. border-width:0px;
  8774. position:absolute;
  8775. left:0px;
  8776. top:0px;
  8777. width:19px;
  8778. height:21px;
  8779. background:inherit;
  8780. background-color:rgba(255, 255, 255, 0);
  8781. border:none;
  8782. border-radius:0px;
  8783. -moz-box-shadow:none;
  8784. -webkit-box-shadow:none;
  8785. box-shadow:none;
  8786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8787. font-weight:400;
  8788. font-style:normal;
  8789. font-size:12px;
  8790. color:#FFFFFF;
  8791. text-align:left;
  8792. }
  8793. #u3987 {
  8794. border-width:0px;
  8795. position:absolute;
  8796. left:1327px;
  8797. top:591px;
  8798. width:19px;
  8799. height:21px;
  8800. display:flex;
  8801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8802. font-weight:400;
  8803. font-style:normal;
  8804. font-size:12px;
  8805. color:#FFFFFF;
  8806. text-align:left;
  8807. }
  8808. #u3987 .text {
  8809. position:absolute;
  8810. align-self:center;
  8811. padding:2px 2px 2px 2px;
  8812. box-sizing:border-box;
  8813. width:100%;
  8814. }
  8815. #u3987_text {
  8816. border-width:0px;
  8817. white-space:nowrap;
  8818. text-transform:none;
  8819. }
  8820. #u3988_div {
  8821. border-width:0px;
  8822. position:absolute;
  8823. left:0px;
  8824. top:0px;
  8825. width:49px;
  8826. height:21px;
  8827. background:inherit;
  8828. background-color:rgba(255, 255, 255, 0);
  8829. border:none;
  8830. border-radius:0px;
  8831. -moz-box-shadow:none;
  8832. -webkit-box-shadow:none;
  8833. box-shadow:none;
  8834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8835. font-weight:400;
  8836. font-style:normal;
  8837. font-size:12px;
  8838. color:#FFFFFF;
  8839. text-align:left;
  8840. }
  8841. #u3988 {
  8842. border-width:0px;
  8843. position:absolute;
  8844. left:1436px;
  8845. top:591px;
  8846. width:49px;
  8847. height:21px;
  8848. display:flex;
  8849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8850. font-weight:400;
  8851. font-style:normal;
  8852. font-size:12px;
  8853. color:#FFFFFF;
  8854. text-align:left;
  8855. }
  8856. #u3988 .text {
  8857. position:absolute;
  8858. align-self:center;
  8859. padding:2px 2px 2px 2px;
  8860. box-sizing:border-box;
  8861. width:100%;
  8862. }
  8863. #u3988_text {
  8864. border-width:0px;
  8865. white-space:nowrap;
  8866. text-transform:none;
  8867. }
  8868. #u3989_div {
  8869. border-width:0px;
  8870. position:absolute;
  8871. left:0px;
  8872. top:0px;
  8873. width:19px;
  8874. height:21px;
  8875. background:inherit;
  8876. background-color:rgba(255, 255, 255, 0);
  8877. border:none;
  8878. border-radius:0px;
  8879. -moz-box-shadow:none;
  8880. -webkit-box-shadow:none;
  8881. box-shadow:none;
  8882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8883. font-weight:400;
  8884. font-style:normal;
  8885. font-size:12px;
  8886. color:#FFFFFF;
  8887. text-align:left;
  8888. }
  8889. #u3989 {
  8890. border-width:0px;
  8891. position:absolute;
  8892. left:1392px;
  8893. top:591px;
  8894. width:19px;
  8895. height:21px;
  8896. display:flex;
  8897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8898. font-weight:400;
  8899. font-style:normal;
  8900. font-size:12px;
  8901. color:#FFFFFF;
  8902. text-align:left;
  8903. }
  8904. #u3989 .text {
  8905. position:absolute;
  8906. align-self:center;
  8907. padding:2px 2px 2px 2px;
  8908. box-sizing:border-box;
  8909. width:100%;
  8910. }
  8911. #u3989_text {
  8912. border-width:0px;
  8913. white-space:nowrap;
  8914. text-transform:none;
  8915. }
  8916. #u3990 {
  8917. border-width:0px;
  8918. position:absolute;
  8919. left:0px;
  8920. top:0px;
  8921. width:0px;
  8922. height:0px;
  8923. }
  8924. #u3991_div {
  8925. border-width:0px;
  8926. position:absolute;
  8927. left:0px;
  8928. top:0px;
  8929. width:240px;
  8930. height:23px;
  8931. background:inherit;
  8932. background-color:rgba(255, 255, 255, 0);
  8933. border:none;
  8934. border-radius:0px;
  8935. -moz-box-shadow:none;
  8936. -webkit-box-shadow:none;
  8937. box-shadow:none;
  8938. font-size:12px;
  8939. }
  8940. #u3991 {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:1241px;
  8944. top:614px;
  8945. width:240px;
  8946. height:23px;
  8947. display:flex;
  8948. font-size:12px;
  8949. }
  8950. #u3991 .text {
  8951. position:absolute;
  8952. align-self:center;
  8953. padding:2px 2px 2px 2px;
  8954. box-sizing:border-box;
  8955. width:100%;
  8956. }
  8957. #u3991_text {
  8958. border-width:0px;
  8959. word-wrap:break-word;
  8960. text-transform:none;
  8961. visibility:hidden;
  8962. }
  8963. #u3992_div {
  8964. border-width:0px;
  8965. position:absolute;
  8966. left:0px;
  8967. top:0px;
  8968. width:53px;
  8969. height:21px;
  8970. background:inherit;
  8971. background-color:rgba(255, 255, 255, 0);
  8972. border:none;
  8973. border-radius:0px;
  8974. -moz-box-shadow:none;
  8975. -webkit-box-shadow:none;
  8976. box-shadow:none;
  8977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8978. font-weight:400;
  8979. font-style:normal;
  8980. font-size:12px;
  8981. color:rgba(255, 255, 255, 0.698039215686274);
  8982. text-align:left;
  8983. }
  8984. #u3992 {
  8985. border-width:0px;
  8986. position:absolute;
  8987. left:1241px;
  8988. top:615px;
  8989. width:53px;
  8990. height:21px;
  8991. display:flex;
  8992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8993. font-weight:400;
  8994. font-style:normal;
  8995. font-size:12px;
  8996. color:rgba(255, 255, 255, 0.698039215686274);
  8997. text-align:left;
  8998. }
  8999. #u3992 .text {
  9000. position:absolute;
  9001. align-self:center;
  9002. padding:2px 2px 2px 2px;
  9003. box-sizing:border-box;
  9004. width:100%;
  9005. }
  9006. #u3992_text {
  9007. border-width:0px;
  9008. white-space:nowrap;
  9009. text-transform:none;
  9010. }
  9011. #u3993_div {
  9012. border-width:0px;
  9013. position:absolute;
  9014. left:0px;
  9015. top:0px;
  9016. width:19px;
  9017. height:21px;
  9018. background:inherit;
  9019. background-color:rgba(255, 255, 255, 0);
  9020. border:none;
  9021. border-radius:0px;
  9022. -moz-box-shadow:none;
  9023. -webkit-box-shadow:none;
  9024. box-shadow:none;
  9025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9026. font-weight:400;
  9027. font-style:normal;
  9028. font-size:12px;
  9029. color:#FFFFFF;
  9030. text-align:left;
  9031. }
  9032. #u3993 {
  9033. border-width:0px;
  9034. position:absolute;
  9035. left:1327px;
  9036. top:615px;
  9037. width:19px;
  9038. height:21px;
  9039. display:flex;
  9040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9041. font-weight:400;
  9042. font-style:normal;
  9043. font-size:12px;
  9044. color:#FFFFFF;
  9045. text-align:left;
  9046. }
  9047. #u3993 .text {
  9048. position:absolute;
  9049. align-self:center;
  9050. padding:2px 2px 2px 2px;
  9051. box-sizing:border-box;
  9052. width:100%;
  9053. }
  9054. #u3993_text {
  9055. border-width:0px;
  9056. white-space:nowrap;
  9057. text-transform:none;
  9058. }
  9059. #u3994_div {
  9060. border-width:0px;
  9061. position:absolute;
  9062. left:0px;
  9063. top:0px;
  9064. width:49px;
  9065. height:21px;
  9066. background:inherit;
  9067. background-color:rgba(255, 255, 255, 0);
  9068. border:none;
  9069. border-radius:0px;
  9070. -moz-box-shadow:none;
  9071. -webkit-box-shadow:none;
  9072. box-shadow:none;
  9073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9074. font-weight:400;
  9075. font-style:normal;
  9076. font-size:12px;
  9077. color:#FFFFFF;
  9078. text-align:left;
  9079. }
  9080. #u3994 {
  9081. border-width:0px;
  9082. position:absolute;
  9083. left:1436px;
  9084. top:615px;
  9085. width:49px;
  9086. height:21px;
  9087. display:flex;
  9088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9089. font-weight:400;
  9090. font-style:normal;
  9091. font-size:12px;
  9092. color:#FFFFFF;
  9093. text-align:left;
  9094. }
  9095. #u3994 .text {
  9096. position:absolute;
  9097. align-self:center;
  9098. padding:2px 2px 2px 2px;
  9099. box-sizing:border-box;
  9100. width:100%;
  9101. }
  9102. #u3994_text {
  9103. border-width:0px;
  9104. white-space:nowrap;
  9105. text-transform:none;
  9106. }
  9107. #u3995_div {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:0px;
  9111. top:0px;
  9112. width:19px;
  9113. height:21px;
  9114. background:inherit;
  9115. background-color:rgba(255, 255, 255, 0);
  9116. border:none;
  9117. border-radius:0px;
  9118. -moz-box-shadow:none;
  9119. -webkit-box-shadow:none;
  9120. box-shadow:none;
  9121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9122. font-weight:400;
  9123. font-style:normal;
  9124. font-size:12px;
  9125. color:#FFFFFF;
  9126. text-align:left;
  9127. }
  9128. #u3995 {
  9129. border-width:0px;
  9130. position:absolute;
  9131. left:1392px;
  9132. top:615px;
  9133. width:19px;
  9134. height:21px;
  9135. display:flex;
  9136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9137. font-weight:400;
  9138. font-style:normal;
  9139. font-size:12px;
  9140. color:#FFFFFF;
  9141. text-align:left;
  9142. }
  9143. #u3995 .text {
  9144. position:absolute;
  9145. align-self:center;
  9146. padding:2px 2px 2px 2px;
  9147. box-sizing:border-box;
  9148. width:100%;
  9149. }
  9150. #u3995_text {
  9151. border-width:0px;
  9152. white-space:nowrap;
  9153. text-transform:none;
  9154. }
  9155. #u3996 {
  9156. border-width:0px;
  9157. position:absolute;
  9158. left:0px;
  9159. top:0px;
  9160. width:0px;
  9161. height:0px;
  9162. }
  9163. #u3997_div {
  9164. border-width:0px;
  9165. position:absolute;
  9166. left:0px;
  9167. top:0px;
  9168. width:240px;
  9169. height:23px;
  9170. background:inherit;
  9171. background-color:rgba(255, 255, 255, 0);
  9172. border:none;
  9173. border-radius:0px;
  9174. -moz-box-shadow:none;
  9175. -webkit-box-shadow:none;
  9176. box-shadow:none;
  9177. font-size:12px;
  9178. }
  9179. #u3997 {
  9180. border-width:0px;
  9181. position:absolute;
  9182. left:1241px;
  9183. top:638px;
  9184. width:240px;
  9185. height:23px;
  9186. display:flex;
  9187. font-size:12px;
  9188. }
  9189. #u3997 .text {
  9190. position:absolute;
  9191. align-self:center;
  9192. padding:2px 2px 2px 2px;
  9193. box-sizing:border-box;
  9194. width:100%;
  9195. }
  9196. #u3997_text {
  9197. border-width:0px;
  9198. word-wrap:break-word;
  9199. text-transform:none;
  9200. visibility:hidden;
  9201. }
  9202. #u3998_div {
  9203. border-width:0px;
  9204. position:absolute;
  9205. left:0px;
  9206. top:0px;
  9207. width:53px;
  9208. height:21px;
  9209. background:inherit;
  9210. background-color:rgba(255, 255, 255, 0);
  9211. border:none;
  9212. border-radius:0px;
  9213. -moz-box-shadow:none;
  9214. -webkit-box-shadow:none;
  9215. box-shadow:none;
  9216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9217. font-weight:400;
  9218. font-style:normal;
  9219. font-size:12px;
  9220. color:rgba(255, 255, 255, 0.698039215686274);
  9221. text-align:left;
  9222. }
  9223. #u3998 {
  9224. border-width:0px;
  9225. position:absolute;
  9226. left:1241px;
  9227. top:639px;
  9228. width:53px;
  9229. height:21px;
  9230. display:flex;
  9231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9232. font-weight:400;
  9233. font-style:normal;
  9234. font-size:12px;
  9235. color:rgba(255, 255, 255, 0.698039215686274);
  9236. text-align:left;
  9237. }
  9238. #u3998 .text {
  9239. position:absolute;
  9240. align-self:center;
  9241. padding:2px 2px 2px 2px;
  9242. box-sizing:border-box;
  9243. width:100%;
  9244. }
  9245. #u3998_text {
  9246. border-width:0px;
  9247. white-space:nowrap;
  9248. text-transform:none;
  9249. }
  9250. #u3999_div {
  9251. border-width:0px;
  9252. position:absolute;
  9253. left:0px;
  9254. top:0px;
  9255. width:19px;
  9256. height:21px;
  9257. background:inherit;
  9258. background-color:rgba(255, 255, 255, 0);
  9259. border:none;
  9260. border-radius:0px;
  9261. -moz-box-shadow:none;
  9262. -webkit-box-shadow:none;
  9263. box-shadow:none;
  9264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9265. font-weight:400;
  9266. font-style:normal;
  9267. font-size:12px;
  9268. color:#FFFFFF;
  9269. text-align:left;
  9270. }
  9271. #u3999 {
  9272. border-width:0px;
  9273. position:absolute;
  9274. left:1327px;
  9275. top:639px;
  9276. width:19px;
  9277. height:21px;
  9278. display:flex;
  9279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9280. font-weight:400;
  9281. font-style:normal;
  9282. font-size:12px;
  9283. color:#FFFFFF;
  9284. text-align:left;
  9285. }
  9286. #u3999 .text {
  9287. position:absolute;
  9288. align-self:center;
  9289. padding:2px 2px 2px 2px;
  9290. box-sizing:border-box;
  9291. width:100%;
  9292. }
  9293. #u3999_text {
  9294. border-width:0px;
  9295. white-space:nowrap;
  9296. text-transform:none;
  9297. }
  9298. #u4000_div {
  9299. border-width:0px;
  9300. position:absolute;
  9301. left:0px;
  9302. top:0px;
  9303. width:49px;
  9304. height:21px;
  9305. background:inherit;
  9306. background-color:rgba(255, 255, 255, 0);
  9307. border:none;
  9308. border-radius:0px;
  9309. -moz-box-shadow:none;
  9310. -webkit-box-shadow:none;
  9311. box-shadow:none;
  9312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9313. font-weight:400;
  9314. font-style:normal;
  9315. font-size:12px;
  9316. color:#FFFFFF;
  9317. text-align:left;
  9318. }
  9319. #u4000 {
  9320. border-width:0px;
  9321. position:absolute;
  9322. left:1436px;
  9323. top:639px;
  9324. width:49px;
  9325. height:21px;
  9326. display:flex;
  9327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9328. font-weight:400;
  9329. font-style:normal;
  9330. font-size:12px;
  9331. color:#FFFFFF;
  9332. text-align:left;
  9333. }
  9334. #u4000 .text {
  9335. position:absolute;
  9336. align-self:center;
  9337. padding:2px 2px 2px 2px;
  9338. box-sizing:border-box;
  9339. width:100%;
  9340. }
  9341. #u4000_text {
  9342. border-width:0px;
  9343. white-space:nowrap;
  9344. text-transform:none;
  9345. }
  9346. #u4001_div {
  9347. border-width:0px;
  9348. position:absolute;
  9349. left:0px;
  9350. top:0px;
  9351. width:19px;
  9352. height:21px;
  9353. background:inherit;
  9354. background-color:rgba(255, 255, 255, 0);
  9355. border:none;
  9356. border-radius:0px;
  9357. -moz-box-shadow:none;
  9358. -webkit-box-shadow:none;
  9359. box-shadow:none;
  9360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9361. font-weight:400;
  9362. font-style:normal;
  9363. font-size:12px;
  9364. color:#FFFFFF;
  9365. text-align:left;
  9366. }
  9367. #u4001 {
  9368. border-width:0px;
  9369. position:absolute;
  9370. left:1392px;
  9371. top:639px;
  9372. width:19px;
  9373. height:21px;
  9374. display:flex;
  9375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9376. font-weight:400;
  9377. font-style:normal;
  9378. font-size:12px;
  9379. color:#FFFFFF;
  9380. text-align:left;
  9381. }
  9382. #u4001 .text {
  9383. position:absolute;
  9384. align-self:center;
  9385. padding:2px 2px 2px 2px;
  9386. box-sizing:border-box;
  9387. width:100%;
  9388. }
  9389. #u4001_text {
  9390. border-width:0px;
  9391. white-space:nowrap;
  9392. text-transform:none;
  9393. }
  9394. #u4002 {
  9395. border-width:0px;
  9396. position:absolute;
  9397. left:0px;
  9398. top:0px;
  9399. width:0px;
  9400. height:0px;
  9401. }
  9402. #u4003_img {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:0px;
  9406. top:0px;
  9407. width:56px;
  9408. height:50px;
  9409. }
  9410. #u4003 {
  9411. border-width:0px;
  9412. position:absolute;
  9413. left:1420px;
  9414. top:326px;
  9415. width:56px;
  9416. height:50px;
  9417. display:flex;
  9418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9419. font-weight:400;
  9420. font-style:normal;
  9421. font-size:12px;
  9422. color:#FFFFFF;
  9423. text-align:left;
  9424. }
  9425. #u4003 .text {
  9426. position:absolute;
  9427. align-self:center;
  9428. padding:2px 2px 2px 10px;
  9429. box-sizing:border-box;
  9430. width:100%;
  9431. }
  9432. #u4003_text {
  9433. border-width:0px;
  9434. word-wrap:break-word;
  9435. text-transform:none;
  9436. visibility:hidden;
  9437. }
  9438. #u4004_div {
  9439. border-width:0px;
  9440. position:absolute;
  9441. left:0px;
  9442. top:0px;
  9443. width:30px;
  9444. height:17px;
  9445. background:inherit;
  9446. background-color:rgba(255, 255, 255, 0);
  9447. border:none;
  9448. border-radius:0px;
  9449. -moz-box-shadow:none;
  9450. -webkit-box-shadow:none;
  9451. box-shadow:none;
  9452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9453. font-weight:400;
  9454. font-style:normal;
  9455. font-size:12px;
  9456. color:#FFFFFF;
  9457. text-align:center;
  9458. }
  9459. #u4004 {
  9460. border-width:0px;
  9461. position:absolute;
  9462. left:1434px;
  9463. top:334px;
  9464. width:30px;
  9465. height:17px;
  9466. display:flex;
  9467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9468. font-weight:400;
  9469. font-style:normal;
  9470. font-size:12px;
  9471. color:#FFFFFF;
  9472. text-align:center;
  9473. }
  9474. #u4004 .text {
  9475. position:absolute;
  9476. align-self:flex-start;
  9477. padding:0px 0px 0px 0px;
  9478. box-sizing:border-box;
  9479. width:100%;
  9480. }
  9481. #u4004_text {
  9482. border-width:0px;
  9483. word-wrap:break-word;
  9484. text-transform:none;
  9485. }
  9486. #u4005_div {
  9487. border-width:0px;
  9488. position:absolute;
  9489. left:0px;
  9490. top:0px;
  9491. width:46px;
  9492. height:14px;
  9493. background:inherit;
  9494. background-color:rgba(255, 255, 255, 0);
  9495. border:none;
  9496. border-radius:0px;
  9497. -moz-box-shadow:none;
  9498. -webkit-box-shadow:none;
  9499. box-shadow:none;
  9500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9501. font-weight:400;
  9502. font-style:normal;
  9503. font-size:10px;
  9504. color:#FFFFFF;
  9505. text-align:center;
  9506. }
  9507. #u4005 {
  9508. border-width:0px;
  9509. position:absolute;
  9510. left:1426px;
  9511. top:354px;
  9512. width:46px;
  9513. height:14px;
  9514. display:flex;
  9515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9516. font-weight:400;
  9517. font-style:normal;
  9518. font-size:10px;
  9519. color:#FFFFFF;
  9520. text-align:center;
  9521. }
  9522. #u4005 .text {
  9523. position:absolute;
  9524. align-self:flex-start;
  9525. padding:0px 0px 0px 0px;
  9526. box-sizing:border-box;
  9527. width:100%;
  9528. }
  9529. #u4005_text {
  9530. border-width:0px;
  9531. word-wrap:break-word;
  9532. text-transform:none;
  9533. }
  9534. #u4006 {
  9535. border-width:0px;
  9536. position:absolute;
  9537. left:0px;
  9538. top:0px;
  9539. width:0px;
  9540. height:0px;
  9541. }
  9542. #u4007_img {
  9543. border-width:0px;
  9544. position:absolute;
  9545. left:-5px;
  9546. top:-5px;
  9547. width:30px;
  9548. height:40px;
  9549. }
  9550. #u4007 {
  9551. border-width:0px;
  9552. position:absolute;
  9553. left:474px;
  9554. top:292px;
  9555. width:20px;
  9556. height:30px;
  9557. display:flex;
  9558. }
  9559. #u4007 .text {
  9560. position:absolute;
  9561. align-self:center;
  9562. padding:2px 2px 2px 2px;
  9563. box-sizing:border-box;
  9564. width:100%;
  9565. }
  9566. #u4007_text {
  9567. border-width:0px;
  9568. word-wrap:break-word;
  9569. text-transform:none;
  9570. visibility:hidden;
  9571. }
  9572. #u4008_div {
  9573. border-width:0px;
  9574. position:absolute;
  9575. left:0px;
  9576. top:0px;
  9577. width:57px;
  9578. height:13px;
  9579. background:inherit;
  9580. background-color:rgba(245, 154, 35, 1);
  9581. border:none;
  9582. border-radius:4px;
  9583. -moz-box-shadow:none;
  9584. -webkit-box-shadow:none;
  9585. box-shadow:none;
  9586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9587. font-weight:400;
  9588. font-style:normal;
  9589. font-size:7px;
  9590. color:#FFFFFF;
  9591. }
  9592. #u4008 {
  9593. border-width:0px;
  9594. position:absolute;
  9595. left:489px;
  9596. top:281px;
  9597. width:57px;
  9598. height:13px;
  9599. display:flex;
  9600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9601. font-weight:400;
  9602. font-style:normal;
  9603. font-size:7px;
  9604. color:#FFFFFF;
  9605. }
  9606. #u4008 .text {
  9607. position:absolute;
  9608. align-self:center;
  9609. padding:2px 2px 2px 2px;
  9610. box-sizing:border-box;
  9611. width:100%;
  9612. }
  9613. #u4008_text {
  9614. border-width:0px;
  9615. word-wrap:break-word;
  9616. text-transform:none;
  9617. }
  9618. #u4009_img {
  9619. border-width:0px;
  9620. position:absolute;
  9621. left:-5px;
  9622. top:-5px;
  9623. width:30px;
  9624. height:40px;
  9625. }
  9626. #u4009 {
  9627. border-width:0px;
  9628. position:absolute;
  9629. left:1015px;
  9630. top:392px;
  9631. width:20px;
  9632. height:30px;
  9633. display:flex;
  9634. }
  9635. #u4009 .text {
  9636. position:absolute;
  9637. align-self:center;
  9638. padding:2px 2px 2px 2px;
  9639. box-sizing:border-box;
  9640. width:100%;
  9641. }
  9642. #u4009_text {
  9643. border-width:0px;
  9644. word-wrap:break-word;
  9645. text-transform:none;
  9646. visibility:hidden;
  9647. }
  9648. #u4010_div {
  9649. border-width:0px;
  9650. position:absolute;
  9651. left:0px;
  9652. top:0px;
  9653. width:57px;
  9654. height:13px;
  9655. background:inherit;
  9656. background-color:rgba(245, 154, 35, 1);
  9657. border:none;
  9658. border-radius:4px;
  9659. -moz-box-shadow:none;
  9660. -webkit-box-shadow:none;
  9661. box-shadow:none;
  9662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9663. font-weight:400;
  9664. font-style:normal;
  9665. font-size:7px;
  9666. color:#FFFFFF;
  9667. }
  9668. #u4010 {
  9669. border-width:0px;
  9670. position:absolute;
  9671. left:1030px;
  9672. top:381px;
  9673. width:57px;
  9674. height:13px;
  9675. display:flex;
  9676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9677. font-weight:400;
  9678. font-style:normal;
  9679. font-size:7px;
  9680. color:#FFFFFF;
  9681. }
  9682. #u4010 .text {
  9683. position:absolute;
  9684. align-self:center;
  9685. padding:2px 2px 2px 2px;
  9686. box-sizing:border-box;
  9687. width:100%;
  9688. }
  9689. #u4010_text {
  9690. border-width:0px;
  9691. word-wrap:break-word;
  9692. text-transform:none;
  9693. }
  9694. #u4011_img {
  9695. border-width:0px;
  9696. position:absolute;
  9697. left:-5px;
  9698. top:-5px;
  9699. width:30px;
  9700. height:40px;
  9701. }
  9702. #u4011 {
  9703. border-width:0px;
  9704. position:absolute;
  9705. left:882px;
  9706. top:303px;
  9707. width:20px;
  9708. height:30px;
  9709. display:flex;
  9710. }
  9711. #u4011 .text {
  9712. position:absolute;
  9713. align-self:center;
  9714. padding:2px 2px 2px 2px;
  9715. box-sizing:border-box;
  9716. width:100%;
  9717. }
  9718. #u4011_text {
  9719. border-width:0px;
  9720. word-wrap:break-word;
  9721. text-transform:none;
  9722. visibility:hidden;
  9723. }
  9724. #u4012_div {
  9725. border-width:0px;
  9726. position:absolute;
  9727. left:0px;
  9728. top:0px;
  9729. width:57px;
  9730. height:13px;
  9731. background:inherit;
  9732. background-color:rgba(245, 154, 35, 1);
  9733. border:none;
  9734. border-radius:4px;
  9735. -moz-box-shadow:none;
  9736. -webkit-box-shadow:none;
  9737. box-shadow:none;
  9738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9739. font-weight:400;
  9740. font-style:normal;
  9741. font-size:7px;
  9742. color:#FFFFFF;
  9743. }
  9744. #u4012 {
  9745. border-width:0px;
  9746. position:absolute;
  9747. left:897px;
  9748. top:292px;
  9749. width:57px;
  9750. height:13px;
  9751. display:flex;
  9752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9753. font-weight:400;
  9754. font-style:normal;
  9755. font-size:7px;
  9756. color:#FFFFFF;
  9757. }
  9758. #u4012 .text {
  9759. position:absolute;
  9760. align-self:center;
  9761. padding:2px 2px 2px 2px;
  9762. box-sizing:border-box;
  9763. width:100%;
  9764. }
  9765. #u4012_text {
  9766. border-width:0px;
  9767. word-wrap:break-word;
  9768. text-transform:none;
  9769. }